 @import url("./responsive/xs.css");

@media (-webkit-device-pixel-ratio:1.25) {
  :root{
    zoom:0.8;
  }
}
@media (-webkit-device-pixel-ratio:1.50) {
  :root{
    zoom:0.666;
  }
}
:root {
  --ms-header-text: #ffffff;
  --ms-header-border: rgba(255, 255, 255, 0.18);
  --ms-header-border-strong: rgba(255, 255, 255, 0.34);
  --ms-header-surface: rgba(12, 12, 12, 0.72);
  --ms-header-surface-strong: rgba(255, 255, 255, 0.12);
  --ms-header-surface-active: rgba(255, 255, 255, 0.16);
  --ms-header-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  --ms-header-radius: 999px;
  --ms-header-transition: 220ms ease;
}

.container-fluid-footer{
    width: 1320px !important;
    margin-left: auto;
    margin-right: auto;
}
body {
  background-image: linear-gradient(180deg, rgb(0 0 0) 0%, rgb(97 96 96) 100%);
  background-position: bottom center;
  background-size: 100% 800px;
  background-color: #000;
  background-repeat: no-repeat;
}
video::-webkit-media-controls {
  display: none;
}
.marka-body.project {
    font-size: 22px;
    text-align: center;
}
.projects-subtitle {
    margin-bottom: 30px;
}
.projects-block {
    margin-bottom: 100px;
}
.projects-block h3 {
    margin-top: 50px;
    margin-bottom: 30px;
}
.brand-body {
    margin-top: 200px;
    font-size:22px;
    text-align:center
}

.brand-body .visual img {
    max-width: 200px;
}
/* 1. Keep the outgoing slide visible during the transition */
.carousel-fade .carousel-item.active.carousel-item-start,
.carousel-fade .carousel-item.active.carousel-item-end {
  z-index: 2;
  opacity: 1;
  filter: blur(0);
  transition: opacity 2s ease-in-out, filter 2s ease-in-out; /* Match your desired fade speed */
}

/* 2. Ensure the incoming slide is underneath and ready */
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
  z-index: 1;
  opacity: 1; /* Keep it fully opaque underneath */
}

/* 3. The actual fade-out of the old slide */
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0 !important;
  filter: blur(100px);
  transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

/* 4. Sync the Scaling Animation to be LONGER than the fade */
.carousel-item.active img,
.carousel-item-next.carousel-item-start img,
.carousel-item-prev.carousel-item-end img {
  /* If your slide interval is 5s, make this 6.5s to cover the 1.5s fade */
  animation: scaleUp 6500ms linear forwards;
}

@keyframes scaleUp {
  from { transform: scale(1.1, 1); }
  to { transform: scale(1.2, 1.3); }
}
.footer-links {
  position: relative;
}
form#user-login-form {
  margin: 200px auto;
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 40px 60px;
  border: 1px solid #333;
}

form#user-login-form input[type="text"],form#user-login-form input[type="password"] {
  width: 100%;
  margin-bottom: 30px;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
  background: none;
}

form#user-login-form label {
  color: #888;
}
.ms-account-page {
  max-width: 1180px;
  margin: 140px auto 72px;
  padding: 0 24px;
}

