body,
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
section{
    background-color: black;
}
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a,
button {
  color: hsl(0, 0%, 100%);
}
#hbody1{
    color: black;
    font-size: 64px;
    font-weight: 270px;
    line-height: 70px;
    font-family: "Cormorant Garamond", serif;
}
#hbody2{
    color: black;
    font-size: 35px;
    font-weight: 500px;
    line-height: 34px;
    font-family: "Roboto", sans-serif;
}

#pbody{
    font-family: "Roboto", sans-serif;
    font-weight: 400px;
    font-size: 16px;
    line-height: 27px;
    color: black;
}
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

#mainLi p{
  color: rgb(0, 0, 0);
}
#mainLi li{
  color: rgb(0, 0, 0);
}
.c-header {
  display: flex;
  align-items: center;
  padding: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  
}

.c-header__title {
  text-transform: uppercase;
  font-size: 2.5em;
  margin: 0 2rem;
  color: rgb(255, 255, 255)
}

.c-navigation {
  flex-basis: 70%;
}

.c-navigation__list {
  padding: 0;
}

.c-navigation__list-item {
  display: inline-block;
  margin: 0 2rem;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9em;
  opacity: 0.7;
  font-weight: 500;
}

.c-navigation__list-item:after {
  content: "";
  width: 2px;
  height: 100%;
  background: hsl(0, 0%, 100%);
  position: absolute;
  display: inline-block;
  right: -2rem;
}

.c-navigation__list-item:last-of-type:after {
  background: transparent;
}

.c-navigation__list-item--active {
  opacity: 1;
}

.c-navigation__list-item--active > a {
  position: sticky;
}

.c-navigation__list-item--active > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: hsl(0, 0%, 100%);
  position: absolute;
  bottom: -0.4rem;
  left: 0;
}

.c-cta {
  display: flex;
  align-items: center;
}

.c-cta > a {
  font-size: 0.9em;
  opacity: 0.7;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 2rem;
}

.c-cta__button {
  border: 0;
  background-color: transparent;
  display: inline-block;
}

.c-cta_button_search {
  width: 15px;
  height: 15px;
  margin-right: 3rem;
}

.c-cta_button_search svg {
  width: inherit;
  height: inherit;
  fill: hsl(0, 0%, 100%);
}

.c-cta_button_menu {
  width: 20px;
  height: 2px;
  background-color: hsl(0, 0%, 100%);
  position: relative;
}

.c-cta_button_menu:after,
.c-cta_button_menu:before {
  content: "";
  width: inherit;
  height: inherit;
  background-color: inherit;
  position: absolute;
  left: 0;
}

.c-cta_button_menu:after {
  bottom: -5px;
}

.c-cta_button_menu:before {
  top: -5px;
}

.c-socials {
  position: fixed;
  bottom: 0;
  left: 0;
  margin-top: 50px;
  background-color: hsl(0, 0%, 100%);
  padding: 1.8rem 1.8rem 0.8rem 1.8rem;
  z-index: 2;
}

#misyonBody{
  margin-top: 200px;
  background-color: rgb(0, 0, 0);
  border: 5px solid red;
  
}

#misyonBodyDiv{
  margin-top: 80px;
  margin-bottom: 80px;
}
.c-socials__list {}

.c-socials__list-item {
  margin-bottom: 1rem;
}

.c-socials__list-item a svg {
  width: 21px;
  height: 21px;
}

.c-slider {}

.c-slider-init {}

.c-slide {
  display: inline-flex !important;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  will-change: background-size;
  position: relative;
  transition: 1s ease;
  transition-delay: 0.4s;
}

.c-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.61) 76%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.61) 76%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.61) 76%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#00000000",
    endColorstr="#9c000000",
    GradientType=0
  );
}

.c-slide-content {
  padding: 2rem;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
  max-width: 1200px;
}

.c-slide__title {
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 15px;
  transform: translateY(150px);
  opacity: 0;
  transition: 0.8s ease;
  will-change: opacity, transform;
}

.c-slide__title--large,
.c-slide__title--medium {
  display: block;
  font-size: 2.5em;
  line-height: 110px;
  transform: translateY(150px);
  will-change: transform;
  transition-delay: 0.4s;
  position: relative;
  transition: 1s ease;
}

.c-slide__title--medium {
  font-size: 1.6em;
  line-height: 100px;
}

.c-slide__subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
}

