* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

::selection {
  color: #fff;
  background-color: #e94815;
}

.mobilheader {
  display: none;
}

.baslik {
    display: flex;
    justify-content: center;
    margin-bottom: 10rem;
}

.baslik h2 {
    color: #e94815;
    font-weight: 500;
    font-size: 32px;
}

.teklifal form.mobile {
  display: none;
}

/* Container Baslangic */
.container {
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}


@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}


@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}


@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (min-width: 1400px) {
    .container {
      max-width: 1320px;
    }
}

/* Container Bitis */
.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
    overflow: hidden;
    z-index: -1;
}

.banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  } 


/* Nav Baslangic */

.desktopnavtop {
  display: flex;
  margin-top: 1rem;
  justify-content: center;
}

.desktopnavtop ul {
  display: flex;
}

.desktopnavtop li {
  padding: 0 6rem;
  list-style: none;
}

.desktopnavtop p {
  color: whitesmoke;
  font-weight: 100;
  font-size: 13px;
  opacity: .8;
}

.desktopnavtop svg {
  width: 20px;
  margin-bottom: -7px;
}

.desktopnavtop img {
  width: 32px;
  height: 30px;
}

nav li img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

hr.navtop {
  border-top: 1px solid;
  margin: 0 5rem;
  margin-bottom: -2rem;
  opacity: .3;
}

nav {
    display: flex;
    margin: 3rem 5rem 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    padding: 0 1rem 0;
}
nav ul li a {
    color: whitesmoke;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: .2s ease-in;
}

nav ul li a:hover {
  color: #e94815;
}

nav .logo img {
    max-width: 150px;
}

.navbuton {
    background-color: #e94815;
    border-radius: 10px;
    padding: .5rem 1.5rem;
    cursor: pointer;
    transition: .2s ease-out;
}

.navbuton:hover {
  transform: scale(1.05);
}

.navbuton a {
    background: none;
    color: white;
    text-decoration: none;
    align-items: center;
}
.navbuton span {
    background: none;
    display: flex;
}
.navbuton svg {
    max-width: 30px;
    background: none;
    margin-right: .3rem;
}

.mobilheader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center !important;
  margin-top: 20px;
  margin-bottom: 100vh;
}

.mobilheader img {
  max-width: 100px;
  margin-top: 25px;
}