.ms-account-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.ms-account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ms-account-identity {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.ms-account-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.ms-account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-account-avatar span {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ms-account-copy {
  min-width: 0;
}

.ms-account-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ms-account-name {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  text-transform: uppercase;
}

.ms-account-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
  word-break: break-word;
}

.ms-account-meta + .ms-account-meta {
  margin-top: 6px;
}

.ms-account-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.ms-account-action-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.ms-account-content {
  padding: 32px 40px 40px;
}

.ms-account-content > * + * {
  margin-top: 20px;
}

.ms-account-content .field,
.ms-account-content .profile,
.ms-account-content .user-profile-category {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ms-account-content .field__label,
.ms-account-content h3,
.ms-account-content h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ms-account-content .field__item,
.ms-account-content .field__items,
.ms-account-content p,
.ms-account-content li,
.ms-account-content span,
.ms-account-content div {
  color: rgba(255, 255, 255, 0.86);
}

.ms-account-content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.ms-account-content .links.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ms-account-content .links.inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: all 220ms ease;
}

.ms-account-content .links.inline a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.ms-error-page {
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 160px 24px 80px;
}

.ms-error-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.ms-error-card {
  max-width: 100%;
  padding: 48px 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.ms-error-code {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.ms-error-title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  text-transform: uppercase;
}

.ms-error-text {
  max-width: 62ch;
}

.ms-error-text p,
.ms-error-text div,
.ms-error-text li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.ms-error-text .messages,
.ms-error-text [data-drupal-messages] {
  margin-bottom: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.ms-error-actions {
  margin-top: 28px;
}
.btn-prm:hover{
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
.btn-prm{
  width: fit-content;
  padding: 10px 30px;
  background: none;
  color: #ccc;
  border: 1px solid #333;
  display: block;
  transition: all 300ms ease;
  text-shadow: 1px 1px 2px #000;
}
.btn-prm.middle {
  margin-left: auto!important;
  margin-right: auto!important;
}
.products .card-title a {
  font-weight: 400;
  font-size: 17px;
  padding: 10px 18px;
  margin-left: 8px;
  margin-right: 8px;
  width: auto;
  border: none;
}

.products .card:hover .card-title a {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
input#edit-submit, form#user-login-form input[type="submit"]{
  width:unset;
  padding: 10px 30px !important;
  background: none;
  color: #ccc;
  border: 1px solid #333;
  margin-right: 0;
  margin-left: auto;
  display: block;
  transition: all 300ms ease;
}
input#edit-submit:hover,
form#user-login-form input[type="submit"]:hover{
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
.sub-content .text{
  font-weight: 400;
  position: relative;
}
.sub-content .text .vessel li {
  list-style: disc;
}
main.region .header h1.title {
  text-transform: uppercase;
  margin-top: 60px;
}
main.region .header h3.subtitle {
  margin-bottom: 40px;
}
.product-card .content .text {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  min-height: 250px;
}

.product-card .content .title {
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 20px 0;
}

.product-card .content .link a {
  margin: 30px auto;
}
/* ---------------------------------------------- */

.fp-img .img-frame:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
body {
  font-family: "Monexa", sans-serif;
  background-color: #000000;
}
h1, h2, h3, h4, h5 {
  color: white;
}

img {
  height: auto;
  width: 100%;
}
p {
  color: white;
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: white;
}
li {
  text-decoration: none;
  list-style: none;
  color: white;
}
header.region {
  position: fixed;
  width: 100%;
  top: var(--drupal-displace-offset-top);
  z-index: 5;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0 264px 0;
}
.is-scrolled header.region {
  background-color: #000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
#site-header {
  position: relative;
  z-index: 7;
}
.header-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  column-gap: clamp(20px, 3vw, 40px);
}
.header-left,
.header-mid,
.header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}
.header-left {
  justify-content: flex-start;
}
.header-mid {
  justify-content: flex-end;
  margin-left: 55px;
}
.header-right {
  justify-content: flex-end;
  gap: 14px;
}
.header-menu-shell,
.header-navbar {
  width: 100%;
}
.header-language,
.header-language .block,
.header-language .contextual-region {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#branding {
  display: flex;
  align-items: center;
}

#branding a,
#branding .site-branding__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

#branding img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
#navbar-toggler {
  padding: 0;
}
#navbar-toggler .navbar-toggler {
  padding: 0.5rem 0.7rem;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transition:
    background-color var(--ms-header-transition),
    border-color var(--ms-header-transition),
    box-shadow var(--ms-header-transition),
    transform var(--ms-header-transition);
}
#navbar-toggler .navbar-toggler:hover,
#navbar-toggler .navbar-toggler:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.ms-language-switcher-wrapper {
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.language-switcher-language-url.language-switcher-block {
  display: flex;
  justify-content: flex-end;
  width: auto;
}
.ms-language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}
.ms-language-switcher__list,
.language-switcher-language-url.language-switcher-block > ul {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 4px;
  list-style: none;
  border: 1px solid var(--ms-header-border);
  border-radius: var(--ms-header-radius);
  background: var(--ms-header-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--ms-header-shadow);
}
.ms-language-switcher__item,
.language-switcher-language-url.language-switcher-block > ul > li {
  margin: 0;
}
.ms-language-switcher__link,
.language-switcher-language-url.language-switcher-block > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--ms-header-radius);
  color: var(--ms-header-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color var(--ms-header-transition),
    border-color var(--ms-header-transition),
    color var(--ms-header-transition),
    transform var(--ms-header-transition),
    box-shadow var(--ms-header-transition);
  cursor: pointer;
}
.language-switcher-language-url.language-switcher-block > ul > li > a {
  font-size: 0;
  letter-spacing: 0;
}
.language-switcher-language-url.language-switcher-block > ul > li > a::after {
  font-size: 13px;
  font-weight: inherit;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.language-switcher-language-url.language-switcher-block > ul > li > a[hreflang^="tr"]::after {
  content: "TR";
}
.language-switcher-language-url.language-switcher-block > ul > li > a[hreflang^="en"]::after {
  content: "EN";
}
.ms-language-switcher__link:hover,
.ms-language-switcher__link:focus-visible,
.language-switcher-language-url.language-switcher-block > ul > li > a:hover,
.language-switcher-language-url.language-switcher-block > ul > li > a:focus-visible {
  background: var(--ms-header-surface-strong);
  border-color: var(--ms-header-border);
  color: var(--ms-header-text);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  outline: none;
}
.ms-language-switcher__link.is-active,
.language-switcher-language-url.language-switcher-block > ul > li.is-active > a,
.language-switcher-language-url.language-switcher-block > ul > li > a.is-active {
  font-weight: 700;
  background: var(--ms-header-surface-active);
  border-color: var(--ms-header-border-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.ms-language-switcher__text {
  display: inline-block;
  transform: translateY(1px);
}
.ms-language-switcher__item + .ms-language-switcher__item {
  position: relative;
}
.language-switcher-language-url.language-switcher-block > ul > li + li {
  position: relative;
}
.ms-language-switcher__item + .ms-language-switcher__item::before {
  content: none;
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  pointer-events: none;
}
.language-switcher-language-url.language-switcher-block > ul > li + li::before {
  content: none;
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  pointer-events: none;
}
div#showcase {
  position: relative;
}
.fp-text {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
}
.fp-img {
  position: relative;
}
.fp-title {
  width: max-content;
  margin: 0 auto;
  padding: 20px 0;
}
.fp-title p {
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: 0;
  text-shadow: 3px 3px 5px #000c;
  margin-bottom: 0;
}
.fp-subtitle p {
  font-size: 25px;
  line-height: 30px;
  font-weight: 400;
  padding-top: 15px;
}
#main-menu a.nav-link {
  color: white;
  font-size: 18px;
  padding: 20px 25px;
  line-height: 40px;
  text-shadow: 1px 1px 2px #000;
}
#main-menu .navbar-nav {
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 1vw, 10px);
}
.about-header {
  padding-bottom: 3rem;
}
.about-header p {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.about-img .center-img {
  padding: 0.1rem 0.2rem;
}

.about-img .side-img {
  padding: 0.1rem;
}

.about-us {
  text-align: center;
  padding: 0rem 24px 4rem 24px;
  gap: 7px;
}
div#block-custom-hakkimizda h2 {
  padding-bottom: 50px;
  font-size: 40px;
  color: white;
  text-align: center;
  padding-top: 50px;
  font-weight: 400;
}
.about-img {
  display: flex;
}
.about-info p {
  font-weight: 400;
  font-size: 25px;
  line-height: 36px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.products .card-title {
  position: absolute;
  bottom: 6px;
  width: 100%;
  text-align: center;
  display: inline-block;
}
div#carouselExampleIndicators {
  position: relative;
}
div#carouselExampleIndicators:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(176deg, #00000094, transparent);
  z-index: 1;
  position: absolute;
  top: 0;
}
.marka-body.project .visual {
  text-align: center;
}
.marka-body.project .visual img {
  max-width: 300px;
}

