@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600&display=swap");



html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 0px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  height: 80px;
}

header .logo {
  font-weight: bolder;
  font-size: 25px;
  position: relative;
  left: 150px;
  color: #333;
  top: 10px;
}

header .navbar ul {
  list-style: none;
  position: relative;
  right: 150px;
  text-decoration: none;
}

header .navbar ul li {
  position: relative;
  float: left;
}

header .navbar ul li a {
  font-size: 15px;
  padding: 10px;
  color: #333;
  display: block;
  text-decoration: none;
}

header .navbar ul li a:hover {
  background: #333;
  color: #fff;
}

header .navbar ul li ul {
  position: absolute;
  left: 0;
  width: 200px;
  background: #fff;
  display: none;
}

header .navbar ul li ul li {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

header .navbar ul li ul li ul {
  left: 200px;
  top: 0;
}

header .navbar ul li:focus-within>ul,
header .navbar ul li:hover>ul {
  display: initial;
}

#menu-bar {
  display: none;
}

header label {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
}

@media(max-width:991px) {
  header {
    padding: 20px;
  }

  header label {
    display: initial;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .1);
    display: none;
  }

  header .navbar ul {
    position: relative;
    left: 25px;
  }

  header .navbar ul li {
    width: 100%;
  }

  header .navbar ul li ul {
    position: relative;
    width: 100%;
  }

  header .navbar ul li ul li {
    background: #eee;
    color: black;
  }

  header .navbar ul li ul li ul {
    width: 100%;
    left: 0;
  }

  #menu-bar:checked~.navbar {
    display: initial;
  }
}


/* //////////// Ana Menu - Left Start //////////// */

main {
  position: relative;
  display: flex;
  gap: 8em;
  margin-top: 11em;
  top: 75px;

}

.left-col {
  position: relative;
  width: 35%;
  left: -10px;
  margin-left: 20rem;
  margin-right: 15rem;
}

.col {
  flex-grow: 1;
}

h1 {
  font-size: 5.2rem;
  font-family: 'Playfair Display';
  font-weight: normal;
  margin: 0;
}

.subhead {
  font-size: 1.8rem;
}

.cta-btns {
  margin: 4em 0;
}

.cta-btns,
.secondary-cta {
  display: flex;
  gap: 2em;
}

.primary-cta {
  background-color: bisque;
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  border-radius: 1.9em;
  padding: 1em 2em;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.news {
  width: 75%;
  display: flex;
  gap: 3em;
  padding: 5em;
  border: 1px solid black;
  border-radius: .8em;
  position: relative;
  cursor: pointer;
}

.news:before {
  position: absolute;
  content: "";
  background: url('../images/confetti.svg');
  width: 100px;
  height: 100px;
  top: -20px;
  left: -20px;
  z-index: 2;
}

a.employees {
  font-size: 3.5rem;
  margin: 0;
  font-weight: 200;
  line-height: 100%;
  text-decoration: none;
  color: #000;
}

a.details {
  font-size: 1.4rem;
  margin: 0;
  color: #000;
  text-decoration: none;
}
/* //////////// Ana Menu - Right Start //////////// */

.right-col {
  position: relative;
  display: flex;
  gap: 2.3em;
  right: 70px;
  margin-right: 25rem;
}

.right-col .card .card1 {
  overflow: hidden;
  cursor: pointer;
}

/*
.right-col .card .card1:hover{
  background:
}
*/
.card {
  border-radius: .8em;
  padding: 1.1em;
  display: flex;
  align-items: end;
  background-size: 150%;
  transition: background-image 800ms;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  position: relative;
  left: 20%;
  transition: 1s linear;
}

.card1 {
  grid-area: left;
  background-image: url('../images/4.jpg');
  position: relative;
  object-fit: contain;
  background-position-x: center;
  background-size: cover;
  width: 40%;
  transition: 2s linear;
  
}

.card1:hover {
  transform: scale(1.1);
}

.card2 {
  background-image: url('/images/kurumsal2.jpg');
  object-fit: cover;
  width: 40%;
  background-size: cover;
  background-position: 52%;
  transition: 1s linear;
  background-repeat: no-repeat;
}

.card2:hover {
  transform: scale(1.1);
}

.card3 {
  background-image: url('/images/g18.jpg');
  object-fit: cover;
  background-size: cover;
  background-position: center;
  width: 40%;
  transition: 1s linear;
}

.card3:hover {
  transform: scale(1.1);
}

.card-details {
  background-color: white;
  border-radius: .8em;
  padding: 2em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 800ms;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: -20px 0 10px rgba(0, 0, 0, 0.1);

}

.card-details a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}

