@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400&family=Josefin+Sans:wght@700&family=Manrope:wght@200;300;400;800&family=Playfair+Display:wght@400;500;600;900&family=Roboto:wght@100;300;400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

*::-moz-selection {
  text-shadow: none;
  color: #aeaeae;
  background: #313131;
}

*::selection {
  text-shadow: none;
  color: #aeaeae;
  background: #313131;
}

:root {
  --text-font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-family: "Roboto", sans-serif;
}

html {
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

#bodyBg {
  background: black;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

a {
  text-decoration: none;
  color: black;
  display: block;
}

ul {
  list-style: none;
}

h3 {
  font-size: 1.7rem;
}

input, button, textarea {
  border: none;
}

input:focus, textarea:focus {
  outline: none;
}

input[type='submit'] {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.container-sm {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
}

.container-md {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.container-lg {
  padding: 0 120px;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 2000px;
  margin: 0 auto;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
  background: none !important;
  color: black !important;
}

.sc-title {
  font-size: 50px;
  opacity: .3;
  line-height: 100px;
  -webkit-transition: .4s;
  transition: .4s;
}

.sc-content {
  line-height: 25px;
}

.textColorChange {
  -webkit-transition: .5s;
  transition: .5s;
  color: black !important;
}

.font-cario {
  font-family: "Cairo", sans-serif;
}

.opacity1 {
  -webkit-transition: .4s;
  transition: .4s;
}

.opacity1:hover {
  opacity: 1;
}

.flex-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex-list .flex-list-item {
  margin: 1rem;
}

.flex-list .flex-list-item__2 {
  width: calc(calc(100% / 2) - 2rem);
}

.flex-list .flex-list-item__3 {
  width: calc(calc(100% / 3) - 2rem);
}

.flex-list .flex-list-item__4 {
  width: calc(calc(100% / 4) - 2rem);
}

.anim-shake {
  -webkit-animation: linear shake 8s infinite;
          animation: linear shake 8s infinite;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  7% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  21% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  28% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  42% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  63% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  70% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  7% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  21% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  28% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  42% {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  63% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  70% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

/*index*/
header {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #1f2535;
}

header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, black 100%);
  z-index: 19;
}

.headerSc {
  position: relative;
}

.headerSc .index-20 {
  position: relative;
  height: 100vh;
  z-index: 20;
}

nav {
  position: relative;
  text-align: center;
}

nav .main-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 3rem 1rem 1rem 1rem;
}

.hero-title-box {
  position: absolute;
  top: 30%;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 18;
}

.hero-title-box .big-title {
  line-height: 6rem;
  font-size: 4rem;
  font-weight: normal;
  font-family: "Manrope", sans-serif;
}

.hero-title-box p {
  opacity: .3;
  font-size: 15px;
  letter-spacing: 2px;
}

.modal {
  display: none;
  /* Hidden by default */
  position: absolute;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Enable scroll if needed */
}

.dropdown-hamburger:hover .hamburger-content, .dropdown-hamburger:focus-within .hamburger-content {
  visibility: visible;
  opacity: 1;
  display: block;
}

.dropdown-hamburger:hover .line, .dropdown-hamburger:focus-within .line {
  width: 100%;
}

.dropdown-hamburger .hamburger-content {
  visibility: hidden;
  position: absolute;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  z-index: 1;
  top: 50%;
  left: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 0;
}

.dropdown-hamburger .hamburger-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  -webkit-transition: .4s;
  transition: .4s;
}

.dropdown-hamburger .hamburger-content a:hover {
  color: #f9a08c;
}

.menu-wrapper {
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.menu-wrapper .line {
  height: 2px;
  background: white;
  margin: 10px 0;
  border-radius: 64px;
  width: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.menu-wrapper .line.line1 {
  margin-left: auto;
}

.menu-wrapper .line.line2 {
  width: 100% !important;
}

.menu-wrapper:hover > .line {
  width: 100%;
}

.contact-button {
  position: absolute;
  bottom: 20px;
  right: 0;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2F3044;
  border-radius: 30px;
  padding: 5px;
  padding-left: 20px;
  font-family: "Manrope", sans-serif;
}

.contact-button span {
  border: 1px solid white;
  border-radius: 25px;
  height: 3rem;
  width: 3rem;
  line-height: 4rem;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-button span img {
  height: 2rem;
}

#kisacabiz {
  color: white;
}

#kisacabiz .ister-content {
  padding: 10rem 0;
}

#islerimiz {
  color: white;
  min-height: 100vh;
}

.doing-item {
  margin-right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 66vw;
  height: 80vh;
}

.doing-item .doing-pic {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 40%;
}

.doing-item .doing-context {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 50%;
}

.doing-item .doing-context .doing-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.doing-item .doing-context .doing-title p {
  margin-top: 10px;
}

.doing-item .doing-context .btn-icerikbox {
  color: white;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  margin-top: 2rem;
  float: right;
  margin-left: 10px;
}

.doing-item .doing-context .btn-icerikbox:hover {
  background: white;
  color: black;
}

/*****************************************/
/* chrome */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

/* chrome */
.horizontal-scroll {
  position: absolute;
  width: calc(100vh - 100px);
  height: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
  padding: calc(calc(100% - 1200px) / 2) 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(-90deg) translate3d(0, calc(-100vh + 100px), 0);
          transform: rotate(-90deg) translate3d(0, calc(-100vh + 100px), 0);
  scrollbar-color: rgba(225, 98, 39, 0) rgba(247, 247, 247, 0);
  scrollbar-width: none;
}

.horizontal-scroll > * {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(90deg) translate3d(0, calc(-50vh + 60px), 0);
          transform: rotate(90deg) translate3d(0, calc(-50vh + 60px), 0);
}

.horizontal-scroll__block {
  min-height: 67vw;
  left: 45vh;
  position: relative;
}

.horizontal-scroll__block:not(:first-child) {
  margin-top: 30px;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(225, 98, 39, 0);
}

.horizontal-scroll::-webkit-scrollbar-track {
  background-color: #f7f7f7;
}

.employer-wrapper {
  color: white;
}

.employer-wrapper p {
  line-height: 1.5;
}

.says {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
}

.says img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.says .employer-imgwrapper {
  margin-right: 1rem;
  max-height: 40rem;
}

.says .employer-textwrapper {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.says .employer-textwrapper p {
  opacity: .8;
}

.says .employer-textwrapper .employer-name {
  font-weight: lighter;
  font-size: 4rem;
  opacity: 0.5;
  text-align: center;
  position: relative;
}

.says .employer-textwrapper .employer-name::after {
  content: attr(data-name);
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 20px;
}

#ekip {
  min-height: 100vh;
  color: white;
  position: relative;
}

#ekip h1.sc-title {
  text-align: center;
}

