/* WP */
.wa-icon {
  position: fixed;
  display: flex;
  z-index: 100000;
  bottom: 30px;
  right: 36px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4bca5a;
  top: auto !important;
}
#wa-chat-widget {
  display: none;
  position: fixed;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgb(32 33 36 / 28%);
  bottom: 130px;
  right: 15px;
  overflow: hidden;
  z-index: 1000000099;
  animation-name: wa-chat-animation;
  animation-duration: 1s;
  opacity: 100;
}
#wa-chat-widget:target {
  display: block;
}
.wa-chat-widget-header {
  display: flex;
  background: rgb(7, 94, 84);
  background: linear-gradient(
    90deg,
    rgba(7, 94, 84, 1) 0%,
    rgba(18, 140, 126, 1) 85%
  );
  color: #ffffff;
  padding: 1rem;
}
.wa-chat-widget-header img {
  max-width: 3.5rem;
}
.wa-chat-widget-header a.close {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}
.wa-chat-widget-profile {
  padding: 0 1rem 0 1rem;
}
.wa-chat-widget-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
}
.wa-chat-widget-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
}
.wa-chat-widget-body .message {
  padding: 0.5rem;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  box-shadow: rgb(0 0 0 / 13%) 0px 1px 0.5px;
}
.wa-chat-widget-body .message .profile-name {
  color: #787878;
}
.wa-chat-widget-body .message .wcw-message {
  margin-top: 0.5rem;
}
.wa-chat-widget-send form {
  display: flex;
  margin: 0;
  background-color: rgb(230, 221, 212);
}
.wa-chat-widget-send input {
  border: none;
  padding: 0.5rem;
  width: 100%;
  border-radius: 1rem;
}
.wa-chat-widget-send button {
  background-color: #075e54;
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  fill: #ffffff;
}
@keyframes wa-chat-animation {
  from {
    opacity: 0;
  }
}
.phone-container {
  position: fixed;
  bottom: 145px;
  right: 36px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #517dcc !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  top: auto !important;
}
.phone-container svg {
  fill: #fff;
  width: 32px;
  position: relative;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: oscillate-rotation 1.5s infinite ease-in-out;
  transform-origin: center;
}
.p-5 {
  padding: 0.5rem;
}
.c-white {
  color: #fff !important;
}
.bgc-blue {
  background-color: rgb(4, 38, 118) !important;
}
.circle {
  border-radius: 50%;
}
.phone-container:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgb(4, 38, 118);
  opacity: 0.5;
  animation: ring-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}
