@font-face {
  font-family: "Causten";
  src: url("../fonts/causten/Causten-Black.otf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/causten/Causten-ExtraBold.otf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/causten/Causten-Bold.otf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/causten/Causten-SemiBold.otf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/causten/Causten-Medium.otf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/causten/Causten-Light.otf") format("truetype");
  font-weight: 400;
}
@media (min-width: 1400px) {
  .container.md {
    max-width: 85vw !important;
  }
}
body {
  font-family: "Causten";
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

header {
  padding: 30px 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
header .header-center-items {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .header-center-items .header-items {
  color: #333;
  font-size: 18px;
  font-weight: 500;
}

.orange-button {
  color: #FCFAF4;
  font-size: 16px;
  font-weight: 500;
  background-color: #F8694F;
  border-radius: 35px;
  padding: 12px 28px;
}
.orange-button.dark {
  background-color: rgb(51, 51, 51);
}

.header-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.header-bottom .items {
  color: rgba(51, 51, 51, 0.5);
  font-size: 16px;
  font-weight: 500;
}

.mainpage-section {
  position: relative;
}
.mainpage-section .center-content {
  width: 46.875vw;
  max-width: 46.875vw;
}
.mainpage-section .title {
  color: #333;
  font-size: 46px;
  font-weight: 600;
}
.mainpage-section .title span {
  color: #184363;
}
.mainpage-section .text {
  color: #333;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.discount-card {
  background-color: #333;
  border-radius: 100px;
  padding: 10px 20px 10px 60px;
  position: relative;
}
.discount-card .img {
  position: absolute;
  bottom: -1vw;
  z-index: -1;
  left: -1vw;
}
.discount-card .img.two {
  right: -1vw;
  left: unset;
}
.discount-card .text {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
}
.discount-card .svg-icon {
  background-color: #fff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  border-radius: 50%;
}

.discount-right {
  position: absolute;
  right: 10vw;
  top: 10vw;
}

.discount-left {
  position: absolute;
  left: 10vw;
  top: 10vw;
}

.brand-section {
  border-bottom: 1px solid #E7E7E7;
  border-top: 1px solid #E7E7E7;
  padding: 30px 0;
}

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-card .img {
  height: 27px;
  width: fit-content;
}
.brand-card .img img {
  width: 100%;
  height: 100%;
}
.brand-card .text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.main-section-one {
  padding: 100px 0;
}
.main-section-one .title {
  color: #333;
  font-size: 46px;
  font-weight: 600;
}
.main-section-one .text {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}

.info-card {
  padding: 70px 25px 45px 25px;
  display: flex;
  gap: 30px;
  border-radius: 16px;
  height: 100%;
}
.info-card.red {
  background-color: rgba(248, 105, 79, 0.1);
}
.info-card.green {
  background-color: rgba(79, 248, 203, 0.1);
}
.info-card.purple {
  background-color: rgba(192, 79, 248, 0.1);
}
.info-card .title-card {
  font-size: 20px;
  color: #333;
  font-weight: 600;
}
.info-card .text-card {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.main-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #DFDFDF;
}
.main-card .sm-img {
  height: 17px;
  width: fit-content;
}
.main-card .sm-img img {
  height: 100%;
}
.main-card .image-box {
  height: 200px;
  border-radius: 10px;
  width: 100%;
}
.main-card .image-box img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.main-card .category-badge {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 5px;
}
.main-card .category-badge.green {
  color: #21725E;
  background-color: #E7FAF5;
  border: 1px solid #B5D0C9;
}
.main-card .category-badge.purple {
  color: #C98BD6;
  background-color: #FDF5FF;
  border: 1px solid #B27ABD;
}
.main-card .category-badge.red {
  color: #A82525;
  background-color: #FFE8E8;
  border: 1px solid #E2B6B6;
}
.main-card .info-badge {
  background-color: #EBEEFF;
  border: 1px solid #AAB6F4;
  color: #0023DD;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 5px;
}
.main-card .title {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 51px;
}
.main-card .text {
  color: rgba(34, 34, 34, 0.85);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 45px;
}
.main-card .indirim-kullan {
  background-color: #333;
  border-radius: 35px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  border: none;
}

.main-title {
  color: #333;
  font-size: 44px;
  font-weight: 700;
}

.tumunu-incele {
  color: #FCFAF4;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 50px;
  background-color: #F8694F;
  border-radius: 100px;
}

.main-section-bottom .content {
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
}
.main-section-bottom .content .title-card-badge {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  border-radius: 16px;
  padding: 15px 40px;
}
.main-section-bottom .content .title-card-badge.red {
  background-color: #FEF0ED;
}
.main-section-bottom .content .title-card-badge.green {
  background-color: #EDFEFA;
}
.main-section-bottom .content .title-card-badge.purple {
  background-color: #F9EDFE;
}
.main-section-bottom .content .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  max-width: 70%;
}
.main-section-bottom .content .bottom .text {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 30px;
  border-bottom: 1px solid #E7E7E7;
}
.main-section-bottom .content .bottom .title {
  color: #333;
  font-size: 20px;
  padding-top: 30px;
  font-weight: 500;
}
.main-section-bottom .content .bottom .title a {
  color: #F8694F;
  text-decoration: underline;
}

.footer-line {
  width: 1px;
  height: auto;
  background-color: #E7E7E7;
}

footer {
  padding: 100px 0;
}
footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 21vw;
  width: 21vw;
}
footer .footer-left .footer-text {
  color: #333;
  font-size: 20px;
  font-weight: 600;
}
footer .footer-right .footer-items {
  color: rgba(51, 51, 51, 0.5);
  font-size: 18px;
  font-weight: 500;
}
footer .footer-right .footer-items-link {
  color: #333;
  font-size: 18px;
  font-weight: 500;
}
footer .footer-logo {
  width: 300px;
}
footer .footer-logo img {
  width: 100%;
}

.detail-left-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detail-left-card .image-section {
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-left-card .image-section .image-box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(51, 51, 51, 0.5);
}
.detail-left-card .image-section .name {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
.detail-left-card .image-section .cat {
  color: rgba(51, 51, 51, 0.75);
  font-size: 16px;
  font-weight: 500;
}
.detail-left-card .info-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.detail-left-card .info-section .city {
  color: rgba(51, 51, 51, 0.75);
  font-size: 16px;
  font-weight: 400;
}
.detail-left-card .info-section .left-text {
  color: rgba(51, 51, 51, 0.75);
  font-size: 16px;
  font-weight: 400;
}
.detail-left-card .info-section .siteye-git {
  color: #F8694F;
  font-size: 16px;
  font-weight: 500;
}

.left-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.left-sidebar .title {
  color: #333;
  font-size: 20px;
  font-weight: 500;
}
.left-sidebar .sidebar-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  width: 225px;
}
.left-sidebar .sidebar-card .title {
  font-size: 16px;
  font-weight: 500;
}
.left-sidebar .sidebar-card .text {
  font-size: 16px;
  font-weight: 500;
}
.left-sidebar .sidebar-card.purple {
  border-color: #F4DCFF;
  background-color: #F4DCFF;
}
.left-sidebar .sidebar-card.purple .title {
  color: #B34DFD;
}
.left-sidebar .sidebar-card.purple .text {
  color: #B34DFD;
}
.left-sidebar .sidebar-card.green {
  border-color: #B5D0C9;
  background-color: #E7FAF5;
}
.left-sidebar .sidebar-card.green .title {
  color: #21725E;
}
.left-sidebar .sidebar-card.green .text {
  color: #21725E;
}
.left-sidebar .sidebar-card.blue {
  border-color: #AAB6F4;
  background-color: #EBEEFF;
}
.left-sidebar .sidebar-card.blue .title {
  color: #0023DD;
}
.left-sidebar .sidebar-card.blue .text {
  color: #0023DD;
}
.left-sidebar .sidebar-card.orange {
  border-color: #FFB6A9;
  background-color: #FFE4DF;
}
.left-sidebar .sidebar-card.orange .title {
  color: #F8694F;
}
.left-sidebar .sidebar-card.orange .text {
  color: #F8694F;
}

.detail-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.detail-right .image-box {
  width: 100%;
}
.detail-right .image-box img {
  width: 100%;
}
.detail-right .detail-badge {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 15px;
  border-radius: 5px;
  border: 1px solid transparent;
}
.detail-right .detail-badge.purple {
  color: #B34DFD;
  border-color: #E6B3FE;
  background-color: #F4DCFF;
}
.detail-right .detail-badge.green {
  color: #21725E;
  border-color: #B5D0C9;
  background-color: #E7FAF5;
}
.detail-right .detail-badge.blue {
  color: #0023DD;
  border-color: #AAB6F4;
  background-color: #EBEEFF;
}
.detail-right .detail-badge.orange {
  color: #F8694F;
  border-color: #FFB6A9;
  background-color: #FFE4DF;
}
.detail-right .title {
  color: #111;
  font-size: 26px;
  font-weight: 600;
}
.detail-right .text {
  color: rgba(51, 51, 51, 0.75);
  font-size: 18px;
  font-weight: 400;
}
.detail-right .kupon-kodu-al {
  color: #FCFAF4;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #F8694F;
  padding: 15px 25px;
  border: none;
}

.detail-title {
  color: #111;
  font-size: 26px;
  font-weight: 600;
}

.detail-link {
  color: #111;
  font-size: 18px;
  font-weight: 500;
}

.blog-title {
  color: #333;
  text-align: center;
  font-size: 44px;
  font-weight: 600;
}

.blog-text {
  color: #C7C7C7;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.blog-card .image-box {
  width: 100%;
  border-radius: 3px;
  height: 250px;
}
.blog-card .image-box img {
  height: 100%;
  width: 100%;
  border-radius: 3px;
  max-width: 100%;
  object-fit: cover;
}
.blog-card .title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 54px;
}
.blog-card .text {
  color: rgba(51, 51, 51, 0.75);
  font-size: 16px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
}
.blog-card .blog-card-link {
  color: #F8694F;
  font-size: 16px;
  font-weight: 500;
}