#ekip .table-surec {
  border-top: 2px solid rgba(0, 0, 0, 0.039);
  font-family: var(--text-font);
  line-height: 26px;
  padding-bottom: 5rem;
}

#ekip .table-surec tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: calc(100vh - 200px);
}

#ekip .table-surec tbody th {
  width: 15rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
  padding: 10px;
  -webkit-transition: .4s;
  transition: .4s;
}

#ekip .table-surec tbody td {
  font-size: 15px;
  padding: 14px 10px;
}

.text-band {
  text-align: center;
  font-size: 40px;
  background: #f9a08c;
  color: rgba(255, 255, 255, 0.569);
  position: absolute;
  width: 100%;
  left: 0;
  padding: 1rem 0;
  bottom: -5px;
  z-index: 1;
  white-space: nowrap;
  font-family: "Josefin Sans", sans-serif;
}

.ekip-img {
  max-width: 100%;
}

#contact {
  position: relative;
  background-color: #181929;
  color: white;
}

#contact .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100vh;
  min-height: 400px;
}

#contact .contact-wrapper .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contact .contact-wrapper .social-list a {
  padding: 5px 15px;
  color: white;
  opacity: .24;
}

#contact .contact-wrapper .company-name {
  font-size: 4rem;
  text-align: center;
  font-family: "Playfair Display", serif;
}

