@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-contact{
  width: 100%;
  height: 70vh;
  background:linear-gradient(rgba(0,0,0, .3), rgba(0,0,0,.3)), url("../smartimg/9cb8aafa-cb72-4659-a64a-54b29c154675.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


/* CONTACT BÖLÜMÜ */

.contact-area .container{
  height: auto;
  max-width: 1100px;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.col-2{
  height: auto;
  background-color: #EEEEEE;
  width: 90%;
  margin: 15px;
  display: flex;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.col-2 .image{
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
}
.image img{
  width: 100%;
}

.col-2 .text-box{
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.text-box p{
  margin: 5px 0;
}

.text-box span{
  col
}

@media(max-width:991px){
  .contact-area .container .col-2{
    flex-direction: column;
  }

  .col-2 .image {
    width: 100%;
  }
  .col-2 .text-box{
    width: 100%;
  }.col-2 .text-box p{
    font-size: 12px;
  }
}