.products img {
  border: none;
}
.products .card {
  border: none;
  background: none;
  overflow: hidden;
}
.products .products-title h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  color: white;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
}
.products .products-body {
  text-align: center;
}
.products-text p {
  font-size: 25px;
  font-weight: 400;
  line-height: 133%;
  letter-spacing: 0;
  color: white;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.products-btn {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
.references .referance h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  color: white;
  padding-bottom: 50px;
}
.references .referance .referance-body {
  text-align: center;
}
.references .referance-text p {
  font-size: 25px;
  font-weight: 400;
  line-height: 133%;
  letter-spacing: 0;
  color: white;
  padding-bottom: 30px;
}
.references .referance-btn a {
  color: #474747;
  background: white;
  font-weight: 400;
  padding: 12px;
  border: 5px solid grey;
}
.references .referance-btn {
  padding: 112px 0 0 0;
  text-align: center;
}
.references .reference-card img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
}
.references .reference-card {
  padding: 30px;
  border: 6px solid #323232;
  text-align: center;
}
.references {
  padding: 4rem 24px 4rem 24px;
  background: #26262685;
  border: 5px solid #26262685;
}
.corporate {
  display: flex;
  padding: 0 0 50px 0;
}
.corporate a {
  padding-right: 18px;
}
.about-footer {
  padding-bottom: 0px;
  margin-top: -36px;
}
.copyright {
  position: absolute;
  text-align: end;
}
.copyright {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  top: 206px;
}