#contact .contact-wrapper .last-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contact-wrapper .last-menu-wrapper p {
  font-size: 4rem;
  font-family: "Playfair Display", serif;
}

#contact .contact-wrapper .last-menu-wrapper .hamburger-content a {
  color: white;
  cursor: pointer;
  font-size: 1.3rem;
  padding: 12px 16px;
  padding-right: 0;
  display: block;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: right;
}

#contact .contact-wrapper .last-menu-wrapper .hamburger-content a:hover {
  color: #f9a08c;
}

#contact .contact-wrapper .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#contact .contact-wrapper .footer .address {
  font-family: var(--text-font);
}

#contact .contact-wrapper .footer .address p {
  opacity: .3;
}

#contact .contact-wrapper .footer .address span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact .contact-wrapper .footer .address span a {
  opacity: .3;
  color: white;
  margin-right: 20px;
  -webkit-transition: .5s;
  transition: .5s;
  opacity: .3;
}

#contact .contact-wrapper .footer .address span a:hover {
  opacity: .7;
}

#contact .contact-wrapper .footer .footer-logo img {
  opacity: .25;
  -webkit-transition: .5s;
  transition: .5s;
  height: 100%;
}

#contact .contact-wrapper .footer .footer-logo img:hover {
  opacity: .8;
}

#contact .footer-band {
  height: 3rem;
  background: #2f3044;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 99;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* custom gallery popup*/
.modal__gallery {
  padding-top: unset;
}

.modal__gallery .modal-content {
  background-color: #262730;
  width: 100%;
  margin: unset;
  padding: unset;
  border: none;
}

.modal-gallery-wrapper .flex-list-item {
  height: 20vw;
}

