@charset "UTF-8";
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  /*user-select: none;*/
}

html {
  scroll-behavior: smooth;
}

:root {
  --body: #fff;
  --beyaz: #fff;
  --mbeyaz: #fff;
  --siyah: #000;
  --mavi: #3099FA;
  --mavih: #55ADFF;
  --kmavi: #0B6FCC;
  --kmavih: #1A82E2;
}

html,
body {
  height: 100%;
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--siyah);
  background: var(--body);
}

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

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

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    -webkit-appearance: none;
  }

  ::-webkit-scrollbar:vertical {
    width: 3px;
  }

  ::-webkit-scrollbar {
    width: 3px;
    border-radius: 3px;
  }

  ::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: var(--beyaz);
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: var(--mavi);
  }
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../icons/fa-regular-400.eot");
  src: url("../icons/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../icons/fa-regular-400.woff2") format("woff2"), url("../icons/fa-regular-400.woff") format("woff"), url("../icons/fa-regular-400.ttf") format("truetype"), url("../icons/fa-regular-400.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../icons/fa-solid-900.eot");
  src: url("../icons/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../icons/fa-solid-900.woff2") format("woff2"), url("../icons/fa-solid-900.woff") format("woff"), url("../icons/fa-solid-900.ttf") format("truetype"), url("../icons/fa-solid-900.svg#fontawesome") format("svg");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../icons/fa-brands-400.eot");
  src: url("../icons/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../icons/fa-brands-400.woff2") format("woff2"), url("../icons/fa-brands-400.woff") format("woff"), url("../icons/fa-brands-400.ttf") format("truetype"), url("../icons/fa-brands-400.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fab {
  font-family: "Font Awesome 5 Brands";
}

.ust {
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  position: relative;
  z-index: 9;
}

.ustic {
  width: 100%;
  display: flex;
  height: 42px;
  align-items: center;
  white-space: nowrap;
}

.uic {
  display: flex;
  align-items: center;
  height: 100%;
}
.uic a {
  font-size: 14px;
  font-weight: 400;
  color: var(--siyah);
  margin-right: 31px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .uic a {
    margin-right: 0;
  }
}
.uic a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--mavi);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: 300ms all;
}
.uic a:hover::before {
  width: 100%;
}
.uic a:last-child {
  margin-right: 0;
}
@media (max-width: 576px) {
  .uic a:last-child {
    display: none;
  }
}
.uic a i {
  color: var(--mavi);
}
.uic a b {
  font-weight: 400;
  margin-left: 15px;
}

.sosyalmedya {
  height: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.sosyalmedya a {
  height: 100%;
  position: relative;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B0B0B0;
}
.sosyalmedya a::after {
  content: attr(data-baslik);
  padding: 0 10px;
  line-height: 22px;
  font-weight: 400;
  background: var(--mavi);
  color: var(--beyaz);
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  white-space: nowrap;
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  transition: 300ms opacity;
}
@media (max-width: 992px) {
  .sosyalmedya a::after {
    display: none;
  }
}
.sosyalmedya a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--mavi);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  transition: 300ms all;
}
.sosyalmedya a:hover {
  color: var(--mavi);
}
.sosyalmedya a:hover::before {
  width: 100%;
}
.sosyalmedya a:hover::after {
  opacity: 1;
}

.header {
  width: 100%;
  position: relative;
  z-index: 8;
}
@media (max-width: 992px) {
  .header {
    z-index: 10;
  }
}

.headeric {
  width: 100%;
  height: 87px;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .headeric {
    height: 80px;
  }
}

.logo img {
  max-height: 50px;
  max-width: 200px;
  display: block;
}
@media (max-width: 576px) {
  .logo img {
    max-height: 50px;
    max-width: 140px;
  }
}

.amenu{
  width: 100%;
  height: 100%;
}
@media (max-width: 992px){
  .amenu{
    width: 0;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
  }
  .amaktif{
    width: 100%;
  }
}
.amenu ul{
  width: auto;
}
.menu-item-has-children a::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  font-size: 18px;
  border: 0;
  margin-left: 7px;
  text-decoration: none;
  color: var(--mavi);
}