.card-details p {
  font-size: 1.4rem;
  margin: 0;
  color: white;
}

p.product-price {
  font-size: 1.8rem;
}

/* Microinteractions */

nav ul li a:hover:before {
  width: 35%;
}

.primary-cta:hover {
  background: #E2D1BD;
}

.secondary-cta:hover svg {
  transform: translateX(15px);
}

.secondary-cta:hover {
  text-decoration: underline;
}

/*
.card:hover {
  background-size: 250%;
}
*/

.card:hover .card-details {
  transform: translateY(-20px);
}

/* Intro Animation */


.product-title {
  position: center;
  margin-left: 0%;
}

@keyframes reveal {
  from {
    transform: scaleY(1);
  }

  to {
    transform: scaleY(0);
  }
}

main {
  animation: growIn 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  transform: scale(.4);

}

@keyframes growIn {
  to {
    transform: scale(1);
  }
}

@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {
}

@media screen and (max-width:450px) {
  main {
    flex-direction: column;
    position: relative;
    left: -70px;
  }

  .news {
   display: flex;
   position: relative;
   padding: 5rem;
   width: 280px;
  }
  a.employees{
    position: relative;
    top: 20px;
  }
  a.details{
    position: relative;
    top: -30px;
  }
  .cta-btns {
    width: 20%;
    position: relative;
    right: 40px;
  }

  .right-col {
    flex-direction: column;
    position: relative;
    left: 0px;
    display: flex;
    width: 80%;
    margin-left: 20px;
  }

  .left-col {
    position: relative;
    left: -80px;
  }

  .card1 {
    width: 100%;
    height: 300px;
    display: flex;
  }

  .card2 {
    width: 100%;
    height: 300px;
    display: flex;
  }

  .card3 {

    width: 100%;
    height: 300px;
    display: flex;
  }

  .card-details {
    font-size: small;
    width: 50%;
    height: 10%;
    align-items: center;
  }
  .contact-in {
    
    margin-bottom: 1rem;
  }
}


/*  Menu */

.all-menu {
  position: relative;
  margin-top: 130px;
  margin-bottom: 0;

}

.all-menu p {
  position: relative;
  text-align: center;
  font-size: 20px;
}

.menu-page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 122px;
}

.menu-page-title h1 {
  font-size: 32px;
}

.menu-page-title hr {
  width: 500px;

}

.menu-page-title-ref {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 122px;
}

.menu-page-title-ref h1 {
  font-size: 32px;
}

.menu-page-title-ref hr {
  width: 500px;
}

.all-menu-about-about {
  position: relative;
  height: 50%;
  width: 100%;
}

/*Text About*/

.all-menu-about {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0;
  top: -100px;
}

.menu-page-title-about {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 122px;
}

.menu-page-title-about h1 {
  font-size: 32px;
}

.menu-page-title-about hr {
  width: 500px;

}

.all-menu-about-about .about-title-one {
  position: relative;
  font-size: 13px;
  margin-left: 2rem;
  margin-right: 2rem;
  height: 30%;
}

.about-title-one p {
  font-weight: 300;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.about-title-one img {
  display: grid;
  width: 100%;
  height: 100%;
}

.about-title-one h4 {
  text-align: center;
  position: relative;
  font-family: 'PlayFair Display , ' sans-serif';
 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 300;
}

.about-title-one p {
  font-family: 'Poppins';
  font-weight: 400;
  font-size: 15px;
  position: relative;

}

.about-title-one-one img {
  position: relative;
  height: 45%;
  width: 30%;
  top: 20px;
  left: 4%;
  padding: 1px;
  
}

.about-title-one-one p {
  background-color: #fffbf4;
  padding-top: 3rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 10rem;
  position: relative;
  top: 50px;
  font-size: 13px;
  margin: 10px;
  width: 50%;
  align-items: center;
  left: 10%;
  text-align: center;

}

/*Text About End*/

.menu-page-headline-photo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0px 20px 0px 20px;
  background-color: #fffbf4;
}

