@import url('https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&family=Varela+Round&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
    font-family: 'Varela Round', sans-serif;
}
html{
  scroll-behavior: smooth;
}

/* SCROLL BAR BÖLÜMÜ */

::-webkit-scrollbar {
    width: 10px;
    background-color: #eaeaea;
    border-left: 1px solid #cecece;
}
::-webkit-scrollbar-thumb {
    background-color: #F26419;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #DD1C1A;
}


.hero-about{
  width: 100%;
  height: 70vh;
  background:linear-gradient(rgba(0,0,0, .2), rgba(0,0,0,.2)), url("../smartimg/d8c66894-d0a3-4287-a717-02fd28f7561a.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-area{
  padding: 120px 0 0 0;
}  

.about-area .container {
  max-width: 1100px;
  height: auto;
  margin: -55px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.text-container{
    width: 50%;
}



/* POLİTİKALAR BÖLÜMÜ */

.policy-list{
  padding: 40px 0;
  margin-top:145px;
  background: #f8f8f8;
}
.policy-list .head{
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.policy-list .head h2{
  font-size: 25px;
}
  
.policy-list .container{
   height: auto;
  max-width: 1100px;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.policy-list .container .col-2{
  width: 45%;
  height: 100%;

}

.col-2  ul li{
  margin: 5px;
}

/* SORULAR BÖLÜMÜ */

.question-area{
  padding: 75px 0;
}

.question-area .container{
  max-width: 1000px;
  padding: 30px;
  margin: 0 auto;
}
.question-area .head{
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 20px;
}

details div {
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 1.5em;
    background: #14145A;
    color: #fff;
}

details div > * + * {
    margin-top: 1.5em;
}

details + details {
    margin-top: .5rem;
}

summary {
    list-style: none;
    background: #fff;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    border: 2px solid #000;
    padding: .75em 1em;
    cursor: pointer;
    position: relative;
    padding-left: calc(1.75rem + .75rem + .75rem);
}

summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: .75rem;
    content: "↓";
    width: 1.75rem;
    height: 1.75rem;
    background-color: #000;
    color: #FFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

details[open] summary {
    background-color: #eee;
}

details[open] summary:before {
    content: "↑";
}

summary:hover {
    background-color: #eee;
}

.question-area a {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 0 0;
}

.question-area a:hover {
    box-shadow: 0 3px 0 0;
}

code {
    font-family: monospace;
    font-weight: 600;
}


@media(max-width:991px){
  .about-area .container{
    flex-direction: column-reverse;
  }
  .about-area .container-reverse{
    flex-direction: column;
  }
   
   .about-area .col-2{
    width: 90%;
   }
   .about-area .container .col-2 p{
    font-size: 14px;
   }


   .policy-list .container{
    flex-direction: column;
    align-items: center;
   }
   .policy-list .container .col-2{
    width: 90%;
   }
   .policy-list li{
    font-size: 13px;
   }
}