.menu-header-menu-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.menu-header-menu-container > ul {
  display: flex;
  align-items: center;
  height: 100%;
}
.menu-header-menu-container > ul > li {
  position: relative;
  margin: 0 18px;
  height: 100%;
}
.menu-header-menu-container > ul > li::before {
  content: "";
  width: 0;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 22px;
  background: var(--mavi);
  pointer-events: none;
  transition: 300ms all;
}
.menu-header-menu-container > ul > li > a {
  font-size: 15px;
  font-weight: 700;
  color: var(--siyah);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.menu-header-menu-container > ul > li:hover::before {
  width: 28px;
}
.menu-header-menu-container > ul > li ul {
  position: absolute;
  left: 0;
  top: 130%;
  opacity: 0;
  pointer-events: none;
  transition: 300ms all;
}
.menu-header-menu-container > ul > li ul li {
  white-space: nowrap;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--mavi);
  transition: 300ms background;
}
.menu-header-menu-container > ul > li ul li:last-child {
  border: 0;
}
.menu-header-menu-container > ul > li ul li a {
  font-size: 15px;
  font-weight: 700;
  color: var(--mbeyaz);
  padding: 14px 36px 14px 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.menu-header-menu-container > ul > li ul li a::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  font-size: 18px;
  border: 0;
  text-decoration: none;
  margin-right: 14px;
}
.menu-header-menu-container > ul > li ul li a::after {
  display: none !important;
}
.menu-header-menu-container > ul > li ul li:hover {
  background: var(--mavih);
}
.menu-header-menu-container > ul > li:hover ul {
  opacity: 1;
  top: 100%;
  pointer-events: all;
}
@media (max-width: 1200px) {
  .menu-header-menu-container > ul > li {
    margin: 0 10px;
  }
}
@media (max-width: 992px) {
  .menu-header-menu-container {
    max-width: 250px;
    width: 100%;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    transform: translateX(-300px);
    transition: 500ms transform;
  }
  .amenu em {
    content: "";
    width: 0;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: 500ms all;
  }
  .amaktif em{
    width: 100%;
  }
  .menu-header-menu-container > ul {
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    overflow: auto;
    background: var(--mavi);
    position: relative;
    z-index: 1;
  }
  .menu-header-menu-container > ul > li {
    width: 100%;
    margin: 0;
    height: auto;
  }
  .menu-header-menu-container > ul > li a {
    height: auto;
    padding: 15px 20px;
    color: var(--mbeyaz);
  }
  .menu-header-menu-container > ul > li ul {
    position: relative;
    top: 0 !important;
    opacity: 1;
    pointer-events: all;
  }
  .menu-header-menu-container > ul > li ul li {
    white-space: normal;
    background: var(--mavih);
  }
  .menu-header-menu-container > ul > li ul li a {
    font-size: 12px;
    padding: 12px 20px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .menu-header-menu-container.maktif {
    transform: translateX(0);
  }
  .menu-header-menu-container.maktif em {
    width: 100vw;
  }
}

.siziarayalim {
  margin-left: auto;
  white-space: nowrap;
  padding: 0 29px;
  display: flex;
  align-items: center;
  height: 47px;
  border: 2px solid var(--mavi);
  color: var(--mavi);
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .siziarayalim {
    padding: 0 13px;
    height: 40px;
  }
}
.siziarayalim:hover {
  background: var(--mavi);
  color: var(--mbeyaz);
}
.siziarayalim b {
  font-weight: 700;
  margin-left: 10px;
}
@media (max-width: 576px) {
  .siziarayalim b {
    display: none;
  }
}

.duyuru {
  background: var(--kmavi);
  width: 100%;
  padding: 18px 0;
}
@media (max-width: 992px) {
  .duyuru {
    padding: 10px 0;
  }
}

.dic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dic a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--beyaz);
}
@media (max-width: 992px) {
  .dic a {
    font-size: 14px;
  }
}
.dic a p {
  margin-left: 11px;
}
.dic a i {
  font-size: 14px;
}