.projects .projects-body {
  text-align: center;
}
.projects .projects-link a {
  display: inline-block;
  background: #000c;
  padding: 12px 26px;
  margin-top: 20px;
}
.copyright p {
  color: white;
  font-size: 14px;
}
.about-footer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
  margin-top: 39px;
}
.footer .row {
  row-gap: 28px;
}
.footer-panel {
  min-width: 0;
}
.footer-panel-branding,
.footer-panel-corporate,
.footer-panel-social {
  align-self: flex-start;
}

.footer-panel-branding #branding,
.footer-panel-branding .site-branding,
.footer-panel-branding .block-system-branding-block {
  display: block;
}
.footer-panel-menu {
  padding-top: 4px;
}
.footer-panel-menu .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
.footer-panel-menu .footer-menu li {
  margin: 0;
  font-size: 17px;
}
.footer-panel-contact {
  margin-top: 0;
}
.footer-panel-contact h3,
.footer-panel-contact h4 {
  margin-bottom: 10px;
}
.footer-panel-contact p,
.footer-panel-contact li,
.footer-panel-contact a,
.footer-panel-contact span {
  font-size: 16px;
  line-height: 1.45;
}
.footer-panel-social .corporate {
  padding: 0;
  gap: 18px;
  align-items: center;
}
.footer-panel-social .corporate a {
  padding-right: 0;
}
.footer-detail {
  position: relative;
  font-size: 14px;
  left: 0;
}
.footer {
  border-top: 2px solid grey;
  padding-top: 45px;
  padding-bottom: 0;
  margin-bottom: 64px;
}
.footer img {
  max-width: 171px;
  padding-bottom: 18px;
}
ul.dropdown-menu.show {
  background: #000000de;
  padding: 0;
  text-align: left;
}
#main-menu li.menu-level-1 a {
  font-size: 18px;
  font-weight: 400;
  border-top: 1px solid #80808054;
  white-space: nowrap;
}