.phone-container:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(4, 38, 118, 0.5);
  border-radius: 50%;
  border: none;
  animation: ring-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 1s;
  transform-origin: 50% 50%;
}
.osc-rotation {
  box-sizing: border-box;
  animation: oscillate-rotation 1.5s infinite ease-in-out;
  transform-origin: 50% 50%;
}
.icon {
  font-family: "Material Icons";
  font-size: 3rem;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
@keyframes ring-circle-anim {
  0% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0;
  }
  30% {
    transform: rotate(0) scale(1.5) skew(0deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) scale(1.7) skew(0deg);
    opacity: 0.1;
  }
}
@keyframes ring-circle-fill-anim {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1.4) skew(0deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(1.1) skew(0deg);
    opacity: 0.2;
  }
}
@keyframes oscillate-rotation {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
.notification {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  color: white;
}
.notification span {
  font-size: 14px;
}
/* END WP */
.dropdown {
  padding: 15px 12px;
}
.gap {
  padding: 25px 0;
}
.baner:before {
  display: none;
}
.baner:after {
  position: absolute;
  content: "";
  top: 8%;
  right: 6%;
  border: #dc202b 8px solid;
  height: 370px;
  width: 200px;
  border-radius: 113px;
  transform: rotate(33deg);
  animation: rotateme 150s infinite;
}
.studies h3 {
  font-size: 80px;
  color: #fff;
  font-weight: bold;
}
.studies a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  padding-right: 10px;
  padding-left: 10px;
  transition: 0.5s ease-in-out;
}
.link-fff {
  color: white;
}
.Update {
  padding: 5px 13px;
}
input.form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #000000 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* .baner {
  background-repeat: repeat;
} */
.Update-img img {
  height: 300px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #000000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.Busines-img img {
  border-radius: 180px;
  width: -webkit-fill-available;
  height: auto;
  margin-left: 30px;
}
.owl-carousel:after {
  background-color: #0000 !important;
}
.develop-create h2 {
  font-size: 80px;
  font-weight: bold;
  width: 50%;
  color: #fff;
}
.develop-create {
  color: aliceblue;
  z-index: 999999 !important;
}
.develop-create h2 {
  font-size: 56px;
  font-weight: bold;
  width: 50%;
  color: #fff;
}
.item {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("yol/resim.jpg");
  /* Diğer gerekli stil ayarları... */
}
.top-bar {
  background: #242424;
}
button.one,
.drop-box:before,
button.filter-btn.active-filter.active-work:after,
.our-portfolio button.filter-btn:hover:after,
.header-for-top-bar,
.Packages:before,
section.Together:before,
#scroll,
.pan:before,
li.date,
.service:hover:after,
.service i,
.history-timeline:before,
.years,
.btn-one:after,
.Finance:hover .Busi,
.accordion-button:not(.collapsed),
.tim,
.search-cross-btn,
.active,
footer.two:before,
.progress-bar,
.Business-Growth-three .parallax:before,
.Project:before,
.Case,
.Expert-icon:hover i.fa.fa-share-alt,
.baner:before,
.Expert span,
.logo-head:after,
.pagenashion-number a.two,
.pagenashion-number a.pagenashion:hover,
li.atems:hover .atem-number,
.tag a:hover,
li.Photo:before,
.few,
button.slick-arrow:hover,
.aptent li:before,
.Reply a,
.navNext i:hover,
.navPrev i:hover,
.owl-carousel:after,
section.error:before,
.slider-nav-three h3.slick-current {
  background-color: #dd2127;
}
.logo-head:before {
  margin-top: 0px;
  content: "";
  position: absolute;
  right: -76px;
  border-left: solid transparent;
  border-right: 76px solid transparent;
  border-top: 165px solid #dd2127;
  bottom: -15px;
}
.dropdown_menu li {
  background-color: #242424;
}
.owl-carousel:before {
  display: none;
}
.drop-box:before {
  background-color: #242424;
}
.baner:after {
  position: absolute;
  content: "";
  height: 100% !important;
  width: 100% !important;
  top: 0 !important;
  right: 0 !important;
  background-color: #00000080 !important;
  border: none !important;
  z-index: 0 !important;
  border-radius: 0px !important;
  transform: rotate(0deg) !important;
  animation: none !important;
}
.studies {
  z-index: 1 !important;
}

@media only screen and (max-width: 767px) {
  .studies h3 {
    font-size: 2.2rem;
  }

  .baner {
    background-repeat: repeat-x;
  }

  .baner {
    background-position: top;
    background-size: contain;
    padding-top: 102px !important;
    padding-bottom: 0px !important;
  }

  .studies {
    top: 10px !important;
    z-index: 1 !important;
    position: absolute;
  }

  /* Slider */
  .develop-create {
    margin-left: 6%;
  }
  .develop-create h2 {
    font-size: 26px;
    font-weight: bold;
    width: 75%;
    color: #fff;
  }
  .owl-item {
    background-repeat: repeat-x;
  }
}

@media (max-width: 991px) {
  .develop-create {
    width: 100%;
    margin-left: 6%;
  }
}

@media (max-width: 1024px) {
  .develop-create {
    padding-top: 20px;
    padding-bottom: 0%;
  }
}
.gap {
  padding: 60px 0;
}
.owl-carousel:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .Provide {
    padding-top: 15px !important;
    padding-bottom: 0px !important;
    text-align: center;
    border-bottom: double;
  }
  .Provid {
    padding: 10px 0;
  }
}

.baner { 
  padding-top: 189px;
}

/* Mobil ekranlar için düzenleme */
@media only screen and (max-width: 767px) {
  .baner {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 102px;
    padding-bottom: 0;
  }
}


ul.top-bar-icon li> a {
  font-size: 25px;
  color: #222;
  padding-right: 12px;
  position: relative;
}