@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;700&display=swap');

:root {
  /* GENEL FONT */
  --font-default: 'Outfit', sans-serif;
  /* ANA RENKLER */
  --color-default: #3c030e;
  --color-primary: #ff375f;
  --color-secondary: #ffeef2;
  --color-accent: #ffeef2;
  --color-white: #ffffff;
  --color-black: #1d082e;
  /* ALTERNATİF RENKLER */
  --color-renk-1: #f3f3f3;
  --color-renk-2: #fffee8;
  --color-renk-3: #e7faec;
  --color-renk-4: #f5f0fe;
  --color-renk-5: #fff5f5;
  /* GENEL RADIUS */
  --border-radius: 4px;
  /* GENEL SAYDAMLIK */
  --opacity: 0.7;
}

/*--------------------------------------------------------------
# SMOOTH SCROLL
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-default);
  font-weight: 700;
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 80px;
  letter-spacing: .7px;
}

h2,
.h2 {
  font-size: 60px;
  letter-spacing: .7px;
}

h3,
.h3 {
  font-size: 40px;
  letter-spacing: .4px;
}

h4,
.h4 {
  font-size: 30px;
  letter-spacing: .35px;
}

h5,
.h5 {
  font-size: 24px;
}

h6,
.h6 {
  font-size: 20px;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
}

section {
  padding: 80px 0;
  overflow: hidden;
}

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

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

.font-weight-bold {
  font-weight: 700;
}

.font-weight-semi-bold {
  font-weight: 600;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-light {
  font-weight: 300;
}

.font-size-md {
  font-size: 18px;
}

.font-size-sm {
  font-size: 14px;
}

.font-size-xs {
  font-size: 12px;
}

p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0px;
}

.bg-primary {
  background: var(--color-primary) !important;
}

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

.bg-accent {
  background: var(--color-accent) !important;
}

.bg-renk-1 {
  background: var(--color-renk-1) !important;
}

.bg-renk-2 {
  background: var(--color-renk-2) !important;
}

.bg-renk-3 {
  background: var(--color-renk-3) !important;
}

.bg-renk-4 {
  background: var(--color-renk-4) !important;
}

.bg-renk-5 {
  background: var(--color-renk-5) !important;
}

.list-group .list-group-item {
  color: var(---color-default);
}

.hero {
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 0;
  color: var(--color-default);
}

@media (max-width: 768px) {
  .hero {
    min-height: 88vh;
  }
}

@media (max-width: 424px) {
  .hero {
    min-height: 94vh;
  }
}

.inner-banner {
  aspect-ratio: 16/5;
  object-fit: contain;
  height: auto;
}

@media (max-width: 768px) {
  .inner-banner {
    aspect-ratio: auto;
  }
}

@media (max-width: 424px) {
  .inner-banner {
    aspect-ratio: auto;
  }
}

.cube {
  position: absolute;
  top: 80vh;
  left: 45vw;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  border: solid 1px var(--color-white);
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  animation: cube 10s ease-in forwards infinite;
  z-index: -2;
}

.cube:nth-child(2n) {
  border-color: var(--color-primary);
}

.cube:nth-child(2) {
  animation-delay: 1s;
  left: 25vw;
  top: 40vh;
}

.cube:nth-child(3) {
  animation-delay: 3s;
  left: 75vw;
  top: 50vh;
}

.cube:nth-child(4) {
  animation-delay: 4s;
  left: 90vw;
  top: 10vh;
}

.cube:nth-child(5) {
  animation-delay: 5s;
  left: 10vw;
  top: 85vh;
}

.cube:nth-child(6) {
  animation-delay: 6s;
  left: 50vw;
  top: 10vh;
}

@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: .3;
  }

  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  opacity: var(--opacity);
  z-index: -1;
}

.page-hero {
  width: 100%;
  min-height: 50vh;
  background-image: url('../img/herobg.png');
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 0;
  color: var(--color-default);
  z-index: -2;
}

footer.footer {
  background-color: var(--color-primary);
  padding-top: 100px;
  padding-bottom: 20px;
}

.btn {
  border-radius: var(--border-radius);
  padding: 10px 30px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
}

.btn-fill {
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-fill:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  filter: opacity(0.9);
}

.btn-outline {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-flat {
  color: var(--color-primary);
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-flat:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  filter: grayscale(1);
}

.btn-text {
  color: var(--color-primary);
  text-decoration: none;
}

.btn-text:hover {
  color: var(--color-primary);
  background: var(--color-accent);
  text-decoration: none;
}

.btn-gradient {
  background-image: linear-gradient(to right, var(--color-primary) 0%, var(--color-default) 51%, var(--color-primary) 100%);
  transition: 0.5s;
  background-size: 250% auto;
  color: var(--color-white);
}

.btn-gradient:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: var(--color-white);
  text-decoration: none;
}

.btn a,
.btn a:hover,
.btn a:active {
  text-decoration: none;
  color: var(--color-white);
}

.form-control {
  border: 3px solid rgba(0 0 0 / 0);
  box-shadow: 0px 0px 15px 0px rgba(120 120 120 / 10%);
  min-height: 50px;
}

.form-control:focus {
  color: var(--color-default);
  background-color: var(--color-white);
  border: 3px solid var(--color-primary);
  box-shadow: none;
  z-index: 0 !important;
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# SELECTOR
--------------------------------------------------------------*/
.form-select:focus {
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: none;
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: var(--color-white);
  box-shadow: 0px 50px 30px -40px rgb(178 178 178 / 25%);
}