.blog-detail-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-detail-page .image-box {
  border-radius: 3px;
  width: 100%;
}
.blog-detail-page .image-box img {
  width: 100%;
  max-width: 100%;
  border-radius: 3px;
}
.blog-detail-page .title {
  color: #333;
  font-size: 30px;
  font-weight: 600;
}
.blog-detail-page .text {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
}
.blog-detail-page .sonraki-blog {
  color: #F8694F;
  font-size: 16px;
  font-weight: 500;
}

.nedir-page .image-box {
  width: 100%;
}
.nedir-page .image-box img {
  width: 100%;
  max-width: 100%;
}
.nedir-page .left-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.nedir-page .left-section .section-one {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.nedir-page .left-section .section-one .title {
  color: #111;
  font-size: 26px;
  font-weight: 600;
}
.nedir-page .left-section .section-one .text {
  color: rgba(51, 51, 51, 0.75);
  font-size: 18px;
  font-weight: 400;
}
.nedir-page .left-section .section-two {
  display: flex;
  justify-content: space-between;
}
.nedir-page .left-section .section-two .sm-title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
}
.nedir-page .left-section .section-two .nedir-card {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nedir-page .left-section .section-two .nedir-card .name {
  color: #F8694F;
  font-size: 18px;
  font-weight: 500;
}

.marka-title-two {
  color: #333;
  font-size: 26px;
  font-weight: 500;
}

.marka-info-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.marka-info-card .title {
  color: #111;
  font-size: 20px;
  font-weight: 600;
}
.marka-info-card .text {
  color: rgba(51, 51, 51, 0.75);
  font-size: 16px;
  font-weight: 400;
}

.is-ortaklari-section {
  display: flex;
  align-items: center;
  padding: 60px 0 60px 50px;
  border-radius: 5px;
  background: #333;
  gap: 150px;
}
.is-ortaklari-section .left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  height: 100%;
  justify-content: center;
}
.is-ortaklari-section .left .title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.is-ortaklari-section .left .text {
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
}
.is-ortaklari-section .right {
  flex: 1;
}