/* custom contact form */
.modal-c {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.modal-content-c {
  background-color: #262730;
  margin: auto;
  max-width: 90%;
  width: 50rem;
}

.kapa {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.kapa:hover,
.kapa:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.modal-header-c {
  padding: 2px 16px;
  border-top: 5px solid #f9a08c;
  color: white;
}

.modal-body-c {
  padding: 2px 16px;
}

.modal-footer-c {
  padding: 10px 16px;
  background-color: #f9a08c;
  color: white;
  font-size: 12px;
}

.form-box {
  position: relative;
  max-width: 40rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}

.form-box .form-header {
  color: #f9a08c;
  margin: 0;
  padding: 30px 0;
  text-align: center;
}

.form-box form {
  padding: 2rem 1rem 4rem 1rem;
}

.form-box form .input-box {
  position: relative;
  margin-bottom: 30px;
}

.form-box form .input-box textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: 43px;
  height: 43px;
  max-height: 7rem;
  font-family: inherit;
  -webkit-transition: .5s;
  transition: .5s;
  resize: none;
}

.form-box form .input-box textarea:focus {
  height: 5rem;
}

.form-box form .input-box textarea:valid {
  height: 5rem;
}

.form-box form .input-box .highliterbox {
  background: transparent;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 10px 0;
  font-size: 18px;
}

.form-box form .input-box .highliterbox:focus ~ label, .form-box form .input-box .highliterbox:valid ~ label {
  color: #f9a08c;
  font-size: 16px;
  top: -20px;
  -webkit-transition: .5s;
  transition: .5s;
}

.form-box form .input-box .highliterbox:focus {
  border-bottom: 1px solid transparent;
}

.form-box form .input-box .highliterbox:focus ~ .bar:before, .form-box form .input-box .highliterbox:focus ~ .bar:after {
  width: 50%;
}

.form-box form .input-box label {
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  padding: 10px 0;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-box form .input-box .bar {
  position: relative;
  display: block;
  width: 100%;
}

.form-box form .input-box .bar::before, .form-box form .input-box .bar::after {
  content: '';
  height: 1.5px;
  width: 0px;
  bottom: 1px;
  position: absolute;
  background: #f9a08c;
  -webkit-transition: .2s ease all;
  transition: .2s ease all;
}

.form-box form .input-box .bar::before {
  left: 50%;
}

.form-box form .input-box .bar::after {
  right: 50%;
}

.form-box form .btnGonder {
  background: transparent;
  color: white;
  border-spacing: none;
  border: 1px solid white;
  padding: 10px 20px;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-box form .btnGonder:hover {
  background: #f9a08c;
  border: 1px solid #f9a08c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* multi popup */
.open_popup {
  background: tomato;
  border: none;
  padding: 5px 15px;
  color: #fff;
}

.popup_body {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.popup_body_show {
  display: block;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.popup_back {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.popup_contain {
  position: relative;
  background: #fff;
  min-width: 300px;
  max-width: 80%;
  margin: 100px auto 50px;
  min-height: 150px;
  padding: 10px 20px;
}

.popup_close {
  background: red;
  padding: 3px 10px 5px;
  position: absolute;
  right: -10px;
  top: -10px;
  color: #fff;
  border-radius: 50%;
}

/*page*/
body {
  background: #262730;
}

.main {
  min-height: 100vh;
}

.navbar {
  padding: 40px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .mini-logo {
  position: relative;
  opacity: .6;
  height: 30px;
}

.navbar .mini-logo img {
  position: absolute;
  height: 100%;
}

.navbar .mini-hamburger {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar .mini-hamburger a {
  opacity: .6;
  height: 3rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.navbar .mini-hamburger a .line {
  height: 3px;
  width: 100%;
  background: white;
  margin: 3px 0;
  -webkit-transition: .4s;
  transition: .4s;
}

.navbar .mini-hamburger p {
  -webkit-transition: .5s;
  transition: .5s;
  position: absolute;
  white-space: nowrap;
  color: transparent;
}

.navbar .mini-hamburger:hover .line1 {
  background: #f9a08c;
  -webkit-transform: translate(0, 100%) rotate(45deg);
          transform: translate(0, 100%) rotate(45deg);
}

.navbar .mini-hamburger:hover .line2 {
  -webkit-transform: translate(0, -180%) rotate(-45deg);
          transform: translate(0, -180%) rotate(-45deg);
}

.navbar .mini-hamburger:hover p {
  color: #f9a08c;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
}

.content-title {
  padding-bottom: 30px;
}

.content-title p {
  font-weight: bold;
  font-family: "Manrope", sans-serif;
  font-size: 4vw;
  color: white;
}

.content-gallery {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-gallery .imgbox {
  height: 30rem;
  width: 50%;
  overflow: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.content-gallery .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-text {
  padding: 60px 0;
}

.content-text p {
  font-family: "Manrope", sans-serif;
  font-weight: bold;
  font-size: 1.5vw;
  color: white;
  line-height: 1.5;
}

footer .big-logo {
  opacity: .7;
  padding: 30px 0;
  display: inline-block;
}

footer .big-logo img {
  width: 24vw;
}

footer .bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 2vw 0;
}

footer .bottom-footer * {
  padding: 2px 0;
  color: white;
  opacity: .7;
}

footer .bottom-footer a {
  display: inline-block;
}

.referans-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1rem;
}

.referans-imgbox {
  width: calc(calc(100% / 3) - 2rem);
  margin: 1rem;
  height: 14.4vw;
  position: relative;
  overflow: hidden;
}

.referans-imgbox img {
  max-width: 100%;
  display: block;
}

.referans-imgbox .referans-imgwrapper {
  height: 14.4vw;
  cursor: pointer;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-width: 5px;
}

.referans-imgbox .referans-imgwrapper::-webkit-scrollbar {
  height: 0px;
  width: 5px;
}

.referans-imgbox .referans-imgwrapper::-webkit-scrollbar-thumb {
  background-color: rgba(192, 192, 192, 0.459);
}

.referans-imgbox .referans-imgwrapper::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.356);
}

/* logosuz efekt başlangıç*/
/* logosuz efekt son*/
/* logolu efekt başlangıç*/
.efekt2 {
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
  position: absolute;
  font-family: "Cinzel", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-shadow: 0px 0px 18px white;
  background: #000000d6;
  -webkit-transition: .5s;
  transition: .5s;
}

.efekt2 img {
  width: 20%;
}

.referans-imgbox:hover .efekt2 {
  opacity: 0;
  height: 0%;
}

/* logolu efekt son*/
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #f9a08c !important;
  border-width: 2px !important;
}

.fancybox__progress {
  background-color: #f9a08c !important;
}

@media only screen and (min-width: 2200px) {
  .sol2, .sag3, .sag1 {
    display: none;
  }
  .sky {
    top: 0;
    width: 100% !important;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media only screen and (max-width: 1600px) {
  .hero-title-box {
    z-index: 19;
  }
}

@media only screen and (max-width: 1366px) {
  .hero-title-box .big-title {
    font-size: 3rem !important;
  }
  .hero-title-box p {
    font-size: 13px !important;
  }
  #ekip .table-surec {
    line-height: 20px !important;
  }
  .text-band {
    font-size: 3.5vw !important;
  }
  .t-size {
    font-size: 14px !important;
  }
  .sc-title {
    font-size: 40px !important;
  }
  /* footer start */
  #contact .company-name {
    font-size: 3.5rem !important;
  }
  #contact .contact-wrapper .last-menu-wrapper p {
    font-size: 3.5rem;
  }
  #contact .hamburger-content a {
    font-size: 1rem !important;
  }
  #contact .footer-logo > a:nth-child(1) {
    height: 3rem !important;
  }
}

@media only screen and (max-width: 1200px) {
  .container-lg {
    padding: 0 80px;
  }
  .container {
    padding: 0 1rem;
  }
  /* header start */
  .hero-title-box .big-title {
    font-size: 3rem;
  }
  .hero-title-box p {
    font-size: 13px;
  }
  /* header finish */
  .horizontal-scroll {
    padding: 1rem 0;
  }
}

@media only screen and (max-width: 992px) {
  .container-lg {
    padding: 0 40px;
  }
  .flex-list-item__4 {
    width: calc(calc(100% / 3) - 2rem) !important;
  }
  .contact-button span {
    height: 2.5rem;
    width: 2.5rem;
    line-height: 3.5rem;
  }
  .contact-button span img {
    height: 1.5rem;
  }
  /*incele sayfası*/
  .navbar .mini-hamburger p {
    display: none;
  }
  .content-gallery .imgbox {
    height: 20rem;
  }
  /* referanslar sayfası */
  .referans-gallery {
    margin: 0 -10px;
  }
  .referans-imgbox {
    width: calc(calc(100% / 3) - 20px);
    margin: 10px;
  }
  .efekt::before {
    font-size: 2vw;
  }
}

@media only screen and (max-width: 768px) {
  .container-lg {
    padding: 0 20px;
  }
  .flex-list-item__4 {
    width: calc(calc(100% / 2) - 2rem) !important;
  }
  .sag1 {
    width: 1800px !important;
    right: -300px !important;
  }
  .sol2 {
    width: 2000px !important;
    bottom: -197px !important;
  }
  #ekip .table-surec tr th {
    width: 10rem !important;
  }
  .says .employer-imgwrapper {
    max-height: 20rem;
  }
  .says .employer-textwrapper .employer-name {
    font-size: 7vw;
  }
  #islerimiz .doing-item {
    height: auto;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  #islerimiz .doing-item:nth-last-child(1) {
    margin-right: 0;
  }
  #islerimiz .doing-item .doing-icon {
    display: none;
  }
  #islerimiz .doing-item .doing-pic {
    margin: 0 auto;
    max-width: 350px;
    padding: 0 10px;
  }
  #islerimiz .doing-item .doing-context {
    max-width: 100% !important;
    margin-top: 1rem;
    padding: 10px;
  }
  #islerimiz .horizontal-scroll__block {
    left: 0;
  }
  /*incele sayfası*/
  .navbar .mini-hamburger a {
    width: 3rem;
  }
  .content-title p {
    font-size: 6vw;
  }
  .content-gallery .imgbox {
    height: 18rem;
  }
  .content-text p {
    font-size: 3vw;
  }
  footer .big-logo {
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
  footer .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  footer .bottom-footer .address {
    margin-bottom: 10px;
  }
  /* referanslar sayfası */
  .referans-imgbox {
    width: calc(calc(100% / 2) - 20px);
    height: 23vw;
  }
  .referans-imgbox .referans-imgwrapper {
    height: 23vw;
  }
  .efekt::before {
    font-size: 3vw;
  }
}

