@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Trocchi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montagu+Slab:wght@100;200;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  src: local("Pacifico Regular"), local("Pacifico-Regular"),
    url(/static/assets/fonts/pacifico.woff2) format("woff2");
  font-display: swap;

}

[class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}

.row {
  margin-left: 10px;
  margin-right: 10px;
}

/* font-family: "Montserrat", sans-serif; */
/* font-family: "Roboto Condensed", sans-serif; */
/* font-family: 'Raleway', sans-serif; */
/* font-family: 'PT Serif", serif; */
/* font-family: 'DM Serif Display', serif; */
/* font-family: 'Trocchi', serif; */
/* font-family: 'Montagu Slab', serif; */
/* font-family: 'Caladea', serif; */
/* font-family: 'Playfair Display', serif; */
/* font-family: 'Inter', sans-serif;
/* font-family: 'Jost', sans-serif; */
/* font-family: 'Abril Fatface',cursive; */



/* BURGER MENU START */
.menu-wrap .toggler {
  position: absolute;
  top: 0;
  right: -50px;
  z-index: 12;
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin: 15px 0px;
  opacity: 0;
}

.menu-wrap .popup {
  float: right;
  border: 1px solid;
  padding: 5px 20px;
  border-radius: 20px;
  margin: 13px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-wrap .popup i {
  margin-left: 6px;
}

.menu-wrap .popup:hover {
  background: #282828;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header-fixed .menu-wrap .popup {
  padding: 2px 20px;
  margin: 7px 55px 7px 0px;
}

.menu-wrap .modal .gonder {
  width: 100%;
  background: #000;
  text-transform: uppercase;
  font-size: 17px;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-wrap .modal .gonder:hover {
  background: #424242;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  right: -50px;
  z-index: 11;
  width: 30px;
  height: 30px;
  margin: 15px 0px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .hamburger>div {
  position: relative;
  flex: none;
  width: 100%;
  height: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.menu-wrap .hamburger>div::before,
.menu-wrap .hamburger>div::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 3px;
  background: inherit;
}

.menu-wrap .hamburger>div::after {
  top: 10px;
}

.menu-wrap .toggler:checked+.hamburger>div {
  transform: rotate(135deg);
}

.menu-wrap .toggler:checked+.hamburger>div:before,
.menu-wrap .toggler:checked+.hamburger>div:after {
  top: 0;
  transform: rotate(90deg);
}

.menu-wrap .toggler:checked:hover+.hamburger>div {
  transform: rotate(225deg);
}

.menu-wrap .toggler:checked~.menu {
  visibility: visible;
}

.menu-wrap .toggler:checked~.menu>div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked~.menu>div>div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px;
  visibility: hidden;
  overflow: hidden;
  z-index: 2;
}

.menu-wrap .menu ul.menuler li a {
  text-decoration: none;
  transition: color 0.4s ease;
  font-size: 36px;
  line-height: 60px;
  font-weight: bold;
  text-transform: lowercase;
  display: block;
}

.ilet {
  margin-bottom: 20px;
  font-size: 18px;
}

.header1 {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 9999;
}

.header4 .menu-wrap .menu ul.menuler li a {
  line-height: 55px;
  padding: 0px;
}

/* BURGER MENU FINISH */

/***********mobilbar start***************/
.mobil-nav ul {
  margin: 0;
  column-count: 5;
}

.mobil-nav ul li {
  text-align: center;
  height: 50px;
  font-weight: 500;
  vertical-align: middle;
  padding: 7px 0;
  border-left: 1px solid #bcbaba;
  border-top: 1px solid #ccc;
}

.mobil-nav ul li small {
  display: block;
  font-size: 9px;
  line-height: 7px;
}

.mobil-nav {
  position: fixed;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  box-shadow: 6px 0 10px rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 9999;
}

.mobil-nav ul li.active a,
.mobil-nav ul li.active i {
  color: #5c8600;
}

.mobil-nav svg,
.mobil-nav i {
  font-size: 17px;
  margin-bottom: 6px;
  color: #616161;
}

/***********mobilbar finish***************/
.tracer-nav .navbar .navbar-brand img {
  max-width: 215px;
  max-height: 130px;
  padding: 5px 0px;
}

.tracer-responsive-nav .logo,
.tracer-responsive-nav .logo img {
  max-width: 200px;
  max-height: 120px;
  width: inherit;
  padding: 3px 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mean-container .mean-bar {
  height: 100%;
  display: flex;
  align-items: center;
}

.tracer-responsive-nav .tracer-responsive-menu.mean-container .mean-nav {
  position: absolute;
  top: 85px;
  margin-top: 0px;
}

.tracer-responsive-nav .logo img {
  object-fit: contain;
}

.mean-container a.meanmenu-reveal {
  padding-top: 0px;
}

.tracer-responsive-nav .tracer-responsive-menu.mean-container .mean-nav ul {
  display: block;
  box-shadow: inherit;
  overflow: inherit;
  max-height: 85vh;
}

.navbar-area.is-sticky .topbar {
  display: none !important;
}

header .topbar ul.headilet a,
header .topbar ul.headilet i {
  font-size: 14px;
}

.langu span {
  font-size: 14px;
}

.navbar-area.is-sticky .tracer-nav .navbar .navbar-nav .nav-item a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-area.is-sticky .tracer-nav .navbar .navbar-nav .nav-item i.bx-home {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-area.is-sticky .logo img {
  max-height: 35px;
  width: inherit !important;
  margin: 5px 0px;
}

.navbar-area.is-sticky .menu-wrap .hamburger {
  margin: 5px 0px;
}

.navbar-area .logo img {
  max-width: 215px;
  max-height: 120px;
  padding: 5px 0px;
}

.navbar-area.is-sticky .menu-wrap .popup {
  margin: 5px 55px 5px 0px;
}

.navbar-area.is-sticky .tracer-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  top: 40px;
}

.navbar-area.is-sticky .tracer-nav .navbar .navbar-brand img {
  max-height: 45px;
}

.navbar-area.is-sticky .tracer-responsive-nav .logo,
.navbar-area.is-sticky .tracer-responsive-nav .logo img {
  max-height: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar-area.is-sticky .tracer-responsive-nav .logo {
  margin: 5px 0px;
}

.tracer-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  margin-top: 4px;
}

.anasayfa header.fixed {
  background: transparent;
}

header .single-footer-widget .social-link li a:hover {
  color: #fff;
}

header ul.headilet li {
  float: left;
  list-style-type: none;
  margin-left: 30px;
}

header ul.headilet li:first-child {
  margin-left: 0px;
}

header .social-link {
  height: 30px;
}

header ul.headilet li i {
  position: relative;
  top: 2px;
}

header ul.headilet {
  line-height: 31px;
}

header .single-footer-widget .social-link li a {
  background-color: #e6e6e6;
  color: #333333;
}

header .topbar {
  padding-top: 5px;
  border-bottom: 1px solid #ccc;
}

.mean-container .mean-nav ul li a {
  color: #333;
}

.anasayfa header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

.project-start-content {
  padding-left: 30px;
}

.special6 .video-img-hover {
  min-height: 120px;
}

.process-content {
  margin-left: 35px;
}

.owl-dots {
  text-align: center;
}

.owl-dots button {
  background: #cdcbcb !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 7px;
}

.owl-dots button.active {
  background: #7b7b7b !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body .contact-form {
    margin-top: 0px;
    padding: 15px;
  }

  body .testimonials-slides.owl-carousel .owl-nav .owl-prev,
  body .testimonials-slides.owl-carousel .owl-nav .owl-next {
    position: inherit;
  }

  body .process-content {
    margin-left: 0px;
  }

  body .about-content .content .features-list li span {
    padding: 20px;
  }

  body .case-study-slides.owl-carousel .owl-nav .owl-prev,
  body .case-study-slides.owl-carousel .owl-nav .owl-next {
    bottom: inherit;
    font-size: inherit;
  }

  body .testimonials-slides.owl-carousel .owl-nav .owl-prev {
    left: 0px !important;
    right: auto !important;
  }

  body .testimonials-slides.owl-carousel .owl-nav .owl-next {
    left: auto !important;
    right: 0px !important;
  }

  body .yuvarlakfoto {
    width: 340px;
    height: 340px;
  }

  body .explore-learning-area .video-img-hover {
    height: 205px;
  }

  body .video-img-hover {
    min-height: 100px;
  }

  body .project-start-content {
    padding-left: 0px;
  }

  body .single-services-item {
    padding: 10px;
  }

  body .single-services-item h3 {
    font-size: 19px;
    height: inherit;
  }

  .default-btn i {
    left: 10px;
  }

  .default-btn {
    padding: 6px 10px 6px 28px;
  }

  body .project-start-content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  /* body .video-img-hover {
    min-height: 100px;
  } */

  body .project-start-content {
    padding-left: 0px;
  }

  body .project-start-content {
    text-align: left;
  }

  body .single-services-item {
    padding: 10px;
    height: inherit;
  }

  body .single-services-item h3 {
    font-size: 19px;
  }

  .default-btn i {
    left: 10px;
  }

  .default-btn {
    padding: 6px 10px 6px 28px;
  }



  body .blogbox .yataybox .image,
  body .blogbox .yataybox .icon {
    float: inherit;
    width: 100%;
    margin-bottom: 10px;
  }

  body .blogbox .yataybox .content {
    float: inherit;
    width: 100%;
    padding-left: 0px;
  }

  body .yataybox {
    display: block;
  }

  body .single-services-item h3,
  body .single-projects-box .content h3,
  body .single-services-box h3,
  body .single-process-box h3,
  body .single-solutions-box h3,
  body .single-featured-services-box h3,
  body .single-services-box-item h3,
  body .single-what-we-do-box h3,
  body .single-featured-services-item h3 {
    height: inherit;

  }

  body .menu-wrap .menu {
    padding: 15px;
  }

  body header.header4 .menu-wrap {
    margin: 0px 45px 0px 0px;
  }

  .tracer-responsive-menu .langu {
    position: absolute;
    right: 45px;
    top: 27px;
    z-index: 999;
  }

  .is-sticky .tracer-responsive-menu .langu {
    top: 10px;
  }

  body .adres {
    padding: 11px;
  }

  body .process-content {
    margin-left: 0px !important;
  }

  body .process-content .single-box-item .image {
    padding: 10px 15px;
  }

  body .how-its-work-content .inner-box .single-item .count-box {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 21px;
  }

  body .how-its-work-content .inner-box .single-item::before {
    left: 25px;
  }

  body .how-its-work-content .inner-box .single-item::after {
    left: 11px;
    bottom: 35px;
  }

  body .explore-learning-area .video-img-hover {
    height: 215px;
  }

  body .single-featured-services-box {
    margin-bottom: 10px;
  }

  body .container .owl-carousel .owl-nav {
    left: -15px;
    right: -15px;
  }

  body .explore-learning-video .video-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    top: calc(50% - (12px));
  }

  body .single-services-item h3,
  body .single-projects-box .content h3,
  body .single-services-box h3,
  body .single-process-box h3,
  body .single-solutions-box h3,
  body .single-featured-services-box h3,
  body .single-services-box-item h3,
  body .single-what-we-do-box h3,
  body .single-featured-services-item h3 {
    padding: 0px 10px;
    font-size: 16px;
  }

  body .blogbox p {
    padding: 0px 10px;
  }

  .banner-item-content.sol {
    width: 90%;
    margin-left: 5%;
  }

  .single-case-study-item .case-study-content {
    margin-left: 0px;
  }

  body .anavitrin .title.md,
  body .anavitrin .sub-title.md,
  body .anavitrin .aciklama.md {
    font-size: 25px;
    line-height: 28px;
  }

  body .anavitrin .title.xl,
  body .anavitrin .sub-title.xl,
  body .anavitrin .aciklama.xl {
    font-size: 45px;
    line-height: 48px;
  }

  body .main-banner-item {
    height: 535px;
  }

  body .owl-carousel .single-gallery-item {
    margin-bottom: 0px;
  }

  body .single-gallery-item {
    margin-bottom: 20px;
  }

  .tracer-responsive-nav .logo img {
    max-height: 85px;
  }

  .tracer-responsive-nav .logo {
    max-height: 85px;
    clip-path: polygon(0 0, 100% 0, 81% 100%, 0 100%);

  }

  body .tracer-responsive-menu.mean-container {
    height: 85px;
  }

  body .is-sticky .tracer-responsive-menu.mean-container {
    height: inherit;
  }

  body header.is-sticky .tracer-responsive-menu.mean-container {
    height: inherit;
  }

  .navbar-area.is-sticky .tracer-responsive-nav .tracer-responsive-menu.mean-container .mean-nav {
    margin-top: 0px;
    top: 50px;
  }

  body .yuvarlakfoto {
    width: 300px;
    height: 300px;
    margin: 0px auto;
    float: inherit;
    margin-top: 7px !important;
  }

  body .case-study-slides.owl-carousel .owl-nav {
    top: inherit;
    bottom: 140px;

  }

  .mintlogo img {
    margin: 10px auto;
  }

  .sabitilet {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 99;
  }

  body .icerikzemin {
    width: 100%;
    padding-left: 0px !important;
  }

  body .sidezemin {
    width: 100%;
  }

  body .page-title-area {
    padding: 30px 0px;
  }

  body .m1 .minthizmet1,
  body .m1 .minthizmet2 {
    width: 100%;
    float: inherit;
    height: inherit;
  }

  body .m1 .minthizmet2 {
    padding: 10px;
  }

  body .m1 .d-flex {
    display: inherit !important;
  }

  body .minthizmet2 h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .navbar-area .logo {
    display: flex !important;
    align-items: center;
    height: 100%;
  }

  .navbar-area .logo img {
    max-width: 140px;
  }

  body.anasayfa header {
    height: 85px;
  }

  body.anasayfa header.fixed {
    position: inherit;
    height: inherit;
  }

  body .single-services-item {
    padding: 5px;
  }

  body .single-services-item h3 {
    font-size: 15px;
  }

  body .single-services-item p {
    font-size: 14px;
    line-height: 19px;
  }

  body .default-btn {
    padding: 5px 10px 5px 30px;
    font-size: 12px;
  }

  body .default-btn i {
    left: 9px;
  }

  body .single-projects-box .content {
    padding: 10px;
  }

  body .referanslogolar {
    column-count: 2;
  }

  body .referanslogolar .refe {
    margin-right: 0px;
  }

  body .single-projects-box .content h3 {
    font-size: 16px;
  }

  body .single-projects-box .content span {
    font-size: 10px;
  }
}

.anavitrin .d-table {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

body .page-title-area {
  background-color: #f1f1f1;
  padding-top: 30px;
  padding-bottom: 30px;
}

.vitrin2 .main-banner-item {
  height: 100vh;
  /* height: calc(100vh - (138px)); */
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.main-banner-item {
  background-color: transparent;
}

.vitrin1 .main-banner-item {
  height: auto !important;
}

/* 
.anavitrin .title.xl,
.anavitrin .sub-title.xl,
.anavitrin .aciklama.xl {
  font-size: 55px;
  line-height: 58px;
}

.anavitrin .title.md,
.anavitrin .sub-title.md,
.anavitrin .aciklama.md {
  font-size: 30px;
  line-height: 33px;
} 

.anavitrin .title.sm,
.anavitrin .sub-title.sm,
.anavitrin .aciklama.sm {
  font-size: 18px;
  line-height: 25px;
}
*/
.anavitrin .title.beyaz,
.anavitrin .sub-title.beyaz,
.anavitrin .aciklama.beyaz {
  color: #fff !important;
}

.anavitrin .title.siyah,
.anavitrin .sub-title.siyah,
.anavitrin .aciklama.siyah {
  color: #000 !important;
}

.anavitrin .title.transparan,
.anavitrin .sub-title.transparan,
.anavitrin .aciklama.transparan {
  display: none;
}

.anavitrin .item .itembg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.banner-item-content .default-btn.siyah {
  background: #000;
  color: #fff;
}

.banner-item-content .default-btn.beyaz {
  background: #fff;
  color: #000;
}

.banner-item-content.siyah .default-btn.transparan {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}

.banner-item-content .default-btn.transparan {
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}

.single-services-box-item .image img,
.single-what-we-do-box .image img,
.single-featured-services-box .image img {
  width: 70%;
}

.sidezemin {
  width: 30%;
}

.icerikzemin {
  width: 70%;
}

.icerikzemin.float-end {
  padding-left: 30px;
}

.icerikzemin.float-start {
  padding-right: 30px;
}

.sidezemin .nice-select {
  white-space: inherit;
  line-height: 18px;
}

.process-content .single-box-item h3 {
  font-size: 19px;
  font-weight: 600;
}

.temp6 .about-content .content ul li {
  position: relative;
  margin-bottom: 35px;
  padding-left: 53px;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

.temp6 .about-content .content ul li:before {
  content: "\f10f";
  font-family: Flaticon;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 3px;
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #deecf4;
  font-size: 20px;
  z-index: 999;
}

/* .single-services-item h3,
.single-projects-box .content h3,
.single-services-box h3,
.single-process-box h3,
.single-solutions-box h3,
.single-featured-services-box h3,
.single-services-box-item h3,
.single-what-we-do-box h3,
.single-featured-services-item h3 */

.blogbox h3 {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yuvarlakfoto {
  width: 500px;
  height: 500px;
  overflow: hidden;
  float: right;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border: 5px solid #fff;
  /* box-shadow: 0px 0px 20px #969696; */
  border-radius: 50%;
}

.yuvarlakfoto img {
  max-width: inherit;
  height: 500px;
  width: auto !important;
}

.referanslogolar {
  column-count: 4;
}

.referanslogolar .refe {
  margin-right: 10px;
}

.referans {
  border: 1px solid #ccc;
}

.mintlogo img {
  width: 90px;
}

.sabitilet {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
}

.sabitilet a {
  margin: 0px 5px;
  text-align: center;
  float: left;
}

.whatsabit {
  width: 45px;
  height: 45px;
  z-index: 999;
  background: #10b418;
  border-radius: 50%;
}

.whatsabit i {
  text-align: center;
  line-height: 46px;
  font-size: 51px;
  color: #fff;
  position: relative;
  margin-left: -3px;
  text-shadow: 2px 0 0 #10b418, -2px 0 0 #10b418, 0 2px 0 #10b418,
    0 -2px 0 #10b418, 1px 1px #10b418, -1px -1px 0 #10b418, 1px -1px 0 #10b418,
    -1px 1px 0 #10b418;
}

.sabittel i {
  text-align: center;
  line-height: 45px;
  font-size: 33px;
  color: #fff;
}

.sabittel {
  width: 45px;
  height: 45px;
  z-index: 999;
  background: #fd7f00;
  border-radius: 50%;
}

.yataybox {
  display: flex;
  align-items: center;
}

.blogbox .yataybox .image {
  float: left;
  width: 25%;
  margin-bottom: 0px;

}

.blogbox .yataybox .icon {
  float: left;
  width: 20%;
  margin-bottom: 0px;
}

.blogbox .yataybox .content {
  float: right;
  width: 75%;
  text-align: left;
  padding-left: 40px;
  margin-bottom: 0px;
}

.dropdown-hover:hover>.dropdown-menu {
  display: inline-block;
}

.dropdown-hover>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.megamenu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgb(255 255 255);
}

.header5 .navbar-dark .navbar-nav .nav-link {
  padding: 15px;
}

.header5 .homeicon {
  display: none !important;
}

.bar {
  width: 20px;
  height: 1.3px;
  position: relative;
  top: -5px;
  display: inline-block;
  margin-right: 5px;
}

.bar:before {
  width: 100%;
  height: 1.3px;
  content: "";
  margin-top: -6px;
  position: absolute;
}

.bar:after {
  width: 100%;
  height: 1.3px;
  content: "";
  margin-top: 6px;
  position: absolute;
}

.navbar-dark .bar,
.navbar-dark .bar:before,
.navbar-dark .bar:after {
  background: #fff;
}

.navbar-light .bar,
.navbar-light .bar:before,
.navbar-light .bar:after {
  background: #000;
}

.product-card-kurumsal {
  border: 1px solid #ccc;
}

.product-card-kurumsal .product-title {
  padding: 10px;
}

.product-card-kurumsal .product-title h4 {
  font-size: 14px;
  font-weight: 600;
  min-height: 34px;
}

.product-card-kurumsal span {
  margin-left: 10px;
}

.accordion .accordion-button {
  background: transparent;
  padding: 12px;
  color: inherit;
}

.accordion-body {
  padding: 10px;
}

ul li {
  list-style: none;
}

.single-gallery-item {
  border: 1px solid #ccc;
  background: #fff;
}

.baslik h2 {
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

/*ILETISIM DETAYI START*/
.adres {
  border: 1px solid #ccc;
  padding: 20px;
  position: relative;
  background: white;
  margin-bottom: 31px;
}

.adres p {
  display: inline-block;
  margin: 0px 0px 0px 10px;
  font-size: 18px;
  line-height: 25px;
}

.adres .phone {
  margin: 5px 0px 0px 10px;
  display: block;
}

.adres i {
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 26px;
  line-height: 50px;
  text-align: center;
  margin: 0px auto 5px auto;
  display: block;
}

.adres h5 {
  margin: 0px;
  font-size: 12px;
  text-align: center;
}

.iletdiv {
  padding: 25px;
  background: #e0e0e0 !important;
}

.adres .float-start {
  width: 20%;
}

.adres .float-end {
  width: 80%;
}

#map {
  width: 100%;
}

#map .ymaps-2-1-77-map {
  height: 250px !important;
}

/*ILETISIM DETAYI FINISH*/

/*MİNT YAZLIMA ÖZEL*/
.m1 .minthizmet1,
.m1 .minthizmet2 {
  width: 50%;
  display: flex;
  align-items: center;
  float: left;
  height: 100%;
}

.m1 .minthizmet2 a {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m1:nth-child(2n) .minthizmet1 {
  float: right;
}

.minthizmet2 {
  border: 20px solid;
  padding: 45px;
}

.minthizmet2 h2 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}

.minthizmet2 ul li:before {
  content: "\ebe7";
  font-family: "boxicons";
  font-weight: 900;
  margin-right: 5px;
}

.minthizmet2 ul li {
  font-weight: 700;
}

.minthizmet2 ul {
  padding-left: 0px;
}

.minthizmetkat .col-md-4:nth-child(1) {
  background-color: #e7d5aa70;
}

.minthizmetkat .col-md-4:nth-child(2) {
  background-color: #ecb9af70;
}

.minthizmetkat .col-md-4:nth-child(3) {
  background-color: #c2da9e70;
}

.minthizmetkat .col-md-4:nth-child(4) {
  background-color: #f1d2f170;
}

.minthizmetkat .col-md-4:nth-child(5) {
  background-color: #abe6e870;
}

.minthizmetkat .col-md-4:nth-child(6) {
  background-color: #c9beda70;
}

.minthizmetkat .single-services-item {
  background-color: transparent;
  box-shadow: inherit;
  margin-bottom: 0px;
  padding: 30px 30px 20px 30px;
}

.minthizmetkat h3,
.minthizmetkat p,
.minthizmetkat .default-btn {
  color: #393939;
}

.minthizmetkat img {
  width: 190px;
  filter: grayscale(100%);
}

.minthizmetkat .single-services-item:hover img {
  filter: inherit;
}

header .langu {
  float: right;
}

header.header4 .menu-wrap {
  margin: 15px 45px 0px 0px;
}

header.header4 .langu {
  margin: 15px 0px;
}

.langu img {
  width: 20px;
}

.bloggim img {
  height: 300px;
  display: table;
  margin: 0px auto;
}

.blogbox .icon {
  width: 105px !important;
  height: 105px !important;
  padding: 12px !important;
  margin: 0px auto 15px auto;
  display: table;
}

#contactForm2 .form-group {
  margin-bottom: 15px;
}

#contactForm2 .nice-select {
  background-color: transparent;
  padding: 0px;
  border: 0px;
  width: 100%;
}

#contactForm2 .nice-select .current {
  font-size: 16px;
  font-weight: 600;
}