.kampanya-page .blog-text {
  color: rgba(51, 51, 51, 0.75);
}

.kampanya-page-line {
  border-bottom: 1px solid #C7C7C7;
}

.left-sidebar.kampanya-page {
  padding: 40px;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
}
.left-sidebar.kampanya-page .sidebar-card {
  width: 100%;
}

.cat-card-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cat-card-div .cat-card {
  padding: 10px 30px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
}
.cat-card-div .cat-card.purple {
  color: #B34DFD;
  border-color: #B34DFD;
  background-color: #F4DCFF;
}
.cat-card-div .cat-card.green {
  color: #21725E;
  border-color: #21725E;
  background-color: #E7FAF5;
}
.cat-card-div .cat-card.blue {
  color: #0023DD;
  border-color: #0023DD;
  background-color: #EBEEFF;
}
.cat-card-div .cat-card.orange {
  color: #F8694F;
  border-color: #F8694F;
  background-color: #FFE4DF;
}

.category-page-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.category-page-left .text-lg {
  color: #333;
  font-size: 26px;
  font-weight: 400;
}
.category-page-left .text-lg span {
  font-weight: 600;
}
.category-page-left .category-tip-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
}
.category-page-left .category-tip-card .head {
  border-bottom: 1px solid #F8694F;
  padding-bottom: 20px;
}
.category-page-left .category-tip-card .head .number {
  color: #333;
  font-weight: 600;
  font-size: 30px;
}
.category-page-left .category-tip-card .tip-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.category-page-left .category-tip-card .tip-body .title {
  color: #333;
  font-size: 28px;
  font-weight: 600;
}
.category-page-left .category-tip-card .tip-body .sm-text {
  color: rgba(51, 51, 51, 0.75);
  font-size: 18px;
  font-weight: 300;
}