.anaslider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sic {
  width: 100%;
  height: 724px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1200px) {
  .sic {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .sic {
    height: 450px;
  }
}
.sic div {
  height: 100%;
}
.sic::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

.scic {
  width: 100%;
  position: relative;
  height: 100%;
}

.ssol {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sctitle {
  width: 100%;
  font-size: 72px;
  line-height: 105%;
  font-weight: 900;
  color: var(--beyaz);
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .sctitle {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .sctitle {
    font-size: 48px;
  }
}

.sbutons {
  width: 100%;
  height: auto !important;
  display: flex;
  align-items: center;
}
.sbutons a {
  height: 47px;
  border-radius: 10px;
  padding: 0 32px;
  background: var(--beyaz);
  color: var(--siyah);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 16px;
  white-space: nowrap;
}
.sbutons a i {
  margin-right: 11px;
}
.sbutons a b {
  font-weight: 600;
}
@media (max-width: 768px) {
  .sbutons a {
    padding: 0 25px;
  }
  .sbutons a:first-child b {
    display: none;
  }
  .sbutons a:first-child i {
    margin-right: 0;
  }
}
.sbutons a:hover {
  background: var(--mavi);
  color: var(--beyaz);
}
.sbutons a:last-child {
  margin-right: 0;
  background: none;
  color: var(--beyaz);
  border: 1px solid var(--beyaz);
}
.sbutons a:last-child:hover {
  background: var(--beyaz);
  color: var(--siyah);
  border-color: var(--beyaz);
}

.odas {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.odas p {
  line-height: 37px;
  padding: 0 17px;
  background: var(--mavi);
  color: var(--mbeyaz);
  border-radius: 19px;
  margin-right: 10px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .odas p {
    padding: 0 12px;
    font-size: 14px;
    line-height: 30px;
  }
}
.odas p:last-child {
  margin-right: 0;
}
.odas p:last-child::after {
  display: none;
}
.odas p::after {
  content: "";
  width: 10px;
  height: 3px;
  background: var(--mavi);
  top: 50%;
  right: -10px;
  margin-top: -1.5px;
  position: absolute;
}

.scyazi {
  width: 100%;
  font-size: 21px;
  line-height: 30px;
  margin: 34px 0 58px;
  font-weight: 400;
  color: var(--beyaz);
  max-height: 90px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .scyazi {
    margin: 28px 0 45px;
    font-size: 18px;
    line-height: 27px;
    max-height: 81px;
  }
}
@media (max-width: 768px) {
  .scyazi {
    margin: 20px 0 30px;
    font-size: 14px;
    line-height: 21px;
    max-height: 63px;
  }
}

.ssag {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 150px;
}

.diz {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.diz p {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 600;
  justify-content: flex-end;
  color: var(--beyaz);
  margin: 8px 0;
  text-align: right;
}
@media (max-width: 1200px) {
  .diz p {
    font-size: 18px;
    margin: 5px 0;
  }
}
.diz p::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  color: var(--mavi);
  font-size: 25px;
  border: 0;
  margin-left: 23px;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .diz p::after {
    font-size: 23px;
    margin-left: 15px;
  }
}

.aileri {
  width: 53px;
  height: 143px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms color;
  font-size: 32px;
  color: var(--beyaz);
  z-index: 5;
}
@media (max-width: 1200px) {
  .aileri {
    width: 40px;
    height: 100px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .aileri {
    right: 5px;
  }
}
@media (max-width: 576px) {
  .aileri {
    display: none;
  }
}
.aileri:hover {
  color: var(--mavi);
}

.ageri {
  width: 53px;
  height: 143px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms color;
  font-size: 32px;
  color: var(--beyaz);
  z-index: 5;
}
@media (max-width: 1200px) {
  .ageri {
    width: 40px;
    height: 100px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .ageri {
    left: 5px;
  }
}
@media (max-width: 576px) {
  .ageri {
    display: none;
  }
}
.ageri:hover {
  color: var(--mavi);
}

.mac {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  padding: 0 6px;
  margin-left: 20px;
}
.mac em {
  width: 25px;
  height: 3px;
  background: var(--siyah);
  margin: 2px 0;
  border-radius: 2px;
}
.mac em:nth-child(2) {
  width: 20px;
}
@media (min-width: 992px) {
  .mac {
    display: none;
  }
}

@media (max-width: 768px) {
  .mss {
    display: none;
  }
}

.ahic {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .ahic {
    flex-direction: column;
  }
}
.ahic img {
  width: 255px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px 15px 15px 100px;
}
@media (max-width: 992px) {
  .ahic img {
    width: 170px;
    height: 110px;
  }
}
@media (max-width: 576px) {
  .ahic img {
    width: 100%;
    height: 170px;
  }
}
.ahic span {
  width: 100%;
  margin-left: 31px;
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .ahic span {
    margin-left: 20px;
    padding-right: 15px;
  }
}
@media (max-width: 576px) {
  .ahic span {
    margin-left: 0;
    text-align: right;
    padding-right: 10px;
    margin-top: 7px;
    display: flex;
    align-items: center;
  }
  .ahic span .devam {
    flex-shrink: 0;
    margin-left: 10px;
  }
  .ahic span .htitle {
    margin-bottom: 0;
  }
}

.ahabers {
  padding-top: 29px;
  padding-bottom: 29px;
}

.htitle {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: var(--siyah);
  margin-bottom: 17px;
}
@media (max-width: 1200px) {
  .htitle {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .htitle {
    font-size: 18px;
  }
}
.htitle a {
  color: var(--siyah);
}
.htitle a:hover {
  color: var(--kmavi);
}

.devam {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  background: var(--mavi);
  color: var(--mbeyaz);
  border-radius: 5px;
}
.devam:hover {
  background: var(--kmavi);
}

.ocik {
  width: 100%;
  height: 330px;
  display: flex;
  flex-direction: column;
  padding: 0 58px;
  background: var(--mavi);
  border-radius: 15px 15px 164px 15px;
  margin-top: -150px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 1200px) {
  .ocik {
    padding: 0 48px;
    margin-top: -120px;
    height: 300px;
  }
}
@media (max-width: 992px) {
  .ocik {
    padding: 0 25px;
    height: 260px;
  }
}
.ocik p {
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--mbeyaz);
  margin-top: 15px;
  max-height: 56px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .ocik p {
    font-size: 18px;
    line-height: 24px;
    max-height: 48px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .ocik p {
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
  }
}
@media (max-width: 768px) {
  .ocik p {
    font-size: 21px;
    line-height: 27px;
    max-height: 54px;
  }
}
.ocik .devam {
  border: 1px solid var(--mbeyaz);
}
.ocik .devam:hover {
  border-color: var(--kmavi);
}

.hbroc {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hbroc .row {
    display: flex;
    flex-direction: column;
  }
  .hbroc .ahabers {
    order: 2;
  }
  .hbroc .aonecikan {
    order: 1;
  }
  .hbroc .aonecikan .ocik {
    height: auto;
    padding: 25px 40px;
    margin-top: -35px;
  }
}

.otitle {
  width: 100%;
  font-size: 42px;
  line-height: 47px;
  font-weight: 900;
  color: var(--mbeyaz);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .otitle {
    font-size: 32px;
    line-height: 37px;
  }
}
@media (max-width: 992px) {
  .otitle {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .otitle {
    font-size: 30px;
    line-height: 36px;
  }
}
.otitle::after {
  content: "";
  width: 75px;
  height: 3px;
  border-radius: 2px;
  background: var(--mbeyaz);
  opacity: 0.48;
  margin-top: 18px;
}
.otitle a {
  color: var(--mbeyaz);
}

.ctitle {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--siyah);
  margin-bottom: 38px;
}
.ctitle a {
  color: var(--siyah);
}
.ctitle a:hover {
  color: var(--kmavi);
}
@media (max-width: 992px) {
  .ctitle {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .ctitle {
    font-size: 20px;
  }
}
.ctitle i {
  font-size: 26px;
  margin-left: 10px;
  color: var(--kmavi);
}

.sbuton {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.sb {
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px !important;
  background: var(--kmavi);
  color: var(--mbeyaz);
  border-radius: 5px;
  margin-left: 15px;
  cursor: pointer;
  transition: 300ms background;
}
@media (max-width: 576px) {
  .sb {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    font-size: 18px !important;
  }
}
.sb i {
  margin-left: 0;
  color: var(--mbeyaz);
  font-size: 23px !important;
}
@media (max-width: 576px) {
  .sb i {
    font-size: 18px !important;
  }
}
.sb:hover {
  background: var(--mavi);
}

.carrusel {
  padding-top: 33px;
}
@media (max-width: 576px) {
  .carrusel {
    padding-top: 15px;
  }
}

.slider1 {
  width: 100%;
}

.urun {
  width: 100%;
}

.uresim {
  width: 100%;
  padding-bottom: 61.66666%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.uresim a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.uresim a::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--siyah);
  opacity: 0.2;
  transition: 1s all;
}
.uresim a img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
}
.uresim:hover a::before {
  width: 100%;
}

.ualt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  position: relative;
  padding-bottom: 40px;
}
.ualt p {
  text-align: center;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--mavi);
}
@media (max-width: 992px) {
  .ualt p {
    font-size: 16px;
    margin-top: 3px;
  }
}

.uoda {
  margin-top: -18px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .uoda {
    margin-top: -16px;
  }
}
.uoda em {
  line-height: 37px;
  padding: 0 17px;
  background: var(--mavi);
  color: var(--mbeyaz);
  border-radius: 19px;
  margin-right: 10px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 1200px) {
  .uoda em {
    padding: 0 12px;
    font-size: 14px;
    line-height: 30px;
  }
}
.uoda em:last-child {
  margin-right: 0;
}
.uoda em:last-child::after {
  display: none;
}
.uoda em::after {
  content: "";
  width: 10px;
  height: 3px;
  background: var(--mavi);
  top: 50%;
  right: -10px;
  margin-top: -1.5px;
  position: absolute;
}

.utitle {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  max-height: 60px;
  overflow: hidden;
  margin-top: 15px;
}
@media (max-width: 992px) {
  .utitle {
    font-size: 18px;
    line-height: 24px;
    max-height: 48px;
    margin-top: 10px;
  }
}
.utitle a {
  color: var(--siyah);
}
.utitle a:hover {
  color: var(--mavi);
}

.alan {
  width: 100%;
  overflow: hidden;
}

.videos {
  width: 100%;
  padding: 98px 0;
  position: relative;
  z-index: 0;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .videos {
    margin-top: 20px;
    padding: 60px 0;
  }
}
.videos::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--mavi);
  opacity: 0.75;
}

.video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.video span {
  font-size: 23px;
  font-weight: 600;
  color: var(--mbeyaz);
}
@media (max-width: 992px) {
  .video span {
    font-size: 18px;
  }
}
.video a {
  width: 112px;
  height: 112px;
  border-radius: 100%;
  display: flex;
  margin-top: 37px;
  align-items: center;
  justify-content: center;
  background: var(--beyaz);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.22);
  font-size: 78px;
  color: var(--mavi);
}
@media (max-width: 992px) {
  .video a {
    width: 90px;
    height: 90px;
    font-size: 60px;
  }
}
.video a i {
  position: relative;
  left: 3px;
}
.video a:hover {
  background: var(--mavi);
  color: var(--mbeyaz);
}

.vtitle {
  font-size: 42px;
  font-weight: 800;
  color: var(--mbeyaz);
  margin-top: 2px;
}
@media (max-width: 992px) {
  .vtitle {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .vtitle {
    font-size: 30px;
  }
}

.slider2 {
  width: 100%;
}

.dep {
  margin-top: 30px;
}
@media (max-width: 576px) {
  .dep {
    margin-top: 10px;
  }
}

.ahakkimizda {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .ahakkimizda {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}

.ahresim {
  width: 100%;
  height: 540px;
  position: relative;
}
@media (max-width: 768px) {
  .ahresim {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .ahresim {
    height: 200px;
  }
}
.ahresim img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border-radius: 0 15px 271px 0;
}
@media (max-width: 768px) {
  .ahresim img {
    border-radius: 0;
  }
}

.adicerik {
  width: 100%;
  padding: 40px 96px 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1400px) {
  .adicerik {
    padding: 30px 50px 0;
  }
}
@media (max-width: 768px) {
  .adicerik {
    padding: 20px;
  }
}
.adicerik span {
  font-size: 24px;
  font-weight: 700;
  color: var(--mavi);
}
@media (max-width: 576px) {
  .adicerik span {
    font-size: 18px;
  }
}
.adicerik p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 13px;
  color: var(--siyah);
}
@media (max-width: 992px) {
  .adicerik p {
    font-size: 16px;
    line-height: 24px;
  }
}
.adicerik .devam {
  margin-top: 53px;
}
@media (max-width: 992px) {
  .adicerik .devam {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .adicerik .devam {
    margin-top: 15px;
  }
}

.ahtitle {
  font-size: 30px;
  font-weight: 700;
  color: var(--siyah);
  margin-top: 7px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .ahtitle {
    font-size: 24px;
  }
}
.ahtitle::after {
  content: "";
  width: 75px;
  height: 3px;
  border-radius: 2px;
  margin: 35px 0;
  background: var(--mavi);
}
@media (max-width: 576px) {
  .ahtitle::after {
    margin: 20px 0;
  }
}

.slider3 {
  width: 100%;
}

.marka {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marka img {
  max-width: 90%;
  max-height: 90%;
}

.teklifal {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .teklifal {
    padding-top: 10px;
  }
}
.teklifal .row {
  display: flex;
  align-items: stretch;
}

.tasol {
  width: 100%;
  background: #F2F2F2;
  padding: 30px 75px;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}
@media (max-width: 1200px) {
  .tasol {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .tasol {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .tasol {
    padding: 30px 15px;
  }
}
.tasol span {
  font-size: 23px;
  font-weight: 600;
  color: var(--mavi);
}
@media (max-width: 1200px) {
  .tasol span {
    font-size: 20px;
  }
}
.tasol p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  color: var(--siyah);
  margin-top: 23px;
}
@media (max-width: 1200px) {
  .tasol p {
    line-height: 27px;
    font-size: 16px;
  }
}

.tasag {
  background: var(--mavi);
  padding: 83px 120px;
  min-height: 100%;
  position: relative;
}
@media (max-width: 1400px) {
  .tasag {
    padding: 50px 70px;
  }
}
@media (max-width: 576px) {
  .tasag {
    padding: 30px 20px;
  }
}
.tasag::before {
  border: 32px solid transparent;
  border-left: 32px solid #F2F2F2;
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .tasag::before {
    display: none;
  }
}

.ttitle {
  font-size: 53px;
  line-height: 60px;
  font-weight: 800;
  color: var(--siyah);
  margin-top: 6px;
}
@media (max-width: 1200px) {
  .ttitle {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 576px) {
  .ttitle {
    font-size: 36px;
    line-height: 42px;
  }
}

.falan {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  float: left;
}
@media (max-width: 992px) {
  .falan {
    margin-bottom: 10px;
  }
}
.falan .wpcf7-not-valid-tip {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 800;
  color: red;
  text-transform: uppercase;
  pointer-events: none;
  font-style: normal;
}

.ttext {
  width: 100%;
  height: 50px;
  border: 0;
  background: var(--beyaz);
  color: var(--siyah);
  padding: 0 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 50px;
  border-radius: 10px;
}
.ttext::placeholder {
  color: var(--siyah);
  transition: 100ms opacity;
}
.ttext:focus::placeholder {
  opacity: 0;
}

.nice-select, .nice-select.open .list {
  width: 100%;
}

.tbuton {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background: var(--kmavi);
  border: 0;
  cursor: pointer;
  transition: 300ms all;
  font-size: 18px;
  font-weight: 800;
  color: var(--mbeyaz);
  text-align: center;
  line-height: 50px;
}
.tbuton:hover {
  background: var(--siyah);
}

.footer {
  width: 100%;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}

.bilgi {
  width: 100%;
  padding-right: 30px;
}
.bilgi img {
  max-width: 90%;
  max-height: 50px;
}

.adres {
  width: 100%;
  padding-top: 35px;
}
.adres span {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.adres span p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--siyah);
}
.adres span p a {
  color: var(--siyah);
}
.adres span p a:hover {
  color: var(--mavi);
}
.adres span i {
  width: 35px;
  flex-shrink: 0;
  color: var(--mavi);
  font-size: 18px;
}

.fsm {
  height: auto;
  margin-left: 0;
  margin-top: 30px;
}
@media (max-width: 576px) {
  .fsm {
    margin-bottom: 20px;
  }
}

.fmenu {
  width: 100%;
  padding-top: 15px;
}
@media (max-width: 768px) {
  .fmenu {
    margin-top: 10px;
  }
}
.fmenu h6 {
  width: 100%;
  font-size: 18px;
  font-weight: 800;
  color: var(--kmavi);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .fmenu h6 {
    margin-bottom: 15px;
  }
}
.fmenu ul {
  width: 100%;
}
.fmenu ul li {
  width: 100%;
  margin-bottom: 10px;
}
.fmenu ul li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--siyah);
  text-transform: uppercase;
}
.fmenu ul li a:hover {
  color: var(--kmavi);
}

.farsa {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.farsa p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: var(--siyah);
}
.farsa a {
  margin-left: 0;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .farsa a b {
    display: block;
  }
}

@media (max-width: 992px) {
  .mfm {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .mfm {
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .mfm1 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .mfm1 ul li {
    width: 50%;
  }
}

.alt {
  width: 100%;
  border-top: 1px solid #EBEBEB;
}

.altic {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 576px) {
  .altic {
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
  }
}
.altic p {
  font-size: 14px;
  font-weight: 600;
  color: var(--siyah);
}
.altic a {
  margin-left: auto;
}
@media (max-width: 576px) {
  .altic a {
    margin-left: 0;
    margin-top: 15px;
  }
}

.full {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 99;
  display: none;
}
.full.facik .saalan {
  transform: translate(-50%, -50%);
}

.saalan {
  width: 90%;
  max-width: 600px;
  padding: 45px 45px 60px;
  background: var(--mavi);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 150%);
  transition: 400ms transform;
}
@media (max-width: 576px) {
  .saalan {
    padding: 20px 20px 30px;
  }
}
.saalan h6 {
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--mbeyaz);
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .saalan h6 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.icerik {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.baslik {
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 49px 0 65px;
}
@media (max-width: 576px) {
  .baslik {
    padding: 30px 0;
  }
}
.baslik p {
  font-size: 18px;
  font-weight: 600;
  color: var(--mavi);
  margin-top: 3px;
}
.baslik .uoda {
  margin-top: 20px;
}

.band {
  display: flex;
  align-items: center;
}
.band a {
  font-size: 14px;
  font-weight: 400;
  color: var(--siyah);
  display: flex;
  align-items: center;
}
.band a i {
  font-size: 18px;
  color: var(--mavi);
}
.band a::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  color: #C1C1C1;
  font-size: 18px;
  margin: 0 13px;
  border: 0;
  text-decoration: none;
}
.band a:last-child::after {
  display: none;
}
.band a:hover {
  color: var(--mavi);
}
.band b {
  font-size: 14px;
  font-weight: 400;
  color: var(--siyah);
}

.btitle {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--siyah);
}
@media (max-width: 576px) {
  .btitle {
    font-size: 24px;
  }
}

.sayfalama {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.sayfalama a {
  height: 47px;
  padding: 0 50px;
  display: flex;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  align-items: center;
  color: var(--siyah);
  background: #ddd;
  margin: 0 15px;
}
@media (max-width: 576px) {
  .sayfalama a {
    margin: 0 5px;
    padding: 0 30px;
  }
}
.sayfalama a i {
  margin-right: 11px;
}
.sayfalama .sonraki a:last-child {
  background: var(--kmavi);
  color: var(--mbeyaz);
}
.sayfalama .sonraki a:last-child:hover {
  background: var(--mavi);
}
.sayfalama .sonraki a:last-child i {
  margin-right: 0;
  margin-left: 11px;
}

.projeler {
  width: 100%;
}

.galeriler {
  width: 100%;
  padding-bottom: 30px;
}

.glr {
  width: 100%;
  padding-bottom: 68.5%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  margin-bottom: 30px;
}
.glr::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--kmavi);
  opacity: 0;
  z-index: 1;
  transition: 300ms all;
}
.glr::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  color: var(--mbeyaz);
  font-size: 36px;
  border: 0;
  text-decoration: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: 300ms all;
  opacity: 0;
}
.glr:hover::before {
  opacity: 0.7;
}
.glr:hover::after {
  opacity: 1;
}
.glr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.hakkimizda {
  width: 100%;
}
.hakkimizda img {
  max-height: 335px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 15px;
}
@media (max-width: 576px) {
  .hakkimizda img {
    margin-bottom: 15px;
  }
}
.hakkimizda p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 25px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 576px) {
  .hakkimizda p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}
.hakkimizda p b {
  font-weight: 700;
}
.hakkimizda p strong {
  font-weight: 700;
}
.hakkimizda p a {
  color: var(--mavi);
}
.hakkimizda h3 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 24px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hakkimizda h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hakkimizda h2 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hakkimizda h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hakkimizda h4 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hakkimizda h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hakkimizda h5 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hakkimizda h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hakkimizda h6 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 14px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hakkimizda h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hakkimizda ul {
  padding: 20px 0;
}
.hakkimizda ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--siyah);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .hakkimizda ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.hakkimizda ul li::before {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--mavi);
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hakkimizda ul li::before {
    margin-right: 15px;
  }
}
.hakkimizda ol {
  padding: 20px 0;
}
.hakkimizda ol li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--siyah);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .hakkimizda ol li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.hakkimizda ol li::before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  content: "";
  background: var(--mavi);
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hakkimizda ol li::before {
    margin-right: 15px;
  }
}

