:root {
  --primary: #7bb5e1;
  --text-color: #333;
  --secondary: #06064f;
  --white: #fff;
  --black: #000;
  --body-bg: #fff;
  --transition-origin: all;
  --transition-duration: 0.3s;
  --transition-timing-function: ease-in-out;
  --prod-hover-bg: rgba(255, 255, 255, 0.55);
  --whatsapp: #1bda6f;
  --transition: var(--transition-origin) var(--transition-duration)
    var(--transition-timing-function);
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  background: var(--body-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul,
li,
p {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-header {
  background-color: var(--white);
}

.top-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  background-color: var(--white);
}

.top-header .left {
  display: flex;
  align-items: center;
}

.top-header .left .contact {
  padding: 10px;
}

.top-header .left .contact:hover {
  color: var(--primary);
}

.top-header .left .contact:hover .exact-contact {
  color: var(--primary);
}

.top-header .left a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
}

.top-header .right {
  display: flex;
  gap: 8px;
}

.top-header .right a:hover {
  color: var(--primary);
}

.header-middle {
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.59);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.25);
}

nav {
  display: flex;
  justify-content: center;
  background: rgba(123, 181, 225, 0.92);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  position: relative;
  margin: 0 15px;
}

nav ul li a {
  display: block;
  padding: 10px;
  font-weight: bold;
  color: var(--white);
}

nav ul li a:hover {
  color: var(--text-color);
}

nav ul li .chevron-down {
  display: inline-block;
  margin-left: 5px;
}

nav ul li ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  padding: 10px 0;
  display: none;
  min-width: 200px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

nav ul li:hover ul.submenu {
  display: block;
  z-index: 9;
}

nav ul li ul.submenu li {
  margin: 0;
}

nav ul li ul.submenu li a {
  padding: 10px 20px;
  color: var(--text-color);
}

nav ul li ul.submenu li a:hover {
  background: var(--primary);
  color: var(--white);
}

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

.dropdown > a {
  display: flex;
  align-items: center;
}

.dropdown > a .chevron-down {
  margin-left: 5px;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li ul.submenu {
    position: static;
  }
}

.home-hero {
  width: 100%;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
}

.hero-swiper .swiper-slide {
  width: 100%;
  height: 100vh;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100vh;
  display: block;
}

.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next:after {
  color: #242629;
  font-size: 16px;
}
/* HOME ABOUT */
.home-about {
  padding: 80px 0 !important;
  min-height: 800px;
}

/* STROKED TEXT */
.text-container {
  position: relative;
  width: max-content;
}

.text-transparent {
  position: absolute;
  top: -30px;
  left: 50%;
  font-size: 59.287px;
  font-style: normal;
  font-weight: 800;
  line-height: 78.415px;
  letter-spacing: 2.371px;
  -webkit-text-fill-color: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(123, 181, 225, 0.14);
  transform: translate(-50%);
}

.text-bold {
  position: relative;
  color: #7bb5e1;
  font-size: 73.498px;
  font-style: normal;
  font-weight: 800;
  line-height: 95.289px;
  z-index: 2;
}

