@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");


:root {
  --main-color: #2aa9b8;
  --black-color: #1c1c1c;
  --border: 0.1rem solid rgba(255, 255, 255, 0.4);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
}

/*! base html codes */
html {
  
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar{
  width: 0.8rem;
  background-color: white;

}
html::-webkit-scrollbar-track{
  background-color: transparent;
}

html::-webkit-scrollbar-thumb{
 border-radius: 3rem;
  background-color: var(--black-color);
  
}

body {
  background-color: var(--main-color);

}

section{
  padding: 3.5rem 7%;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 1.6rem 3.75rem;
  border-radius: 30rem;
  font-size: 1.7rem;
  background-color: #fff;
  box-shadow: 2px 2px 6px #000;
  cursor: pointer;
  color: var(--black-color);
}
.btn:hover{
  opacity: 0.9;
  color: #fff;
  background-color: var(--main-color);
}

.heading{
  color: #fff;
  text-transform: uppercase;
  font-size: 4rem;
  margin-bottom: 3.5rem;
  border-bottom: 0.1rem solid #fff;
}

.search-input {
  font-size: 1.6rem;
  color: var(--black-color);
  padding: 1rem;
  text-transform: none;
  border-radius: 3rem;
}
/*! header start */

.header .logo img {
  height: 12rem;
  border-radius: 20rem;
}

.header {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  margin: 2rem 7%;
  border-radius: 30rem;
  box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .navbar a {
  margin: 0 2rem;
  font-size: 1.6rem;
  color: var(--black-color);
  border-bottom: 0.1rem solid transparent;
  text-decoration: none;
}
.header .navbar .active,
.header .navbar a:hover {
  border-color: var(--main-color);
  padding-bottom: 0.5rem;
}

.header .buttons button {
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
  background-color: transparent;
  color: #1c1c1c;
}

.header #menu-btn {
  display: none;
}


/*! header end */

/*! home start */

.home {
    min-height: 100vh;
    background: url(../images/wallpaper2.jpg) 
    no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -16rem;
    display: flex;
    align-items: center;

}
.home .content {
    margin-left: auto;
    max-width: 75rem;
    text-align: right;
    padding-right: 8rem;
    position: relative;
}
.home .content h3{
    font-size: 8rem;
    color: #fff;
    text-shadow: 3px 2px 1px rgb(50, 31, 2);

}
.home .content p{
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
  padding: 1rem 0;
  color: #ccc;
  text-shadow: 2px 2px 1px #000;

}
/*! home end */

/*menu start */

.menu .box-container .box {
  padding: 3rem;
  background-color: #fff;
  border-radius: 3rem;
  background-color: #fff;
  min-height: 45rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0px 0px 25px 2px rgb(0 0 0 / 75%);
  
}
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
  
}
.menu .box-container .box img{
  width: 100%;
  object-fit: cover;
}

.menu .box-container .box .aciklama {
  font-size: 1.5rem;
  padding: 1rem;
  text-transform: none;
  text-align:justify;
}
.menu .box-container .box h3 {
  font-size: 1.8rem;
  padding: 1rem;
  
}
.menu .box-container .box i {
  font-size: 1.5rem;
  text-transform: none;
}

/*
/*menu end */

/*slider*/
.container {
  width: 100%;
  height: 90vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.swiper {
  width: 100%;
  height: 80vh;
  border-radius: 3rem;
  box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
}
.swiper-slide img {
  width: 100%;
}
.swiper .swiper-button-prev, .swiper .swiper-button-next{
  color: #fff;
}

.swiper .swiper-pagination-bullet-active{
  background: #fff;
}




/*about start*/

.about .row{
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.about .row .image {
  flex: 1 1 45rem;
}
.about .row img {
  width: 100%;
}
.about .row .content {
  flex: 1 1 45rem;
}
.about .row .content h3{
  font-size: 3rem;
  color: #fff;
}
.about .row .content p{
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
}
.about img {
  border-radius: 2rem;
  box-shadow: 0px 0px 25px 2px rgb(0 0 0 / 75%);
}
/*about end*/
/*contact*/

.contact .row{
  display: flex;
  background-color: var(--black-color);
  flex-wrap: wrap;
  gap: 1rem;
}
.contact .row .map {
  flex: 1 1 50rem;
  width: 100%;
  object-fit: cover;
}
.contact .row form {
  flex: 1 1 45rem;
  padding: 5rem 2rem;
  text-align: center;
}
.contact .row form h3{
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #fff;
}
.contact .row form .inputBox {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  border: var(--border);
}
.contact .row form .inputBox i{
  color: #fff;
  font-size: 2rem;
  padding-left: 2rem;
}
.contact .row form .inputBox input{
  width: 100%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background-color: transparent;
}

.contact .row form .btn{
  color: var(--main-color);
  background-color: #fff;
  font-weight: bold;
}

.contact .row form .btn:hover {
  color: var(--black-color);
  background-color: var(--main-color);
}

/*contact end*/

/*footer start */ 
.footer {
  background-color: var(--black-color);
  text-align: center;

}

.footer .search {
  display: flex;
  justify-content: center;
}

.footer .search .search-input {
  width: 30rem;
}

.footer .search .btn-primary {
  color: var(--black-color);
  background-color: var(--main-color);
  padding: 1rem 2rem;
  margin-left: 1rem;
  border: none;
}
.footer .search .btn-primary:hover {
  background-color: #fff;
  color: var(--main-color);
}

.footer .share {
  padding: 2rem 0;
}


.footer .share a {
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  color: #fff;
  font-size: 2.3rem;
  border: var(--border);
  border-radius: 50%;
  margin: 0.3rem;
  text-decoration: none;
}
.footer .share a:hover{
  background-color: var(--main-color);
}
.footer .links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  
}

.footer .links a{
  background-color: var(--main-color);
  padding: 0.7rem 2rem;
  color: #fff;
  font-size: 1.7rem;
  text-decoration: none;
  border: var(--border);
}
.footer .links a:hover {
  background-color: var(--black-color);
  opacity: 0.7;
}
.footer .links a.active{
  background-color: var(--black-color);
}
.footer .credit {
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
  padding-top: 1.5rem;
  text-transform: none;
}

.footer .credit span {
  color: var(--main-color);
}
.footer .phone {
  color: #fff;
}
.footer .phone a{
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  padding-left: 2rem;
}

/*footer end */ 

/*responsive start */

@media (max-width:991px) {
  html {
    font-size: 55%;
    
  }

  .header{
    padding: 1.5rem 2rem;
  }

  .header .logo img{
    height: 7rem;
  }

  section {
    padding: 2rem;
  }

  .container {
    height: 37vh;
  }
  .swiper {
    height: 30vh;
  }
  
}

@media (max-width:768px) {

  
  .header #menu-btn {
    display: inline-block;
    color: #1c1c1c;
  }

  .header .navbar {
    display: none;
  }

  .header .navbar.active{
    position: absolute;
    top: 95%;
    background-color: #fff;
    display: block;
    height: calc(100vh-9rem);
    width: 30rem;
    box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 75%);
    right: 3rem;
  
  }

  .header .navbar a {
    
    color: var(--black-color);
   display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem; 
    
  }

  .container {
    height: 33vh;
  }
  .swiper {
    height: 22vh;
  }

  .footer .phone a {
    color: #fff;
  }
}

@media (max-width:576px) {
  html {
    font-size: 50%;
  }
  .container {
    height: 22vh;
  }
  .swiper {
    height: 20vh;
  }

  .footer .phone a {
    color: #fff;
  }
}

/*responsive end */