.header.sticked {
  background: var(--color-white);
  color: var(--color-default);
  padding: 10px 0;
}

.header .logo img,
.footer-logo {
  max-height: 65px;
  margin-right: 6px;
}

/*--------------------------------------------------------------
# NAVİGASYON
--------------------------------------------------------------*/
.social-media ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  flex-direction: row;
}

.social-media ul li a {
  color: var(--color-primary);
  background: var(--color-white);
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  font-size: 14px;
}

.social-media ul li a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.4s ease;
}

@media (min-width: 1200px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin-right: 10px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: normal;
    color: var(--color-default);
    white-space: nowrap;
  }

  .navbar a::before {
    background: var(--color-accent);
    content: "";
    inset: 0;
    border-radius: var(--border-radius);
    position: absolute;
    transform: scaleX(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-in-out;
    z-index: -1;
  }

  .navbar a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom;

  }

  .navbar a i,
  .navbar a:focus i {
    display: none;
  }

  .navbar button a,
  .navbar button a:hover,
  .navbar button a:active {
    content: "";
    color: var(--color-white);
    text-decoration: none;
    padding: 0;
  }
  .nav-link.active{
    background:var(--color-accent);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0px;
    padding: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: var(--border-radius);
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-default);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-default);
    background: transparent;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1200px) {

  .mobile-nav-hamburger,
  .mobile-nav-close {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# FOOTER NAVİGASYON
--------------------------------------------------------------*/
.navbar-footer {
  padding: 0;
}

.navbar-footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  flex-direction: column;
}

.navbar-footer ul li a {
  color: var(--color-white);
}

.navbar-footer ul li a:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--color-white);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.25s ease;
}

.navbar-footer ul li a:hover:after {
  transform-origin: bottom left;
  transform: scaleX(0.6);
}

.navbar-footer a:hover {
  content: "";
  color: var(--color-white);
  text-decoration: none;
  padding: 0;
}

.social-media {
  padding: 0;
}

footer .social-media ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  flex-direction: row;
}

footer .social-media ul li a {
  color: var(--color-primary);
  background: var(--color-white);
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  font-size: 20px;
}

footer .social-media ul li a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.4s ease;
}
/*--------------------------------------------------------------
# CHIP
--------------------------------------------------------------*/
.badge {
  color: var(--color-default);
  background: var(--color-accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: normal;
  margin: 6px 6px 6px 0px;
  transition: .4s ease;
}
.badge:hover{
  color: var(--color-accent);
  background: var(--color-primary);
}
/*--------------------------------------------------------------
# CARD
--------------------------------------------------------------*/
.card-text {
  display: -webkit-box;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 3;  /* Number of lines displayed before it truncate */
  overflow: hidden;
}
/*--------------------------------------------------------------
# TABLO
--------------------------------------------------------------*/
table tr th {
  padding: 15px 0px 15px 0px!important;
  color: var(--color-default)!important;
  background: var(--color-white);
}
/*--------------------------------------------------------------
# MOBİL NAVİGASYON
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar .tab-pane a{
    color: var(--color-default);
  }
    .navbar .tab-pane a:hover, a:focus{
    background: var(--color-accent);
    color: var(--color-default)!important;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    padding: 20px 35px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 30px;
    line-height: 0;
    margin-left: 0px;
    margin-right: 10px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-default);
    background: var(--color-white);
  }

  .navbar button a,
  .navbar button a:hover,
  .navbar button a:active {
    content: "";
    padding: 0;
    color: var(--color-white);
    background: transparent;
    text-decoration: none;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 0px 0px;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid var(--color-white);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-hamburger {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-close {
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    opacity: var(--opacity);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# SIKÇA SORULAN SORULAR
--------------------------------------------------------------*/
.accordion-body {
  background: var(--color-accent);
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
  color: var(--color-default);
  background: var(--color-white);
}

.accordion-button {
  color: var(--color-default);
  background: var(--color-white);
  padding: 25px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 0px 10px rgb(141 141 141 / 10%);
}

.accordion-button:after {
  font-family: 'Line Awesome Free';
  content: "\f107";
  font-size: 20px;
  color: var(--color-primary);
  background: none;
}

.accordion-button:not(.collapsed) {
  color: var(--color-white);
  background: var(--color-primary);
}

.accordion-button:not(.collapsed):after {
  content: "\f107";
  font-size: 20px;
  color: var(--color-white);
  background: none;
}

.accordion-button:focus,
.accordion-button:hover,
.accordion-button:active {
  box-shadow: 0px 0px 10px rgb(141 141 141 / 10%);
}

/*--------------------------------------------------------------
# SERVİSLER
--------------------------------------------------------------*/
.services {
  display: block;
  position: relative;
  color: var(--color-white) !important;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 4px;
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(to bottom, rgb(255 0 0 / 0%), rgb(0 0 0 / 80%));
  z-index: 1;
}

.services img {
  width: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 4/3;
  transition: .3s ease;
}

.services .services-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 35px 25px;
  transition: .3s all;
  z-index: 2;
}

.services:hover .services-title:after {
  transform-origin: bottom left;
  transform: scaleX(0.6);
}

.services:hover img {
  transform: scale(1.1);
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
#result {
  color: var(--color-primary);
  padding: 30px;
  font-weight: bold;
}