.menu-page-headline-photo h1 {
  font-size: 32px;

}

.menu-page-headline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0px 20px 0px 20px;
}

.menu-page-headline h1 {
  font-size: 38px;
  font-family: 'PlayFair Display , ' sans-serif';

}

.menu-page-headline i {
  font-size: 64px;
}

.menu-page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.menu-page-item-img {
  width: 50%;
  height: 290px;
  border-radius: .9rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.menu-cs {
  background-image: url("/images/DUG-\ 5.JPG");
  cursor: pointer;
}

.menu-steak {
  background-image: url("/images/DUG-\ 12.JPG");
  background-position-y:10%;
  cursor: pointer;
}

.menu-burger {
  background-image: url("/images/DUG-\ 18.JPG");
  cursor: pointer;
}

.menu-cake {
  background-image: url("/images/DUG-\ 23.jpg");
  cursor: pointer;
}

.menu-cheese {
  background-image: url("/images/DUG-\ 24.JPG");
  cursor: pointer;
}

.menu-page-item-price {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 50%;
}

.menu-page-item-price h4 {
  position: relative;
  top: -20px;
  font-size: 25px;
  font-weight: 500;
  font-family: 'PlayFair Display , ' sans-serif';

}

.menu-page-item-price span {
  font-size: 40px;
}

.menu-page-item-headline p {
  position: relative;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
  top: -20px;
}

.menu-page-item-headline a {
  border: 1px solid black;
  padding: 10px;
  font-size: 10px;
  background-color: white;
  color: black;
  font-weight: 400;
  border-radius: .9rem;
  cursor: pointer;
  text-decoration: none;
  transition: 2s;
  transform: translateY(20px);
}

.menu-page-item-headline a:hover {
  background-color: #F1E2D1;
}

.menu-page-headline-photo-p p {
  font-size: 20px;
  text-align: center;
}

/* Referanslarım */

.collab {
  width: 100%;
  height: 106px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 6rem;
}


/*ABOUT*/

.about {
  position: relative;
  margin-top: 1rem;
  background-color: #fffbf4;
  height: 400px;
  top: 100px;
}

.about h1 {
  font-size: 4rem;
  font-family: 'Playfair Display';
  text-align: center;
  position: relative;
  margin: 0px;
  padding: 0px;
}

.sabout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-right: 250px;
  margin-left: 250px;
  margin-bottom: 10px;
  font-family: 'Poppins';
  gap: 25px;
  padding: 20px;
}

.sabout1 {
  width: 100%;
}

.sabout2 {
  width: 100%;
  position: relative;
  bottom: 10px;
}



@media screen and (max-width:1024px) {
  .left-col{
    position: relative;
    height: 50%;
  }
  .news{
    position: relative;
    height: 100px;
  }
  
}


@media screen and (max-width:768px) and (min-width:450px) {
  .right-col .card {
    position: relative;
    width: 80%;
    height: 400px;
    right: -10px;
    margin: 1rem;
  }

  .all-menu {
    margin-bottom: 0px;
    flex-direction: column;
    padding: 1rem;
    position: relative;
    top: -100px;
    width: 350px;
  }

  .collab {
    position: relative;
    flex-direction: column;
    top: -150px;
    margin-bottom: 3rem;
    padding: 0px;
    display: none;
  }

  .about {
    display: none;
  }

  .contact-block-all {
    position: relative;
  }

  .contact-block-all button {
    position: relative;
    left: 60px;

  }

  .menu-page-title-ref {
    display: none;
  }

  .footer-block {
    flex-direction: column;
    position: relative;
    margin-top: 2rem;

  }

  .footer-block .footer-block-two {
    position: relative;
    right: 40px;
  }

  .footer-block .footer-block-three {
    position: relative;
    right: 40px;
  }

  .footer-block .footer-block-four {
    position: relative;
    right: 30px;
  }

  .footer-mini-block h4 {
    position: relative;
    width: 100%;
    left: 0;
  }
}