.mobilheader svg {
  margin-bottom: -4px;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1000;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: whitesmoke;
  transition-duration: .5s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

.menukapat {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 25px;
  position: absolute;
  right: 30px;
  top: 50px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 100px 0;
  list-style: none;
  background-color: #1c1f3e;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
  transition-duration: .5s;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: whitesmoke;
  text-decoration: none;
  transition-duration: .25s;
  text-align: center;
  font-size: 20px;
}
.menu__item:hover {
  background-color: #CFD8DC;
}
/* Nav Bitis */

/* Giriş Kısmı */

.ortayazi {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 15rem 20rem 0 ;
}

.ortayazi h1 {
    color: whitesmoke;
    font-weight: 500;
    margin: 1rem;
}

.ortayazi h2 {
    color: whitesmoke;
    font-weight: 100;
    font-size: 15px;
}

.giriskutular {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 35rem 5rem 0;
}

.giriskutular img {
    max-width: 80px;
}

.giriskutular p {
    color: whitesmoke;
    font-weight: 300;
}

.giriskutular .kutu {
    display: flex;
    margin: 0 10px;
    border: 0px solid rgb(67, 67, 67);
    padding: 1rem;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0px 0px 15px #aaaaaa;
}

.giriskutular .kutu p {
    font-size: 16px;
}

.giriskutular hr.kutu {
    border: 0;
    border-top: 1px solid rgb(67, 67, 67);
    margin: 0 .5rem;
    padding: 0;
}
/* Giriş Kısmı Son */

/* Hakkımızda Baslangic */

.hakkimizda {
    display: flex;
    flex-direction: row;
    margin-bottom: 5rem;
    margin-top: 18rem;
}

.hakkimizdayazi {
    margin-right: 90px;
}

.hakkimizdayazi h1 {
    color: #e94815;
    font-weight: 500;
    margin-bottom: 1.5rem;
}


.accordion {
    transform-style: preserve-3d;
  }
.accordion::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translateZ(-10px) rotate(5deg);
}
.accordion .tab {
  cursor: pointer;
}
.accordion .tab:not(:last-child) {
  margin-bottom: 8px;
}
.accordion .tab-name {
  color: #292d34;
  position: relative;
  user-select: none;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 10px #e9461524;
  transition: all 0.5s ease;
}
.accordion .tab-name .chevron-icon {
  fill: #292d34;
  position: absolute;
  left: calc(100% - 10px);
  top: 50%;
  transform: translate(-100%, -50%);
  transition: all 0.5s ease;
}
.accordion .tab-content {
  user-select: none;
  color: #7c828d;
  max-height: 0;
  overflow: hidden;
  padding: 10px;
  font-size: 16px;
  border-radius: 9px;
  transition: all 0.5s linear;
  animation: slideDownReverse 0.25s ease forwards;
}
.accordion .tab.active .tab-name {
  color: white;
  margin-bottom: 16px;
}
.accordion .tab.active .tab-content {
  color: white;
  max-height: 300px;
  animation: slideDown 1s ease-out forwards;
}
.accordion .tab.active .chevron-icon {
  transform: translate(-100%, -50%) rotate(180deg);
  fill: white;
}
.accordion .tab:nth-of-type(1).active .tab-name {
  background: linear-gradient(45deg, rgb(233, 72, 21) 0%, rgb(233, 72, 21) 100%);
  box-shadow: 0 10px 25px rgba(233, 70, 21, 0.271);
}
.accordion .tab:nth-of-type(1).active .tab-content {
  background: linear-gradient(45deg, rgb(233, 72, 21) 0%, rgb(233, 72, 21) 100%);
  box-shadow: 0 10px 25px rgba(233, 70, 21, 0.271);
}
.accordion .tab:nth-of-type(2).active .tab-name {
  background: linear-gradient(45deg, rgb(233, 72, 21) 0%, rgb(233, 72, 21) 100%);
  box-shadow: 0 10px 25px rgba(233, 70, 21, 0.271);
}
.accordion .tab:nth-of-type(2).active .tab-content {
  background: linear-gradient(45deg, rgb(233, 72, 21) 0%, rgb(233, 72, 21) 100%);
  box-shadow: 0 10px 25px rgba(233, 70, 21, 0.271);
}
.accordion .tab:nth-of-type(3).active .tab-name {
  background: linear-gradient(45deg, rgb(233, 72, 21) 0%, rgb(233, 72, 21) 100%);
  box-shadow: 0 10px 25px rgba(233, 70, 21, 0.271);
}
.accordion .tab:nth-of-type(3).active .tab-content {
  background: linear-gradient(45deg, rgb(233, 72, 21) 0%, rgb(233, 72, 21) 100%);
  box-shadow: 0 10px 25px rgba(233, 70, 21, 0.271);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slideDownReverse {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}
/* Hakkımızda Bitis*/

/* Faaliyetler Baslangic*/

.faaliyetkutular {
    display: flex;
    justify-content: space-between;
}

.faaliyetkutular .kutu img {
    max-width: 200px;
}

.faaliyetkutular .kutu {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0 2rem;
    text-align: center;
    max-width: 300px;
    transition: .1s ease-in;
    border: 0px solid #e94815;
}

.faaliyetkutular .kutu h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.faaliyetkutular .kutu p {
    font-size: 14px;
    margin-bottom: 20px;
}

.faaliyetkutular .kutu img {
    margin-top: -37px;
    margin-bottom: 2rem;
}

.faaliyetkutular .kutu:hover {
    transform: translateY(-5%);
    border: 1.5px dotted #e94815;
}

/* Faaliyetler Bitis*/

/* Teklifal Baslangic*/

.teklifal {
  display: flex;
  margin-top: 10rem;
  justify-content: space-around;
}

.teklifbaslik {
  display: flex;
  margin-bottom: 2rem;
  min-width: 460px;
  justify-content: center;
}

.teklifform {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem;
}

.teklifform table {
  width: 100%;
}

.teklifform td {
  width: 100%;
  padding: .5rem 0;
}

.teklifform input, textarea {
  padding: 1rem;
  border-radius: 0;
  border: 0;
  background-color: #f0f2f3;
  font-size: 15px;
}

.teklifform textarea {
  height: 200px;
  resize: none;
}

.teklifform input, textarea:focus {
  outline: none;
}

.teklifform input[type=submit] {
  background-color: #e94815;
  color: whitesmoke;
  width: 100%;
}

.teklifbilgi {
  display: flex;
  flex-direction: column;
  padding-left: 5rem;
}

.teklifbilgi img {
  width: 500px;
  transition: .2s ease-out;
}

.teklifbilgi img:hover {
  transform: scale(1.03);
}

.teklifbilgi svg {
  color: white;
  border-radius: 100px;
  background-color: #e94815;
  padding: 4px;
}

.teklifbilgi h3 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.teklifbilgi .iletisimsatir {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.teklifbilgi p {
  max-width: 600px;
}

.teklifbilgi .iletisimsatir p {
  font-size: 14px;
  font-weight: 100;
}

.teklifbilgi .iletisimsatir svg {
  margin-bottom: -6px;
}

/* Teklifal Bitis*/

/* Footer Baslangic */
footer {
  background-color: #1c1f3e;
  margin-top: 8rem;
}

.footericerik {
  padding: 5rem 0rem;
  display: flex;
  justify-content: space-around;
}

.footericerik img {
  max-width: 150px;
  height: 100%;
  margin-left: -20px;
  margin-bottom: 30px;
}


.footericerik p {
  color: whitesmoke;
  font-weight: 400;
  font-size: 13px;
}

.footersosyalmedya {
  display: flex;
  margin-top: 10px;
}

.footersosyalmedya a {
  color: whitesmoke;
}

footer ul {
  display: flex;
  justify-content: space-between;
}

footer li {
  max-width: 320px;
  list-style: none;
  padding: 0 2rem;
}

footer svg {
  margin-bottom: -5px;
}

.footermap {
  display: flex;
  justify-content: center;
}


.footercopyright {
  display: flex;
  flex-direction: column;
  align-items: center;
}


hr.footer {
  border: 0;
  border-top: .1px solid whitesmoke;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 2rem;
}

.footercopyright a {
  color: whitesmoke;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 15px;
}
/* Footer Bitis */

/* Responsive Kodlari Baslangic */


/* Extra kucuk cihazlar (telefonlar, 600px ve alti) */
@media only screen and (max-width: 768px) {

  /* Giris Kismi Baslangic */

  .desktopnavtop {
    display: none;
  }

  hr.navtop {
    display: none;
  }

  nav.desktop {
    display: none;
  }

  .ortayazi {
    margin: 13rem 0;
  }

  .giriskutular {
    display: none;
  }

  /* Giris Kismi Bitis */

  /* Hakkimizda Kismi Baslangic */
  .hakkimizda {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hakkimizdayazi {
    margin-right: 0;
  }

  .accordion {
    margin-top: 2rem;
  }
  /* Hakkimizda Kismi Bitis */

  /* Faaliyetler Kismi Baslangic */
  .faaliyetkutular {
    flex-direction: column;
    align-items: center;
  }

  .faaliyetkutular .kutu {
    padding: 0 3rem;
    margin-bottom: 5rem;
  }
  /* Faaliyetler Kismi Bitis */

  /* Teklif Al Baslangic */
  
  .teklifal {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
  }

  .teklifbaslik {
    min-width: 100px !important;
  }

  .teklifbaslik h1 {
    font-size: 18px !important;
  }
  
  .teklifal form.desktop {
    display: none;
  }

  .teklifal form.mobile {
    display: flex;
  }

  .teklifform {
    padding: 2rem;
  }

  .teklifform input{
    width: 100%;;
  }

  .teklifform textarea {
    width: 100%;
  }

  .teklifbilgi {
    padding: 0;
    margin-top: 5rem;
  }

  .teklifbilgi img {
    display: none;
  }
  /* Teklif Al Bitis */

  /* Foooter Baslangic */
  .footericerik {
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
  }

  footer img {
    margin-bottom: 50px !important;
    max-width: 100px !important;
    max-height: 33px !important;
  }

  footer ul {
    flex-direction: column;
  }

  footer li {
    margin-bottom: 10px;
  }

  footer p {
    margin-bottom: 20px;
  }

  .footersosyalmedya {
    margin-top: 30px;
    margin-bottom: -30px;
  }
  /* Foooter Bitis */

  /* Küçük Cihazlar (Tabletler ve Büyük Telefonlar, 600px ve üstü) */
}


  @media only screen and (max-width: 1200px) {
    
    .desktopnavtop {
      display: none;
    }

    hr.navtop {
      display: none;
    }

    .giriskutular {
      display: none;
    }

    nav.desktop {
      display: none;
    }

    form.desktop {
      display: none;
    }

    form.mobile {
      display: block !important;
    }

    .teklifal {
      align-items: center;
      justify-content: center;
    }

    .faaliyetkutular .kutu img {
      max-width: 150px;
    }

    .teklifform {
      padding: 2rem;
    }
  
    .teklifform input{
      width: 100%;;
    }
  
    .teklifform textarea {
      width: 100%;
    }

    .teklifbilgi {
      display: none;
    }

    .teklifbaslik h1 {
      font-size: 30px;
    }

    footer img {
      max-width: 100px;
      max-height: 35px;
    }

    .faaliyetkutular {
      align-items: center;
      flex-wrap: wrap;
    }
  
    .faaliyetkutular .kutu {
      padding: 0 3rem;
      margin-bottom: 5rem;
      min-height: 430px;
    }

  }
  @media only screen and (min-width: 1201px) { 
    nav.desktop {
      display: flex !important;
    }

    .mobilheader {
      display: none;
    }
  }
/* Responsive Kodlari Bitis */