.basic-page .main-body p,
.hak-header-info p {
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.hak-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.hak-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.hak-header {
  padding-bottom: 5%;
}
.hak-info-one {
  display: flex;
}
.hak-info-two {
  display: flex;
}
.hak-info-text {
  font-weight: 400;
  font-size: 25px;
  position: relative;
  top: 46px;
}
.hak-info-one .hak-info-text {
  padding: 0 10px 0 37px;
}
.hak-info-two .hak-info-text {
  padding: 0 37px 0 10px;
}
.references-page .referance-btn {
  padding: 112px 0 0 0;
  text-align: center;
}
.references-page .reference-card-page img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
}
.references-page .reference-card-page {
  padding: 30px;
  border: 6px solid #323232;
  text-align: center;
}
.ref-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.ref-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.ik-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.ik-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.ik-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.ik-header {
  padding-bottom: 10%;
}
.ik-info-text {
  font-weight: 400;
  font-size: 25px;
  position: relative;
  top: 46px;
}
.ik-info-one .ik-info-text {
  padding: 0 10px 0 37px;
}
.ik-info-two .ik-info-text {
  padding: 0 37px 0 10px;
}
.ev-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.ev-info-one {
  display: flex;
}
.ev-info-two {
  display: flex;
}
.ev-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.ev-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.ev-header {
  padding-bottom: 10%;
}
.ev-info-img img {
  height: 594px;
  width: auto;
}
.ev-info-text {
  font-weight: 400;
  font-size: 25px;
  position: relative;
  top: 46px;
}
.ev-info-one .ev-info-text {
  padding: 0 10px 0 37px;
}
.ev-info-two .ev-info-text {
  padding: 0 37px 0 10px;
}
.gs-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.gs-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.gs-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.gs-header {
  padding-bottom: 10%;
}
.gs-info-one {
  display: flex;
}
.gs-info-two {
  display: flex;
}
.gs-info-text {
  font-weight: 400;
  font-size: 25px;
  position: relative;
  top: 46px;
}
.gs-info-one .gs-info-text {
  padding: 0 10px 0 37px;
}
.gs-info-two .gs-info-text {
  padding: 0 37px 0 10px;
}
.fp-img .img-frame {
  overflow: hidden;
  position: relative;
}
#bottom .referance-btn a {
  color: #474747;
  background: white;
  font-weight: 400;
  padding: 12px;
  border: 5px solid grey;
}
#bottom .referance-btn {
  text-align: center;
  padding: 54px 0 10px 0;
}
.hd-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.hd-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.hd-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.hd-header {
  padding-bottom: 10%;
}
.hd-info-img img {
  height: auto;
  width: 100%;
}
.hd-info-text {
  font-weight: 400;
  font-size: 18px;
  position: relative;
}
.hd-info-one .hd-info-text {
  padding: 0 10px 0 37px;
}
.hd-info-two .hd-info-text {
  padding: 0 37px 0 10px;
}
.hd-bottom-btn {
  display: inline-block;
  position: absolute;
  background: white;
  border: 5px solid grey;
  bottom: 0;
}
.hd-bottom-btn a {
  font-size: 15px;
}
.hd-info-text h3 {
  padding-bottom: 20px;
}
.pro-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.pro-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.pro-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.pro-header {
  padding-bottom: 10%;
}
.pro-info-img img {
  height: auto;
  width: 100%;
}
.pro-info-text {
  font-weight: 400;
  font-size: 18px;
  position: relative;
}
.pro-info-one {
  display: flex;
}

.pro-info-one .pro-info-text {
  padding: 0 10px 0 37px;
}
.pro-info-two .pro-info-text {
  padding: 0 37px 0 10px;
}
.pro-bottom-btn {
  display: inline-block;
  position: absolute;
  background: white;
  border: 5px solid grey;
  bottom: 0;
}
.pro-bottom-btn a {
  font-size: 15px;
}
.pro-info-text h3 {
  padding-bottom: 20px;
}
.contact-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.contact-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.contact-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.contact-header {
  padding-bottom: 5px;
}
input#edit-name {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
}
.contact-us-form label {
  font-size: 18px;
  font-weight: 400;
  color: white;
}
input#edit-surname {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
}
input#edit-phone {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
}
input#edit-email {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
}
textarea#edit-message {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  height: 66px;
  color: white;
}
textarea#edit-message::placeholder {
  color: white;
  top: 20%;
  font-size: 15px;
  font-weight: 400;
  position: absolute;
}
div#edit-konu {
  display: flex;
}
.form-item-konu {
  padding-right: 20px;
}
span.fieldset-legend {
  font-size: 18px;
  font-weight: 400;
  color: white;
}