@media screen and (max-width:450px) {

  .all-menu {
    flex-direction: column;
    padding: 1rem;
    position: relative;
    top: -100px;
    width: 400px;

  }

  .menu-bar {
    position: relative;
    left: -50px;
  }

  .collab {
    position: relative;
    flex-direction: column;
    top: -150px;
    margin-bottom: 3rem;
    display: none;
  }

  .about {
    display: none;
  }

  .menu-page-title-ref {
    display: none;
  }

  .footer-block {
    flex-direction: column;
    position: relative;
    margin-top: 2rem;

  }

  .footer-block .footer-block-two {
    position: relative;
    right: 40px;
  }

  .footer-block .footer-block-three {
    position: relative;
    right: 40px;
  }

  .footer-block .footer-block-four {
    position: relative;
    right: 30px;
  }

  .footer-mini-block h4 {
    position: relative;
    right: 80px;
  }

  /*Portfolio*/
  .all-menu-photo {
    flex-direction: column;
    position: relative;
    width: 100%;
    margin: 1rem;
  }

  .about-portf {
    flex-direction: column;
   
  }

  .sabout-portf {
    flex-direction: column;
    position: relative;
    left: -75px;
    border-radius: 1rem;
    background-color: white;
    display: flex;
  }

  .sabout1-portf {
    position: relative;
    right: 5px;
  }

  .sabout-portf .sabout2-portf {
    position: relative;
    top: 10px;
    left: 0px;
  }

  .footer-about {
    flex-direction: column;
  }

  .footer-block-about {
    flex-direction: column;
  }

  .all-menu-about-about .about-title-one-one img {
    position: relative;

  }

  .all-menu-about-about .about-title-one-one p {
    position: relative;
    right: 470px;
  }

  /*Contact*/

}

/* About Portfoliyo*/

.about-portf {
  position: relative;
  margin-top: 1rem;
  background-color: #fffbf4;
  height: 100%;

}

.about-portf h1 {
  font-size: 3rem;
  font-family: 'Playfair Display';
  text-align: center;
  position: relative;
  margin: 0px;
  padding: 0px;

}

.sabout-portf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-right: 25rem;
  margin-left: 25rem;
  margin-bottom: 10px;
  font-family: 'Poppins';
  gap: 25px;
  padding: 10px;
}

.sabout1-portf img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border-image-repeat: repeat;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.sabout1-portf h4 {
  position: relative;
  top: 0;
  left: 25px;
}

.sabout-portf p {
  position: relative;
  top: 0px;
  left: 50px;
}

/*Portfolyo contact*/

.contact-block-connact-port {
  height: 380px;
  width: 100%;
  margin-bottom: 10px;
  background-image: url('/images/5.5.jpg');
  background-position: center;
  background-size: cover;
  position: relative;
  top: -100px;
}

.contact-block-connact-port h1 {
  font-size: 36px;
  color: white;
}

.contact-block-connact-port p {
  font-size: 17px;
  position: relative;
  text-align: center;
  justify-content: center;
  top: 80px;
  z-index: 1;
  color: white;
}

.contact-block-connact-port button {
  font-size: 17px;
  padding: 10px 25px;
  position: relative;
  top: 150px;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid black;
  cursor: pointer;
  transition: 2s;
  left: 47%;
}

.contact-block-connact-port button:hover {
  background-color: #E2D1BD;
}

.contact-block-connact-port button a {
  text-decoration: none;
}

/*=============== CONTACT ===============*/

@media screen and (max-width:450px) {
  .hideOnMobile {
    width: 100%;
  }
}

/* Footer Section */

.footer {
  box-sizing: border-box;
  margin: 0;
  position: relative;
  width: 100%;
  padding: 2rem 20rem;
  background-color: #fffbf4;
}

.footer .footer-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;

}

.footer .footer-block img {
  position: relative;
  margin: 0px;
  left: -20px;
  top: -30px;
}

.footer .footer-block h4 {
  font-size: 20px;
}

.footer .footer-block ul li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 300;
}

.footer .footer-block ul li a {
  font-size: 15px;
  list-style-type: none;
  text-decoration: none;
  color: black;
  font-weight: 300;
}

