* {
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

header .top {
  border-bottom: 1px solid #eee;
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
}
header .top .top-socials {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  align-items: center;
}
header .top .top-socials .kur {
  display: flex;
  align-items: center;
  margin: 0 10px;
  height: 100%;
}
header .top .top-socials .kur:first-child {
  margin-right: 0;
}
header .top .top-socials .kur i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-right: 8px;
  padding: 12px;
  background-color: #f26522;
  color: #fff;
}
header .top .top-socials .kur span {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  color: #444444;
}
header .top .top-socials a {
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 45px;
  height: 40px;
  border-left: 1px solid rgba(198, 198, 198, 0.4745098039);
  transition: all 0.2s ease;
}
header .top .top-socials a img {
  width: 25px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
header .top .top-socials a:nth-child(3):hover {
  background-color: #4267b2;
  color: #fff;
}
header .top .top-socials a:nth-child(4):hover {
  background-color: #1da1f2;
  color: #fff;
}
header .top .top-socials a:nth-child(5):hover {
  background-color: #c13584;
  color: #fff;
}
header .main {
  background-color: #f9f9f9;
  position: relative;
}
header .main .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .main .logo {
  position: relative;
  top: -15px;
}
header .main .q-contact {
  display: flex;
  align-items: center;
}
header .main .q-contact .box {
  margin-right: 25px;
  display: flex;
  align-items: flex-start;
}
header .main .q-contact .box:last-child {
  margin-right: 0;
}
header .main .q-contact .box i {
  font-size: 28px;
  color: #444444;
  margin-right: 15px;
}
header .main .q-contact .box .data {
  display: flex;
  flex-direction: column;
}
header .main .q-contact .box .data span {
  font-size: 14px;
  color: #666666;
  font-weight: 300;
}
header .main .q-contact .box .data a,
header .main .q-contact .box .data p {
  text-decoration: none;
  margin-top: 7px;
  color: #f26522;
  font-weight: 600;
}
header .main .q-contact .teklif-al {
  display: flex;
  align-items: center;
  background-color: #f26522;
  padding: 15px 28px;
  color: #fff;
  position: relative;
  cursor: pointer;
  text-shadow: 0px 2px #c94f1f;
  transition: all 0.2s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  border-radius: 2px;
  overflow: hidden;
}
header .main .q-contact .teklif-al::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #c94f1f;
  transition: all 0.2s ease;
}
header .main .q-contact .teklif-al:hover {
  text-shadow: 0px 0px #c94f1f;
}
header .main .q-contact .teklif-al:hover::after {
  height: 0%;
}
header .main .q-contact .teklif-al i {
  color: #fff;
}