div#edit-submit-wrap {
  padding-bottom: 30px;
}
.captcha__image-wrapper img {
  border: none;
  padding: 30px 0 0 0;
  margin: 0;
}
.captcha__element {
  width: 36%;
}
fieldset.captcha {
  position: relative;
  justify-content: right;
  display: flex;
  padding-bottom: 16px;
}
input#edit-captcha-response {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
div#edit-captcha-response--description {
  display: none;
}
.marka-header-info p {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
}
.marka-header-btn {
  display: inline-block;
  background: white;
  border: 5px solid grey;
}
.marka-header-btn a {
  font-size: 16px;
  font-weight: 300;
}
.marka-header {
  padding-bottom: 5%;
}
.marka-bottom {
  display: flex;
}
.marka .marka-img {
  border: 1px solid #222;
}
.marka-img .brand-logo {
   height: 160px;
 }

.marka-img .brand-logo {
  width: 100%;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 300ms ease;
}
.marka .marka-img:hover .brand-logo {
  transform: scale(1.2);
}
.marka-bottom-title {
  height: 72px;
}
.marka-second-title p {
  color: #8f9fa3;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  padding-bottom: 12px;
}
.marka-bottom-title p {
  font-weight: 400;
  font-size: 38px;
  line-height: 48px;
  padding: 0 30px 0 30px;
  margin: 0;
}
.marka-bottom-text p {
  color: #8f9fa3;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  padding: 0 20px 0 20px;
}
div#block-custom-corporatesocialmediaicons-2 {
  position: relative;
  bottom: 0;
  justify-content: flex-start;
  display: flex;
}
div#content-bottom .corporate-branch {
  display: flex;
}
div#content-bottom .corporate-branch-contact {
  padding-right: 10%;
  color: #b1b0b0;
}
div#content-bottom .corporate-branch-adress {
  color: #b1b0b0;
}
div#content-bottom .corporate-branch-adress h4 {
  color: #3f3f3f;
}
div#content-bottom .corporate-branch-contact h4 {
  color: #3f3f3f;
}
.projects-header img {
  position: relative;
  /* left: 45%; */
  max-width: 200px;
  margin-top: 50px;
  height: auto;
  padding-bottom: 30px;
}
.projects-img-two img {
  padding-right: 5px;
  padding-left: 5px;
}
.projects-img-one img {
  padding-right: 10px;
}
.projects-img-three img {
  padding-left: 10px;
}
.projects-title {
  text-align: center;
  padding-top: 23px;
}
.projects-info {
  text-align: center;
}
.projects-info p {
  color: #717070;
  font-size: 17px;
}
.fp-text {
  bottom: calc(100vw / 10);
}

.career-form #form-elements input, .career-form #form-elements textarea {
  font-size: 26px;
  width: 100%;
  margin-bottom: 20px;
}

.career-form #form-elements label {
  font-size: 20px;
}
.career-form #form-elements textarea::placeholder {
  font-size: 30px;
  top: 0;
  color: #555;
}
.career-form #form-elements textarea {
  height: 200px;
}
.career-form input#edit-submit {
  background: white;
  border: 5px solid grey;
  padding: 6px 12px;
  width: 140px;
}
.ev-info-img img {
  max-width: 100%;
  height: auto;
}


/*Talebiniz Alınmıştır Sayfası*/
.msound-thankyou-wrap {
  padding: 10px 0 70px;
}

.msound-thankyou-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 56px;
  border-top: 4px solid #ffffff;
  /*background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);*/
  box-shadow: 0 12px 35px rgba(8, 46, 71, 0.08);
}

.msound-thankyou-h1.title{
    text-transform: uppercase;
    margin-top: 150px;
    margin-bottom: 40px;
}

.msound-thankyou-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: #082e47;
  position: relative;
}

.msound-thankyou-mark::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 17px;
  width: 22px;
  height: 12px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}
