:root {
  --mavi: rgb(4, 234, 250);
  --pembe: #de3163;
  --siyah: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family:'Open-Sans','sans-serif' */
}
body {
  font-family: "Varela Round", sans-serif;
  position: relative;
}

/* NavBar Kısmı  */
.container-nav {
  margin: 0em auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav {
  display: block;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--siyah);
  padding: 1rem 0;
  z-index: 9999;
}
nav ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  /* background: rgb(4, 234, 250) ;
    border-radius: 5px; */
}
nav ul li {
}
nav ul li a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  color: #fff;
  border-radius: 5px;
}
.active_navlink,
nav ul li a:hover {
  background-color: rgb(4, 234, 250);
  color: #fff;
}
nav .nav-logo {
  /* display: inline-block; */
  width: 10%;
  overflow: hidden;
}
nav .nav-logo img {
  width: 100%;
  border-radius: 10px;
}
nav .nav-menu {
  display: none;
}
nav .nav-menu .menu-icon {
  font-size: 2rem;
  color: #fff;
}

/* Slider */
main {
  /* position: relative; */
  height: 100vh;
  background-color: #070707;
  background-image: url(../images/1.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: 100vw; */

  object-fit: contain;
  transition: background-image 0.7s;
  transition-timing-function: ease-out;
}
main .slider {
  padding-top: 5rem;
  position: relative;
}
main .slider .slider-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 90%;
  height: 500px;
}
main .slider .slider-textler {
  border-radius: 10px;
  padding: 1rem;
  width: 50%;
  background-color: rgba(5, 2, 2, 0.7);
}
main .slider .slider-container .slider-baslik {
  /* color:rgb(4, 234, 250) ; */
  margin: 2rem;
  color: rgb(255, 255, 0);
}
main .slider .slider-container .slider-aciklama {
  margin: 2rem;
  /* width: 45%; */
  line-height: 1.5em;
  color: #fff;
}
main .geriBtn {
  position: absolute;
  top: 50%;
  left: 1rem;
  padding: 1rem;
  background: black;
  color: white;
  opacity: 0.7;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
main .ileriBtn {
  position: absolute;
  top: 50%;
  right: 1rem;
  padding: 1rem;
  background: black;
  color: white;
  opacity: 0.7;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
main .ileriBtn:hover,
main .geriBtn:hover {
  opacity: 1;
}

/* Section-1*/
section#section-1 {
  background-color: rgba(4, 234, 250, 0.466);
}
.container {
  width: 90%;
  margin: 0 auto;
}
#section-1 .row {
  display: flex;
}
#section-1 .col {
  width: 50%;
  padding: 1rem;
}
#section-1 .col img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}
#section-1 .col h2 {
  padding: 1rem;
  border-bottom: 3px solid var(--siyah);
  border-radius: 5px;
}
#section-1 .col p {
  padding: 1rem;
  font-size: 1rem;
}
#section-1 .col p::first-letter {
  margin-left: 1rem;
}

/* Section-2 */
section#section-2 {
  background-color: var(--siyah);
}
.container {
  width: 90%;
  margin: 0 auto;
}
#section-2 .row {
  display: flex;
  flex-direction: row-reverse;
}
#section-2 .col {
  width: 50%;
  padding: 1rem;
}
#section-2 .col img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
}
#section-2 .col h2 {
  padding: 1rem;
  border-bottom: 3px solid var(--mavi);
  color: #fff;
  border-radius: 5px;
}
#section-2 .col p {
  padding: 1rem;
  font-size: 1rem;
  color: #fff;
}
#section-2 .col p::first-letter {
  margin-left: 1rem;
}
/* Section-3 */

#section-3 {
}
#section-3 .urun-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  margin-top: 3rem;
  border: 1px solid #e3e3e3;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.5s;
  overflow: hidden;
  height: 450px;
}
#section-3 .urun-card img {
  height: 60%;
}

#section-3 .urun-card:hover {
  cursor: pointer;
  transform: translateY(-15px);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
#section-3 .urun-card h3 {
  padding: 1rem;
  text-align: left;
  width: 100%;
}
#section-3 .urun-card p {
  padding-left: 1rem;
  line-height: 1;
}
.owl-dots {
  display: none;
}
.owl-nav {
  display: none;
}
/* #section-3 .urun-card p::first-letter{
  padding-left: 1.2rem;

} */
#section-3 .urun-card .btnMore {
  margin: 1rem;

  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: #fff;
  background: var(--siyah);
  border-radius: 5px;
  transition: all 0.5s;
}
#section-3 .urun-card .btnMore:hover {
  background-color: var(--mavi);
  color: #fff;
}
#section-3 .owl-carousel {
  margin-bottom: 2rem;
}