nav {
  position: sticky;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  z-index: 3;
}
nav .opening {
  display: flex;
}
nav .opening:hover i {
  transform: rotate(180deg);
}
nav .opening i {
  transition: all 0.2s ease;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Sans Pro", sans-serif;
}
nav ul li {
  position: relative;
}
nav ul li:hover .dropdown {
  display: flex;
}
nav ul li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: #444444;
  transition: all 0.1s ease-in;
}
nav ul li a:hover {
  color: #f26522;
}
nav .dropdown {
  content: "";
  height: auto;
  background-color: #fff;
  top: 60px;
  padding: 10px;
  z-index: 2;
  display: none;
  border-radius: 5px;
  position: absolute;
  border: 1px solid #eee;
  left: -340px;
  font-weight: 500;
  color: #838383 !important;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2);
}
nav .dropdown::before {
  content: "";
  width: 100%;
  height: 60px;
  position: absolute;
  top: -20px;
  left: 0;
}
nav .dropdown .box {
  display: flex;
  width: 130px;
  height: 130px;
  position: relative;
  margin: 0px 5px;
  justify-content: space-between;
  transition: 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  padding: 0px;
  border-radius: 5px;
}
nav .dropdown .box img {
  height: 100%;
  filter: grayscale(100%);
  transition: 0.3s ease;
}
nav .dropdown .box .text {
  width: 100%;
  position: absolute;
  text-align: center;
  height: 100%;
  align-items: center;
  display: flex;
  top: 75px;
  transition: 0.3s ease;
  padding: 0px 10px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
nav .dropdown .box .text span {
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 17px;
}
nav .dropdown .box .text hr {
  background-color: #fff;
  margin-bottom: 10px;
  width: 25px;
  height: 2px;
}
nav .dropdown .box .text p {
  color: white;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
nav .dropdown .box:hover img {
  filter: grayscale(0%);
}
nav .dropdown .box:hover .text {
  top: 0;
}
nav .dropdown .box:after {
  display: none;
}
nav .dropdown .box:before {
  display: none;
}

.main-carousel {
  width: 100%;
  height: 700px;
  position: relative;
}
.main-carousel .item {
  width: 100%;
  height: 700px;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-carousel .item .item-box {
  margin-left: 10%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #fff;
  padding: 30px 80px 30px 40px;
}
.main-carousel .item .item-box .slider-title {
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 18px;
}
.main-carousel .item .item-box p {
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  line-height: 200%;
}
.main-carousel .owl-prev,
.main-carousel .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  background-color: rgba(129, 129, 129, 0.4392156863) !important;
  margin: 0 !important;
  transition: all 0.2s ease;
}
.main-carousel .owl-prev:hover,
.main-carousel .owl-next:hover {
  background-color: #444444 !important;
}
.main-carousel .owl-prev i,
.main-carousel .owl-next i {
  color: #fff;
}
.main-carousel .owl-prev {
  position: absolute;
  left: 0;
}
.main-carousel .owl-next {
  position: absolute;
  right: 0;
}

.gallery-home img {
  max-height: 600px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-home .owl-nav button {
  padding: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f26522 !important;
  transition: all 0.2s ease;
}
.gallery-home .owl-nav button:hover {
  background-color: #92360c !important;
}
.gallery-home .owl-nav button i {
  color: #fff;
}

.contact-boxes {
  margin-bottom: 1em;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.contact-boxes .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-boxes .box:nth-child(2) .in {
  background: #ffe1bb;
}
.contact-boxes .box .in {
  min-height: 100px;
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background: #ffe1d3;
}
.contact-boxes .box h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-boxes .box p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
}
.contact-boxes .box a {
  text-decoration: none;
  font-weight: bold;
  color: orangered;
}

.call-to-action {
  padding: 50px 0;
  width: 100%;
  background-color: #f5f5f5;
  color: #444444;
}
.call-to-action.small {
  background-color: #f18052;
  color: #fff;
  padding: 25px 0;
}
.call-to-action.small p {
  font-weight: 300;
}
.call-to-action.small .container {
  justify-content: center;
}
.call-to-action.small a {
  margin-left: 1em;
  background: none;
  font-family: "Roboto", sans-serif;
}
.call-to-action .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.call-to-action h3 {
  font-family: "Source Sans Pro", sans-serif;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 3px;
}
.call-to-action p {
  font-size: 20px;
  font-weight: 100;
}
.call-to-action a {
  font-size: 25px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  text-decoration: none;
  background-color: #444444;
  transition: all 0.2s ease;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
}
.call-to-action a:hover {
  background-color: #f26522;
}

section.boxed-box {
  padding: 75px 0;
}
section.boxed-box .img-box {
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  height: 300px;
}
section.boxed-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.boxed-box .title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #444444;
  margin-top: 14px;
}
section.boxed-box .s-title {
  font-size: 30px;
  font-weight: 100;
  margin-bottom: 30px;
}
section.boxed-box .s-title span {
  color: #f26522;
  font-weight: 600;
}
section.boxed-box .subtitle {
  display: inline-block;
  font-weight: 100;
  color: #f26522;
  margin: 15px 0;
}
section.boxed-box p {
  font-size: 16px;
  color: #666;
  font-weight: 300;
  line-height: 150%;
}
section.boxed-box .col {
  position: relative;
  margin-bottom: 45px;
  text-decoration: none;
  padding: 10px;
}
section.boxed-box .col:hover .top {
  transition-delay: 0s;
}
section.boxed-box .col:hover .right {
  transition-delay: 0.25s;
}
section.boxed-box .col:hover .bottom {
  transition-delay: 0.5s;
}
section.boxed-box .col:hover .left {
  transition-delay: 0.75s;
}
section.boxed-box .col:hover .top,
section.boxed-box .col:hover .bottom {
  transform: scaleX(1);
}
section.boxed-box .col:hover .left,
section.boxed-box .col:hover .right {
  transform: scaleY(1);
}
section.boxed-box .col span {
  position: absolute;
  display: block;
  background: #f26522;
  transition: all 0.25s linear;
}
section.boxed-box .col span.top, section.boxed-box .col span.bottom {
  width: 100%;
  height: 2px;
  transform: scaleX(0);
}
section.boxed-box .col span.left, section.boxed-box .col span.right {
  width: 2px;
  height: 100%;
  transform: scaleY(0);
}
section.boxed-box .col span.top {
  top: 0;
  left: 0;
  transition-delay: 0.75s;
  transform-origin: top left;
}
section.boxed-box .col span.right {
  top: 0;
  right: 0;
  transition-delay: 0.5s;
  transform-origin: top left;
}
section.boxed-box .col span.bottom {
  bottom: 0;
  right: 0;
  transition-delay: 0.25s;
  transform-origin: top right;
}
section.boxed-box .col span.left {
  top: 0;
  left: 0;
  transform-origin: bottom left;
}
section.boxed-box .col:last-child {
  margin-bottom: 0;
}
section.promotion {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("../../images/promo-bg.jpg");
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  color: #fff;
}
section.promotion::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f26522;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
section.promotion h3 {
  font-size: 30px;
  font-weight: 300;
}
section.promotion h4 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-top: 30px;
}
section.strengts {
  padding: 50px 0;
}
section.strengts .strength {
  display: flex;
}
section.strengts .strength .icon {
  margin-right: 15px;
  font-size: 40px;
  color: #f26522;
}
section.strengts .strength .title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #444444;
}
section.strengts .strength p {
  line-height: 150%;
  color: #9e9e9e;
  margin-top: 20px;
}
section.faq-contact {
  padding: 75px 0;
}
section.faq-contact .faq-side {
  display: flex;
  flex-direction: column;
}
section.faq-contact .faq-side .faq-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}
section.faq-contact .faq-side .faq-tabs .faq-tab {
  cursor: pointer;
  background-color: #f2f2f2;
  color: #444444;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 25px;
  border-right: 1px solid #ddd;
  border-top: 1px solid #ddd;
  transition: all 0.1s ease;
}
section.faq-contact .faq-side .faq-tabs .faq-tab:first-child {
  border-left: 1px solid #ddd;
}
section.faq-contact .faq-side .faq-tabs .faq-tab.active {
  background: #fff;
  border-bottom: none;
}
section.faq-contact .faq-side .faq-answer {
  top: 70px;
  line-height: 200%;
  color: #666;
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
section.faq-contact .faq-side .faq-answer.active {
  height: 100%;
  opacity: 1;
  overflow: unset;
}
section.faq-contact .q-form {
  display: flex;
  flex-direction: column;
}
section.faq-contact .q-form h4 {
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 2px;
  color: #444444;
  font-weight: 600;
  margin-bottom: 20px;
}
section.faq-contact .q-form form input,
section.faq-contact .q-form form textarea {
  width: 100%;
  margin-bottom: 10px;
}
section.page-entry {
  padding: 45px 0;
  border-bottom: 1px solid #eee;
}
section.page-entry .container {
  display: flex;
}
section.page-entry .title {
  letter-spacing: 2px;
  color: #282828;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
}
section.page-entry .sub {
  font-weight: 100;
  font-size: 23px;
  margin-top: 15px;
  color: #666;
}
section.page-entry a {
  margin-left: auto;
  transition: all 0.2s ease-in-out;
}
section.page-entry a:hover {
  transform: scale(1.2);
}
section.page-entry a img {
  width: 100px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
section.page-entry .title-box {
  display: flex;
  flex-direction: column;
}
section.k-blog {
  padding: 60px 0;
}
section.k-blog .urun-contents {
  font-weight: 400;
  font-size: 16px;
  color: #666;
  line-height: 150%;
}
section.k-blog hr {
  border-color: rgba(226, 226, 226, 0.3725490196);
  margin-bottom: 28px;
}
section.k-blog img {
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
section.k-blog b,
section.k-blog h2 {
  font-weight: bold;
  margin: 15px 0;
}
section.k-blog h3 {
  letter-spacing: 2px;
  color: #282828;
  font-size: 28px;
  font-weight: 500;
}
section.k-blog .sub {
  font-weight: 100;
  font-size: 23px;
  margin-top: 15px;
  color: #666;
  margin-bottom: 30px;
}
section.k-blog p,
section.k-blog strong {
  font-weight: 400;
  font-size: 16px;
  color: #666;
  line-height: 150%;
  margin: 10px 0;
}
section.k-blog strong {
  font-weight: 600;
}
section.k-blog ul li {
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  color: #444444;
}
section.k-blog ul li b {
  font-weight: 600;
}
section.k-blog .duyuru-flow {
  display: flex;
}
section.k-blog .duyuru-row {
  display: flex;
  margin-top: 30px;
}
section.k-blog .duyuru {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
}
section.k-blog .duyuru img {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  margin-right: 20px;
  max-width: 120px;
  border-radius: 3px;
}
section.k-blog .duyuru .baslik {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #444444;
  margin-bottom: 15px;
  font-size: 19px;
}
section.k-blog .duyuru .icerik {
  font-size: 13px;
  color: #797979;
  line-height: 150%;
}
section.k-blog .teklif-al {
  display: flex;
  align-items: center;
  background-color: #f26522;
  padding: 15px 28px;
  color: #fff;
  position: relative;
  justify-content: center;
  cursor: pointer;
  text-shadow: 0px 2px #c94f1f;
  transition: all 0.2s ease;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  overflow: hidden;
}
section.k-blog .teklif-al::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #c94f1f;
  transition: all 0.2s ease;
}
section.k-blog .teklif-al:hover {
  text-shadow: 0px 0px #c94f1f;
}
section.k-blog .teklif-al:hover::after {
  height: 0%;
}
section.k-blog .teklif-al i {
  color: #fff;
  margin-right: 10px;
}
section.k-blog .other-products {
  display: flex;
  flex-direction: column;
}
section.k-blog .other-products .other-product {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 8px 0;
  transition: all 0.2s ease;
  padding: 10px;
}
section.k-blog .other-products .other-product:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
section.k-blog .other-products .other-product img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
section.k-blog .other-products .other-product .box {
  display: flex;
  flex-direction: column;
}
section.k-blog .other-products .other-product .title {
  font-family: "Source Sans Pro", sans-serif;
  color: #444444;
  font-size: 16px;
  font-weight: 600;
}
section.k-blog .other-products .other-product .sub {
  font-weight: 100;
  font-size: 14px;
  color: #666;
  line-height: 150%;
}
section.k-blog table {
  width: 100%;
  margin-top: 40px;
}
section.k-blog table tr,
section.k-blog table td {
  width: 100px;
  text-align: left;
}
section.k-blog table tr:nth-child(2n) {
  background-color: #888181;
  color: #fff;
}
section.k-blog table td {
  padding: 10px;
  font-weight: 300;
}
section.k-blog table th {
  padding: 10px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}
section.katalog {
  margin: 66px 0;
}
section.katalog .container {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(5, 1fr);
}
section.katalog .urun {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  text-decoration: none;
  color: #202020;
}
section.katalog .urun:hover .urun-img::after {
  opacity: 1;
}
section.katalog .urun:hover .urun-img span {
  transform: scale(1);
}
section.katalog .urun:hover .urun-img img {
  transform: scale(1.1) rotate(3deg);
}
section.katalog .urun .urun-img {
  margin-bottom: 10px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.katalog .urun .urun-img span {
  display: flex;
  font-size: 37px;
  color: #fff;
  z-index: 2;
  transform: scale(0);
  transition: all 0.3s ease;
}
section.katalog .urun .urun-img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
}
section.katalog .urun .urun-img img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  z-index: -1;
}
section.katalog .urun .urun-detay {
  display: flex;
  flex-direction: column;
  min-height: 170px;
}
section.katalog .urun .urun-title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #444444;
}
section.katalog .urun .urun-desc {
  font-size: 15px;
  font-weight: 400;
  color: #797979;
  line-height: 150%;
  margin: 12px 0;
}
section.kurlar {
  border-bottom: 1px solid #ddd;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
section.kurlar .rate {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
}
section.kurlar .rate .cur-rate {
  display: flex;
  align-items: center;
}
section.kurlar .rate .cur-rate h4 {
  color: #f26522;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  margin: 0 10px;
}
section.kurlar .rate .cur-rate span {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: #444444;
}
section.cetvel {
  padding: 66px 0;
}
section.cetvel .container form {
  display: flex;
  flex-direction: column;
}
section.cetvel h3,
section.cetvel h4 {
  font-size: 28px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #888e92;
  padding: 15px 0;
}
section.cetvel .densityinput {
  background: #f26522;
  color: #fff !important;
  text-align: center;
  width: 100px !important;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.cetvel .i-group {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
section.cetvel .i-group.buttons {
  margin-left: auto;
  align-items: flex-end;
  border-bottom: none;
  display: flex;
  align-items: center;
}
section.cetvel .i-group.buttons button {
  margin-left: 15px;
}
section.cetvel .i-group.buttons button:nth-child(1) {
  margin-left: auto;
  background-color: #797979;
  border-color: #202020;
}
section.cetvel .i-group sup {
  vertical-align: super;
  font-size: smaller;
}
section.cetvel .i-group label,
section.cetvel .i-group .s-t {
  font-weight: 600;
  margin-right: 20px;
}
section.cetvel .i-group .yogunluk {
  display: flex;
  align-items: center;
  width: 100%;
}
section.cetvel .i-group .yogunluk input {
  width: -moz-max-content;
  width: max-content;
  margin-right: 20px;
  color: #f26522;
}
section.cetvel .i-group input,
section.cetvel .i-group select,
section.cetvel .i-group option {
  width: 30%;
  margin-left: auto;
}
section.cetvel .formDoviz thead tr td {
  background: #f18052;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
}
section.cetvel .formDoviz tr,
section.cetvel .formDoviz td {
  border: 3px solid #fff;
  padding: 10px;
  font-size: 14px;
  background: #c9c9c9;
}
section.cetvel .ebat-img {
  width: 250px;
  margin: 0 auto;
  border: 1px solid #ddd;
}
section.cetvel .units {
  margin-left: auto;
  display: flex;
}
section.cetvel .unit-type {
  display: flex;
  align-items: center;
  background-color: #f18052;
  border-radius: 4px;
  color: #fff;
  padding: 0 15px;
  border: 1px solid #ddd;
}
section.cetvel .unit-type label {
  margin-left: 15px;
  padding: 10px;
}
section.cetvel #results {
  margin-left: auto;
  color: #f26522;
  font-weight: bold;
  margin-top: 18px;
  font-size: 28px;
}
section.contact .container {
  padding-top: 66px;
  padding-bottom: 66px;
}
section.contact h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  margin: 18px 0;
  font-size: 24px;
  color: #282828;
}
section.contact p {
  line-height: 175%;
  font-weight: 100;
}
section.contact a {
  text-decoration: none;
  color: #f26522;
  line-height: 175%;
  font-weight: 300;
}
section.contact button {
  margin-top: 25px;
}
section.contact .i-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
section.contact .i-group label {
  font-weight: 600;
  font-size: 13px;
  color: #666;
  font-family: "Source Sans Pro", sans-serif;
  margin: 8px;
}
section.social-bar {
  z-index: 11;
  position: fixed;
  left: 25px;
  bottom: 25px;
}
section.social-bar a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
section.social-bar a span {
  color: #444444;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 5px 15px;
  border-radius: 4px;
  margin-left: 10px;
}
section.social-bar a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 30px;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #25d366;
  position: relative;
}
@keyframes blink {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
section.social-bar a .icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #18a84d;
  border-radius: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.2s ease;
  animation-name: blink;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-iteration-count: infinite;
  animation-direction: normal;
}