.footer .footer-block ul li a:hover {
  color: #E2D1BD;
}

.footer .footer-block .footer-block-one {
  text-decoration: none;
  position: relative;
  top: -32px;
  margin: 0;
  padding: 0;
}

.footer .footer-block .footer-block-two {
  text-decoration: none;
  position: relative;
  margin: 0;
  padding: 0;
}

.footer .footer-block .footer-block-three {
  text-decoration: none;
  position: relative;
  margin: 0;
  padding: 0;
  top: -17px;
}


.footer .footer-block .footer-block-four {
  text-decoration: none;
  position: relative;
  top: -32px;
  margin: 0;
  padding: 0;
}

.footer-mini-block {
  height: 18px;
  width: 100%;
  margin: 0;


}

.footer-mini-block-text {
  font-size: 15px;
  position: relative;
  top: -10px;
  padding: 0;
  margin: 0;
  margin-left: 175px;
}

/* Footer Section About */

.footer-about {
  box-sizing: border-box;
  margin: 0;
  position: relative;
  width: 100%;
  height: 100px;
  padding: 1rem 20rem;
  top: -200px;

}

.footer-about .footer-block-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;

}

.footer-about .footer-block-about img {
  position: relative;
  margin: 0px;
  left: -20px;
  top: -30px;
}

.footer-about .footer-block-about h4 {
  font-size: 20px;
}

.footer-about .footer-block-about ul li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 300;
}

.footer-block-about ul li a {
  font-size: 15px;
  list-style-type: none;
  text-decoration: none;
  color: black;
  font-weight: 300;
}

.footer-block-about ul li a:hover {
  color: #E2D1BD;
}

.footer-about .footer-block-about .footer-block-one-about {
  text-decoration: none;
  position: relative;
  top: -32px;
  margin: 0;
  padding: 0;
}

.footer-about .footer-block-about .footer-block-two-about {
  text-decoration: none;
  position: relative;
  margin: 0;
  padding: 0;
}

.footer-about .footer-block-about .footer-block-three-about {
  text-decoration: none;
  position: relative;
  margin: 0;
  padding: 0;
  top: -17px;
}


.footer-about .footer-block-about .footer-block-four-about {
  text-decoration: none;
  position: relative;
  top: -32px;
  margin: 0;
  padding: 0;
}

.footer-mini-block-about {
  position: absolute;
  width: 100%;
  margin: 0;
  margin-bottom: -30px;
}

.footer-mini-block-text-about {
  font-size: 15px;
  position: relative;
  margin: 0;
  padding: 0;
  margin-left: 175px;
  top: -10px;
  margin-bottom: -20px;
}

/*------------------*/

.contact-block-connact {
  height: 380px;
  width: 100%;
  margin-bottom: 10px;
  background-image: url('/images/5.5.jpg');
  background-position: center;
  background-size: cover;
  position: relative;

}

.contact-block-connact button {
  font-size: 17px;
  padding: 10px 25px;
  position: relative;
  top: 150px;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid white;
  cursor: pointer;
  left: 48%;
}

.contact-block-connact button a {
  text-decoration: none;
}

.contact-block-connact .menu-page-title h1 {
  font-size: 36px;
  color: white;
}

.contact-block-connact p {
  font-size: 17px;
  position: relative;
  text-align: center;
  justify-content: center;
  top: 80px;
  z-index: 1;
  color: white;
}

/*-----Contact----*/

.contact-block-all {
  height: 380px;
  width: 100%;
  margin-bottom: 10px;
  background-image: url('/images/5.5.jpg');
  background-position: center;
  background-size: cover;
  position: relative;

}

.contact-block-all .menu-page-title h1 {
  font-size: 36px;
  color: white;
}

.contact-block-all p {
  font-size: 17px;
  position: relative;
  text-align: center;
  justify-content: center;
  top: 80px;
  z-index: 1;
  color: white;
}

.contact-block-all button {
  font-size: 17px;
  padding: 10px 25px;
  position: relative;
  top: 150px;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid black;
  cursor: pointer;
  transition: 2s;
  left: 48%;
}

.contact-block-all button a {
  text-decoration: none;
}

.contact-block-all button:hover {
  background-color: #E2D1BD;
}