.category-right-img {
  width: 100%;
}
.category-right-img img {
  width: 100%;
}

.cat-card-two {
  padding: 10px 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border-radius: 3px;
  background: #333;
}

.mobil-filtre-button .offcanvas-start {
  width: 100%;
}

.filtreleme-button {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  border-radius: 3px;
  border: none;
}

.contact-page {
  padding: 130px 0;
  background-color: #FEF0ED;
}
.contact-page .contact-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-page .contact-left .title {
  color: #F8694F;
  font-size: 44px;
  font-weight: 600;
}
.contact-page .contact-left .text {
  color: #333;
  font-size: 20px;
  font-weight: 500;
}
.contact-page .contact-left .or-text {
  color: #F8694F;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
}

.contact-form-box {
  padding: 60px 60px;
  border-radius: 16px;
  border: 1px solid #F8694F;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: -90%;
}
.contact-form-box .title {
  color: #333;
  font-size: 32px;
  font-weight: 600;
}
.contact-form-box .contact-input {
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid #000;
  width: 100% !important;
  color: rgba(51, 51, 51, 0.3);
  font-weight: 500;
  font-size: 20px;
}
.contact-form-box .contact-input::placeholder {
  font-weight: 500;
  color: rgba(51, 51, 51, 0.3);
}
.contact-form-box .contact-input:focus {
  outline: none;
}
.contact-form-box .iti--allow-dropdown .iti__flag-container, .contact-form-box .iti--show-selected-dial-code .iti__flag-container {
  padding-bottom: 30px;
}
.contact-form-box .iti {
  width: 100%;
}
.contact-form-box .gonder-button {
  color: #FCFAF4;
  font-size: 18px;
  font-weight: 500;
  background-color: #F8694F;
  border-radius: 35px;
  padding: 12px 60px;
  border: none;
}

.brand-section.contact {
  margin-top: 29%;
}

.sss-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: -90%;
}
.sss-accordion .accordion-item {
  border-radius: 16px;
  border: 1px solid #F8694F;
  background: #FFF;
}
.sss-accordion .accordion-item .accordion-button {
  box-shadow: none;
  border-radius: 16px !important;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  padding: 25px 40px !important;
}
.sss-accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.sss-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #fff;
}
.sss-accordion .accordion-item .accordion-body {
  padding: 25px 40px !important;
}
.sss-accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F8694F' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}
.sss-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F8694F' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z'/%3E%3C/svg%3E");
}

.marq-slide {
  overflow: hidden;
}

.is-ortaklari-section .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #E7E7E7;
}
.footer-bottom p {
  font-size: 18px;
  font-weight: 500;
}
.footer-bottom p span {
  color: #F8694F;
}