.msound-thankyou-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.msound-thankyou-content p {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.75;
  font-weight: 300;
}
.contact-thankyou-button {
  display: inline-block;
  padding: 14px 28px;
  background: #082e47;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease;
  margin-top: 2rem;
}
.contact-thankyou-button:hover {
  background: #0d4468;
  color: #ffffff;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.navbar-nav .nav-link {
    padding-right: 25px;
    padding-left: 0;
}

.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}

.pb-5 {
    padding-bottom: 0.5rem !important;
}

.footer-panel-social {
  margin-top: -63px;
}

@media (max-width: 991px) {
  .footer-panel-social {
    margin-top: 0;
  }

  .ms-error-page {
    min-height: auto;
    padding: 130px 16px 56px;
  }

  .ms-error-card {
    padding: 32px 24px;
  }

  .ms-error-text p,
  .ms-error-text div,
  .ms-error-text li {
    font-size: 16px;
  }

  .ms-account-page {
    margin-top: 120px;
    padding: 0 16px;
  }

  .ms-account-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .ms-account-identity {
    width: 100%;
    align-items: flex-start;
  }

  .ms-account-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .ms-account-content {
    padding: 24px;
  }

  header.region {
    position: fixed;
    width: 100%;
    top: 0 !important;
    z-index: 5;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    margin-top: 0;
  }

  #site-header,
  .header-shell {
    margin-top: 0;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "branding actions"
      "menu menu";
    align-items: center;
    column-gap: 12px;
    row-gap: 12px;
    min-height: auto;
    padding: 12px 0;
  }

  .header-left {
    grid-area: branding;
  }

  .header-mid {
    grid-area: menu;
    margin-left: 0;
    width: 100%;
    justify-content: stretch;
  }

  .header-right {
    grid-area: actions;
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }

  .header-menu-shell,
  .header-navbar,
  #main-menu {
    width: 100%;
  }

  .ms-language-switcher__item, .language-switcher-language-url.language-switcher-block > ul > li {
    margin: 0;
    max-width: 3.7rem;
  }

  .ms-language-switcher__list, .language-switcher-language-url.language-switcher-block > ul {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid var(--ms-header-border);
    border-radius: var(--ms-header-radius);
    background: var(--ms-header-surface);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--ms-header-shadow);
  }

  #main-menu nav {
    width: min(377px, 100vw);
  }

  #main-menu {
    padding-top: 8px;
  }

  #main-menu .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  #main-menu li,
  #main-menu li.menu-level-1 {
    width: 100%;
  }

  #main-menu a.nav-link,
  #main-menu li.menu-level-1 a {
    display: block;
    width: 100%;
    padding: 14px 18px;
    line-height: 1.4;
    white-space: normal;
  }

  .text-center {
    text-align: center !important;
  }

  .ms-language-switcher__link, .language-switcher-language-url.language-switcher-block > ul > li > a {
    padding: 11px 11px !important;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .navbar-toggler {
    /* padding: .25rem .75rem; */
    font-size: 1rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
  }
}

