@charset "UTF-8";

@font-face {
  font-family: "Mosafin";
  src: url("../fonts/mosafin/Mosafin-Black.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Mosafin";
  src: url("../fonts/mosafin/Mosafin-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Mosafin";
  src: url("../fonts/mosafin/Mosafin-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Mosafin";
  src: url("../fonts/mosafin/Mosafin-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Mosafin";
  src: url("../fonts/mosafin/Mosafin-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

body {
  font-family: "Mosafin";
}

.slider-container {
  width: 100%;
  margin: 50px auto;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #ddd;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
}

.slider::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #16e087 var(--value, 0%), #ddd 0);
  height: 10px;
  border-radius: 5px;
}

.slider-blue::-webkit-slider-runnable-track {
  background: linear-gradient(to right, #2DC2F5 var(--value, 0%), #ddd 0);
  height: 10px;
  border-radius: 5px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background-color: red;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -15px;
  visibility: hidden;
}

/* Firefox için thumb */
.slider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  background-color: #16e087;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -15px;
  visibility: hidden;
}

.slider::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 10px solid #16e087;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  left: calc(var(--value, 0%) - 30px);
}

.slider-blue::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 10px solid #2DC2F5;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  left: calc(var(--value, 0%) - 15px);
}

.slider::after {
  content: attr(data-value) " Kişi";
  position: absolute;
  top: -55px;
  left: calc(var(--value, 0%) - 15px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 100px;
  font-family: "Mosafin";
  background: #16e087;
  padding: 10px 25px;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.slider-blue::after {
  content: attr(data-value) " Kişi";
  position: absolute;
  top: -55px;
  left: calc(var(--value, 0%));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 100px;
  font-family: "Mosafin";
  background: #2DC2F5;
  padding: 10px 25px;
  pointer-events: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.main-name {
  color: #2dc2f5;
}

.offer-form-area {
  display: flex;
  gap: 80px;
  height: 100%;
}

.offer-form-area .form-steps {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.offer-form-area .form-steps .step-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-form-area .form-steps .step-line .line-fix {
  width: 2px;
  border-right: 2px dashed #001b3f;
  height: 100%;
}

.offer-form-area .form-steps .step-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8e8e8;
  font-size: 32px;
  color: #8d8d8d;
}

.offer-form-area .form-steps .step-box.active {
  background-color: #2dc2f5;
  color: #001b3f;
}

.offer-form-area .form-input-area {
  flex: 1;
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-wrap: wrap;
}

.form-send-buttons {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: 50px;
}

.form-send-buttons .button-groups {
  width: calc(100% - 140px);
  display: flex;
  justify-content: space-between;
}

.form-send-buttons .button-groups .contact-button {
  background-color: #2dc2f5;
  color: #FFF;
}

.form-send-buttons .button-groups button {
  width: fit-content;
}

body {
  background: #F8F8F8;
}

.bg-fff-color {
  background: #fff !important;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

header {
  padding:0;
  border-bottom: 2px solid #0F3363;
}

header .header-items-div {
  display: flex;
  align-items: center;
  gap: 30px;
}

header .header-items-div .header-items {
  color: #0F3363;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
}

header .header-buttons-div {
  display: flex;
  align-items: center;
  gap: 13px;
}

header .header-buttons-div .header-button {
  color: #0F3363;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #0F3363;
  padding: 14px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .header-buttons-div .header-button.dark {
  background-color: #2DC2F5;
  color: #fff;
  border: 1px solid transparent;
}

.main-page .header-button {
  border-color: #fff !important;
  color: #fff !important;
  background-color: transparent !important;
}

.main-page .header-button.dark {
  background-color: #2DC2F5 !important;
  color: #fff !important;
  border: 1px solid transparent !important;
}

.container.footer {
  max-width: 91.667vw !important;
}

footer {
  padding-top: 100px;
  border-top: 1px solid rgba(17, 17, 17, 0.25);
}

footer .footer-absolute-icon {
  position: absolute;
  top: -83px;
  right: 0;
  z-index: -1;
}

footer .footer-section-one {
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

footer .footer-section-two {
  padding: 25px 30px;
}

footer .footer-items {
  color: #7B868C;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

footer .sub-card {
  background-color: #E4EBFF;
  padding: 25px 40px;
}

footer .sub-card .title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 28px;
}

footer .sub-card .footer-input {
  border-radius: 6px;
  border: 1px solid rgb(231, 232, 242);
  padding: 14px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: rgba(10, 20, 47, 0.5);
}

footer .sub-card .footer-input:focus {
  outline: none;
}

footer .sub-card .footer-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 0 6px 6px 0;
  background-color: rgb(45, 194, 245);
  border: none;
}

footer .sub-card .footer-button i {
  color: #fff;
}

footer .sub-card .text {
  color: rgba(17, 17, 17, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.ikmap-section .img-box {
  width: 100%;
}

.ikmap-section .img-box img {
  width: 100%;
  max-width: 100%;
}

.ikmap-section .title {
  color: #0F3363;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
}

.ikmap-section .text {
  color: #0F3363;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
}

.main-title-section .title {
  color: #0F3363;
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
}

.main-title-section .title span {
  font-weight: 800;
}

.main-title-section .svg-icon {
  position: absolute;
  top: 0;
  left: -50px;
}

.is-surec-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid rgba(15, 51, 99, 0.5);
  padding: 30px 0 30px 30px;
}

.is-surec-box .title {
  color: #0F3363;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.is-surec-box .text {
  color: #0F3363;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.demo-incele {
  background-color: #111;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  padding: 14px 25px;
}

.demo-incele.light {
  color: #0F3363;
  background-color: #fff;
}

.footer-top-section {
  background-color: #0F3363;
  padding: 150px;
  position: relative;
}

.footer-top-section .title {
  color: #2DC2F5;
  font-size: 38px;
  font-weight: 600;
}

.footer-top-section .title span {
  color: #fff;
}

.footer-top-section .text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.footer-top-section .svg-icon {
  position: absolute;
  bottom: 20px;
  left: 0;
}

.blog-lg-img {
  width: 100%;
  border-radius: 15px;
}

.blog-lg-img img {
  border-radius: 15px;
  width: 100%;
}

.blog-grid {
  padding: 0 50px;
}

.blog-card .img-box {
  width: 100%;
  border-radius: 15px;
}

.blog-card .img-box img {
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
}

.blog-card .name {
  color: #0F3363;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .short-desc {
  color: #0F3363;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .username {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #0F3363;
}

.blog-card .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  color: #0F3363;
}

.blog-card .user-pp {
  width: 30px;
  height: 30px;
}

.blog-card .user-pp img {
  width: 100%;
  height: 100%;
}

.tumunu-gor-text {
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}

.tumunu-gor-blog {
  border-radius: 3px;
  background: #0F3363;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fiyatlandirma-section .text-box .main-title {
  color: #0E0438;
  text-align: center;
  font-size: 38.3px;
  font-weight: 700;
  line-height: 48px;
}

.fiyatlandirma-section .text-box .main-title span {
  color: #2DC2F5;
}

.fiyatlandirma-section .text-box .text {
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
}

.fiyat-line .box {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 100px;
  background: #16E087;
  padding: 10px 25px;
}

.fiyatlandirma-box .title {
  color: #111;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.fiyatlandirma-box .left {
  flex: 1;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 15px 0 0 15px;
}

.fiyatlandirma-box .left .text {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.fiyatlandirma-box .left .kisi-sayisi {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(22, 224, 135);
  width: fit-content;
}

.fiyatlandirma-box .left .kisi-sayisi span {
  font-weight: 500;
  font-size: 15px;
}

.fiyatlandirma-box .left .button-start {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  border-radius: 3px;
  background: #0F3363;
  padding: 14px 30px;
}

.fiyatlandirma-box .right {
  background-color: #DEECFF;
  padding: 50px 40px;
  border-radius: 0 15px 15px 0;
}

.fiyatlandirma-box .right .text {
  color: #0F3363;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.ikmap-lg-img1 {
  width: 100%;
}

.ikmap-lg-img1 img {
  width: 100%;
}

.iletisim-title {
  color: #0F3363;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
}

.contact-input {
  border: 1.5px solid #E7E8F2;
  border-radius: 6px;
  background-color: #fff;
  padding: 20px 14px;
  width: 100%;
  color: rgba(10, 20, 47, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.contact-input:focus {
  outline: none;
}

.contact-button {
  background-color: #16E087;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 17px;
  width: 100%;
  border: none;
}

.sss-section .title {
  color: #0E0438;
  text-align: center;
  font-size: 38.3px;
  font-weight: 700;
  line-height: 48px;
}

.sss-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_417_1985)'%3E%3Cpath d='M0.314453 8.31372C0.314453 7.76144 0.762168 7.31372 1.31445 7.31372H15.3145C15.8667 7.31372 16.3145 7.76144 16.3145 8.31372C16.3145 8.86601 15.8667 9.31372 15.3145 9.31372H1.31445C0.762168 9.31372 0.314453 8.86601 0.314453 8.31372Z' fill='%230F3363'/%3E%3Cpath d='M7.31445 1.31372C7.31445 0.761436 7.76217 0.313721 8.31445 0.313721C8.86674 0.313721 9.31445 0.761436 9.31445 1.31372V15.3137C9.31445 15.866 8.86674 16.3137 8.31445 16.3137C7.76217 16.3137 7.31445 15.866 7.31445 15.3137V1.31372Z' fill='%230F3363'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_417_1985'%3E%3Crect width='16' height='16' fill='white' transform='translate(0.314453 0.313721)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.sss-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='23' viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_417_1974)'%3E%3Cpath d='M5.65813 5.65681C6.04865 5.26629 6.68182 5.26629 7.07234 5.65681L16.9718 15.5563C17.3624 15.9468 17.3624 16.58 16.9718 16.9705C16.5813 17.361 15.9481 17.361 15.5576 16.9705L5.65813 7.07103C5.2676 6.6805 5.2676 6.04734 5.65813 5.65681Z' fill='%230F3363'/%3E%3Cpath d='M15.5566 5.65681C15.9471 5.26629 16.5803 5.26629 16.9708 5.65681C17.3613 6.04734 17.3613 6.6805 16.9708 7.07103L7.07128 16.9705C6.68076 17.361 6.04759 17.361 5.65707 16.9705C5.26655 16.58 5.26654 15.9468 5.65707 15.5563L15.5566 5.65681Z' fill='%230F3363'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_417_1974'%3E%3Crect width='16' height='16' fill='white' transform='translate(11.3145) rotate(45)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.sss-section .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sss-section .accordion .accordion-item {
  border: none;
  border-radius: 0;
}

.sss-section .accordion .accordion-item .accordion-button {
  border: none;
  border-radius: 5px 5px 0 0;
  background-color: #F3F3F3;
  color: #0F3363;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sss-section .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.sss-section .accordion .accordion-item .accordion-body {
  background-color: rgb(194, 243, 221);
  padding: 16px 30px;
}

.sss-section .accordion .accordion-item .accordion-body .text {
  color: #0F3363;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
}

.sss-section .accordion .accordion-button:not(.collapsed) {
  background-color: rgb(194, 243, 221);
  box-shadow: none;
}

.login-page {
  background-image: url(../img/bg-img-color-2.png);
  height: 100vh;
}

.login-box .login-input {
  width: 100%;
  background-color: #fff;
  padding: 23px 50px;
  border: none;
  border-radius: 6px;
  font-size: rgba(10, 20, 47, 0.5);
  font-size: 14px;
  font-weight: 500;
}

.login-box .login-input:focus {
  outline: none;
}

.login-box .title {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}

.login-box .text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.login-box .login-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.login-box .sifremi-unuttum {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.login-box .giris-yap {
  width: 100%;
  border-radius: 6px;
  background: #16E087;
  border: none;
  padding: 18px;
  color: rgba(0, 3, 33, 0.5);
  font-size: 16px;
  font-weight: 600;
}

.login-box .password-register {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border: none;
  background-color: transparent;
}

.login-box .password-register i {
  font-size: 18px;
}

.main-page {
  background-image: url(../img/bg-img-color-2.png);
  height: 100vh;
}

.main-page .header-items {
  color: #fff !important;
}

.main-section-text {
  width: 31.25vw;
  max-width: 31.25vw;
}

.main-section-text .title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.main-section-text .title span {
  color: #2DC2F5;
  font-weight: 800;
}

.main-section-text .text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.mainpage-section .title {
  color: #0F3363;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
}

.mainpage-section .title span {
  color: #2DC2F5;
}

.mainpage-section .text {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}

.mainpage-section .smt-text {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
}

.mainpage-section .daha-fazla {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #111;
}

.mainpage-line-section {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mainpage-line-section .text-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  margin-top: 20px;
}

.mainpage-line-section .text-box .name-surname {
  color: #111;
  font-size: 17px;
  font-weight: 700;
  line-height: 28px;
}

.mainpage-line-section .text-box .mail {
  color: #111;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.category-main {
  padding-bottom: 25px;
  border-bottom: 3px solid rgba(123, 134, 140, 0.15);
}

.category-main .title {
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.category-main .box {
  display: flex;
  gap: 50px;
}

.mt-170 {
  margin-top: 170px;
}

.diger-uygulama {
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.tumunu-gor-button {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  background-color: #0F3363;
  border-radius: 3px;
  padding: 14px 30px;
}

.mobile-section {
  background-color: rgb(15, 51, 99);
  padding: 200px 0;
  position: relative;
  z-index: -2;
}

.mobile-section .sec-abs {
  position: absolute;
  top: 0;
}

.mobile-section .section {
  display: flex;
  gap: 128px;
  align-items: center;
}

.mobile-section .section .title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.mobile-section .section .title span {
  color: #2DC2F5;
}

.mobile-section .section .text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.mobile-section .section .text span {
  color: #2DC2F5;
  font-weight: 700;
}

.section-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-left .title {
  color: #0F3363;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.section-left .text {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}

.section-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-right .box {
  border-radius: 10px;
  border: 1px solid rgba(123, 134, 140, 0.5);
  background: #FFF;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-right .box .title {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.section-right .box .text {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.mt-235 {
  margin-top: 235px;
}

.section-two-main .title {
  color: #111;
  font-size: 36px;
  font-weight: 600;
}

.section-two-main .title span {
  color: #2DC2F5;
}

.section-two-main .text {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
}

.section-two-main .demo-incele-two {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 30px;
  background-color: #2DC2F5;
  border-radius: 3px;
}

.sizinle-ayni {
  color: #2DC2F5;
  font-size: 30px;
  font-weight: 700;
}

.p-yonetimi-section .section-one {
  padding: 65px 0;
}

.p-yonetimi-section .section-one .title {
  color: #0F3363;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.p-yonetimi-section .section-one .title span {
  font-weight: 800;
}

.p-yonetimi-section .section-one .text {
  color: #0F3363;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.p-yonetimi-section .section-two {
  background-color: #F5F5F5;
  padding: 30px 0;
}

.p-yonetimi-section .section-two .section-two-div {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.p-yonetimi-section .section-two .section-two-div .items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-yonetimi-section .section-two .section-two-div .items p {
  color: rgb(0, 27, 63);
  font-size: 16px;
  font-weight: 600;
}

.demoyu-incele-button {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: #0F3363;
  padding: 14px 25px;
  border-radius: 12px;
}

.section-three .section-three-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-three .section-three-box .name {
  color: #001B3F;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.section-three .section-three-box .title {
  color: #0F3363;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}

.section-three .section-three-box .title span {
  color: #2DC2F5;
  font-weight: 700;
}

.section-three .section-three-box .text {
  color: #0F3363;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.section-three .section-three-box .bottom-items {
  display: flex;
  align-items: center;
  gap: 40px;
}

.section-three .section-three-box .bottom-items .bottom-items-div {
  flex: 1;
  gap: 15px;
}

.section-three .section-three-box .bottom-items .items {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-three .section-three-box .bottom-items .items .sm-text {
  color: #0F3363;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.mainpage-section .sm-text {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 990px) {
  .mobile-header-bottom {
    background-color: rgb(15, 51, 99);
    padding: 15px 0;
    margin-top: 15px;
  }

  .mobile-header-bottom .bars-button-mobile {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 500;
  }

  .section-three .section-three-box .bottom-items {
    flex-direction: column;
  }

  .section-three .section-three-box .bottom-items .bottom-items-div {
    width: 100%;
  }

  .section-three .section-three-box .bottom-items .bottom-items-div img {
    width: 100%;
  }

  .main-section-text .text {
    font-size: 16px;
  }

  .main-section-text .title {
    font-size: 30px;
  }

  .main-section-text {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }

  .firmalar-div {
    width: 100%;
    padding: 0 30px;
  }

  .firmalar-div img {
    width: 100%;
    max-width: 100%;
  }

  .mt-170 {
    margin-top: 70px;
  }

  .category-main .box {
    justify-content: space-between !important;
    gap: unset !important;
  }

  .category-main-div-mobile {
    width: 100%;
  }

  .flex-end-mobile-class {
    justify-content: start !important;
  }

  .iletisim-title {
    font-size: 30px;
    line-height: 1.5;
  }

  .mt-60 {
    margin-top: 30px;
  }

  .fiyatlandirma-box .left {
    border-radius: 15px 15px 0 0;
    width: 100%;
    padding: 40px 30px;
  }

  .fiyatlandirma-box .right {
    border-radius: 0 0 15px 15px;
    width: 100%;
    padding: 40px 30px;
  }

  .fiyatlandirma-box {
    flex-wrap: wrap;
  }

  footer .sub-card {
    padding: 20px 30px;
  }

  .main-title-section .svg-icon {
    display: none;
  }

  .footer-top-section {
    padding: 40px;
  }

  .footer-top-section .svg-icon {
    display: none;
  }

  .footer-section-two .logo {
    width: 120px;
  }

  .footer-section-two .logo img {
    width: 100%;
  }

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

  .cerez-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-cerez {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .main-title-section .title {
    font-size: 26px;
    line-height: 36px;
  }

  .is-surec-box .text {
    font-size: 14px;
    line-height: 20px;
  }

  .is-surec-box .title {
    font-size: 20px;
  }

  .is-surec-box {
    gap: 15px;
    padding: 20px 0 20px 20px;
  }

  .mt-100 {
    margin-top: 50px;
  }

  .footer-top-section .title {
    font-size: 24px;
    text-align: center;
  }

  .footer-top-section .text {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }

  .demo-incele {
    font-size: 15px;
    line-height: 20px;
    padding: 12px 25px;
  }

  .ikmap-section .title {
    font-size: 24px;
    line-height: 35px;
  }

  .ikmap-section .text {
    font-size: 16px;
    line-height: 22px;
  }

  footer .footer-absolute-icon {
    display: none;
  }

  footer {
    padding-top: 0;
  }

  .ikmap-lg-img {
    width: 100%;
  }

  .ikmap-lg-img img {
    width: 100%;
  }

  .mt-80 {
    margin-top: 40px;
  }

  .blog-grid {
    padding: 0;
  }

  .blog-card-body {
    margin-top: 15px;
  }

  .blog-card .name {
    color: #0F3363;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card .short-desc {
    color: #0F3363;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card .username {
    font-size: 14px;
  }

  .blog-card .date {
    font-size: 14px;
  }

  .container.footer {
    max-width: unset !important;
  }

  .header-mobile {
    padding: 20px 0;
    border-bottom: 1px solid rgb(15, 51, 99);
  }

  .header-mobile .icons {
    color: #333333;
    font-size: 20px;
  }

  .header-mobile .offcanvas-body {
    padding: 0 1rem !important;
  }

  .header-mobile .dropdown-body .dropdown-items {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgb(222, 227, 235);
    padding: 10px 0;
  }

  .header-buttons-div {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-buttons-div .header-button {
    border-radius: 12px;
    border: 1px solid rgb(15, 51, 99);
    color: #0F3363;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px;
  }

  .header-buttons-div .header-button.dark {
    background: #2DC2F5;
    border-color: transparent;
  }

  .mobile-section .section {
    gap: 20px;
    flex-direction: column;
  }

  .mobile-section .sec-abs {
    display: none;
  }

  .section .mobile-image {
    height: 300px;
  }

  .section .mobile-image img {
    height: 100%;
  }

  .category-main-div-mobile1 {
    width: 100%;
    gap: 15px;
  }

  .mobile-section {
    padding: 70px 0;
  }

  .mobile-section .section .title {
    font-size: 30px;
    text-align: center;
  }

  .mobile-section .section .text {
    font-size: 16px;
    text-align: center;
  }

  .mobile-app {
    align-items: center;
    justify-content: center;
  }

  .p-yonetimi-section .section-one .title {
    font-size: 30px;
  }

  .p-yonetimi-section .section-one .text {
    font-size: 16px;
  }

  .section-three .section-three-box .title {
    font-size: 30px;
  }

  .section-three .section-three-box .text {
    font-size: 16px;
  }

  .section-three .section-three-box .bottom-items .items .sm-text {
    font-size: 14px;
  }

  .mainpage-section .title {
    font-size: 30px;
    line-height: 40px;
  }
}

#marka-slider.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.main-title-section svg path {
  stroke: #16E087;
  stroke-dasharray: 850;
  stroke-dashoffset: 850;
}

.footer-top-section .svg-icon svg path {
  stroke: #16E087;
  stroke-dasharray: 1450;
  stroke-dashoffset: 1450;
}

.footer-absolute-icon svg path {
  stroke: #16E087;
  stroke-dasharray: 750;
  stroke-dashoffset: 750;
}

.footer-top-section .svg-icon svg {
  width: 50vw;
}

.hp-5 .hp-5-svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0vw;
  width: 60vw;
  height: 125vw;
  z-index: -1;
}

.hp-animation {
  position: absolute;
  inset: 0;
  top: 100vh;
  z-index: -1;
  width: 100vw;
  left: 3vw;
  overflow: hidden;
  display: none;
}

.hp-animation svg {
  /* width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center; */
  width: 100vw;
  height: 100%;
  max-width: 1616px;
  /* İstediğiniz maksimum boyut */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0 auto;
}

.bg-anim-1 {
  position: absolute;
  top: -100px;
  left: -7vw;
  height: calc(100% + 100px);
  display: none;
}

.bg-anim-1 svg {
  width: 100%;
  height: 100%;
}

.hp-animation svg path {
  transform: translate(-210px, -60px);
}

@media(min-width:1600px) and (max-width:1800px) {

  .hp-animation svg path {
    transform: translate(-185px, 40px) !important;
  }
}


@media(min-width:1400px) and (max-width:3000px) {

  .hp-animation svg path {
    transform: translate(-195px, 30px);
  }
}






.header-items:hover + .absolute-dropdown {
  visibility: visible;
}

.header-div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.header-div:hover .absolute-dropdown {
  visibility: visible;
}
.mb-40 
{
  margin-bottom: 40px;
}
.absolute-dropdown {
  position: absolute;
  top: 100%;
  visibility: hidden;
  left: 0;
  height: fit-content;
  width: 40vw;
  z-index: 999;
}

.absolute-dropdown:hover {
  visibility: visible;
  transition: 0.6s;
}

.absolute-dropdown .dropdown-content {
  background-color: #fff;
  padding:30px 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  min-height: 200px;
  border-radius: 10px;
}

.absolute-dropdown .dropdown-content .dropdown-list .dropdown-title {
  color: #2A2A2A;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.absolute-dropdown .dropdown-content .dropdown-list .dropdown-items {
  color: #2A2A2A;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.absolute-dropdown .dropdown-content .dropdown-list .dropdown-items:hover {
  color: rgb(104, 54, 81);
}
.drop-menu-items
{
  display: flex;
  align-items: center;
  gap: 10px;
}
.drop-menu-items .text 
{
  color: rgba(0, 27, 63, 1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.drp-title 
{
  color: #111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5; 
}
.drp-text 
{
  color: rgba(17, 17, 17, 0.70);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.drp-items-text 
{
  color: #2DC2F5;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.mb-80 
{
  margin-bottom: 80px;
}

.detail-flex-date
{
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-flex-date .name 
{
  color: #0F3363;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5; 
}
.detail-flex-date .date 
{
  color: #0F3363;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5; 
}  
.detail-flex-date .img-box 
{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-flex-date .img-box img 
{
  width: 100%;
  height: 100%;
}
.blog-detail-title 
{
  color: #0F3363;
  font-size: 36px;
  font-weight: 700;
}
.blog-detail-text 
{
  color: #0F3363;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5; 
}

@media (max-width:990px)
{
  .mb-80
  {
      margin-bottom: 40px;
  }
  .mt-40 
  {
      margin-top: 20px;
  }
  .detail-flex-date .name
  {
      font-size: 16px;
  }
  .detail-flex-date .date
  {
      font-size: 16px;
  }
  .blog-detail-title
  {
      font-size: 26px;
  }
  .blog-detail-text
  {
      font-size: 16px;
  }
  .tumunu-gor-button {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      background-color: #0F3363;
      border-radius: 3px;
      padding: 10px 15px;
  }
  .detail-flex-date .img-box 
  {
      width: 24px;
      height: 24px;
  }
  .detail-flex-date
  {
      gap:12px;
  }
  .mt-235
  {
      margin-top: 60px;
  }
  footer 
  {
      padding-top: 25px !important;
  }
}
.brand-img
{
  height: 60px;
}
.brand-img img 
{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.contact-button.two 
{
  padding: 14px 40px;
}
@media (max-width:990px)
{
  .contact-button.two
  {
      padding: 10px 20px;
  }
}
.ikmap-title-main
{
  padding-bottom: 300px;
}
.ikmap-title-main.two 
{
  padding-bottom: 150px;
}
.ikmap-title-main .title-two
{
  color: #0F3363;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}
.ikmap-title-main .title-two span 
{
  font-weight: 800;
}
.ikmap-title-main .ikmap-title-main-icon
{
  position: absolute;
  top: 0;
  left: 6vw;
  z-index: -1;
}
.ikmap-title-main.two .ikmap-title-main-icon
{
  position: absolute;
  top: -6vw;
  left: 6vw;
  z-index: -1;
}


.ikmap-title-main-icon svg path {
  stroke: #16E087;
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
}

.sizin-icon svg path {
  stroke: #16E087;
  stroke-dasharray: 2100;
  stroke-dashoffset: 2100;
}
.mt-250 
{
  margin-top: 250px;
}

.sizin-icon 
{
  position: absolute;
  top: -25px;
  transform: translateY(-77%);
  right: 260px;
}


@media (max-width:1399px)
{ 
  .sizin-icon 
  {
    right: 170px;
  }

}
@media (max-width:1199px)
{ 
  .sizin-icon 
  {
    display: none;
  }

}

@media (max-width:990px)
{
  .section-left .img-box-left
  {
    height: 60px;
  }
  .section-left .img-box-left img 
  {
    height: 100%;
  }
  .sizinle-ayni
  {
    font-size: 24px;
  }
  .section-two-main .title
  {
    font-size: 30px;
  }
  .section-two-main .demo-incele-two {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 25px;
    background-color: #2DC2F5;
    border-radius: 3px;
}
}