@charset "UTF-8";
:root {
  --siyah: #000000;
  --kirmizi: #e1261c;
  --bgkirmizi: #e1261c;
  --rgbk: 225,38,28;
  --rgbm: 33,57,113;
  --mavi: #213971;
  --bgmavi: #213971;
  --kbeyaz: #ffffff;
  --mbeyaz: #ffffff;
  --gradient: linear-gradient(-90deg, rgb(var(--rgbk)) 0%, rgba(var(--rgbk), 0) 75.5%);
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--siyah);
  background: #fff;
}

input,
textarea,
select {
  font-family: "Roboto", sans-serif;
}

select {
  background: #fff;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bg {
  background-position: center center !important;
  background-attachment: scroll !important;
  background-size: cover !important;
}

svg {
  width: 1em;
  height: 1em;
  display: block;
}

.header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 999;
}

.headeric {
  width: 100%;
  height: 106px;
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .headeric {
    height: 90px;
  }
}
@media (max-width: 992px) {
  .headeric {
    height: 80px;
  }
}

.logo {
  max-width: 220px;
  max-height: 90px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .logo {
    max-width: 150px;
    max-height: 70px;
  }
}
.logo a {
  width: 100%;
  height: 100%;
}
.logo a img {
  width: 100%;
  height: 100%;
  display: block;
}

div.ustmenu {
  margin-left: auto;
  height: 100%;
}
@media (max-width: 992px) {
  div.ustmenu {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    height: 100%;
    width: 200px;
    z-index: 999;
    overflow: auto;
    padding: 10px 0 20px;
    transform: translateX(-300px);
    transition: 500ms transform;
  }
  div.ustmenu.umaktif {
    transform: translateX(0);
  }
}
div.ustmenu ul li a[href="#"] {
  pointer-events: none;
}
div.ustmenu ul {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  div.ustmenu ul {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
}
div.ustmenu ul li {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--siyah);
  height: 100%;
  white-space: nowrap;
  padding: 0 20px;
  cursor: pointer;
}
@media (max-width: 1400px) {
  div.ustmenu ul li {
    padding: 0 13px;
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  div.ustmenu ul li {
    padding: 0 10px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  div.ustmenu ul li {
    padding: 0;
    width: 100%;
    height: auto;
    white-space: normal;
  }
}
div.ustmenu ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--siyah);
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 992px) {
  div.ustmenu ul li a {
    padding: 10px 20px;
    width: 100%;
    height: auto;
  }
}
div.ustmenu ul li a::before {
  content: "";
  width: 0;
  height: 5px;
  background: var(--kirmizi);
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: 27px;
  transition: 300ms width;
}
@media (max-width: 992px) {
  div.ustmenu ul li a::before {
    bottom: auto;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px 0 0 3px;
  }
}
div.ustmenu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bgkirmizi);
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  transition: 400ms max-height, 400ms padding;
  max-height: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  div.ustmenu ul li ul {
    position: relative;
    top: 0;
    max-height: none;
    padding: 10px 0;
  }
}
div.ustmenu ul li ul li {
  padding: 0;
  height: auto;
  width: 100%;
}
div.ustmenu ul li ul li a {
  width: 100%;
  color: var(--kbeyaz);
  position: relative;
  padding: 8px 60px 8px 24px;
  height: auto;
  transition: 300ms padding;
  display: block;
}
@media (max-width: 992px) {
  div.ustmenu ul li ul li a {
    font-size: 13px;
    padding: 7px 20px;
  }
}
div.ustmenu ul li ul li a::before {
  display: none;
}
div.ustmenu ul li ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 5px;
  border-radius: 0 3px 3px 0;
  transform: translateY(-50%);
  background: var(--kbeyaz);
  transition: 300ms width;
}
@media (max-width: 992px) {
  div.ustmenu ul li ul li a::after {
    display: none;
  }
}
div.ustmenu ul li ul li:hover a {
  padding-left: 35px;
}
@media (max-width: 992px) {
  div.ustmenu ul li ul li:hover a {
    padding-left: 20px;
    font-size: 13px;
  }
}
div.ustmenu ul li ul li:hover a::after {
  width: 26px;
}
@media (max-width: 992px) {
  div.ustmenu ul li ul li:hover a::after {
    width: 20px;
  }
}
div.ustmenu ul li:hover a::before {
  width: 39px;
}
div.ustmenu ul li:hover ul {
  max-height: 500px;
  padding: 20px 0;
}
@media (max-width: 992px) {
  div.ustmenu ul li:hover ul {
    padding: 10px 0;
  }
}

.mgolge {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}

.dil {
  margin-left: 13px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .dil {
    margin-left: 8px;
  }
}
@media (max-width: 992px) {
  .dil {
    margin-left: auto;
  }
}
.dil span {
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--mavi);
}
@media (max-width: 1200px) {
  .dil span {
    padding: 8px 5px 8px 8px;
  }
}
.dil span em {
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
}
.dil span svg {
  transform: rotate(90deg);
  margin-left: 6px;
  font-style: 18px;
}
.dil ul {
  position: absolute;
  top: 100%;
  background: var(--bgmavi);
  width: 100%;
  padding: 5px 0;
  display: none;
}
.dil ul li a {
  padding: 3px 8px 3px 12px;
  color: var(--mbeyaz);
  display: block;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: 300ms padding;
}
.dil ul li a::before {
  content: "";
  width: 0;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: var(--mbeyaz);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms width;
}
.dil ul li a:hover {
  padding-left: 17px;
}
.dil ul li a:hover::before {
  width: 10px;
}

.mac {
  width: 45px;
  height: 45px;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  display: none;
}
@media (max-width: 992px) {
  .mac {
    display: flex;
  }
}
.mac em {
  width: 25px;
  height: 3px;
  background: var(--siyah);
  margin: 2px 0;
}

.headeralt {
  width: 100%;
  background: var(--bgmavi);
  position: relative;
  z-index: 1;
}
.headeralt::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--gradient);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.headeraltic {
  width: 100%;
  height: 53px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .headeraltic {
    height: 45px;
  }
}
@media (max-width: 992px) {
  .headeraltic {
    white-space: nowrap;
    overflow: auto;
  }
}
@media (max-width: 576px) {
  .headeraltic::-webkit-scrollbar {
    appearance: none;
  }
  .headeraltic::-webkit-scrollbar:vertical {
    width: 0;
  }
  .headeraltic::-webkit-scrollbar:horizontal {
    height: 0;
  }
}