/* HOME ABOUT CONTENT */
.home-about-content {
  padding: 50px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home-about-images {
  position: relative;
  flex-basis: 40%;
}

.home-about-images .image {
  border-radius: 5px;
  border: 4px solid var(--secondary);
  position: absolute;
}

.home-about-images .image img {
  width: 100%;
  height: 100%;
}

.home-about-images .image.first {
  width: 300px;
  height: 200px;
  z-index: 2;
  left: 5%;
}

.home-about-images .image.second {
  width: 190px;
  height: 180px;
  z-index: 3;
  top: 150px;
  left: 0%;
}

.home-about-images .image.third {
  width: 220px;
  height: 275px;
  top: 150px;
  left: 50%;
}

.home-about-desc {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 0px 7.5px 1px rgba(0, 0, 0, 0.24);
  padding: 30px 50px;
  width: 58%;
  float: right;
}

.home-about-desc p {
  color: var(--text-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.85px;
  padding: 10px 0;
  text-align: justify;
  /* text-align-last: right; */
  margin: 0;
  text-indent: 35px;
  word-spacing: -3px !important;
}

.service-desc {
  text-align: justify;
  /* text-align-last: right; */
  margin: 0;
  text-indent: 35px;
}

@media (max-width: 1024px) {
  .home-about-images {
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .home-about-desc {
    width: 100%;
    float: none;
  }

  .text-bold {
    font-size: 50px;
    line-height: 60px;
  }

  .text-transparent {
    font-size: 40px;
  }

  .home-about-images .image.first,
  .home-about-images .image.second,
  .home-about-images .image.third {
    position: static;
    margin-bottom: 20px;
    display: none;
  }
}

@media (max-width: 768px) {
  .home-about-images .image.first {
    width: 250px;
    height: 150px;
    left: 10%;
  }

  .home-about-images .image.second {
    width: 170px;
    height: 160px;
    top: 100px;
    left: 5%;
  }

  .home-about-images .image.third {
    width: 180px;
    height: 250px;
    top: 130px;
    left: 15%;
  }

  .home-about-desc p {
    font-size: 15px;
    line-height: 28px;
  }

  .text-bold {
    font-size: 40px;
    line-height: 50px;
  }

  .text-transparent {
    font-size: 35px;
  }
}

@media (max-width: 576px) {
  .home-about {
    padding: 40px 0 !important;
  }

  .home-about-images .image.first,
  .home-about-images .image.second,
  .home-about-images .image.third {
    position: static;
    margin-bottom: 20px;
    display: none;
  }

  .home-about-images .image img {
    height: auto;
  }

  .home-about-desc {
    padding: 20px;
    width: 100%;
  }

  .text-bold {
    font-size: 32px;
    line-height: 40px;
  }

  .text-transparent {
    font-size: 30px;
  }
}

/*HOME CONTACT*/
.home-contact {
  padding: 0 0 90px 0;
}

.support-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.support-form .inner {
  position: relative;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 0px 7.5px 1px rgba(0, 0, 0, 0.24);
  padding: 65px 60px 30px 60px;
  max-width: 730px;
  margin-top: -100px;
  text-align: center;
}

.support-form .inner .form-title {
  color: var(--text-color);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 32.5px; /* 147.727% */
  letter-spacing: 0.44px;
  padding-bottom: 10px;
}

.support-form .inner .form-desc {
  color: var(--text-color);
  font-style: normal;
  font-weight: 500;
  padding-bottom: 10px;
}

.support-form .inner .icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translate(-50%);
}

.support-form .inner form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.support-form .inner form input {
  background-color: rgba(232, 232, 232, 0.35);
  height: 45px;
  padding: 0 0 0 16px;
  width: 100%;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.support-form .inner form input::placeholder {
  color: #5b5b5b;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: 0.24px;
}

.support-form .inner form input:focus {
  outline: 1px solid var(--primary);
  border: 1px solid var(--primary);
}

.support-form .inner form textarea {
  background-color: rgba(232, 232, 232, 0.35);
  padding: 0 0 0 16px;
  width: 100%;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.support-form .inner form textarea::placeholder {
  color: #5b5b5b;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: 0.24px;
}

.support-form .inner form textarea:focus {
  outline: 1px solid var(--primary);
  border: 1px solid var(--primary);
}

.support-form .inner form button {
  width: 146px;
  height: 38px;
  border-radius: 9.011px;
  background: var(--secondary);
  box-shadow: 0px 3.604px 3.604px 0px rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.032px;
  letter-spacing: 0.85px;
  transition: all 0.3s ease-in-out;
  outline: none;
  border: none;
}

.support-form .inner form button:hover {
  background: var(--primary);
}

.contact-relative {
  background-image: url(../design/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  text-align: center;
}

.contact-relative .text {
  color: var(--white);
  text-shadow: 0px 2.259px 2.259px rgba(0, 0, 0, 0.25);
  font-size: 45px;
  font-style: normal;
  font-weight: 300;
  line-height: 63.868px;
  padding: 70px 0 0 0;
}

/*HOME CONTACT*/
.services {
  padding: 0 0 64px 0;
}

.text-container-wrapper {
  display: flex;
  justify-content: end;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 47px 0 100px 0;
  transition: var(--transition);
}

.tabs .tab {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50%;
  border: 3px solid #afafb3;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer;
}

.tabs .tab.active {
  background-color: var(--white);
  transition: var(--transition);
}

.tabs .tab:hover {
  background-color: var(--white);
  transition: var(--transition);
}

.tab-content:hover {
  scale: 1.1;
}

.tabs .tab svg {
  transition: all 0.3s ease-in-out !important;
}

.tabs .tab svg path {
  transition: all 0.3s ease-in-out !important;
}

.tabs .tab.active svg path {
  fill: var(--secondary);
  stroke: var(--secondary);
  transition: var(--transition);
  transition: all 0.3s ease-in-out !important;
}

.tabs .tab:hover svg path {
  fill: var(--secondary);
  stroke: var(--secondary);
  background-color: var(--white);
}

.tab-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  transition: all 0.3s ease-in-out !important;
}

.tab-contents .tab-content {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 0px 7.5px 1px rgba(0, 0, 0, 0.24);
  padding: 20px 0 32px 25px;
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease-in-out !important;
}

.tab-contents .tab-content .tab-content-count {
  color: rgba(123, 181, 225, 0.65);
  font-size: 103px;
  font-weight: 800;
  line-height: 137.393px;
  position: absolute;
  top: -91px;
  left: -30px;
}

.tab-contents .tab-content .tab-content-title {
  color: var(--text-color);
  font-size: 25px;
  font-weight: 600;
  line-height: 51.797px;
}

.tab-contents .tab-content .tab-content-desc {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 400;
  line-height: 36px;
  padding: 4px 0 36px 0;
}

.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-contents .tab-content .tab-content-info {
  width: 146px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 9.011px;
  background-color: var(--secondary) !important;
  box-shadow: 0px 3.604px 3.604px 0px rgba(0, 0, 0, 0.25);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 27.032px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tab-content-info:hover {
  background-color: var(--primary) !important;
}

.tab-contents .tab-content .tab-content-info:hover {
  background: var(--primary) !important;
}

@media (max-width: 1024px) {
  .text-container-wrapper {
    justify-content: center;
  }

  .tab-contents {
    flex-direction: column;
    align-items: center;
  }

  .tab-contents .tab-content {
    width: 90%;
    height: auto;
    padding: 20px;
  }

  .tab-contents .tab-content .tab-content-count {
    font-size: 80px;
    top: -60px;
    left: -20px;
  }

  .tabs {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .tabs {
    overflow-x: scroll;
    padding: 20px 0 60px 0;
  }

  .tabs .tab {
    width: 60px;
    height: 60px;
  }

  .tab-contents {
    gap: 30px;
  }

  .tab-contents .tab-content .tab-content-count {
    font-size: 60px;
    top: -40px;
    left: -10px;
  }

  .tab-contents .tab-content .tab-content-title {
    font-size: 22px;
    line-height: 40px;
  }

  .tab-contents .tab-content .tab-content-desc {
    font-size: 15px;
    line-height: 28px;
  }
}

@media (max-width: 576px) {
  .services {
    padding-right: 16px;
    padding-left: 16px;
  }

  .tabs {
    align-items: flex-start;
    padding: 10px;
  }

  .tabs .tab {
    width: 50px;
    height: 50px;
    overflow: hidden;
  }

  .tabs .tab svg {
    scale: 0.5;
  }

  .tab-contents {
    width: 100%;
    padding: 0;
    gap: 20px;
  }

  .tab-contents .tab-content {
    width: 100%;
    padding: 15px;
  }

  .tab-contents .tab-content .tab-content-count {
    font-size: 40px;
    top: -20px;
    left: -10px;
  }

  .tab-contents .tab-content .tab-content-title {
    font-size: 18px;
    line-height: 30px;
  }

  .tab-contents .tab-content .tab-content-desc {
    font-size: 14px;
    line-height: 24px;
  }
}

/* HİZMETLERİMİZ SAYFA */
.services-page {
  padding: 120px 0;
}

.services-contents {
  padding: 100px 0 0 0;
}

.services-content {
  border-radius: 8.265px;
  background: var(--white);
  box-shadow: 0px 0px 7.748px 1.033px rgba(0, 0, 0, 0.24);
  padding: 9px 6px;
  width: max-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer;
}

.services-content:hover {
  scale: 1.1;
}

.services-contant-wrapper.odd {
  display: flex;
  justify-content: start;
  width: 100%;
}

.services-contant-wrapper.even {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: -100px;
}

.service-count {
  font-size: 7vw;
  font-style: normal;
  font-weight: 800;
  line-height: 205.809px;
  letter-spacing: 6.172px;
  position: absolute;
  top: -120px;
  left: -35px;
}

.service-count.odd {
  color: #656565;
}

.service-count.even {
  color: rgba(123, 181, 225, 0.49);
}

.services-content-image {
  width: 100%;
  max-width: 440px;
  height: auto;
  position: relative;
}

.services-content-image img {
  width: 100%;
  height: auto;
  border-radius: 13px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8.265px;
  background: linear-gradient(
    103deg,
    rgba(123, 181, 225, 0.68) 33.33%,
    rgba(123, 181, 225, 0) 99.28%
  );
  z-index: 1;
  pointer-events: none;
}

.services-content-image img {
  position: relative;
  z-index: 0;
}

.service-name {
  color: var(--text-color);
  font-size: 23.761px;
  font-style: normal;
  font-weight: 500;
  line-height: 53.51px;
  letter-spacing: 1.188px;
  text-align: center;
}

/* Hizmetlerimiz Sayfa - Responsive */

@media screen and (max-width: 576px) {
  .services-page {
    padding: 60px 0;
  }

  .services-contents {
    padding: 50px 0 0 0;
  }

  .services-content {
    padding: 5px;
  }

  .services-contant-wrapper.odd,
  .services-contant-wrapper.even {
    justify-content: center;
  }

  .services-contant-wrapper.even {
    margin-top: 0;
  }

  .service-count {
    font-size: 15vw;
    top: -80px;
    left: -20px;
  }

  .services-content-image {
    max-width: 320px;
  }

  .service-name {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.5px;
  }
}

@media screen and (max-width: 768px) {
  .services-page {
    padding: 80px 0;
  }

  .services-contents {
    padding: 80px 0 0 0;
  }

  .services-content {
    padding: 8px 5px;
  }

  .services-contant-wrapper.odd,
  .services-contant-wrapper.even {
    justify-content: center;
  }

  .services-contant-wrapper.even {
    margin-top: -60px;
  }

  .service-count {
    font-size: 10vw;
    top: -100px;
    left: -30px;
  }

  .services-content-image {
    max-width: 360px;
  }

  .service-name {
    font-size: 20px;
    line-height: 45px;
    letter-spacing: 0.8px;
  }
}

@media screen and (max-width: 992px) {
  .services-page {
    padding: 100px 0;
  }

  .services-contents {
    padding: 90px 16px;
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    align-items: center;
    justify-content: center;
  }

  .services-content {
    padding: 9px 6px;
  }

  .services-contant-wrapper.odd {
    justify-content: center;
  }

  .services-contant-wrapper.even {
    justify-content: center;
    margin-top: 0;
  }

  .service-count {
    font-size: 8vw;
    top: -110px;
    left: -32px;
  }

  .services-content-image {
    max-width: 400px;
  }

  .service-name {
    font-size: 22px;
    line-height: 50px;
    letter-spacing: 1px;
  }
}

@media screen and (min-width: 1200px) {
  .services-page {
    padding: 120px 0;
  }

  .services-contents {
    padding: 100px 0 0 0;
  }

  .services-content {
    padding: 9px 6px;
  }

  .services-contant-wrapper.odd {
    justify-content: start;
  }

  .services-contant-wrapper.even {
    justify-content: end;
    margin-top: -100px;
  }

  .service-count {
    font-size: 7vw;
    top: -120px;
    left: -35px;
  }

  .services-content-image {
    max-width: 440px;
  }

  .service-name {
    font-size: 23.761px;
    line-height: 53.51px;
    letter-spacing: 1.188px;
  }
}

/* HİZMETLERİMİZ SAYFA */

/* HİZMET SAYFA */
.service-page {
  padding: 100px 0;
}

.service-image {
  max-width: 685px;
  width: 100%;
  height: 380px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.service-content {
  padding: 57px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.service-desc {
  color: var(--text-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: 0.85px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 685px;
  width: 100%;
}

@media (max-width: 568px) {
  .service-page {
    padding: 100px 16px;
  }
}

/* HİZMET SAYFA */

/* FAALİYETLERİMİZ SAYFA */
.activities-page {
  padding: 100px 0;
}

.activities {
  padding: 40px 0 70px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
}

.activity {
  max-width: 380px;
  width: 100%;
}

.activity-image {
  width: 100%;
  height: 318px;
}

.activity-image img {
  width: 100%;
  height: 100%;
  border-radius: 3.965px;
  object-fit: cover;
}

.activity-content-wrapper {
  padding: 0 21px;
  position: relative;
  top: -65px;
}

.activity-content {
  border-radius: 4.309px;
  background: var(--white);
  box-shadow: 0px 2.951px 9.836px 0px rgba(0, 0, 0, 0.25);
  padding: 24px;
  text-align: center;
}

.activity-content .activity-content-title {
  color: var(--text-color);
  font-size: 18.992px;
  font-style: normal;
  font-weight: 500;
  line-height: 146.187%; /* 27.764px */
}

.activity-content .activity-content-desc {
  color: var(--text-color);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.74px;
  letter-spacing: 0.065px;
  padding: 7px 0 11px 0;
}

.activity-content-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.read-more {
  color: var(--text-color);
  font-size: 10.902px;
  font-style: normal;
  font-weight: 400;
  line-height: 29.238px; /* 268.179% */
  letter-spacing: 0.055px;
  text-decoration-line: underline;
  text-transform: uppercase;
  cursor: pointer;
}

.read-more:hover {
  color: var(--secondary) !important;
}

.read-more-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.read-more-icon:hover {
  scale: 1.1;
}

@media (max-width: 992px) {
  .activities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .activities-page {
    padding: 100px 16px;
  }

  .activities {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

/* FAALİYETLERİMİZ SAYFA */

/* İŞ İLANLARI SAYFA */
.job-form-page {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .job-form-page {
    padding: 100px 16px;
  }
}

.job-form-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.job-form {
  max-width: 728.716px;
  width: 100%;
  height: max-content;
  border-radius: 6.444px;
  background: var(--white);
  box-shadow: 0px 3.555px 3.555px 0px rgba(0, 0, 0, 0.24);
  padding: 30px;
  position: relative;
}

.job-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6.444px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 6.444px;
}

.job-form form {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.job-form form input {
  border-radius: 6.368px;
  border: 1.274px solid #e2e2e2;
  background: #f4f4f4;
  height: 56.035px;
  padding: 0 0 0 16px;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.job-form form textarea {
  border-radius: 6.368px;
  border: 1.274px solid #e2e2e2;
  background: #f4f4f4;
  padding: 0 0 0 16px;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.job-form form input::placeholder,
.job-form form textarea::placeholder {
  color: #c1c1c1;
  font-size: 17.829px;
  font-style: italic;
  font-weight: 300;
  line-height: 57.309px;
}

.job-form form input:focus,
.job-form form textarea:focus {
  outline: 1px solid var(--primary);
  border: 1px solid var(--primary);
}

.file-input {
  display: flex;
  gap: 24px;
  align-items: center;
}

.file-input .select {
  border-radius: 2.509px;
  border: 0.565px solid rgba(56, 59, 64, 0.63);
  background: #f4f4f4;
  color: var(--text-color);
  font-size: 11.141px;
  font-style: normal;
  font-weight: 300;
  line-height: 8.638px;
  padding: 0 16px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.file-input {
  color: var(--text-color);
  font-size: 14.2px;
  font-style: normal;
  font-weight: 300;
  line-height: 11.01px;
}

.kvkk-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.kvkk-label input[type="checkbox"] {
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

.submit {
  width: 156.807px;
  height: 45.109px;
  flex-shrink: 0;
  border-radius: 6.444px;
  background: linear-gradient(90deg, #7bb5e1 42.19%, #f7fcff 118.84%);
  color: var(--white);
  font-size: 18.258px;
  font-style: normal;
  font-weight: 500;
  line-height: 31.838px;
  outline: none;
  box-shadow: none;
  border: none;
  transition: var(--transition);
}

.submit:hover {
  background: var(--secondary);
  background-color: var(--secondary) !important;
}

/* İŞ İLANLARI SAYFA */

/* İLETİŞİM SAYFA */
.contact-page {
  padding: 100px 0;
}

.contact {
  display: flex;
  gap: 44px;
  padding: 60px 0 0 0;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 40%;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 60%;
}

.contact-left-box {
  border-radius: 3px;
  border: 1px solid #000;
  background: #fcfcfc;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
  position: relative;
  height: 145px;
  display: flex;
  padding: 37px 50px 30px 37px;
  gap: 30px;
}

.box-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.box-left .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100px;
}

.box-info {
  display: flex;
  align-items: center;
}

.contact-left-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(90deg, #7bb5e1 28.5%, #f7fcff 100%);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form form .group {
  display: flex;
  gap: 12px;
}

.form-title {
  color: var(--text-color);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.25px;
  padding-bottom: 19px;
}

.contact-form form input {
  border-radius: 6.368px;
  border: 1.274px solid #e2e2e2;
  background: #f4f4f4;
  height: 56.035px;
  padding: 0 0 0 16px;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.contact-form form textarea {
  border-radius: 6.368px;
  border: 1.274px solid #e2e2e2;
  background: #f4f4f4;
  padding: 0 0 0 16px;
  outline: 1px solid transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: #c1c1c1;
  font-size: 17.829px;
  font-style: italic;
  font-weight: 300;
  line-height: 57.309px;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  outline: 1px solid var(--primary);
  border: 1px solid var(--primary);
}

@media (max-width: 1200px) {
  .box-left {
    display: none;
  }

  .contact-left-box {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .contact {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
  }

  .contact-right {
    width: 100%;
  }

  .box-left {
    display: block;
  }

  .contact-left-box {
    text-align: unset;
    align-items: unset;
    justify-content: unset;
  }
}

@media (max-width: 576px) {
  .contact-page {
    padding: 100px 16px;
  }

  .box-left {
    display: none;
  }

  .contact-left-box {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
/* İLETİŞİM SAYFA */

/* FOOTER */
.footer-container {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  background-color: var(--primary);
  padding: 10px 0;
}

footer {
  background-color: #f8f8f8;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.footer-columns {
  display: flex;
  flex: 1;
  gap: 60px;
}

.footer-columns .column {
  flex: 1;
}

.logo-slogan {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 70px;
}

footer .item-content span {
  color: #3d3d3d;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  padding-left: 4px;
}

footer .item-content p {
  padding: 8px 0;
}

.contact-info {
  flex: 1;
  text-align: left;
}

footer .slogan {
  margin-top: 16px;
  color: #333;
  font-size: 16px;
}

.item-title {
  color: var(--text-color);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 16px;
}

.item-content {
  color: #3d3d3d;
  font-size: 16px;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  width: 100%;
}

.socials .left,
.socials .right {
  height: 1.5px;
  background-color: var(--primary);
  flex: 1;
}

.socials .inner {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex: none;
  padding: 0 16px;
}

.socials .inner a:hover {
  color: var(--primary);
}

.socials i {
  font-size: 20px;
}

footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  max-width: 1200px;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-columns {
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    text-align: center;
    margin-top: 20px;
  }

  .logo-slogan {
    padding: 0 50px;
  }

  footer .slogan {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 0 10px;
  }

  .footer-columns {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-columns .column {
    margin-bottom: 20px;
  }

  .logo-slogan {
    margin-bottom: 20px;
  }

  .contact-info {
    margin-bottom: 20px;
  }

  .socials {
    justify-content: center !important;
  }

  .socials .left,
  .socials .right {
    display: none;
  }

  footer .bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    padding: 0 5px;
  }

  .footer-columns .column,
  .contact-info {
    text-align: center;
  }

  .logo-slogan {
    padding: 0 20px;
  }

  footer .slogan {
    font-size: 12px;
  }

  .item-title {
    font-size: 18px;
  }

  .item-content {
    font-size: 14px;
  }

  footer .bottom {
    padding-top: 10px;
  }
}
/* FOOTER */

.spinner {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* HEADER MOBILE */
.sidebar {
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar .inner {
  width: 300px;
  height: 100%;
  background-color: var(--primary);
  position: fixed;
  right: 0;
  top: 0;
  padding: 16px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: scroll;
}

.sidebar.active {
  backdrop-filter: blur(5px) contrast(0.8);
  opacity: 1;
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

.sidebar.active .inner {
  transform: translateX(0);
}

.sidebar .inner i {
  color: white;
  font-size: 24px;
  float: right;
  cursor: pointer;
}

.sidebar ul {
  padding: 20px;
}

.sidebar ul li {
  padding: 8px 0;
  list-style: none;
}

.sidebar ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.accordion-item {
  border-bottom: 1px solid white;
}

.accordion-title {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.accordion-content a {
  display: block;
  padding: 5px 0 5px 20px;
  font-size: 16px;
}

.accordion-item.active .accordion-content {
  max-height: max-content;
}

.menu-icon {
  font-size: 32px;
  color: var(--secondary);
  cursor: pointer;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: white;
  border-bottom: 1px solid black;
}

.header-mobile {
  display: none;
}

@media (max-width: 992px) {
  .header-mobile {
    display: block;
  }

  header {
    display: none;
  }
}
/* HEADER MOBILE */

@media (max-width: 568px) {
  .text-transparent {
    display: none;
  }

  .support-form .inner {
    margin-top: -30px;
  }
}