.haberler {
  width: 100%;
}

.haber {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .haber {
    flex-direction: column;
  }
}
.haber img {
  width: 255px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .haber img {
    width: 170px;
    height: 110px;
  }
}
@media (max-width: 576px) {
  .haber img {
    width: 100%;
    height: 170px;
  }
}
.haber span {
  width: 100%;
  margin-left: 31px;
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .haber span {
    margin-left: 20px;
    padding-right: 15px;
  }
}
@media (max-width: 576px) {
  .haber span {
    margin-left: 0;
    text-align: right;
    padding-right: 10px;
    margin-top: 7px;
    display: flex;
    align-items: center;
  }
  .haber span .devam {
    flex-shrink: 0;
    margin-left: 10px;
  }
  .haber span .htitle {
    margin-bottom: 0;
  }
}

.itbaslik {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-bottom: 24px;
}
.itbaslik span {
  font-size: 17px;
  font-weight: 600;
  color: var(--mbeyaz);
}
.itbaslik h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--mbeyaz);
  margin-top: 3px;
}

.icteklif {
  width: 100%;
  border-radius: 15px;
  background: var(--mavi);
  padding: 27px;
}

.icteklif .row .col-lg-6 {
  width: 100%;
}

.haberdetay {
  width: 100;
  padding: 40px 0 0;
}
@media (max-width: 576px) {
  .haberdetay {
    padding: 25px 0 0;
  }
}