@media only screen and (max-width: 576px) {
  .container-lg {
    padding: 0 14px;
  }
  .flex-list {
    margin: unset;
  }
  .flex-list .flex-list-item {
    margin: .5rem;
  }
  .flex-list .flex-list-item__4 {
    width: calc(calc(100% / 2) - 1rem) !important;
  }
  .t-size {
    font-size: 13px !important;
  }
  .main-logo img {
    height: 2.5em;
  }
  .hero-title-box {
    top: 26%;
  }
  .hero-title-box .big-title {
    line-height: 5rem !important;
  }
  .dropdown-hamburger .hamburger-content {
    left: 4rem;
  }
  #ekip .table-surec tr th {
    width: 7rem !important;
    padding: 0 !important;
    font-size: 16px !important;
  }
  #ekip .table-surec td {
    padding: 12px 10px !important;
  }
  .says {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-band {
    font-size: 4.5vw !important;
  }
  #contact .company-name {
    font-size: 3rem !important;
  }
  #contact .contact-wrapper .last-menu-wrapper p {
    font-size: 3rem !important;
  }
  .mini-hamburger .line1 {
    background: #f9a08c !important;
    -webkit-transform: translate(0, 100%) rotate(45deg);
            transform: translate(0, 100%) rotate(45deg);
  }
  .mini-hamburger .line2 {
    -webkit-transform: translate(0, -180%) rotate(-45deg);
            transform: translate(0, -180%) rotate(-45deg);
  }
  /*incele sayfası*/
  .content-gallery .imgbox {
    height: 15rem;
  }
  footer .big-logo img {
    width: 40vw;
  }
}