#contactForm2 .nice-select .list {
  width: 100%;
}

/* .yanfoto {
  display: block;
  position: relative;
  padding-bottom: 25%;
  transform-origin: 0 100%;
  transform: skewX(20deg) translateX(1px);
  overflow: hidden;
} */
.bgsect {
  background-position: center center !important;
  background-size: cover !important;
  padding: 100px 0px;
}

.video-img-hover {
  background-size: cover !important;
  background-position: center center !important;
  min-height: 190px;
  margin-bottom: 5px;
}

.icerikzemin .services-details-desc .video-btn,
.services-details-area .video-btn {
  width: 60px;
  height: 60px;
  font-size: 25px;
  line-height: 60px;

}

.header6 .navbar-brand {
  padding-right: 55px !important;
  padding-left: 20px;
  clip-path: polygon(0 0, 100% 0, 81% 100%, 0 100%);
}

.nav-number {
  position: relative;
  right: 30px;
  top: -80px;
  z-index: 99;
  display: flex;
  justify-content: end;
}

.nav-number a {
  width: 50px;
  height: 50px;
  font-size: 31px;
  border: 1px solid #fff;
  background: #ffffff4f;
  margin-left: 10px;
  border-radius: 0px;
  line-height: 39px;
}



.about-three .shape6 {
  position: absolute;
  top: -330px;
  right: 0;
  z-index: -1;
}