.t-row {
  display: flex;
  align-items: flex-end;
}

.trust img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -3px;
}
.trust .title {
  font-size: 38px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  color: #444444;
}
.trust .sub-title {
  font-size: 30px;
  color: #f26522;
  font-weight: 300;
  margin: 20px 0;
}
.trust ul {
  margin-top: 66px;
  margin-bottom: 66px;
}
.trust ul li {
  font-size: 18px;
  margin: 15px 0;
  color: #444444;
}
.trust ul li i {
  color: #f26522;
}

.teklif-modal {
  opacity: 0;
  top: -100%;
  z-index: 10;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teklif-modal.open {
  opacity: 1;
  transform: scale(1);
  top: 0;
}
.teklif-modal.open .teklif-modal-content {
  transform: scale(1);
}
.teklif-modal .close-popup {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: rgba(161, 49, 49, 0.407);
  color: #282828;
  padding: 5px;
  border-radius: 100%;
  transition: all 0.1s ease;
}
.teklif-modal .close-popup:hover {
  background-color: rgb(149, 41, 41);
  color: #fff;
}
.teklif-modal .teklif-modal-content {
  transform: scale(0);
  transition: all 0.5s ease;
  transition-delay: 0.5s;
  position: relative;
  padding: 33px 55px;
  width: 400px;
  height: auto;
  background-color: #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  border-radius: 2px;
}
.teklif-modal .teklif-modal-content span span {
  color: #f26522;
}
.teklif-modal .teklif-modal-content h3 {
  color: #444444;
  font-size: 28px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 100;
  margin-bottom: 18px;
}
.teklif-modal .teklif-modal-content input,
.teklif-modal .teklif-modal-content textarea {
  margin-bottom: 10px;
  width: 100%;
}

footer {
  background-color: #282828;
  padding: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}
footer .t-row p {
  color: #b9b5b5;
  line-height: 150%;
  margin-top: 20px;
}
footer .t-row .f-contact {
  display: flex;
  flex-direction: column;
}
footer .t-row .f-contact span {
  font-size: 16px;
  letter-spacing: 2px;
  color: #787777;
  font-weight: 400;
  margin: 20px 0;
}
footer .t-row .f-contact a {
  font-size: 30px;
  color: #b9b5b5;
  text-decoration: none;
  font-weight: 600;
}
footer .c-rights {
  margin-top: 45px;
  background: #202020;
  height: 75px;
  display: flex;
  align-items: center;
}
footer .c-rights .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .c-rights .container p {
  color: #fff;
}
footer .c-rights .container ul {
  display: flex;
  align-items: center;
}
footer .c-rights .container ul a {
  text-decoration: none;
  color: #f26522;
  padding: 0 15px;
  transition: all 0.1s ease;
}
footer .c-rights .container ul a:hover {
  color: #f18052;
}

form input,
form textarea,
form select {
  color: #696969;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 2px solid #d9d8d8;
  padding: 10px 20px;
  transition: all 0.1s ease;
  outline: none;
}
form input:focus,
form textarea:focus,
form select:focus {
  border-color: #444444;
}
form input::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  color: #858484;
}
form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  color: #858484;
}
form button {
  background-color: #f26522;
  text-shadow: 1px 1px #797979;
  border: none;
  transition: all 0.2s ease;
  border-bottom: 4px solid #c94f1f;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  color: #fff;
  outline: none;
  padding: 5px 15px;
  cursor: pointer;
}
form button:hover {
  background-color: rgba(242, 101, 34, 0.9);
  border-bottom: 4px solid #8f310c;
}