.hdic {
  width: 100%;
  padding-bottom: 30px;
}
.hdic img {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 15px;
}
@media (max-width: 576px) {
  .hdic img {
    margin-bottom: 15px;
  }
}
.hdic p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 25px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 576px) {
  .hdic p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}
.hdic p b {
  font-weight: 700;
}
.hdic p strong {
  font-weight: 700;
}
.hdic p a {
  color: var(--mavi);
}
.hdic h3 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 24px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hdic h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hdic h2 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hdic h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hdic h4 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hdic h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hdic h5 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hdic h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hdic h6 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 14px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .hdic h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.hdic ul {
  padding: 20px 0;
}
.hdic ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--siyah);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .hdic ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.hdic ul li::before {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--mavi);
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hdic ul li::before {
    margin-right: 15px;
  }
}
.hdic ol {
  padding: 20px 0;
}
.hdic ol li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--siyah);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .hdic ol li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.hdic ol li::before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  content: "";
  background: var(--mavi);
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .hdic ol li::before {
    margin-right: 15px;
  }
}

.hdtitle {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  color: var(--siyah);
}
@media (max-width: 576px) {
  .hdtitle {
    font-size: 24px;
  }
}

.iletisim {
  width: 100;
}
.iletisim .adres {
  padding-right: 30px;
  padding-top: 30px;
}
@media (max-width: 992px) {
  .iletisim .adres {
    padding-right: 0;
    padding-top: 0;
  }
}
.iletisim .adres span {
  margin-bottom: 17px;
}
.iletisim .adres span p {
  font-size: 16px;
}
.iletisimform {
  width: 100%;
  background: var(--mavi);
  border-radius: 15px;
  padding: 45px 50px;
}
@media (max-width: 992px) {
  .iletisimform {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .iletisimform {
    padding: 20px;
  }
}

.tarea {
  width: 100%;
  height: 150px;
  border: 0;
  background: var(--beyaz);
  color: var(--siyah);
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  border-radius: 10px;
}
.tarea::placeholder {
  color: var(--siyah);
  transition: 100ms opacity;
}
.tarea:focus::placeholder {
  opacity: 0;
}

.harita {
  width: 100%;
  height: 560px;
  border-top: 12px solid var(--mavi);
  margin-top: -135px;
  margin-bottom: -60px;
}
@media (max-width: 992px) {
  .harita {
    margin-top: -40px;
  }
}
@media (max-width: 768px) {
  .harita {
    margin-bottom: -10px;
    height: 400px;
  }
}
@media (max-width: 576px) {
  .harita {
    height: 300px;
    margin-top: 20px;
  }
}
.harita iframe {
  width: 100% !important;
  height: 100% !important;
}

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

.dsic {
  width: 100%;
  padding-bottom: 54%;
  position: relative;
}
.dsic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 0;
}