.about-three .shape5 {
  position: absolute;
  top: -490px;
  left: 0;
  z-index: -1;
}

.about-three__img {
  position: relative;
  display: block;
  max-width: 445px;
  width: 100%;
}

.about-three__img1 {
  position: relative;
  display: block;
  z-index: 1;
}

.about-three__img1::before {
  position: absolute;
  top: -25px;
  left: 50px;
  bottom: 90px;
  right: -50px;
  border: 1px solid #e5dedc;
  content: "";
  z-index: 2;
}

.about-three__img1 .shape3 {
  position: absolute;
  top: 20px;
  right: -35px;
  width: 5px;
  height: 65px;
  z-index: 2;
}

.about-three__img1 .shape4 {
  position: absolute;
  bottom: 190px;
  right: -30px;
  z-index: 5;
}

.float-bob-y {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
  -webkit-animation-duration: 6s;
  animation-duration: 6s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.about-three__img1 .inner {
  position: relative;
  display: block;
}

.about-three__img1 .shape1 {
  position: absolute;
  top: 35px;
  left: 17px;
  width: 5px;
  height: 65px;
  z-index: 2;
}

.about-three__img1 .shape2 {
  position: absolute;
  top: 85px;
  left: 28px;
  width: 10px;
  height: 230px;
  background: #ffffff;
  z-index: 2;
}

.about-three__img1 .inner img,
.about-three__img2 img {
  width: 100%;
}

.about-three__img2 {
  position: relative;
  display: block;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 8px solid #ffffff;
  overflow: hidden;
  margin: -170px auto 0px;
  z-index: 5;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.dalga .image,
.circle .image {
  position: relative;
  display: block;
  overflow: hidden;
}

.dalga .image:hover:before {
  -webkit-animation: shine 1.2s;
  animation: shine 1.2s;
}

.circle .image:hover:before {
  -webkit-animation: circle 1.2s;
  animation: circle 1.2s;
}

.dalga .image img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
}

.dalga .image:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.dalga .image:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}

.circle .image:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.grayimage img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.grayimage:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}