.hiletisim {
  display: flex;
  height: 100%;
  align-items: center;
}
.hiletisim span {
  display: flex;
  align-items: center;
  margin-right: 33px;
}
@media (max-width: 1200px) {
  .hiletisim span {
    margin-right: 20px;
  }
}
.hiletisim span svg {
  font-size: 20px;
  color: var(--mbeyaz);
  margin-right: 14px;
}
@media (max-width: 1200px) {
  .hiletisim span svg {
    font-size: 16px;
    margin-right: 10px;
  }
}
.hiletisim span a {
  font-size: 16px;
  font-weight: 500;
  color: var(--mbeyaz);
}
@media (max-width: 1200px) {
  .hiletisim span a {
    font-size: 14px;
  }
}
.hiletisim span a::after {
  content: "/";
  font-size: 16px;
  font-weight: 500;
  color: var(--mbeyaz);
  margin: 0 13px;
}
.hiletisim span a:last-child::after {
  display: none;
}

.hmedia {
  margin-left: auto;
  display: flex;
  height: 100%;
  align-items: center;
}
.hmedia::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #fff;
  opacity: 0.3;
  margin-right: 30px;
  transform: skewX(-23deg);
}
@media (max-width: 992px) {
  .hmedia::before {
    width: 10px;
    margin-left: 10px;
  }
}
.hmedia span {
  font-size: 14px;
  font-weight: 700;
  color: var(--mbeyaz);
  margin-right: 14px;
}
@media (max-width: 1200px) {
  .hmedia span {
    font-size: 12px;
  }
}
.hmedia a {
  width: 39px;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  color: var(--mbeyaz);
  margin-left: 5px;
}
.hmedia a svg path {
  fill: var(--mbeyaz);
}
@media (max-width: 1200px) {
  .hmedia a {
    width: 35px;
  }
}
.hmedia a svg {
  font-size: 22px;
}
@media (max-width: 1200px) {
  .hmedia a svg {
    font-size: 20px;
  }
}
.hmedia a::before {
  content: attr(data-title);
  background: var(--bgmavi);
  height: 25px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--mbeyaz);
  position: absolute;
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  transition: 300ms opacity, 300ms top;
  opacity: 0;
}
@media (max-width: 992px) {
  .hmedia a::before {
    display: none;
  }
}
.hmedia a::after {
  content: "";
  border: 6px solid transparent;
  border-bottom: 6px solid var(--bgmavi);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 105%;
  transition: 300ms opacity, 300ms top;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .hmedia a::after {
    display: none;
  }
}
.hmedia a:hover::before {
  opacity: 1;
  top: 115%;
}
.hmedia a:hover::after {
  opacity: 1;
  top: 95%;
}

.manset {
  width: 100%;
  padding-bottom: 37.2916%;
  display: flex;
  position: relative;
}
@media (max-width: 992px) {
  .manset {
    padding: 0;
    flex-wrap: wrap;
  }
}

.mansol {
  width: 69%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 992px) {
  .mansol {
    position: relative;
    width: 100%;
    height: 350px;
  }
}
@media (max-width: 576px) {
  .mansol {
    height: 250px;
  }
}

.anaslider {
  height: 100%;
  overflow: hidden;
}
.anaslider .swiper-wrapper {
  height: 100%;
}

.sic {
  height: 100%;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  padding-left: 90px;
}
@media (max-width: 576px) {
  .sic {
    padding-left: 40px;
  }
}
.sic::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.sic .stitle {
  color: #fff;
  font-size: 40px;
  line-height: 59px;
  font-weight: 500;
  max-width: 540px;
  display: flex;
  margin-top: 90px;
  opacity: 0;
  transition: 1000ms opacity, 1000ms margin-top;
}
@media (max-width: 1400px) {
  .sic .stitle {
    font-size: 30px;
    line-height: 49px;
  }
}
@media (max-width: 992px) {
  .sic .stitle {
    font-size: 24px;
    line-height: 34px;
    max-width: 450px;
  }
}
@media (max-width: 576px) {
  .sic .stitle {
    font-size: 20px;
    margin-top: 50px;
    line-height: 30px;
    padding-right: 30px;
  }
}
.sic .stitle::before {
  content: "";
  width: 39px;
  height: 5px;
  background: var(--kirmizi);
  margin-right: 16px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 25px;
}
@media (max-width: 992px) {
  .sic .stitle::before {
    margin-top: 14px;
    width: 30px;
  }
}
@media (max-width: 576px) {
  .sic .stitle::before {
    margin-top: 12px;
    width: 20px;
    margin-right: 10px;
  }
}
.sic.swiper-slide-active .stitle {
  opacity: 1;
  margin-top: 0;
  transition-delay: 500ms;
}

.asi {
  font-size: 80px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 300ms transform;
}
@media (max-width: 1400px) {
  .asi {
    font-size: 70px;
  }
}
@media (max-width: 992px) {
  .asi {
    font-size: 50px;
  }
}
.asi:hover {
  transform: translateY(-50%) scale(0.9);
}

.asg {
  font-size: 80px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%) rotate(-180deg);
  cursor: pointer;
  transition: 300ms transform;
}
@media (max-width: 1400px) {
  .asg {
    font-size: 70px;
  }
}
@media (max-width: 992px) {
  .asg {
    font-size: 50px;
  }
}
.asg:hover {
  transform: translateY(-50%) rotate(-180deg) scale(0.9);
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 32px;
}
@media (max-width: 1400px) {
  .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 25px;
  }
}
@media (max-width: 576px) {
  .swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 15px;
  }
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 0.5;
}
@media (max-width: 1400px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--kirmizi);
}

.mansag {
  width: 31%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 992px) {
  .mansag {
    position: relative;
    width: 100%;
    display: flex;
  }
}
@media (max-width: 576px) {
  .mansag {
    flex-direction: column;
  }
}