/* Contact-Section */
#contact-section {
  /* background-image: url(../../images/antalya.jpg);
  background-repeat: no-repeat;
  background-size: cover; */
}
#contact-section .row {
  display: flex;
  gap: 1rem;
}
#contact-section .row .col {
  width: 50%;
}
#contact-section .row #contact-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid gray;
  border-radius: 10px;
  padding: 2em;
}
#contact-section .row .col .input-group {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.recaptcha {
  display: block;
  padding: 12px 16px;
  background: black;
  color: white;
  text-align: center;
}
.input-group-recaptcha {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.input-group-recaptcha input[type="text"] {
  text-align: center;
}
#contact-section .row .col .input-group input[type="text"],
.input-group-recaptcha input[type="text"] {
  padding: 0.4em 1em;
  outline: none;
  border: none;
  border-bottom: 2px solid black;
  transition: all 0.5s;
  /* background-color: #e1e1e1;*/
}
#contact-section .row .col .input-group input[type="text"]:focus,
.input-group-recaptcha input[type="text"]:focus {
  background-color: black;
  color: white;
  border-bottom: 2px solid var(--siyah);
}
#contact-section .row .col textarea {
  min-width: 220%;
  max-width: 220%;
  padding: 1rem;
}
#contact-section .row .col button {
  min-width: 100%;
  padding: 1rem;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: var(--siyah);
  color: white;
  font-weight: bolder;
  transition: all 0.5s;
}
#contact-section .row .col button:hover {
  min-width: 100%;
  padding: 1rem;
  border-radius: 5px;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: var(--mavi);
  color: white;
  font-weight: bolder;
}
#contact-section .row .col:nth-child(2) {
  flex-direction: column;
}

#contact-section .row .col:nth-child(2) .col-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid gray;
  margin-top: 1rem;
  padding: 2rem;
  height: 50%;
  border-radius: 10px;
}
#contact-section .row .col:nth-child(2) .col-2:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid gray;
  margin-top: 1rem;
  padding: 0;
  height: 50%;
}
#contact-section .contact-list {
  list-style-type: none;
}
#contact-section .social-media {
  display: flex;
  gap: 1rem;
}
#contact-section .social-media i {
  font-size: 2rem;
}
#contact-section .fa-location-dot {
  color: red;
}
#contact-section .fa-envelope {
  color: rgb(7, 140, 228);
}
#contact-section .fa-phone {
  color: rgb(19, 250, 30);
}
#contact-section .social-media .fa-facebook {
  color: #4267b2;
}
#contact-section .social-media .fa-twitter {
  color: #1da1f2;
}

/* #contact-section .social-media .fa-instagram{
 
} */

#contact-section .social-media .fa-linkedin {
  color: #0e76a8;
}

/* Footer */

footer {
  background-color: rgba(5, 2, 2, 0.7);
  margin-top: 3rem;
  padding: 2rem;
}
footer .row {
  display: flex;
  justify-content: space-between;
}

footer .row .col-3 {
  flex-basis: 33%;
}
footer .row .col-3:nth-child(2) ul {
  list-style: none;
}
footer .row .col-3:nth-child(2) h4,
footer .row .col-3:nth-child(3) h4 {
  color: black;
  margin-bottom: 1rem;
}
footer .row .col-3 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .row .col-3 ul li {
}
footer .row .col-3 ul li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.5s;
}
footer .row .col-3 ul li a:hover {
  color: #1da1f2;
}
/* Author */
.author {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  width: 100%;
  border-top: 1px solid gray;
}
.author a {
  color: white;
}

/* Media Queryler */
@media screen and (max-width: 600px) {
  /* Navigation */
  .container-nav {
    flex-direction: column;
    align-items: flex-end;
  }
  nav .nav-logo {
    display: none;
  }
  nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    width: 100%;
  }
  nav ul li {
    padding: 0.5rem;
    width: 100%;
  }
  nav .nav-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    /* border-bottom:1px solid #fff; */
  }
  nav .nav-menu .nav-markaismi {
    color: #fff;
  }

  /* Slider */
  main .slider {
    padding-top: 4rem;
  }
  .slider-textler {
    padding: 0.4em 0em !important;
    width: 100% !important;
    max-height: 70%;
  }
  .slider-baslik {
    font-size: 1em;
    margin: 0;
    text-align: center;
  }
  .slider-aciklama {
    font-size: 0.7em;
    /* width: 95%!important; */
  }

  /* Section-1 */
  #section-1 .row {
    flex-direction: column-reverse;
  }
  #section-1 .row .col {
    width: 100%;
  }
  #section-1 .col img {
  }
  /* Section-2 */
  #section-2 .row {
    flex-direction: column-reverse;
  }
  #section-2 .row .col {
    width: 100%;
  }
  #section-2 .col img {
  }
  /* Contact-Section */
  #contact-section {
  }

  #contact-section .row {
    flex-direction: column;
  }
  #contact-section .row .col {
    width: 100%;
  }
  #contact-section .row .col .input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #contact-section .row .col textarea {
    min-width: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  /* Footer */
  footer .row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  footer .row .col-3 ul {
    align-items: center;
  }
  .hide {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  main {
    height: 350px;
  }
  main .geriBtn {
    display: none;
  }
  main .ileriBtn {
    display: none;
  }
  main .slider {
    padding-top: 4rem;
  }
  main .slider .slider-container {
    display: block;
  }
  main .slider-textler {
    padding: 0.4em 0em !important;
    width: 100% !important;
    max-height: 70%;
  }
  main .slider-baslik {
    font-size: 1em;
    margin: 0;
    text-align: center;
  }
  main .slider-aciklama {
    font-size: 0.7em;
    /* width: 95%!important; */
  }
}