/*About Us Connact*/

.contact-block-all-about {
  height: 380px;
  width: 100%;
  margin-bottom: 10px;
  background-image: url('/images/5.5.jpg');
  background-position: center;
  background-size: cover;
  position: relative;
  top: -250px;

}

.contact-block-all-about .menu-page-title-about h1 {
  font-size: 36px;
  color: white;
}

.contact-block-all-about p {
  font-size: 17px;
  position: relative;
  text-align: center;
  justify-content: center;
  top: 80px;
  z-index: 1;
  color: white;
}

.contact-block-all-about button {
  font-size: 17px;
  padding: 10px 25px;
  position: relative;
  left: 48%;
  top: 150px;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid white;
  cursor: pointer;

}

.contact-block-all-about button a {
  text-decoration: none;
}

/*Video-first*/

.video-first {
  position: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.video-first video {
  position: relative;
  top: 100px;
  height: 40%;
  width: 100%;
}
.video-first iframe {
  position: relative;
  top: 100px;
  height: 800px;
  width: 100%;
}
.video-first .video-header {
  font-size: 20px;
  text-align: center;
  font-family: 'Playfair Display';
  position: relative;
  top: 100px;
}

.video-first .video-speak {
  font-size: 15px;
  margin: 1rem 5rem;
  position: relative;
  top: 100px;
  align-items: center;
}
@media(max-width=450px){
  .video-first .video-header{
    position: relative;
    left: -60px;
  }
  .video-first iframe{
    position: relative;
    width: 40%;
  }
}
/*kurumsal*/

.all-menu-krum {
  position: relative;
  margin-top: 130px;
  padding-bottom: 5rem;
  background-color: #fffbf4;
}

.menu-page-title-krum {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 122px;
}

.menu-page-title-krum h1 {
  font-size: 32px;
  padding: 5rem;
}

.menu-page-title-krum hr {
  width: 500px;
}

.one-mark iframe {
  width: 45%;
  height: 400px;
  position: relative;
  left: 28%;
}

.one-title p {
  font-size: 15px;
  position: relative;
  text-align: center;
}

/*Videolar Bölümü*/

.all-menu-video {
  position: relative;
  margin-top: 130px;
  padding-bottom: 5rem;
  background-color: white;
}

.menu-page-title-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 122px;
}

.menu-page-title-video h1 {
  font-size: 32px;
  position: relative;
  top: -60px;
}

.menu-page-title-video hr {
  width: 500px;
}

.one-mark-video iframe {
  width: 95%;
  height: 800px;
  position: relative;
  left: 2%;
}
.one-mark-video video {
  width: 95%;
  height: 800px;
  position: relative;
  left: 2%;
}
.one-title-video p {
  font-size: 15px;
  position: relative;
  text-align: center;
  margin: 1px 10rem;
}