.mban {
  height: 50%;
  position: relative;
  width: 100%;
  z-index: 0;
  display: flex;
  padding: 35px 75px 35px 35px;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .mban {
    padding: 20px 60px 25px 20px;
  }
}
@media (max-width: 992px) {
  .mban {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .mban {
    height: 200px;
  }
}
.mban::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  transition: 300ms opacity;
  opacity: 0.8;
}
.mban .mbtitle {
  display: flex;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 1400px) {
  .mban .mbtitle {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .mban .mbtitle {
    font-size: 20px;
  }
}
.mban .mbtitle::before {
  content: "";
  width: 39px;
  height: 5px;
  background: var(--kirmizi);
  flex-shrink: 0;
  margin-right: 16px;
  margin-top: 15px;
}
@media (max-width: 1400px) {
  .mban .mbtitle::before {
    width: 25px;
    margin-top: 12px;
  }
}
@media (max-width: 1200px) {
  .mban .mbtitle::before {
    width: 20px;
    margin-top: 9px;
  }
}
.mban .mbtitle a {
  color: #fff;
}
.mban .mbtitle a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.mban:hover::before {
  opacity: 0.9;
}

.ok {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .ok {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 1200px) {
  .ok {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
}
.ok svg {
  font-size: 32px;
}

.duyuru {
  width: 100%;
  padding: 60px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .duyuru {
    padding: 40px 0 0;
  }
}
@media (max-width: 992px) {
  .duyuru {
    padding: 30px 0 0;
  }
}
.duyuru a {
  display: flex;
  align-items: center;
  max-width: 750px;
  font-size: 21px;
  font-weight: 500;
  color: var(--siyah);
  text-align: center;
}
@media (max-width: 992px) {
  .duyuru a {
    font-size: 16px;
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .duyuru a {
    padding: 0 15px;
  }
}
.duyuru a b {
  font-weight: 500;
}
.duyuru a span {
  background: var(--bgkirmizi);
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: 300ms left;
  position: relative;
  left: 0;
  flex-shrink: 0;
}
.duyuru a svg {
  color: var(--kbeyaz);
  font-size: 26px;
}
.duyuru a:hover span {
  left: 5px;
}

.alan {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .alan {
    margin-bottom: 50px;
  }
}

.maddeler {
  padding: 50px 0 0;
  margin-bottom: 70px;
  margin-top: 60px;
}
@media (max-width: 1400px) {
  .maddeler {
    padding-bottom: 0;
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .maddeler {
    margin-top: 30px;
  }
}

.daire {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}
@media (max-width: 576px) {
  .daire {
    display: none;
  }
}
.daire span {
  position: absolute;
  overflow: hidden;
}
.daire span img {
  width: 536px;
  height: 536px;
  position: absolute;
}
@media (max-width: 1400px) {
  .daire span img {
    width: 350px;
    height: 350px;
  }
}
.daire .daire-sol-yarim {
  top: 0;
  left: 0;
  width: 230px;
  height: 536px;
}
@media (max-width: 1400px) {
  .daire .daire-sol-yarim {
    width: 150px;
    height: 350px;
  }
}
.daire .daire-sol-yarim img {
  right: 0;
  top: 0;
}
.daire .daire-sag-yarim {
  top: 0;
  right: 0;
  width: 238px;
  height: 536px;
}
@media (max-width: 1400px) {
  .daire .daire-sag-yarim {
    width: 150px;
    height: 350px;
  }
}
.daire .daire-sag-yarim img {
  left: 0;
  top: 0;
}
.daire .daire-sol-yarim-buyuk {
  top: 0;
  left: 0;
  width: 280px;
  height: 666px;
}
@media (max-width: 1400px) {
  .daire .daire-sol-yarim-buyuk {
    width: 150px;
    height: 400px;
  }
}
.daire .daire-sol-yarim-buyuk img {
  right: 0;
  top: 0;
  width: 666px;
  height: 666px;
}
@media (max-width: 1400px) {
  .daire .daire-sol-yarim-buyuk img {
    width: 400px;
    height: 400px;
  }
}
.daire .madde-cember {
  top: -450px;
}
@media (max-width: 1400px) {
  .daire .madde-cember {
    top: -300px;
  }
}
.daire .hakkimizda-cember {
  transform: translateY(-50%);
}
.daire .filo-cember {
  top: -360px;
}
@media (max-width: 1400px) {
  .daire .filo-cember {
    top: -280px;
  }
}
.daire .b3-cember {
  top: -270px;
}
@media (max-width: 1400px) {
  .daire .b3-cember {
    top: -175px;
  }
}
.daire .yardim-cember {
  top: -270px;
}
@media (max-width: 1400px) {
  .daire .yardim-cember {
    top: -170px;
  }
}
.daire .footer-cember {
  top: -330px;
}
@media (max-width: 1400px) {
  .daire .footer-cember {
    top: -230px;
  }
}
.daire .icust-cember {
  top: -260px;
}
@media (max-width: 1400px) {
  .daire .icust-cember {
    top: -200px;
  }
}

.maddeler .madd {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .maddeler .madd {
    margin-bottom: 60px;
  }
}

.madde {
  width: 100%;
  height: 100%;
  border: 2px solid #dadada;
  box-shadow: 0px 6px 3px -4px rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 57px 20px 35px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0;
  transition: 300ms top;
}
@media (max-width: 1400px) {
  .madde {
    padding: 57px 20px 35px 30px;
  }
}
.madde span {
  position: absolute;
  left: 25px;
  top: -50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  margin-bottom: 21px;
}
@media (max-width: 1400px) {
  .madde span {
    top: -40px;
  }
}
.madde span svg {
  font-size: 83px;
  transition: 300ms transform;
}
@media (max-width: 1400px) {
  .madde span svg {
    font-size: 75px;
  }
}
.madde span svg path {
  fill: var(--kirmizi) !important;
}
.madde .mtitle {
  font-size: 30px;
  line-height: 38px;
  color: var(--mavi);
  margin-bottom: 16px;
  letter-spacing: -0.05em;
}
@media (max-width: 1400px) {
  .madde .mtitle {
    font-size: 24px;
    line-height: 32px;
  }
}
.madde p {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 27px;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .madde p {
    font-size: 16px;
    line-height: 25px;
  }
}
.madde:hover {
  top: -10px;
}
.madde:hover span svg {
  transform: rotate(-15deg);
}

.hakkimizda {
  padding: 90px 0;
}
@media (max-width: 576px) {
  .hakkimizda {
    padding: 60px 0;
    margin-top: -40px;
  }
}
.hakkimizda .hakkimizdaic {
  width: 100%;
  max-width: 860px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic {
    flex-direction: column;
  }
}
.hakkimizda .hakkimizdaic .htab {
  flex-shrink: 0;
  width: 170px;
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htab {
    width: 100%;
    overflow: auto;
    display: flex;
    z-index: 2;
  }
  .hakkimizda .hakkimizdaic .htab::-webkit-scrollbar {
    appearance: none;
  }
  .hakkimizda .hakkimizdaic .htab::-webkit-scrollbar:vertical {
    width: 0;
  }
  .hakkimizda .hakkimizdaic .htab::-webkit-scrollbar:horizontal {
    height: 0;
  }
}
.hakkimizda .hakkimizdaic .htab li {
  padding-right: 8px;
  cursor: pointer;
}
.hakkimizda .hakkimizdaic .htab li span {
  padding: 14px 36px 14px 23px;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--mavi);
  position: relative;
  z-index: 0;
}
@media (max-width: 992px) {
  .hakkimizda .hakkimizdaic .htab li span {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htab li span {
    background: #fff;
    padding: 14px 20px 14px;
  }
}
.hakkimizda .hakkimizdaic .htab li:hover span {
  background: #E5E5E5;
}
.hakkimizda .hakkimizdaic .htab li.haktif {
  padding-right: 0;
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htab li.haktif {
    padding-right: 8px;
  }
}
.hakkimizda .hakkimizdaic .htab li.haktif span {
  background: var(--bgmavi);
  color: var(--mbeyaz);
  padding-left: 32px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
}
.hakkimizda .hakkimizdaic .htab li.haktif span::before {
  content: "";
  background: var(--gradient);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hakkimizda .hakkimizdaic .htab li.haktif span::after {
  content: "";
  width: 20px;
  height: 8px;
  background: var(--mbeyaz);
  border-radius: 0 4px 4px 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hakkimizda .hakkimizdaic .htic {
  width: 100%;
  display: none;
}
.hakkimizda .hakkimizdaic .htic.hgoster {
  display: block;
}
.hakkimizda .hakkimizdaic .htic img {
  width: 60%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  object-fit: cover;
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic img {
    width: 100%;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik {
  background: var(--bgkirmizi);
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 67px;
  min-height: 350px;
}
@media (max-width: 1400px) {
  .hakkimizda .hakkimizdaic .htic .hticerik {
    padding: 50px;
  }
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic .hticerik {
    padding: 25px;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--kbeyaz);
  letter-spacing: -0.05em;
  margin-bottom: 5px;
}
@media (max-width: 1400px) {
  .hakkimizda .hakkimizdaic .htic .hticerik h3 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic .hticerik h3 {
    font-size: 18px;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--kbeyaz);
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1400px) {
  .hakkimizda .hakkimizdaic .htic .hticerik h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic .hticerik h2 {
    font-size: 24px;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik h2::after {
  content: "";
  width: 39px;
  height: 5px;
  margin: 22px 0 26px;
  background: var(--kbeyaz);
  border-radius: 3px;
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic .hticerik h2::after {
    margin: 13px 0 16px;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 24px;
  color: var(--kbeyaz);
  font-weight: 500;
}
@media (max-width: 1400px) {
  .hakkimizda .hakkimizdaic .htic .hticerik p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic .hticerik p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik p strong, .hakkimizda .hakkimizdaic .htic .hticerik p b {
  font-weight: 700;
}
.hakkimizda .hakkimizdaic .htic .hticerik a {
  padding: 0 40px;
  height: 46px;
  font-size: 16px;
  font-weight: 700;
  background: var(--kbeyaz);
  color: var(--bgkirmizi);
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  transition: 300ms padding;
}
@media (max-width: 576px) {
  .hakkimizda .hakkimizdaic .htic .hticerik a {
    height: 40px;
    padding: 0 30px;
    font-size: 14px;
  }
}
.hakkimizda .hakkimizdaic .htic .hticerik a::before {
  content: "";
  width: 20px;
  height: 8px;
  border-radius: 0 4px 4px 0;
  background: var(--bgkirmizi);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms width;
}
.hakkimizda .hakkimizdaic .htic .hticerik a:hover {
  padding: 0 30px 0 50px;
}
.hakkimizda .hakkimizdaic .htic .hticerik a:hover::before {
  width: 30px;
}

.baslik {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 43px;
}
@media (max-width: 1200px) {
  .baslik {
    margin-bottom: 30px;
  }
}
.baslik .btitle {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 500;
  color: var(--siyah);
}
@media (max-width: 1200px) {
  .baslik .btitle {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .baslik .btitle {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .baslik .btitle {
    font-size: 18px;
    flex: 1;
    align-items: flex-start;
  }
}
.baslik .btitle::before {
  content: "";
  width: 39px;
  height: 5px;
  background: var(--kirmizi);
  margin-right: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .baslik .btitle::before {
    width: 25px;
    margin-top: 7px;
  }
}
.baslik .tumu {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .baslik .tumu {
    white-space: nowrap;
  }
}
.baslik .tumu span {
  font-size: 16px;
  font-weight: 700;
  color: var(--siyah);
}
@media (max-width: 992px) {
  .baslik .tumu span {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .baslik .tumu span {
    display: none;
  }
}
.baslik .tumu em {
  margin-left: 11px;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms left;
  position: relative;
  left: 0;
}
.baslik .tumu em svg {
  font-size: 24px;
}
.baslik .tumu:hover em {
  left: 5px;
}
@media (max-width: 576px) {
  .baslik .tumu:hover em {
    left: 0;
  }
}

.filomuz {
  width: 100%;
  margin-bottom: 50px;
}

.filom {
  margin-bottom: 24px;
}

.filo {
  width: 100%;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  padding-bottom: 15px;
}
.filo .fresim {
  width: 100%;
  padding-bottom: 58.2547%;
  position: relative;
}
.filo .fresim::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  transition: 300ms opacity;
}
.filo .fresim img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.filo .fialt {
  background: var(--bgmavi);
  width: calc(100% - 30px);
  margin: -15px 15px 0;
  position: relative;
  z-index: 1;
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .filo .fialt {
    height: 90px;
  }
}
.filo .fialt::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--gradient);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: rotate(-180deg);
}
.filo .fialt .ftitle {
  font-size: 21px;
  font-weight: 700;
  color: var(--mbeyaz);
  margin-bottom: 8px;
  text-align: center;
  line-height: 25px;
  max-height: 50px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .filo .fialt .ftitle {
    font-size: 18px;
  }
}
.filo .fialt .ftitle a {
  color: var(--mbeyaz);
}
.filo .fialt .ftitle a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.filo .fialt p {
  font-size: 16px;
  font-weight: 400;
  color: var(--mbeyaz);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  text-align: center;
  padding: 0 15px;
}
@media (max-width: 1200px) {
  .filo .fialt p {
    font-size: 14px;
  }
}
.filo:hover .fresim::before {
  opacity: 1;
}

.hizmetler {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.hizmet {
  width: 25%;
  padding-bottom: 28.75%;
  position: relative;
  transition: 100ms transform;
}
@media (max-width: 1200px) {
  .hizmet {
    width: 33.33333%;
    padding-bottom: 38.3333%;
  }
}
@media (max-width: 768px) {
  .hizmet {
    width: 50%;
    padding-bottom: 57.5%;
  }
}
@media (max-width: 576px) {
  .hizmet {
    width: 100%;
    padding-bottom: 115%;
  }
}
.hizmet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: 100ms transform;
}
.hizmet::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: 100ms transform;
  pointer-events: none;
}
.hizmet .hizmetic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.hizmet .hizmetic .htitle {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .hizmet .hizmetic .htitle {
    font-size: 16px;
  }
}
.hizmet:hover {
  transform: scale(1.05);
  box-shadow: 0px 9px 25px -1px rgba(0, 0, 0, 0.29);
  z-index: 10;
  transition: 300ms transform;
}
@media (max-width: 992px) {
  .hizmet:hover {
    transform: scale(1);
    box-shadow: 0 0 0 #000;
  }
}

.b3 {
  width: 100%;
  padding: 130px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .b3 {
    padding: 80px 0;
  }
}
@media (max-width: 992px) {
  .b3 {
    padding: 50px 0;
  }
}
.b3::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(49, 49, 49, 0.49);
  z-index: -1;
}
.b3 .b3ic {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .b3 .b3ic {
    flex-direction: column;
  }
}
.b3 .b3ic .b3sol {
  max-width: 520px;
}
@media (max-width: 1400px) {
  .b3 .b3ic .b3sol {
    max-width: 450px;
  }
}
@media (max-width: 992px) {
  .b3 .b3ic .b3sol {
    max-width: 400px;
  }
}
.b3 .b3ic .b3sol .b3title {
  font-size: 49px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 29px;
}
@media (max-width: 1400px) {
  .b3 .b3ic .b3sol .b3title {
    font-size: 42px;
  }
}
@media (max-width: 992px) {
  .b3 .b3ic .b3sol .b3title {
    font-size: 36px;
    margin-bottom: 15px;
  }
}
.b3 .b3ic .b3sol p {
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 700;
  opacity: 0.64;
}
@media (max-width: 1400px) {
  .b3 .b3ic .b3sol p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 992px) {
  .b3 .b3ic .b3sol p {
    font-size: 18px;
    line-height: 26px;
  }
}
.b3 .b3ic .b3sag {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .b3 .b3ic .b3sag {
    margin-top: 30px;
  }
}
.b3 .b3ic .b3sag a {
  width: 137px;
  height: 137px;
  border-radius: 100%;
  padding: 15px;
  background: rgba(var(--rgbk), 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms transform;
}
.b3 .b3ic .b3sag a span {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: var(--bgmavi);
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 63px;
  color: var(--mbeyaz);
}
.b3 .b3ic .b3sag a span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--gradient);
  transform: rotate(-180deg);
}
.b3 .b3ic .b3sag a:hover {
  transform: scale(1.05);
}

.markalar {
  width: 100%;
  position: relative;
}

.markaslider {
  width: 100%;
  overflow: hidden;
  padding-bottom: 8px;
}

.marka {
  width: 100%;
  height: 140px;
  background: #fff;
  border: 2px solid #DADADA;
  box-shadow: 0px 6px 3px -4px rgba(0, 0, 0, 0.25);
  transition: 300ms border;
}
.marka a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marka a img {
  max-width: 80%;
  max-height: 80%;
  display: block;
}
.marka:hover {
  border-color: #C0C0C0;
}

.msi {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 300ms transform;
  cursor: pointer;
}
@media (max-width: 576px) {
  .msi {
    right: -8px;
  }
}
.msi:hover {
  transform: translateY(-50%) scale(1.05);
}
.msi.swiper-button-disabled {
  transform: translateY(-50%) scale(0);
}

.msg {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  z-index: 2;
  transition: 300ms transform;
  cursor: pointer;
}
@media (max-width: 576px) {
  .msg {
    left: -8px;
  }
}
.msg:hover {
  transform: translateY(-50%) rotate(-180deg) scale(1.05);
}
.msg.swiper-button-disabled {
  transform: translateY(-50%) rotate(-180deg) scale(0);
}

.yardimlar {
  background: #EAEEF8;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 1400px) {
  .yardimlar {
    padding: 70px 0;
  }
}

.yardimic {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .yardimic {
    flex-direction: column;
  }
}

.ysol {
  max-width: 480px;
  width: 100%;
}
@media (max-width: 1400px) {
  .ysol {
    max-width: 360px;
  }
}
@media (max-width: 992px) {
  .ysol {
    max-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 0 40px;
  }
}
@media (max-width: 576px) {
  .ysol {
    padding: 0;
  }
}
.ysol span {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--kirmizi);
  margin-bottom: 10px;
}
@media (max-width: 1400px) {
  .ysol span {
    font-size: 20px;
    line-height: 30px;
  }
}
.ysol .ytitle {
  font-size: 49px;
  font-weight: 900;
  color: var(--mavi);
  margin-bottom: 21px;
}
@media (max-width: 1400px) {
  .ysol .ytitle {
    font-size: 36px;
  }
}
.ysol p {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: var(--siyah);
  margin-bottom: 33px;
}
@media (max-width: 1400px) {
  .ysol p {
    font-size: 18px;
    line-height: 25px;
  }
}

.ysag {
  flex: 1;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .ysag {
    flex: none;
    margin-left: 0;
    margin-top: 30px;
    width: 100%;
  }
}

.buton {
  padding: 0 40px;
  height: 46px;
  font-size: 16px;
  font-weight: 700;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: 300ms padding;
}
@media (max-width: 576px) {
  .buton {
    height: 40px;
    padding: 0 30px;
    font-size: 14px;
  }
}
.buton::before {
  content: "";
  width: 20px;
  height: 8px;
  border-radius: 0 4px 4px 0;
  background: var(--kbeyaz);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms width;
}
.buton:hover {
  padding: 0 30px 0 50px;
}
.buton:hover::before {
  width: 30px;
}

.sc {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  margin-bottom: 5px;
}
.sc .soru {
  width: 100%;
  padding: 15px 10px 15px 32px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--siyah);
  cursor: pointer;
  position: relative;
  transition: 300ms color;
}
@media (max-width: 1400px) {
  .sc .soru {
    font-size: 16px;
    padding: 12px 10px 12px 25px;
  }
}
.sc .soru::before {
  content: "";
  width: 0;
  height: 8px;
  background: var(--kirmizi);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 4px 4px 0;
  transition: 300ms width;
}
.sc .soru svg {
  margin-left: auto;
  color: #B9B9B9;
  font-size: 38px;
  transform: rotate(90deg);
  transition: 200ms transform, 200ms color;
}
@media (max-width: 1400px) {
  .sc .soru svg {
    font-size: 27px;
  }
}
.sc .soru:hover::before {
  width: 20px;
}
@media (max-width: 1400px) {
  .sc .soru:hover::before {
    width: 15px;
  }
}
.sc .soru.yaktif {
  color: var(--kirmizi);
}
.sc .soru.yaktif::before {
  width: 20px;
}
@media (max-width: 1400px) {
  .sc .soru.yaktif::before {
    width: 15px;
  }
}
.sc .soru.yaktif svg {
  transform: rotate(-90deg);
  color: var(--kirmizi);
}
.sc .cevap {
  width: 100%;
  margin-top: -12px;
  padding: 0 32px 15px;
  display: none;
}
@media (max-width: 1400px) {
  .sc .cevap {
    padding: 0 25px 5px;
    margin-top: -7px;
  }
}
.sc .cevap p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 15px;
}
@media (max-width: 1400px) {
  .sc .cevap p {
    font-size: 16px;
    line-height: 26px;
  }
}

.footer {
  width: 100%;
  padding: 44px 0 60px;
  background: #282828;
  position: relative;
}
@media (max-width: 992px) {
  .footer {
    padding: 30px 0;
  }
}

.footeric {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .footeric {
    flex-wrap: wrap;
  }
}
.footeric .finfo {
  width: 100%;
  max-width: 390px;
}
@media (max-width: 992px) {
  .footeric .finfo {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.footeric .finfo img {
  max-width: 180px;
  max-height: 90px;
  display: none;
  margin-bottom: 27px;
}
.footeric .finfo p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 17px;
  line-height: 24px;
}
@media (max-width: 1400px) {
  .footeric .finfo p {
    font-size: 14px;
  }
}
.footeric .fmenu {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .footeric .fmenu ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.footeric .fmenu ul li {
  margin-bottom: 17px;
  padding-right: 30px;
}
@media (max-width: 1400px) {
  .footeric .fmenu ul li {
    margin-bottom: 13px;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .footeric .fmenu ul li {
    width: 50%;
  }
}
.footeric .fmenu ul li a {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  opacity: 0.7;
  transition: 300ms opacity;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .footeric .fmenu ul li a {
    font-size: 13px;
  }
}
.footeric .fmenu ul li a:hover {
  opacity: 1;
}

.alt {
  width: 100%;
  background: #282828;
  padding: 23px 0 53px;
  border-top: 1px solid #515151;
}
.alt .altic {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .alt .altic {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.alt .altic p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 1400px) {
  .alt .altic p {
    font-size: 14px;
  }
}
.alt .altic a {
  margin-left: auto;
}
@media (max-width: 576px) {
  .alt .altic a {
    margin-left: 0;
    margin-top: 20px;
  }
}

.icust {
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--bgmavi);
}
.icust::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--gradient);
}

.icustic {
  width: 100%;
  display: flex;
  align-items: center;
}

.icustsol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.band {
  margin-top: 39px;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  overflow: hidden;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .band {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .band {
    max-height: 14px;
  }
}
.band li {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--mbeyaz);
  opacity: 0.5;
  text-transform: uppercase;
}
@media (max-width: 1400px) {
  .band li {
    font-size: 12px;
    font-weight: 500;
  }
}
.band li a {
  color: var(--mbeyaz);
}
.band li::after {
  content: "/";
  margin: 0 8px;
}
.band li:last-child::after {
  display: none;
}

.ictitle {
  font-size: 36px;
  font-weight: 500;
  color: var(--mbeyaz);
  padding-bottom: 44px;
  position: relative;
  display: inline-block;
}
@media (max-width: 1400px) {
  .ictitle {
    font-size: 30px;
    padding-bottom: 35px;
  }
}
@media (max-width: 576px) {
  .ictitle {
    font-size: 24px;
    padding-bottom: 30px;
  }
}
.ictitle::before {
  content: "";
  border: 19px solid transparent;
  border-bottom: 19px solid var(--mbeyaz);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 1400px) {
  .ictitle::before {
    border-width: 15px;
  }
}

.icustsag {
  margin-left: auto;
}

.geri {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
}
.geri span {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: 300ms background;
}
.geri svg {
  font-size: 22px;
  transform: rotate(-180deg);
  color: #fff;
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -11px;
  transition: 300ms left;
}
.geri:hover span {
  background: rgba(255, 255, 255, 0.2);
}
.geri:hover svg {
  left: -25px;
}

.icerikler {
  width: 100%;
  padding: 50px 0 150px;
  position: relative;
}
@media (max-width: 1400px) {
  .icerikler {
    padding: 50px 0 100px;
  }
}
@media (max-width: 576px) {
  .icerikler {
    padding: 30px 0 50px;
  }
}

.sayfalama {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1400px) {
  .sayfalama {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .sayfalama {
    margin-top: 0;
  }
}
.sayfalama .onceki a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E3E3E3;
  margin: 0 15px;
  border-radius: 100%;
  transition: 300ms transform;
}
.sayfalama .onceki a svg {
  font-size: 32px;
  transform: rotate(-180deg);
  color: #818181;
}
.sayfalama .onceki a:hover {
  transform: scale(0.95);
}
.sayfalama .sonraki a {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bgkirmizi);
  margin: 0 15px;
  border-radius: 100%;
  transition: 300ms transform;
}
.sayfalama .sonraki a svg {
  font-size: 42px;
  color: var(--kbeyaz);
}
.sayfalama .sonraki a:hover {
  transform: scale(0.95);
}

.icerikler .filomuz {
  margin-bottom: 20px;
}
.icerikler .hizmetler {
  padding-bottom: 20px;
}

.galeri {
  padding-bottom: 87%;
  position: relative;
  cursor: pointer;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .galeri {
    margin-bottom: 5px;
  }
}
.galeri::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--bgmavi);
  z-index: 1;
  opacity: 0;
  transition: 300ms opacity;
}
.galeri::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--gradient);
  z-index: 2;
  opacity: 0;
  transform: rotate(-180deg);
  transition: 300ms opacity;
}
.galeri em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-style: normal;
  padding: 9px;
  transition: 300ms opacity;
  opacity: 0;
}
.galeri em::before {
  content: "BÜYÜT";
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.galeri em::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.galeri img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.galeri:hover em {
  opacity: 1;
}
.galeri:hover::before {
  opacity: 0.65;
}
.galeri:hover::after {
  opacity: 0.65;
}

.ustresim {
  width: 100%;
  height: 400px;
}
@media (max-width: 1400px) {
  .ustresim {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .ustresim {
    height: 200px;
  }
}

.icsayfa {
  position: relative;
  width: 100%;
  padding-bottom: 150px;
}
@media (max-width: 1400px) {
  .icsayfa {
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .icsayfa {
    padding-bottom: 30px;
  }
}

.solmenu {
  margin-top: -100px;
  background: var(--bgkirmizi);
  padding: 30px 0;
}
@media (max-width: 992px) {
  .solmenu {
    display: none;
  }
}
.solmenu ul li {
  position: relative;
}
.solmenu ul li::before {
  content: "";
  width: 0;
  height: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--kbeyaz);
  transition: 300ms width;
  border-radius: 0 3px 3px 0;
}
.solmenu ul li a {
  padding: 15px 40px;
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--kbeyaz);
  text-transform: uppercase;
  transition: 300ms padding;
}
@media (max-width: 1400px) {
  .solmenu ul li a {
    font-size: 16px;
  }
}
.solmenu ul li:hover::before {
  width: 49px;
}
.solmenu ul li:hover a {
  padding-left: 60px;
}
.solmenu ul li.current-menu-item::before {
  width: 49px;
}
.solmenu ul li.current-menu-item a {
  padding-left: 60px;
}

.sayfaic {
  background: #fff;
  margin-top: -100px;
  padding: 40px;
  min-height: 400px;
}
@media (max-width: 576px) {
  .sayfaic {
    padding: 25px;
    margin-top: -50px;
  }
}

.tipo h1, .tipo h3, .tipo h2, .tipo h4, .tipo h5, .tipo h6 {
  font-weight: 700;
  color: var(--kirmizi);
  margin-bottom: 20px;
}
.tipo img {
  width: 100%;
  margin-bottom: 20px;
}
.tipo h1 {
  font-size: 36px;
}
@media (max-width: 1400px) {
  .tipo h1 {
    font-size: 30px;
  }
}
.tipo h2 {
  font-size: 30px;
}
@media (max-width: 1400px) {
  .tipo h2 {
    font-size: 24px;
  }
}
.tipo h3 {
  font-size: 24px;
}
@media (max-width: 1400px) {
  .tipo h3 {
    font-size: 20px;
  }
}
.tipo h4 {
  font-size: 20px;
}
@media (max-width: 1400px) {
  .tipo h4 {
    font-size: 18px;
  }
}
.tipo h5 {
  font-size: 18px;
}
@media (max-width: 1400px) {
  .tipo h5 {
    font-size: 16px;
  }
}
.tipo h6 {
  font-size: 16px;
}
@media (max-width: 1400px) {
  .tipo h6 {
    font-size: 14px;
  }
}
.tipo p {
  font-weight: 400;
  color: var(--siyah);
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1400px) {
  .tipo p {
    font-size: 16px;
    line-height: 24px;
  }
}
.tipo a {
  color: var(--kirmizi);
}
.tipo a:hover {
  text-decoration: underline;
}
.tipo ul, .tipo ol {
  margin-bottom: 20px;
  list-style-type: square;
  list-style-position: unset;
  padding-left: 25px;
}
.tipo ul li, .tipo ol li {
  font-weight: 400;
  color: var(--siyah);
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1400px) {
  .tipo ul li, .tipo ol li {
    font-size: 16px;
    line-height: 24px;
  }
}
.tipo ol {
  list-style-type: disc;
}
.tipo blockquote {
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  background: var(--bgkirmizi);
  color: var(--kbeyaz);
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .tipo blockquote {
    font-size: 16px;
  }
}

.ilginicekebilir-hizmet {
  margin-top: 50px;
}

.filodetay {
  width: 100%;
  padding: 30px 0 100px;
  position: relative;
}
@media (max-width: 1400px) {
  .filodetay {
    padding: 30px 0 70px;
  }
}
@media (max-width: 576px) {
  .filodetay {
    padding: 15px 0 0;
  }
}

.filoslider {
  width: 100%;
  position: relative;
}

.dsic {
  padding-bottom: 63.3867%;
  width: 100%;
  position: relative;
}
.dsic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}

.detayic {
  width: 100%;
}
@media (max-width: 992px) {
  .detayic {
    margin-top: 8px;
  }
}
.detayic .dust {
  width: 100%;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  padding: 20px;
}
@media (max-width: 1200px) {
  .detayic .dust {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .detayic .dust {
    flex-direction: row;
    justify-content: center;
  }
}
.detayic .dust .dfiyat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
@media (max-width: 1400px) {
  .detayic .dust .dfiyat {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .detayic .dust .dfiyat {
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .detayic .dust .dfiyat {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.detayic .dust .dfiyat del {
  font-size: 18px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .detayic .dust .dfiyat del {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .detayic .dust .dfiyat del {
    margin-right: 10px;
  }
}
.detayic .dust .dfiyat b {
  font-size: 25px;
  font-weight: 700;
  color: var(--mavi);
}
@media (max-width: 1400px) {
  .detayic .dust .dfiyat b {
    font-size: 22px;
  }
}
.detayic .dalt {
  width: 100%;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  margin-bottom: 1px;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1400px) {
  .detayic .dalt {
    padding: 20px;
  }
}
.detayic .dalt h2 {
  font-size: 23px;
  font-weight: 500;
  line-height: 32px;
  color: var(--siyah);
  margin-bottom: 11px;
}
@media (max-width: 1400px) {
  .detayic .dalt h2 {
    font-size: 21px;
    line-height: 30px;
  }
}
.detayic .dalt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--siyah);
  margin-bottom: 11px;
}
@media (max-width: 1400px) {
  .detayic .dalt p {
    font-size: 14px;
    line-height: 22px;
  }
}
.detayic ul li {
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  margin-bottom: 1px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .detayic ul li {
    padding: 11px 20px;
    font-size: 14px;
  }
}
.detayic ul li span {
  width: 50%;
}
.detayic ul li em {
  font-style: normal;
  margin-right: 10px;
}
.detayic ul li b {
  font-weight: 500;
}

.ilginicekebilir-filo {
  margin-top: 150px;
}
@media (max-width: 1400px) {
  .ilginicekebilir-filo {
    margin-top: 100px;
  }
}
@media (max-width: 576px) {
  .ilginicekebilir-filo {
    margin-top: 50px;
  }
}

.iletisim {
  width: 100%;
  padding: 70px 0 33px;
  position: relative;
}
@media (max-width: 992px) {
  .iletisim {
    padding: 40px 0 30px;
  }
}

.iadres {
  width: 100%;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .iadres {
    padding-top: 0;
  }
}
.iadres img {
  margin-bottom: 35px;
  max-width: 210px;
  max-height: 80px;
}
@media (max-width: 576px) {
  .iadres img {
    max-width: 150px;
  }
}
.iadres ul {
  position: relative;
  padding: 40px 40px 20px;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  width: 100%;
}
@media (max-width: 1200px) {
  .iadres ul {
    padding: 25px 25px 10px;
  }
}
.iadres ul::before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  left: 38px;
  top: -11px;
  background: #EDEDED;
  transform: rotate(45deg);
}
.iadres ul li {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .iadres ul li {
    margin-bottom: 15px;
  }
}
.iadres ul li svg {
  font-size: 22px;
  color: var(--kirmizi);
  margin-right: 15px;
  flex-shrink: 0;
}
.iadres ul li p {
  font-size: 16px;
  font-weight: 500;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .iadres ul li p {
    font-size: 14px;
  }
}
.iadres ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .iadres ul li a {
    font-size: 14px;
  }
}
.iadres ul li a::after {
  content: "/";
  color: var(--kirmizi);
  margin: 0 8px;
  font-weight: 700;
}
.iadres ul li a:last-child::after {
  display: none;
}

.isosyal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 45px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .isosyal {
    padding-bottom: 45px;
  }
}
.isosyal span {
  width: 100%;
  padding: 0 25px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  color: var(--siyah);
  margin-bottom: 40px;
}
@media (max-width: 1400px) {
  .isosyal span {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1200px) {
  .isosyal span {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .isosyal span {
    margin-bottom: 15px;
  }
}
.isosyal a {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  margin: 5px;
  transition: 300ms background;
}
@media (max-width: 1400px) {
  .isosyal a {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 1200px) {
  .isosyal a {
    width: 55px;
    height: 55px;
  }
}
.isosyal a:hover {
  background: #E3E3E3;
}
.isosyal a svg {
  font-size: 34px;
}
@media (max-width: 1400px) {
  .isosyal a svg {
    font-size: 30px;
  }
}
.isosyal a svg path {
  fill: var(--siyah);
}

.iform {
  width: 100%;
  background: #EDEDED;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  padding: 25px;
}
.iform .iftitle {
  font-size: 21px;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
  color: var(--siyah);
}
@media (max-width: 1400px) {
  .iform .iftitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.iform .ialan {
  position: relative;
  width: 100%;
  margin-bottom: 1px;
}
.iform .ialan .itext {
  width: 100%;
  height: 57px;
  background: #FFFFFF;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--siyah);
  padding: 0 20px;
  line-height: 57px;
}
@media (max-width: 1400px) {
  .iform .ialan .itext {
    height: 47px;
    line-height: 47px;
  }
}
.iform .ialan .itext::placeholder {
  color: var(--siyah);
  opacity: 0.4;
}
.iform .ialan .itext:focus::placeholder {
  opacity: 0;
}
.iform .ialan .iarea {
  width: 100%;
  height: 106px;
  background: #FFFFFF;
  box-shadow: 0px 7px 2px -6px rgba(0, 0, 0, 0.25);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--siyah);
  padding: 20px;
  line-height: 20px;
  display: block;
}
@media (max-width: 1400px) {
  .iform .ialan .iarea {
    padding: 15px 20px;
  }
}
.iform .ialan span{
  display: block;
}
.iform .ialan .iarea::placeholder {
  color: var(--siyah);
  opacity: 0.4;
}
.formalani p{
  position: relative;
  display: block;
}
.formalani p .wpcf7-spinner{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.iform .ialan .iarea:focus::placeholder {
  opacity: 0;
}
.iform .ialan span.wpcf7-not-valid-tip {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: red;
  pointer-events: none;
}
.iform .ibuton {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--kbeyaz);
  background: var(--bgkirmizi);
  border: 0;
  cursor: pointer;
  display: flex;
  height: 57px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .iform .ibuton {
    height: 47px;
    line-height: 47px;
  }
}

.map {
  width: 100%;
  height: 560px;
}
@media (max-width: 1400px) {
  .map {
    height: 450px;
  }
}
@media (max-width: 576px) {
  .map {
    height: 300px;
  }
}
.map iframe {
  width: 100% !important;
  height: 100% !important;
}

.cookie {
  width: 100%;
  padding: 30px;
  background: #111;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  align-items: center;
}
@media (max-width: 1200px) {
  .cookie {
    padding: 20px 30px;
  }
}
@media (max-width: 992px) {
  .cookie {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .cookie {
    padding: 15px;
  }
}
.cookie p {
  max-width: 1050px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
  margin-right: 20px;
}
@media (max-width: 1400px) {
  .cookie p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 992px) {
  .cookie p {
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .cookie p {
    text-align: center;
    margin-right: 0;
  }
}
.cookie a {
  margin-left: auto;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .cookie a {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .cookie a {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
.cookie a:hover {
  text-decoration: underline;
}
.cookie button {
  height: 55px;
  padding: 0 20px;
  background: #b82525;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: 0;
  margin-left: 25px;
  transition: 300ms background;
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1400px) {
  .cookie button {
    font-size: 14px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .cookie button {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
.cookie button:hover {
  background: #d33636;
}
.cookie span {
  padding: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-left: 30px;
  cursor: pointer;
  transition: 300ms color;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 1400px) {
  .cookie span {
    font-size: 20px;
    margin-left: 20px;
  }
}
@media (max-width: 576px) {
  .cookie span {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
.cookie span:hover {
  color: #b82525;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 10px;
  border: 0 solid #00a0d2; /* Blue */
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
  color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
  color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
  color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
  color: #ffb900;
}
.wpcf7 .ajax-loader{
  position: absolute;
  right: 0;
  top: 50%;
  margin: 0 10px;
  margin-top: -12px;
}