.c-slide__body {
  margin-top: 0.7rem;
  opacity: 0;
  line-height: 27px;
  text-align: left;
}

.c-slide__info {
  transform: translateY(-150px);
  transition: 0.8s ease;
}

.c-wrap {
  padding: 2rem 0;
  overflow: hidden;
}

.c-wrap--small {
  max-width: 30%;
}

.c-wrap--line {
  position: relative;
}

.c-wrap--line:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: hsl(0, 0%, 100%);
  bottom: 0;
  transition: 0.9s ease;
  transition-delay: 0.4s;
}

.slick-list {
  overflow: hidden;
}

#servicesHeader{
  background-color: rgb(0, 0, 0);

}
#homeHeader{
  background-color: rgb(0, 0, 0);
  margin-bottom: 150px;
  
}

#homeSlider{
  margin-top: 120px;
}


.animateIn,
.initialAnimation {
  .c-slide__title--large,
  .c-slide__title--medium,
  .c-slide__info,
  .c-slide__title,
  .c-slide__body {
    transform: translateY(0);
    opacity: 1;
  }

  .c-wrap--line:after {
    left: 0;
    transform: translateX(0);
    width: 100%;
  }
}
.zoom-in {
  transition: transform 0.3s; /* Geçiş süresini ayarlayabilirsiniz */
}

.zoom-in:hover {
  transform: scale(1.2); /* Yakınlaştırma düzeyini ayarlayabilirsiniz */
}

.slick-list {
  transition: 0.5s ease;
}

.u-scale-out {
  transform: scale(0.6) !important;
  transition: 0.5s ease;
}

.u-scale-in {
  transform: scale(1);
}


#img{
  border: 5px solid red;
}
.footer {
  background-color: #070808;
  padding: 50px 15px;
  width: 100%;
  position: relative;
  
  
  
}

#servicesUl li{
  color: black;
}
.iletisim {
  background-color: #ffffff;
  padding: 50px 15px;
  width: 100%;
  position: relative;
  justify-content: center;
  text-align: center;
  align-items: center;
   
}
.logo{
  font-size: x-large;
  margin-bottom: 20px;
}
.iletisim{
  margin-top: 250px;
}

label {
  font-weight: bold;
}
iframe{
  margin-top: 20px;
}
.baslik h1{
  font-family: 'DM Serif Display', serif;
  color: #ff0000;
  margin-bottom: 10px;
}

h1,p,h3{
  font-family: 'Open Sans', sans-serif;
}
.text h1{  
  font-family: 'DM Serif Display', serif;
}
.hakkimizda{ 
  text-align: center;
  margin: 60px;
}
.ilk,h3{
  font-weight: bold;
}
.logo{
  font-size: x-large;
  margin-bottom: 20px;
}
.hakkimizda_2{
  position: relative;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.footer p {
  color: #a6a6a6;
}

.footer h3 {
  color: white;
  
}

.footer ul {
  list-style-type: circle;
  padding: 0;
}

.footer li {
  margin-bottom: 10px;
  color:#2dbb09;
}

.footer a {
  text-decoration: none;
  color: #a6a6a6;
}

.footer a:hover {
  color: #777;
}
.danger{
  color:#2dbb09;
}
#bantCards{
  margin-top: 250px;
  
}
#servicesImg{
  border: 5px solid red;
  border-radius: 15px;
}
#servicesParagraph{
  margin-bottom: 250px;
}
.logo h1{
  font-family: 'DM Serif Display', serif;
  color: #41bb09;
  margin-bottom: 30px;
}
.footer .col-md-3:nth-of-type(2) {
  padding-left: 50px;
}
@media only screen and (max-width: 1800px){
  #servicesCards{
    margin-top: 350px;
  }
}

@media only screen and (max-width: 1300px) {
  .c-header {
    text-align: center;
  }

  .c-navigation {
    display: none;
  }

  .c-header__title {
    font-size: 2em;
  }
  #servicesCards{
    margin-top: 200px;
  }

}


@media only screen and (max-width: 1100px) {
  .c-header__title {
    display: block;
  }

  .c-navigation {
    display: block;
  }

}


@media only screen and (max-width: 800px) {
  .c-header__title {
    display: block;
  }

  .c-navigation {
    display: none;
  }


  .c-slide__subtitle{
    font-size: 15px;
    text-align: start;
  }

  #resLink{
    display: none;
  }
  
}