@media only screen and (max-width: 415px) {
  .container-lg {
    padding: 0 10px;
  }
  .hero-title-box .big-title {
    font-size: 2rem !important;
    line-height: 3rem !important;
  }
  #ekip .table-surec {
    padding-top: 1rem;
  }
  #ekip .table-surec tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #ekip .table-surec tr th {
    width: 100% !important;
    text-align: left;
    margin-top: 10px;
  }
  #ekip .table-surec tr td {
    padding: 10px 0 !important;
  }
  #contact .last-menu-wrapper p {
    font-size: 2rem !important;
  }
  #contact .hamburger-content a {
    padding: 10px 16px;
    font-size: 0.8rem !important;
  }
  /*incele sayfası*/
  .content-gallery .imgbox {
    height: 13rem;
  }
  .content-text p {
    font-size: 4vw;
  }
  /* referanslar sayfası */
  .referans-gallery {
    margin: unset;
  }
  .referans-gallery .referans-imgbox {
    margin: 10px 0;
    width: 100%;
    height: 48vw;
  }
  .referans-gallery .referans-imgbox .referans-imgwrapper {
    height: 48vw;
  }
  .referans-gallery .efekt::before {
    font-size: 5vw;
  }
}

@media only screen and (max-width: 350px) {
  .container {
    padding: 0 10px !important;
  }
  .container-lg {
    padding: 0 5px;
  }
  #contact .company-name {
    font-size: 1.8em !important;
  }
  #contact .contact-wrapper .last-menu-wrapper p {
    font-size: 1.5em !important;
  }
  #contact .contact-wrapper .last-menu-wrapper .hamburger-content a {
    padding: 5px 16px;
    font-size: .8em !important;
  }
  .address span {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=main.css.map */