@media (max-width: 500px) {
  .fp-title p {
    font-size: 31px !important;
    font-weight: 500;
    line-height: 39px !important;
    letter-spacing: 0;
    text-shadow: 3px 3px 5px #000c;
    margin-bottom: 0;
  }
    
  .projects-header img {
    position: relative;
    /* left: 45%; */
    max-width: 200px;
    margin-top: 0px !important;
    height: auto;
    padding-bottom: 30px;
  }
  
  .projects-subtitle {
    margin-bottom: 15px;
  }
  
  .text-center {
        text-align: center !important;
  }
  
  .pb-5 {
    padding-bottom: 0.5rem !important;
    text-align: left !important;
  }
  
  .mt-5 {
    margin-top: 0px !important;
  }
  
  .ms-error-title {
    line-height: 1.04;
  }

  .ms-account-identity {
    flex-direction: column;
  }

  .ms-account-avatar {
    width: 82px;
    height: 82px;
  }

  .ms-account-content .field,
  .ms-account-content .profile,
  .ms-account-content .user-profile-category {
    padding: 16px;
  }

  .fp-title p {
    font-size: 29px;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: 0;
    text-shadow: 3px 3px 5px #000c;
    margin-bottom: 0;
  }

  .header-right {
    justify-content: flex-end;
    gap: 0;
  }

  .about-info p, .products-text p, p {
    font-weight: 100;
    font-size: 17px;
    line-height: 23px;
    padding-top: 0 !important;
    padding-bottom: 32px;
    margin-bottom: 0;
    text-align: left;
  }
  
  .sub-content .text .vessel {
    margin: 30px 0;
    font-weight: 100;
  }
  
  .sub-content .text {
    font-weight: 100;
    position: relative;
  }
  
  .basic-page .main-body p, .hak-header-info p {
    font-weight: 100;
    line-height: 22px;
    letter-spacing: 0;
  }
  .basic-page .main-body p, .hak-header-info p {
    font-size: 17px;
  }
  
  .h5, h5{
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .products-btn {
    margin-top: 5px;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .footer-panel-contact p, .footer-panel-contact li, .footer-panel-contact a, .footer-panel-contact span {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 0;
  }
  
  .about-header {
    padding-bottom: 0 !important;
  }

  .products .products-title h2, .about-header p {
    font-weight: 400;
    font-size: 24px !important;
    line-height: 28px !important;
    letter-spacing: 0;
    color: white;
    padding-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
  }

  .contact-header-info p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
  }
  
  .mb-5 {
    margin-bottom: 3rem !important;
    margin-top: 2rem !important;
  }
}

@media (min-width: 430px) and (max-width: 570px) {
  .fp-title p {
    font-size: 35px;
    font-weight: 500;
    line-height: 49px;
    letter-spacing: 0;
    text-shadow: 3px 3px 5px #000c;
    margin-bottom: 0;
  }
}

@media (max-width: 1399.98px) {
  header.region {
    position: fixed;
    width: 100%;
    top: var(--drupal-displace-offset-top);
    z-index: 5;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0 48px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  header.region {
    padding: 0 24px;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 20px;
  }

  .header-mid {
    margin-left: 0;
  }

  #main-menu .navbar-nav {
    gap: 2px;
  }

  #main-menu a.nav-link {
    padding: 16px 14px;
    font-size: 16px;
  }
}

@media (min-width: 1400px) and (max-width: 1905px) {
  header.region {
    padding: 0 64px;
  }

  .header-shell {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) auto;
    column-gap: 24px;
  }

  .header-mid {
    margin-left: 0;
  }

  #branding {
    min-width: 0;
  }

  #branding img {
    max-width: clamp(150px, 12vw, 210px);
    max-height: 56px;
  }

  #main-menu .navbar-nav {
    gap: 0;
  }

  #main-menu a.nav-link {
    padding: 18px 14px;
    font-size: 16px;
  }
}

@media (min-witdh: 500px) and (max-width: 800px) {
  #main-menu a.nav-link {
    font-size: 23px !important;
  }
  
  .basic-page .main-body p, .hak-header-info p {
    font-size: 1.5rem !important;
  }
  
   #main-menu nav {
    width: min(500px, 100vw) !important;
  }
  
  .sub-content .text .vessel {
    margin: 30px 0;
    font-size: 1.5rem;
  }
  
  .sub-content .text {
    font-weight: 400;
    position: relative;
    font-size: 1.5rem;
  }
  
  .projects-header img {
    position: relative;
    /* left: 45%; */
    max-width: 271px !important;
    margin-top: 2px !important;
    height: auto;
    padding-bottom: 0 !important;
  }
  
  .footer {
    padding: 2rem 8rem 0px !important;
  }
}


.py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        margin-top: -88px;
}

@media (max-width: 1406px) {
    .container-fluid-footer {
    width: 82% !important;
    margin-left: auto;
    margin-right: auto;
}
}

@media (max-width: 500px) {
    .footer-panel-contact p {
        text-align: center !important;
    }
}

@media (max-width: 767px){
    .about-footer p {
        text-align: center !important;
    }
}