.mobile-menu,
.mobil-menu-btn {
  display: none;
}

section.kaliteler .container {
  padding-top: 66px;
  padding-bottom: 66px;
}
section.kaliteler .container .title {
  font-size: 30px;
  font-weight: 100;
  margin-bottom: 30px;
}
section.kaliteler .container .title span {
  color: #f26522;
  font-weight: 600;
}
section.kaliteler .container .col-12 {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
section.kaliteler .container img {
  padding: 5px;
  border: 1px solid #a8a8a8;
  margin-bottom: 15px;
}
section.kaliteler .container .sub-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 150%;
}
section.kaliteler .container ul {
  margin: 1em 0;
  list-style: disc;
}
section.kaliteler .container li {
  margin: 0.5em 0;
}
section.kaliteler .container p,
section.kaliteler .container li {
  color: #444444;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

@media (max-width: 768px) {
  section.kaliteler .container .col-12 {
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 992px) {
  header .main {
    padding: 15px 0;
  }
  header .main .logo {
    top: 0;
    width: 110px;
  }
  header .main .logo img {
    width: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
  }
  header .main .q-contact {
    font-size: 10px;
  }
  nav ul li .dropdown {
    display: none !important;
  }
  .call-to-action a {
    font-size: 18px;
  }
  section.promotion {
    text-align: center;
  }
  section.faq-contact .faq-side {
    margin-bottom: 40px;
  }
  section.katalog .container {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust .t-row {
    flex-direction: column-reverse;
  }
  footer .c-rights .container ul {
    display: none;
  }
}
@media only screen and (max-width: 632px) {
  header {
    position: sticky;
    top: 0;
    z-index: 3;
  }
  header .top {
    background: #fff;
    flex-direction: column;
  }
  header .top .kur {
    display: none !important;
  }
  header .top .mobile-menu {
    position: fixed;
    top: 130px;
    left: -100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: all 0.1s ease;
  }
  header .top .mobile-menu a {
    text-decoration: none;
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    color: #444444;
    padding: 10px 15px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 26px;
    font-weight: 600;
  }
  header .top .mobile-menu.active {
    left: 0;
    transition: all 0.25s ease-in;
  }
  header .main .q-contact {
    display: none;
  }
  header .main .mobil-menu-btn {
    font-size: 28px;
    display: flex;
  }
  header .main .mobil-menu-btn.active .open {
    display: none;
  }
  header .main .mobil-menu-btn.active .close {
    display: flex;
  }
  header .main .mobil-menu-btn .close {
    display: none;
  }
  header .main .mobil-menu-btn .open {
    display: flex;
  }
  nav {
    display: none;
  }
  .main-carousel .item {
    align-items: flex-end;
  }
  .main-carousel .item .item-box {
    margin-top: auto;
    margin-left: 0;
    max-width: 100%;
    margin: 10px;
  }
  .call-to-action .container {
    text-align: center;
    flex-direction: column;
  }
  .call-to-action .container a {
    margin-left: 0;
    margin-top: 30px;
  }
  section.strengts .g-5 {
    --bs-gutter-x: 0px !important;
  }
  section.strengts .container {
    flex-direction: column;
  }
  section.faq-contact .faq-side .faq-tabs {
    flex-direction: column;
  }
  section.k-blog img {
    margin-top: 30px;
  }
  section.katalog .container {
    grid-template-columns: repeat(1, 1fr);
  }
  section.katalog .container .urun .urun-img {
    min-height: 300px;
  }
  section.katalog .container .urun .urun-detay {
    min-height: unset;
  }
  section.kurlar {
    flex-direction: column;
  }
  footer {
    padding-bottom: 45px;
  }
}