/*body*/
body{
  background-color:  #000 !important;
  font-family: 'Courier New', monospace !important;
  overflow-x: hidden !important;
}
/*body*/
/*loader*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items:center;
  justify-content:center;
  background-color: #000;
  z-index: 999 !important;
} 
#loading{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.ring{
  position:absolute;
  height: 200px;
  width: 200px;
  border: 0px solid #000;
  border-radius:50%;
}
.ring:nth-child(1){
  border-bottom-width: 10px;
  border-color: #ffee02;
  animation: rotate1 1.5s linear infinite;
}
.ring:nth-child(2){
  border-right-width: 10px;
  border-color: #ffee02;
  animation: rotate2 1.5s linear infinite;
}
.ring:nth-child(3){
  border-top-width: 10px;
  border-color: #ffee02;
  animation: rotate3 1.5s linear infinite;
}
@keyframes rotate1{
  0%{
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg)
  }
  100%{
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg)
  }
}
@keyframes rotate2{
  0%{
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg)
  }
  100%{
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg)
  }
}
@keyframes rotate3{
  0%{
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg)
  }
  100%{
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg)
  }
}
/*loader*/
/*back-to-top*/
::-webkit-scrollbar {
  width: 7px;
  background-color: #000;
}
::-webkit-scrollbar-thumb {
  background-color: #ffee02;
}
.back-to-top{
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  display: none;
}
.btn-top{
  background-color: #ffee02;
  opacity: 1;
  width:40px;
  height:40px;
  color: #000;
  border-radius: 30%;
  -moz-border-radius: 30%;
  -webkit-border-radius:30%;
  transition: all 1s ease-out;
  border:none;
  opacity: 0.8;
}
.btn-top i{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.btn-top:hover{
  opacity: 1;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius:50%;
  transition: all 1s ease-out;
}
*::selection {
  background-color: #ffee02;
  color: #000;
}
/*back-to-top*/
/*header-top*/
.header-top-div{
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  font-size: 14px;
}
.header-top{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
.header-top .location{
  width:70%;
  display: flex;
  justify-content: flex-start;
}
.header-top .location a{
  width: 100%;
  text-decoration: none;
}
.header-top .location button{
  width: 100%;
  border:none;
  background-color: #ffee02;
  padding:10px;
  font-weight: bolder;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0%, 98% 100%, 0% 100%);
}
.header-top .social-div{
  width:30%;
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}
.header-top .social-div .social{
  width: 30px;
  height: 30px;
  background-color: #ffee02;
  border-radius: 50%;
  text-align: center;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-top .social-div .social a{
  color: #000;
  text-decoration: none;
}
.header-top .social-div i{
  color: #000;
}
/*header-top*/
/*header*/
.header-div{
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header-div .header{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #000;
  padding: 10px;
}
.header-div .header .logo-div{
  width: 9%;
}
.header-div .header .logo-div .logo{
  width: 100%;
}
.header-div .header .logo-div .logo img{
  width: 100%;
  object-fit: cover;
}
.header-div .header .phone-div{
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.header-div .header .phone-div .phone{
  width: 20%;
}
.header-div .header .phone-div .phone i{
  padding: 15px;
  background-color: #ffee02;
  font-size:25px;
  border-radius: 50%;
  color: #000;
  transform: rotate(-10deg);
}
.header-div .header .phone-div .phone i:hover{
  animation: headShake;
  animation-duration: 0.5s;
}
.header-div .header .phone-div .phone2{
  width: 80%;
}
.header-div .header .phone-div .phone2 label{
  width: 100%;
  color: #fff;
}
.header-div .header .phone-div .phone2 label span{
  font-weight: bolder;
}
.header-div .header .menu-div{
  width: 65%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.header-div .header .menu-div .menu{
  width: 100%;
}
.header-div .header .menu-div .menu ul{
  list-style-type: none;
}
.header-div .header .menu-div .menu ul li{
  float: left;
  margin-right: 20px;
  font-size: 18px;
  position: relative;
}
.header-div .header .menu-div .menu ul li:hover ul{
  display: block;
}
.header-div .header .menu-div .menu ul li:focus ul{
  display: block;
}
.header-div .header .menu-div .menu ul li i{
 color: #fff;
 transform: scale(0.7);
}
.header-div .header .menu-div .menu ul li ul{
  position: absolute;
  left: 0;
  top: 22px;
  width: 300px;
  background-color: #fff;
  padding: 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
  z-index: 999;
}
.header-div .header .menu-div .menu ul li ul li{
 width: 100%;
 margin-bottom: 5px;
}
.header-div .header .menu-div .menu ul li ul li i{
 color: #fff;
 transform: scale(0.7);
}
.header-div .header .menu-div .menu ul a{
  color: #fff;
  text-decoration: none;
}
.header-div .header .menu-div .menu ul a span{
  background-size:  100% 15%;
  background-repeat: repeat-x;
  background-position: left 0% bottom 0%;
}
.header-div .header .menu-div .menu ul a .tapered{
  background-image: linear-gradient(179deg,#ffee02 0%, #ffee02 50%,transparent 54%, transparent 100%);
}
.header-div .header .bar-div{
  width: 10%;
}
#bars{
  display: none;
}
.header-div .header .bar-div .bar{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  display: none;
}
.header-div .header .bar-div .bar i {
 transform: scale(1.4);
 color: #000;
 background-color: #ffee02;
 padding: 10px;
 border-radius: 50%;
}
/*header*/
/*footerup*/
.whatsapp{
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: #ffee02;
  opacity: 1;
  width:40px;
  height:40px;
  color: #000;
  border-radius: 30%;
  -moz-border-radius: 30%;
  -webkit-border-radius:30%;
  transition: all 1s ease-out;
  border:none;
  z-index: 999;
}
.whatsapp i{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.whatsapp:hover{
  opacity: 1;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius:50%;
  transition: all 1s ease-out;
}
.tel{
  position: fixed;
  bottom: 55px;
  left: 10px;
  background-color: #ffee02;
  opacity: 1;
  width:40px;
  height:40px;
  color: #000;
  border-radius: 30%;
  -moz-border-radius: 30%;
  -webkit-border-radius:30%;
  transition: all 1s ease-out;
  border:none;
  z-index: 999;
}
.tel i{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.tel:hover{
  opacity: 1;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius:50%;
  transition: all 1s ease-out;
}
.footerupdiv{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-image: url("image/footer.jpg");
  padding: 80px;
  position: relative;
}
.footerupdiv .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #151110;
  opacity: 0.8;
}
.footerup{
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}
.footerup .footer{
  width: 50%;
  color: #f9f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footerup .footer h4{
  font-size: 30px;
}
.footerup .footer input{
  width: 70%;
  height: 40px;
  border:none;
  background-color: #f9f7f7;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
.footerup .footer button{
  width: 30%;
  border:none;
  height: 40px;
  background-color: #a57355;
  color: #f9f7f7;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.footerup .footer a{
  color: #f9f7f7;
}
.footerup .footer a:hover{
  color: #a57355;
}
.footerup .footer label{
  margin-top: 10px;
}
/*footerup*/
/*footerdown*/
.footerdowndiv{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px;
  background-color: #000;
}
.footerdowndiv .footerdown{
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.footerdown .footer{
  width: 23%;
  color: #f9f7f7;
  text-align: justify;
}
.footerdown .footer .social-div{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footerdown .footer .social-div .social{
  width: 10%;
}
.footerdown .footer .social-div .social i{
  transform: scale(1.2);
  color: #ffee02;
}
.footerdown .footer .social-div .social a{
  color: #ffee02;
}
.footerdown .footer .social-div .social a:hover{
  color: #ffee02;
}
.footerdown .footer h4{
  color: #f9f7f7;
  margin-bottom: 10px;
}
.footerdown .footer h4 span{
  background-size:  100% 15%;
  background-repeat: repeat-x;
  background-position: left 0% bottom 0%;
}
.footerdown .footer .tapered{
  background-image: linear-gradient(179deg,#ffee02 0%, #ffee02 50%,transparent 54%, transparent 100%);
}
.footerdown .footer label{
  margin-bottom: 10px;
}
.footerdown .footer label i{
  color: #ffee02;
}
.footerdown .footer a{
  width: 100%;
  margin-bottom: 10px;
  color: #ffee02;
  text-decoration: none;
}
.footerdown .footer ul li{
  margin-bottom: 10px;
}
.footerdown .footer .phone-div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footerdown .footer .phone-div .phone{
  width: 20%;
}
.footerdown .footer .phone-div .phone i{
  padding: 15px;
  font-size:25px;
  border-radius: 50%;
  color: #ffee02;
  transform: rotate(-10deg);
}
.footerdown .footer .phone-div .phone i:hover{
  animation: headShake;
  animation-duration: 0.5s;
}
.footerdown .footer .phone-div .phone2{
  width: 80%;
}
.footerdown .footer .phone-div .phone2 label{
  width: 100%;
  color: #f9f7f7;
}
.footerdown .footer .phone-div .phone2 label span{
  font-weight: bolder;
}
.footerdowndiv .footerdown2{
  margin-top: 50px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footerdowndiv .footerdown2 .footer{
  width: 100%;
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #f9f7f7;
}
.footerdowndiv .imza-div{
  margin-top: 50px;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footerdowndiv .imza-div .imza{
  width: 100%;
  text-align: center;
  padding: 20px;
}
.footerdowndiv .imza-div .imza img{
  width: 20%;
}
/*footerdown*/
/*sidebardiv*/
.sidebar-div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px;
  position: relative;
}
.sidebar-div .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.8;
}
.sidebar{
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
}
.sidebar h4{
  color: #ffee02;
  text-align: center;
  width: 100%;
  font-size: 40px;
  font-weight: bolder;
}
.sidebar p{
  width: 50%;
  color: #f9f7f7;
  text-align: center;
}
.sidebar .side{
  width: 100%;
  text-align: center;
  color: #f9f7f7;
  padding: 10px;
  border-radius: 50px;
}
.sidebar .side label{
  color: #000;
  padding: 10px;
  background-color: #ffee02;
  border-radius: 50px;
}
.sidebar .side a{
  color: #000;
  text-decoration: none;
}
.sidebar .side a:hover{
  color: #000;
}
.sidebar .side i{
  transform: scale(0.7);
  margin-right: 10px;
  margin-left: 10px;
}
/*sidebardiv*/
/*pagediv*/
.page-div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.page-div .page{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
}
.page-div hr{
 border: 0; 
 height:10px; 
 background-image: -webkit-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7);
 background-image: -moz-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7);
 background-image: -ms-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7);
 background-image: -o-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7); 
}
.page-div2{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #f3ebe6;
  position: relative;
  overflow: hidden;
}
.page-div2 .page2{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
}
.page-div2 hr{
 border: 0; 
 height:10px; 
 background-image: -webkit-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7);
 background-image: -moz-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7);
 background-image: -ms-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7);
 background-image: -o-linear-gradient(left, #f9f7f7, #ffee02, #f9f7f7); 
}
.page-div2 .page2 .dot2{
  position: absolute;
  left: -50px;
  top: -60px;
  z-index: 1;
  width: 300px;
}
.page-div2 .page2 .yaprak2{
  position: absolute;
  right: -50px;
  bottom: -60px;
  z-index: 1;
  width: 300px;
}
.page-div2 .page2 .bg2{
  position: absolute;
  top: 0px;
  left: 300px;
  z-index: 1;
  width: 800px;
}
.page-div2 .page2 .blog-div{
  z-index: 2;
}
/*pagediv*/
/*slider*/
.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.black-slider{
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 85vh;
  min-height: 500px;
  background-color: #ffee02;
  opacity: 0.6;
  z-index: 1;
  clip-path: polygon(75% 0, 100% 0%, 40% 100%, 15% 100%);
}
.black-slider2{
  position: absolute;
  right: 0;
  top: 50%;
  width: 40%;
  height: 85vh;
  min-height: 500px;
  background-color: #ffee02;
  opacity: 0.2;
  z-index: 1;
  clip-path: polygon(60% 0, 100% 0%, 40% 100%, 0 100%);
}
.slide {
  width: 100%;
  display: none;
  z-index: 999;
}
.slide-image {
  width: 100%;
  height: 85vh;
  min-height: 500px;
  object-fit: cover;
  filter: brightness(0.6);
  z-index:999;
}
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}
.slide-title {
  width: 100%;
  max-width: 50rem;
  color: #f9f7f7;
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
}
.slide-desc {
  width: 100%;
  max-width: 50rem;
  color: #f7f5f5;
  font-size: 1rem;
  font-weight: 300;
}
.slide-btn {
  color: black;
  background-color: #ffee02;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 1rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  text-transform: capitalize;
  transition: ease 0.8s;
  text-decoration: none;
  color: #000;
}
.slide-btn:hover {
  gap: 1rem;
  color: #000;
}
.slide-number-container {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 5;
  font-size: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(211, 211, 211, 0.788);
  letter-spacing: 0.2rem;
}
.slide-number-container hr {
  width: 3rem;
  transform: rotate(130deg);
  border-color: rgba(211, 211, 211, 0.788);
}
.slider-nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.slider-nav-btn {
  cursor: pointer;
  background-color: rgba(211, 211, 211, 0.226);
  color: #f9f7f7;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}
.slider-nav-btn:hover {
  background-color: #f9f7f7;
  color: #151110;
}
.dot-container {
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: 4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.dot {
  cursor: pointer;
  height: 1rem;
  width: 1rem;
  background-color: rgba(211, 211, 211, 0.226);
  border-radius: 50%;
  display: inline-block;
  transition: ease 0.3s;
  display: none;
}
.active,
.dot:hover {
  background-color: #a57355;
}
.fade {
  animation-name: fade;
  animation-duration:10s;
}
@keyframes fade {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}
/*slider*/
/*index-card*/
.index-card{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: -200px;
  z-index: 2;
}
.index-card .card1{
  width: 45%;
  background-color: #f3ebe6;
  padding: 40px;
  border-radius: 10px;
  color: #151110;
}
.index-card .card2{
  width: 30%;
  background-color: #a57355;
  padding: 40px;
  border-radius: 10px;
  color: #f9f7f7;
}
.index-card h3{
  font-weight: bolder;
  margin-bottom: 10px;
}
.index-card h6{
  font-weight: bolder;
  margin-bottom: 10px;
}
.index-card a{
  text-decoration: none;
  color: #a57355;
}
.index-card a:hover{
  text-decoration: none;
  color: #a57355;
}
.index-card .card2 .phone-div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.index-card .card2 .phone-div .phone{
  width: 20%;
}
.index-card .card2 .phone-div .phone i{
  padding: 15px;
  font-size:25px;
  border-radius: 50%;
  color: #f9f7f7;
  transform: rotate(-10deg);
}
.index-card .card2 .phone-div .phone i:hover{
  animation: headShake;
  animation-duration: 0.5s;
}
.index-card .card2 .phone-div .phone2{
  width: 80%;
}
.index-card .card2 .phone-div .phone2 label{
  width: 100%;
  color: #f9f7f7;
}
.index-card .card2 .phone-div .phone2 label span{
  font-weight: bolder;
}
/*index-card*/
/*iletisim*/
.iletisim-div{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
.iletisim-talk{
  width: 40%;
  padding: 10px;
}
.iletisim-talk h4{
  font-weight: bolder;
  font-size: 30px;
}
.iletisim-talk .talk{
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.iletisim-talk .talk .talk-icon{
  width: 10%;
}
.iletisim-talk .talk .talk-icon i{
  transform: scale(2);
  color: #ffee02;
}
.iletisim-talk .talk .talk-text{
  width: 90%;
}
.iletisim-talk .talk h6{
  font-weight: bolder;
  font-size: 20px;
}
.iletisim-talk .talk label{
  width: 100%;
  margin-bottom: 10px;
}
.iletisim-form{
  width: 60%;
  padding: 50px;
  background-color: #ffee02;
  color: #000;
}
.iletisim-form h4{
  font-weight: bolder;
  font-size: 30px;
  color: #000;
}
.iletisim-form label{
  font-weight: bolder;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}
.iletisim-form input{
  width: 100%;
  border:none;
  background-color: #000;
  border-radius: 5px;
  height: 50px;
  padding: 10px;
}
.iletisim-form textarea{
  width: 100%;
  border:none;
  min-height: 150px;
  max-height: 200px;
  padding: 10px;
  background-color: #000;
}
.iletisim-form button{
  color: #fff;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  background-color: #000;
  margin-top: 20px;
  border:none;
}
/*iletisim*/
/*hakkimizda*/
.about-my-div{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.about-my-div .about-my-div-img{
  width: 60%;
  position: relative;
}
.about-my-div .about-my-div-img .dot-div{
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.about-my-div .about-my-div-img .dot-div-2{
  position: absolute;
  right: -100px;
  bottom: 0;
  z-index: -1;
}
.about-my-div .about-my-div-img .dot-div img{
  width: 60%;
}
.about-my-div .about-my-div-img .dot-div-2 img{
  width: 60%;
}
.about-my-div .about-my-div-img .img-div{
  padding-top: 65px;
  padding-left: 100px;
}
.about-my-div .about-my-div-img .img-div img{
  width: 70%;
  height: 100%;
}
.about-my-div .about-my-div-img .img-text-div{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  background-color: #f9f7f7;
  padding: 50px;
  font-size: 20px;
}
.about-my-div .about-my-div-text{
  width: 40%;
  padding: 10px;
}
.about-my-div .about-my-div-text h4{
  font-weight: bolder;
  font-size: 30px;
  color: #ffee02;
  margin-bottom: 20px;
}
.about-my-div .about-my-div-text p{
  text-align: justify;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.about-my-div .about-my-div-text ul li{
  font-weight: bolder;
  margin-bottom: 20px;
  list-style-type: circle;
  text-align: justify;
  color: #fff;
}
.fixed-range-div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #000;
  padding: 50px;
  margin-top: 50px;
}
.fixed-range-div .range-div{
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.fixed-range-div .range-div .range{
  width: 25%;
  text-align: center;
  color: #fff;
  padding: 30px;
  border-right: 1px solid #ffee02;
  border-left: 1px solid #ffee02;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.fixed-range-div .range-div .range label span{
  font-size:50px;
  font-weight: bolder;
}
.fixed-range-div .range-div .range label{
  width: 100%;
  font-size: 25px;
}
.fixed-range-div .range-div .range .range-icon{
  width: 100%;
  margin-bottom: 10px;
  width: 10%;
}
.fixed-range-div .range-div .range .range-icon i{
 transform: scale(3);
 color: #ffee02;
}
.fixed-range-div .range-div .range .range-text{
  width: 90%;
}
.meeting-div{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px;
  position: relative;
  min-height: 500px;
}
.meeting-div .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #151110;
  opacity: 0.8;
}
.meeting-div .meeting{
  width: 80%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  color: #f9f7f7;
}
.meeting-div .meeting h4{
  font-size: 50px;
  font-weight: bolder;
  width: 100%;
  text-align: center;
}
.meeting-div .meeting p{
  text-align: center;
  width: 80%;
}
.meeting-form-div{
  width: 100%;
  margin-top: -150px;
  background-color: #f7f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2 !important;
}
.meeting-form-div .meeting-form{
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 50px;
}
.meeting-form-div .meeting-form .meeting-form-img{
  width: 40%;
  z-index: 2;
}
.meeting-form-div .meeting-form .meeting-form-img img{
  width: 100%;
  object-fit: cover;
}
.meeting-form-div .meeting-form .meeting-form-form{
  width: 60%;
  z-index: 2;
  padding: 20px;
  background-color: #f7f5f5;
}
.meeting-form-div .meeting-form .meeting-form-form label{
  width: 100%;
  font-weight: bolder;
  margin-bottom: 10px;
  margin-top: 10px;
}
.meeting-form-div .meeting-form .meeting-form-form input{
  width: 100%;
  border:none;
  background-color: #fff;
  height: 40px;
  padding: 10px;
}
.meeting-form-div .meeting-form .meeting-form-form select{
  width: 100%;
  border:none;
  background-color: #fff;
  height: 40px;
  padding: 10px;
  color: #a57355;
}
.meeting-form-div .meeting-form .meeting-form-form button{
  width: 100%;
  border:none;
  background-color: #a57355;
  height: 40px;
  padding: 10px;
  color: #f9f7f7;
  margin-top: 10px;
  border-radius: 10px;
}
.meeting-form-div .meeting-form .meeting-form-form select option{
  color: a57355;
}
.meeting-form-div .meeting-form .meeting-form-form select option:first-child{
  color: a57355;
}
/*hakkimizda*/
/*galeri*/
.galeri-div .galeri .main .container {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 grid-gap: 1rem;
 justify-content: center;
 align-items: center;
}
*, *::before, *::after {
 -moz-osx-font-smoothing: grayscale;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}
.galeri-div .galeri .container {
 max-width: 80rem;
 width: 100%;
 padding: 4rem 2rem;
 margin: 0 auto;
}
.galeri-div .galeri .main .card {
 color: #252a32;
 border-radius: 2px;
 background: #fff;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.galeri-div .galeri .main .card-image {
 position: relative;
 display: block;
 width: 100%;
 padding-top: 70%;
 background: #fff;
}
.galeri-div .galeri .main .card-image img {
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
/*galeri*/
/*blog*/
.blog-div{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.blog-div a{
  text-decoration: none;
  color: #151110;
}
.blog-div a:hover{
  text-decoration: none;
  color: #151110;
}
.blog-div .blog{
  width: 28%;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  margin-bottom: 50px;
  overflow: hidden;
}
.blog-div .blog .blog-img{
  width: 100%;
  overflow: hidden;
}
.blog-div .blog .blog-img img{
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  max-height: 250px;
}
.blog-div .blog .blog-text{
  padding: 20px;
}
.blog-div .blog .blog-text h4{
  font-weight: bolder;
}
.blog-div .blog .blog-text p{
  text-align: justify;
}
.blog-div .blog-text ul li{
  text-align: left;
}
.blog-div .blog-text img{
  width: 40%;
  object-fit: cover;
}
.blog-div .blog-text h4{
 text-align: left;
}
.blog-div .blog .blog-button{
  width: 100%;
  padding: 10px;
  padding-right: 50px;
  padding-left: 50px;
}
.blog-div .blog .blog-button button{
  background-color: transparent;
  border:none;
  width: 100%;
  font-size: 20px;
  font-weight: bolder;
  color: #a57355;
  text-align: left;
}
.blog-div .blog .blog-button button i{
 float: right;
 color: #a57355;
 transform: scale(1.5);
}
.blog-div .blog-text{
  text-align: center;
}
.blog-div .blog-text h2{
  text-align: center;
  font-weight: bolder;
}
.blog-div .blog-text h4{
  font-weight: bolder;
}
.blog-div .blog-text p{
  text-align: justify;
}
.blog-div .blog-text img{
  text-align: center;
  width: 40%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blog-div .blog-text .text-call{
  background-color: #a57355;
  padding: 20px;
  border-radius: 20px;
  color: #f9f7f7;
}
.blog-div .blog-text .text-call label i {
  transform: scale(1.4);
  margin-right: 20px;
}
/*blog*/
/*hizmetlerimiz*/
.hizmetlerimiz{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hizmetlerimiz .hizmet{
  width: 30%;
}
.hizmetlerimiz .hizmet a{
  text-decoration: none;
  color: #151110;
}
.hizmetlerimiz .hizmet .hizmet-img{
  width: 100%;
}
.hizmetlerimiz .hizmet .hizmet-text{
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.hizmetlerimiz .hizmet .hizmet-img img{
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
/*hizmetlerimiz*/
/*media*/
@media(max-width:1600px){
  .fixed-range-div .range-div{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .blog-div .blog{
    width: 30%;
  }
  .index-card{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-top: -150px;
    z-index: 2;
  }
  .index-card .card1{
    width: 50%;
    background-color: #f3ebe6;
    padding: 40px;
    border-radius: 10px;
    color: #151110;
  }
  .index-card .card2{
    width: 35%;
    background-color: #a57355;
    padding: 40px;
    border-radius: 10px;
    color: #f9f7f7;
  }
}
@media(max-width:1450px){
  .footerdown .footer{
    width: 45%;
    margin-bottom: 20px;
  }
  .fixed-range-div .range-div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .blog-div .blog{
    width: 32%;
    border:1px solid #a57355;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 50px;
    overflow: hidden;
  }
}
@media(max-width:1420px){
  .header-div{
    align-items: start;
  }
  .header-div .header{
    align-items: start;
  }
  .header-div .header .menu-div{
    display: none;
  }
  .header-div .header .phone-div{
    display: none;
  }
  .header-div .header .bar-div .bar{
    display: block;
    margin-top: 10px;
  }
  .header-div .header .logo-div{
    width: 15%;
  }
  #bars:checked ~ .menu-div{
    display: block;
  }
  .header-div .header .menu-div{
    width: 300px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #2e2928;
    z-index: 999 !important;
    opacity: 0.95;
  }
  .header-div .header .menu-div .menu ul li{
    width: 400px;
    color: #f9f7f7;
    margin-top: 20px;
  }
  .header-div .header .menu-div .menu ul li a{
    color: #f9f7f7;
  }
  .header-div .header .menu-div .menu ul li ul{
    position: relative;
    top: 0;
    left: 0;
    width: 300px;
    padding: 0px;
    border-radius: 0px;
    display: none;
    z-index: 999;
  }
  .header-div .header .menu-div .menu ul li ul li{
    width: 100%;
    margin-bottom:0px;
  }
  .sidebar-div{
    padding: 50px;
  }
  .sidebar p{
    width: 70%;
    color: #f9f7f7;
    text-align: justify;
  }
  .meeting-form-div .meeting-form .meeting-form-img{
    width: 100%;
    z-index: 2;
  }
  .meeting-form-div .meeting-form .meeting-form-form{
    width: 100%;
    z-index: 2;
    padding: 50px;
    background-color: #f7f5f5;
  }
}
@media(max-width:1265px){
  .header-top{
    width: 100%;
  }
  .header-top .location button{
    width: 100%;
    border:none;
    background-color: #ffee02;
    padding:10px;
    font-weight: bolder;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0%, 95% 100%, 0% 100%);
  }
  .footerupdiv{
    padding: 40px;
  }
  .page-div .page{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
  }
  .page-div2 .page2{
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
  }
  .fixed-range-div .range-div .range .range-icon i{
    transform: scale(1.8);
    color: #ffee02;
  }
  .fixed-range-div .range-div .range label span{
    font-size:30px;
    font-weight: bolder;
  }
  .fixed-range-div .range-div .range label{
    width: 100%;
    font-size: 18px;
  }
  .galeri-div .galeri .main .container {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 1rem;
   justify-content: center;
   align-items: center;
 }
 .index-card{
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  margin-top: -65px;
  z-index: 2;
}
.index-card .card1{
  width: 55%;
  background-color: #f3ebe6;
  padding: 40px;
  border-radius: 10px;
  color: #151110;
}
.index-card .card2{
  width: 35%;
  background-color: #a57355;
  padding: 40px;
  border-radius: 10px;
  color: #f9f7f7;
}
}
@media(max-width:1125px){
  .header-top{
    width: 100%;
  }
  .page-div .page{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
  }
  .page-div2 .page2{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
  }
  .about-my-div .about-my-div-img{
    width: 100%;
  }
  .about-my-div .about-my-div-text{
    width: 100%;
    margin-top: 50px;
  }
  .blog-div .blog-text img{
    width: 80%;
  }
}
@media(max-width:1040px){
  .footerup{
    width: 90%;
  }
  .footerup .footer{
    width: 100%;
    margin-bottom: 40px;
  }
  .footerdowndiv .footerdown{
    width: 90%;
  }
  .footerdowndiv .imza-div .imza img{
    width: 40%;
  }
  .fixed-range-div .range-div .range{
    width:50%;
    text-align: center;
    color: #fff;
    padding: 30px;
    border-right: 1px solid #a57355;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .meeting-div .meeting{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    color: #f9f7f7;
  }
  .blog-div .blog{
    width: 45%;
  }
  .page-div .page .index-card{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -65px;
    z-index: 2;
  }
  .page-div .page .index-card .card1{
    width: 80%;
    background-color: #f3ebe6;
    padding: 40px;
    border-radius: 10px;
    color: #151110;
  }
  .page-div .page .index-card .card2{
    width: 80%;
    background-color: #a57355;
    padding: 40px;
    border-radius: 10px;
    color: #f9f7f7;
    margin-top: 20px;
  }
}
@media(max-width:940px){
  .header-div .header{
    width: 100%;
  }
}
@media(max-width:850px){
  .iletisim-div .iletisim-talk{
    width: 100%;
  }
  .iletisim-div .iletisim-form{
    width: 100%;
  }
}
@media(max-width:800px){
  .footerdown .footer{
    width: 100%;
    margin-bottom: 20px;
  }
  .footerdowndiv{
    padding: 40px;
  }
  .footerdowndiv .imza-div .imza img{
    width: 70%;
  }
  .footerdowndiv .footerdown2{
    width: 100%;
  }
  .sidebar{
    width: 100%;
  }
  .sidebar-div{
    padding: 40px;
  }
  .sidebar p{
    width: 90%;
    color: #f9f7f7;
    text-align: justify;
  }
  .meeting-div{
    padding: 10px;
  }
  .meeting-form-div .meeting-form .meeting-form-form{
    width: 100%;
    z-index: 2;
    padding: 10px;
    background-color: #f7f5f5;
  }
  .meeting-form-div .meeting-form{
    width: 100%;
  }
  .galeri-div .galeri .main .container {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 1rem;
   justify-content: center;
   align-items: center;
 }
 .blog-div .blog{
  width: 80%;
}
}
@media(max-width:670px){
  .about-my-div .about-my-div-img .dot-div{
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
  .about-my-div .about-my-div-img .dot-div img{
    width: 40%;
  }
  .about-my-div .about-my-div-img .img-div{
    padding-top: 40px;
    padding-left: 60px;
  }
  .about-my-div .about-my-div-img .img-div img{
    width: 100%;
    height: 100%;
  }
  .about-my-div .about-my-div-img .img-text-div{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    background-color: #f9f7f7;
    padding: 20px;
    font-size: 20px;
  }
}
@media(max-width:570px){
  .header-div .header .logo-div{
    width: 20%;
  }
  .iletisim-div .iletisim-form{
    padding: 10px;
  }
  .fixed-range-div .range-div .range{
    width:100%;
    text-align: center;
    color: #fff;
    padding: 30px;
    border-right: 1px solid #ffee02;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .blog-div .blog{
   width:100%;
 }
 .blog-div .blog-text img{
  width: 100%;
}
.page-div .page .index-card{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -65px;
  z-index: 2;
}
.page-div .page .index-card .card1{
  width: 100%;
  background-color: #f3ebe6;
  padding: 40px;
  border-radius: 10px;
  color: #151110;
}
.page-div .page .index-card .card2{
  width: 100%;
  background-color: #a57355;
  padding: 40px;
  border-radius: 10px;
  color: #f9f7f7;
  margin-top: 20px;
}
}
/*medid*/