@media (max-width: 990px) {
  .is-ortaklari-section .right {
    display: none;
  }
  .marq-slide {
    overflow: auto;
    width: 100%;
    max-width: 100%;
  }
  .category-page-left .text-lg {
    font-size: 20px;
  }
  .cat-card-two {
    padding: 10px 25px;
    font-size: 20px;
  }
  .cat-card-div {
    gap: 15px;
  }
  .blog-title {
    font-size: 30px;
  }
  .blog-text {
    font-size: 18px;
  }
  .blog-card .title {
    height: unset;
  }
  .blog-card .text {
    height: unset;
  }
  .blog-card .image-box {
    height: 230px;
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .mobile-header-items {
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid rgb(222, 227, 235);
    padding: 10px 0;
  }
  .mobile-header {
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  }
  .mobile-header .offcanvas-body {
    padding: 0 1rem;
  }
  .mobile-header .offcanvas-title {
    color: #444;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .mobile-header .logo {
    width: 160px;
  }
  .mobile-header .logo img {
    width: 100%;
  }
  .mobile-header .offcanvas-end {
    width: 80%;
  }
  .mobile-header .bars-button {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .orange-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .main-section-bottom .content .title-card-badge {
    padding: 15px 20px;
    text-align: center;
    width: 100%;
    font-size: 20px;
  }
  .discount-card {
    display: none;
  }
  .mt-100 {
    margin-top: 50px;
  }
  .mainpage-section .center-content {
    width: unset;
    max-width: unset;
  }
  .mainpage-section .title {
    font-size: 36px;
    text-align: center;
  }
  .mainpage-section .text {
    font-size: 16px;
  }
  .none-mobile {
    display: none !important;
  }
  .brand-card .text {
    font-size: 14px;
  }
  .main-section-one {
    padding: 50px 0;
  }
  .main-section-one .title {
    font-size: 32px;
  }
  .main-section-one .text {
    font-size: 16px;
  }
  .mt-80 {
    margin-top: 50px;
  }
  .info-card {
    padding: 30px 20px;
  }
  .main-title {
    font-size: 32px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mt-150 {
    margin-top: 70px;
  }
  .tumunu-incele {
    padding: 12px 50px;
    font-size: 16px;
  }
  .main-section-bottom .content .bottom {
    width: unset;
    max-width: unset;
  }
  .main-section-bottom .content .bottom .text {
    font-size: 18px;
  }
  .main-section-bottom .content .bottom .title {
    font-size: 18px;
  }
  footer {
    padding: 30px 0;
  }
  footer .footer-left {
    width: 100%;
    max-width: 100%;
    gap: 25px;
    margin-bottom: 20px;
  }
  footer .footer-logo {
    width: 250px;
  }
  footer .footer-left .footer-text {
    font-size: 18px;
  }
  .footer-line {
    display: none;
  }
  footer .footer-right .footer-items {
    font-size: 16px;
  }
  footer .footer-right .footer-items-link {
    font-size: 16px;
  }
  .detail-left-card {
    gap: 20px;
  }
  .left-sidebar .sidebar-card {
    width: 100%;
  }
  .left-sidebar {
    gap: 10px;
  }
  .detail-right .title {
    font-size: 22px;
  }
  .detail-right .text {
    font-size: 16px;
  }
  .detail-right .kupon-kodu-al {
    font-size: 16px;
    padding: 10px 25px;
  }
  .detail-title {
    font-size: 22px;
  }
  .detail-link {
    font-size: 16px;
  }
  .nedir-page .left-section .section-one .text {
    font-size: 16px;
  }
  .nedir-page .left-section .section-two {
    flex-wrap: wrap;
    gap: 15px;
  }
  .nedir-page .left-section {
    gap: 25px;
  }
  .is-ortaklari-section {
    padding: 40px 20px;
  }
  .mobil-15 {
    margin-top: 15px;
  }
  .brand-section.contact {
    margin-top: 50px !important;
  }
  .sss-accordion {
    margin-bottom: 0;
  }
  .contact-page {
    padding: 70px 0;
  }
  .contact-page .contact-left .title {
    font-size: 34px;
  }
  .contact-page .contact-left .text {
    font-size: 18px;
  }
  .sss-accordion .accordion-item .accordion-button {
    padding: 20px 30px !important;
    font-size: 18px !important;
  }
  .sss-accordion .accordion-item .accordion-body {
    padding: 20px 30px !important;
  }
  .contact-form-box {
    padding: 30px;
    margin-bottom: 0;
  }
  .contact-form-box .title {
    font-size: 28px;
  }
  .contact-form-box .contact-input {
    padding-bottom: 10px;
    font-size: 18px;
  }
}