.dsalani {
  width: 100%;
}

.detayic {
  width: 100%;
  padding: 50px 0 65px;
}
@media (max-width: 576px) {
  .detayic {
    padding: 20px 0 25px;
  }
}

.dyazi {
  width: 100%;
}
.dyazi img {
  max-height: 335px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 15px;
}
@media (max-width: 576px) {
  .dyazi img {
    margin-bottom: 15px;
  }
}
.dyazi p {
  font-size: 21px;
  line-height: 31px;
  margin-bottom: 25px;
  font-weight: 400;
  color: var(--siyah);
}
@media (max-width: 576px) {
  .dyazi p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}
.dyazi p b {
  font-weight: 700;
}
.dyazi p strong {
  font-weight: 700;
}
.dyazi p a {
  color: var(--mavi);
}
.dyazi h3 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 24px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .dyazi h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.dyazi h2 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .dyazi h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.dyazi h4 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .dyazi h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.dyazi h5 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .dyazi h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.dyazi h6 {
  padding-left: 13px;
  border-left: 12px solid var(--kmavi);
  font-size: 14px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .dyazi h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.dyazi ul {
  padding: 20px 0;
}
.dyazi ul li {
  display: flex;
  align-items: center;
  font-size: 21px;
  line-height: 27px;
  color: var(--siyah);
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .dyazi ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.dyazi ul li::before {
  width: 10px;
  content: "";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  color: var(--mavi);
  font-size: 25px;
  border: 0;
  text-decoration: none;
  margin-right: 29px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .dyazi ul li::before {
    margin-right: 25px;
  }
}
.dyazi ol {
  padding: 20px 0;
}
.dyazi ol li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--siyah);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .dyazi ol li {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.dyazi ol li::before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  content: "";
  background: var(--mavi);
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .dyazi ol li::before {
    margin-right: 25px;
  }
}

.hemenara {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--mavi);
  border-radius: 15px;
  overflow: hidden;
}