@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {
  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

@media screen and (max-width:450px) {
  .hideOnMobile {
    width: 100%;
  }
  .one-mark iframe{
    position: relative;
    width:80%;
    left: 10%;
  }
}

/*grid
.dugun-all {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container-dugun {
  position: relative;
  max-width: 85%;
  margin: 20px auto;
}

.container-dugun .title {
  font-size: 25px;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: center;
  padding: 15px;
}

.container-dugun .image-container {
  columns: 3 250px;
  gap: 15px;
  position: relative;
  top: 75px;
}

.container .image-container .image {
  height: 250px;
  width: 350px;
  border: 10px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
  overflow: hidden;
  cursor: pointer;
}

.container-dugun .image-container .image img {
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
  transition: .5s linear;
  height: 100%;
  width: 100%;
  
}

.container-dugun .image-container .image:hover img {
  transform: scale(1.1);
}
*/
.dugun-all {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container-dugun {
  position: relative;
  min-height: 100vh;
  background: white;
  margin: 2rem;
}

.container-dugun .title {
  font-size: 40px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: normal;
  padding: 15px;
  color: #333;
  text-align: center;
  text-transform: capitalize;
}

.container-dugun .image-container {
  columns: 3 250px;
  gap: 15px;
  position: relative;
  right: 10px;
}

.container-dugun .image-container .image {
  height: 100%;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
  overflow: hidden;
  cursor: pointer;
}

.container-dugun .image-container .image img {
  margin-bottom: 10px;
  border-radius: 5px;
  object-fit: cover;
  transition: .2s linear;
  height: 100%;
  width: 100%;
}

.container-dugun .image-container .image:hover img {
  transform: scale(1.1);
}

.container-dugun .popup-image {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.container-dugun .popup-image span {
  position: absolute;
  top: 20%;
  right: 5%;
  font-size: 60px;
  font-weight: bolder;
  color: white;
  cursor: pointer;
  z-index: 100;
}

.container-dugun .popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 70%;
  height: 70%;
  object-fit: contain;
}

@media(max-width:768px) {
  .container-dugun .popup-image .image img {
    width: 95%;
  }
  .container-dugun .popup-image img{
    position: relative;
    width: 100%;
    height: 80%;
   
  }
}

.map-block {
  height: 100vh;
  display: grid;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.contact-wrap {
  width: 80%;
  height: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.contact-in {
  padding: 40px 30px;
  margin-bottom: 1rem;
}

.contact-in:nth-child(1) {
  flex: 30%;
  background-color: gainsboro;
  color: black;
}

.contact-in:nth-child(2) {
  flex: 45%;
  background: white;
}

.contact-in:nth-child(3) {
  flex: 25%;
  padding: 0;
}

.contact-in h1 {
  font-size: 24px;
  color: black;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'Poppins';
}

.contact-in h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}

.contact-in h2 i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: #f5f5f5;
  color: #000;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
}

.contact-in p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-in ul {
  padding: 0;
  margin: 0;
}

.contact-in ul li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
  margin-top: 5px;
}

.contact-in ul li a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
}

.contact-in ul li a i {
  font-size: 14px;
  line-height: 30px;
  color: #000;
}

.contact-in form {
  width: 100%;
  height: auto;
}

.contact-in-input {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid #fff;
  outline: none;
  padding-left: 5px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.contact-in-input::placeholder {
  color: #fff;
}

.contact-in-textarea {
  width: 100%;
  height: 140px;
  margin-bottom: 20px;
  border: 1px solid #fff;
  outline: none;
  padding-top: 5px;
  padding-left: 5px;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.contact-in-textarea::placeholder {
  color: #fff;
}

.contact-in-btn {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.contact-in iframe {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width:480px) {
  .contact-in:nth-child(1) {
    flex: 50%;
  }

  .contact-in:nth-child(2) {
    flex: 50%;
  }

  .contact-in:nth-child(3) {
    flex: 100%;
  }

  .map-block {
    position: relative;
    top: 100px;
  }
  .footer-mini-block-about{
    display: none;
  }
}

@media only screen and (max-width:360px) {
  .contact-in:nth-child(1) {
    flex: 50%;
  }

  .contact-in:nth-child(2) {
    flex: 50%;
  }

  .contact-in:nth-child(3) {
    flex: 100%;
  }
}

.contact-v2 {
  height: 100vh;
  width: 100%;
}

.container-contact-v2 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.container-contact-v2:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("/images/DUG-\ 10.JPG") no-repeat center;
  background-size: cover;
  filter: blur(10px);
  z-index: -1;
}

.contact-box {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
}

.left {
  background: url("/images/DUG-\ 10.JPG") no-repeat center;
  background-size: cover;
  height: 100%;
}

.right {
  padding: 25px 40px;
}

.right h2 {
  position: relative;
  padding: 0 0 10px;
  margin-bottom: 10px;
}

.right h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 50px;
  border-radius: 2px;
  background-color: #E2D1BD;
}

.field {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0);
  outline: none;
  background-color: rgba(230, 230, 230, 0.6);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  margin-bottom: 22px;
  transition: .3s;
}

.field:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.right textarea {
  min-height: 150px;
}

.btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #E2D1BD;
  color: black;
  font-size: 1.1rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: .3s;
}

.btn:hover {
  background-color: #ddd;
}

.field:focus {
  border: 2px solid rgba(30, 85, 250, 0.47);
  background-color: #fff;
}

@media screen and (max-width: 880px) {
  .contact-box {
    grid-template-columns: 1fr;
  }

  .left {
    height: 200px;
  }
}