.hara {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 0;
  text-align: center;
}
.hara i {
  font-size: 30px;
  color: var(--mavi);
}
.hara p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 13px;
  color: var(--siyah);
}
.hara b {
  font-size: 30px;
  font-weight: 600;
  margin-top: 3px;
  color: var(--siyah);
}
.hara b a {
  color: var(--siyah);
}
.hara b a:hover {
  color: var(--mavi);
}

.bara {
  width: 100%;
  background: var(--mavi);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  font-size: 22px;
  font-weight: 700;
  color: var(--beyaz);
  cursor: pointer;
  transition: 300ms background;
}
.bara:hover {
  background: var(--kmavi);
}
.bara p {
  margin-left: 19px;
}
.yok{
  width: 100%;
  text-align: center;
}
.yok p{
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--siyah);
}
.wpcf7-response-output{
  padding: 15px;
  border-radius: 10px;
  border: 0;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: var(--siyah);
}
.wpcf7 form .wpcf7-response-output {
  margin: 2em 0 1em;
  padding: 1em 1em;
  border: 0 solid #00a0d2;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: 0;
  background: #41C74F;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: 0;
  background: #EE6969;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: 0;
  background: #FFAC2E;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: 0;
  background: #FFE400;
}
.sorualan p{
  position: relative;
}
@media(max-width:576px){
  .wpcf7-response-output {
    font-size: 14px;
    line-height: 18px;
  }
}
div.wpcf7 .ajax-loader{
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 20px;
  background-image: none;
  background: url(../images/loading.svg) center center;
  background-size: 100%;
  pointer-events: none;
}
.tasag .col-12, .iletisimform .col-12 {
  position: relative;
}
.iletisimform .mesaj {
  position: unset !important;
}
.benial {
  position: fixed;
  left: 50px;
  bottom: 50px;
  z-index: 99;
  background: #171B27;
  height: 60px;
  padding: 0 25px;
  border-radius: 30px;
}
@media (max-width: 576px) {
  .benial {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    height: 50px;
  }
}
@media (min-width: 576px) {
  .benial {
    animation: ba 3s infinite;
  }
}
.benial span {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}
.benial span svg {
  color: #2684FE;
  width: 25px;
  height: 31px;
  margin-left: 15px;
}

@keyframes ba {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}