:root {
  --color-primary: #082437;
  --color-secondary: #E14626;
  --color-black-rep: #122E41;
  --color-white-rep: #f6e9dc;
  --border-color: #B9AA9C;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "GT Haptik", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-black-rep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background-color: var(--color-white-rep);
}
@media screen and (max-width: 991px) {
  html,
  body {
    font-size: 16px;
  }
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.8;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.gsap-reveal {
  opacity: 0;
}

@font-face {
  font-family: "GT Haptik";
  src: url("fonts/subset-GTHaptikBold.woff2") format("woff2"), url("fonts/subset-GTHaptikBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Haptik";
  src: url("fonts/subset-GTHaptik-Regular.woff2") format("woff2"), url("fonts/subset-GTHaptik-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
a.return-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 999;
  background-color: var(--primary-color);
  padding: 10px;
  display: none;
}

a.pointer {
  color: var(--color-secondary);
}
a.pointer:after {
  content: " >";
}

.scrolled a.return-top {
  display: block;
}

.su-circle {
  position: fixed;
  bottom: -200px;
  right: -100px;
  width: 650px;
  height: 650px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .su-circle {
    width: 500px;
    height: 500px;
  }
}
.su-circle.blur {
  bottom: -250px;
  right: 100px;
  background: linear-gradient(45deg, rgba(225, 70, 38, 0.062745098) 0%, rgba(255, 255, 255, 0.1254901961) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
.su-circle.smaller {
  width: 400px;
  height: 400px;
}

@keyframes scrollLogo {
  from {
    background-position: 0 0%;
  }
  to {
    background-position: 0 -400px;
  }
}
@keyframes fadeOut {
  to {
    visibility: hidden;
    pointer-events: none;
    top: -120%;
  }
}
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 9;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header {
    border-bottom: 1px solid var(--border-color);
  }
}
header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 992px) {
  header .container-fluid {
    justify-content: flex-end;
  }
}
header .container-fluid .tagline {
  color: var(--color-secondary);
  font-size: 1.2rem;
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 991px) {
  header .container-fluid .tagline {
    display: none;
  }
}
header .menu-button {
  width: 32px;
  height: 32px;
}
header .menu-button span {
  transition: 0.2s all;
  display: block;
  width: 60%;
  height: 2px;
  background-color: var(--color-black-rep);
  margin: 8px 0 8px 40%;
}
header .menu-button span:first-child, header .menu-button span:last-child {
  width: 100%;
  margin-left: 0;
}

body.anasayfa header {
  border-bottom: 0;
}
body.anasayfa header .logo {
  display: none;
}
body.anasayfa header .tagline {
  display: block;
}
body.anasayfa header .menu-button span {
  background-color: var(--color-white-rep);
}

.content h1 {
  transition: all 0.8s ease 0.2s;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 991px) {
  body.scrolled header {
    background-color: var(--color-white-rep);
  }
}
body.scrolled header .tagline,
body.scrolled .content h1 {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

body.menu-open header {
  background-color: transparent;
}
body.menu-open header .menu-button span {
  display: none;
  background-color: var(--color-white-rep);
}
body.menu-open header .menu-button span:first-child {
  display: block;
  transform: rotate(45deg) translateY(10px);
}
body.menu-open header .menu-button span:last-child {
  display: block;
  transform: rotate(-45deg) translateY(-10px);
}
body.menu-open header .logo {
  display: none;
}
body.menu-open header .tagline {
  display: flex;
  color: var(--color-white-rep);
  opacity: 1;
  transform: none;
}
body.menu-open .mobile-menu {
  top: 0;
  display: flex;
}

.mobile-menu {
  display: none;
  top: -100%;
  position: fixed;
  background-color: var(--color-secondary);
  width: 100%;
  height: 100%;
  min-height: 500px;
  left: 0;
  z-index: 6;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 400px 400px;
}
.mobile-menu ul.nav.d-flex {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 9;
}
.mobile-menu ul.nav.d-flex a {
  color: #fff;
  font-size: 2rem;
}
.mobile-menu .su-circle {
  top: 50%;
  right: 0px;
}

a.return-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 999;
  transform: rotate(-90deg);
  background-color: var(--random-color);
  padding: 10px;
  display: none;
}

.scrolled a.return-top {
  display: block;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-color: var(--color-primary);
}
.background-video.team-video {
  position: static;
}
.background-video.team-video .logo {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 9;
  transition: all 0.6s ease-in-out;
}
.background-video.team-video .logo img {
  width: 220px;
}
@media screen and (max-width: 991px) {
  .background-video {
    height: 100dvh;
  }
}
.background-video video,
.background-video .img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.background-video .black-layer {
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0.2;
}

body.scrolled .background-video.team-video .logo {
  opacity: 0;
  transform: translateY(100px);
}

.suer-columns {
  min-height: 100vh;
  display: flex;
  position: relative;
  z-index: 1;
}
.suer-columns .suer-left-column {
  width: 250px;
  min-width: 250px;
  align-items: center;
  border-right: 1px solid var(--border-color);
  position: relative;
  max-height: 100vh;
  position: sticky;
  top: 0;
}
.suer-columns .suer-left-column ul.nav {
  display: block;
}
.suer-columns .suer-left-column ul.nav a {
  color: var(--color-black-rep);
}
.suer-columns .suer-left-column ul.nav a:hover, .suer-columns .suer-left-column ul.nav a.active {
  color: var(--color-secondary);
}
.suer-columns .suer-left-column .logo {
  position: absolute;
  left: 15px;
  bottom: 25px;
  width: 220px;
}
.suer-columns .suer-left-column .logo img {
  max-width: 100%;
}
.suer-columns .suer-left-column.second-level {
  width: 350px;
  min-width: 350px;
}
.suer-columns .suer-left-column.second-level ul.nav a {
  color: var(--color-black-rep);
}
.suer-columns .suer-left-column.second-level ul.nav a:hover {
  color: var(--color-secondary);
  opacity: 1 !important;
}
.suer-columns .suer-left-column.second-level ul.nav:has(a.active) a:not(.active) {
  opacity: 0.3;
}
.suer-columns .suer-right-column {
  width: calc(100% - 250px);
  display: flex;
  padding-left: 30px;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 200px;
}
@media screen and (max-width: 991px) {
  .suer-columns .suer-right-column {
    width: 100%;
    padding-right: 30px;
  }
}
.suer-columns .suer-right-column .content {
  color: var(--color-black-rep);
  max-width: 750px;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .suer-columns .suer-right-column .content {
    padding-top: 80px;
  }
}
.suer-columns .suer-right-column .content h1 {
  font-size: 6rem;
  font-weight: 400;
  margin: 3rem 0 3rem -30px;
  line-height: 1;
}
.suer-columns .suer-right-column .content h1:after {
  content: ".";
}
.suer-columns .suer-right-column .content h1.white {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .suer-columns .suer-right-column .content h1 {
    font-size: 3.6rem;
  }
}
.suer-columns .suer-right-column .content h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 1.5rem 0 0.5rem 0;
}
.suer-columns .suer-right-column .content h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 1.5rem 0;
}
.suer-columns .suer-right-column .content .big {
  font-size: 1.4rem;
}
.suer-columns .suer-right-column .content ul {
  margin-bottom: 15px;
  margin-left: 15px;
}
.suer-columns .suer-right-column .content ul li {
  list-style: disc outside;
  margin-left: 20px;
}
.suer-columns .suer-right-column .content a {
  color: var(--color-secondary);
}
.suer-columns .suer-right-column .content.wider {
  max-width: 900px;
  width: 900px;
}
.suer-columns .suer-right-column .column-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 80px;
  padding-left: 30px;
  padding-right: 30px;
  border-top: 1px solid var(--border-color);
}
@media screen and (max-width: 991px) {
  .suer-columns .suer-right-column .column-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
  }
}
.suer-columns .suer-right-column .column-footer .address {
  color: var(--color-black-rep);
  font-size: 0.7rem;
}
.suer-columns .suer-right-column .column-footer .address p {
  margin-bottom: 0;
}
.suer-columns .suer-right-column .column-footer .logo img {
  max-width: 100%;
  width: 450px;
  height: auto;
}
.suer-columns .suer-right-column .column-footer .footer-menu {
  text-align: right;
  display: flex;
  font-size: 0.7rem;
  flex-direction: column;
  justify-content: space-around;
  min-height: 60%;
}
@media screen and (max-width: 991px) {
  .suer-columns .suer-right-column .column-footer .footer-menu {
    text-align: left;
    margin-top: 20px;
  }
}
.suer-columns .suer-right-column .column-footer .footer-menu a.baht {
  opacity: 0.7;
}

body.template-practice-areas .suer-columns .suer-right-column {
  overflow: visible;
}
@media screen and (min-width: 992px) {
  body.template-practice-areas .suer-columns .suer-right-column .content h1 {
    margin-left: -390px;
  }
}
body.template-practice-areas .suer-columns .suer-right-column .content h2 {
  color: var(--color-secondary);
  margin-top: 3rem;
}

body.anasayfa header {
  background-color: transparent !important;
}
body.anasayfa .suer-columns {
  height: 100vh;
  max-height: 100%;
}
body.anasayfa .suer-columns .suer-left-column {
  border-color: rgba(185, 170, 156, 0.1882352941);
}
body.anasayfa .suer-columns .suer-left-column ul.nav a {
  color: var(--color-white-rep);
}
body.anasayfa .suer-columns .suer-left-column .logo {
  display: none;
}
body.anasayfa .suer-columns .suer-right-column {
  align-items: center;
  padding-bottom: 0px;
}
body.anasayfa .suer-columns .suer-right-column .content {
  color: #fff;
  font-size: 1.2rem;
  max-width: 400px;
  opacity: 0;
  animation: revealUp 2s ease-out 2s 1 forwards;
}
body.anasayfa .suer-columns .suer-right-column .column-footer {
  bottom: 30px;
  border-top: 0;
}
body.anasayfa .suer-columns .suer-right-column .column-footer .address {
  color: rgba(255, 255, 255, 0.3764705882);
}
@media screen and (max-width: 991px) {
  body.anasayfa .suer-columns .suer-right-column .column-footer .address {
    display: none;
  }
}

.excerpt-w-circle {
  min-height: 500px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.excerpt-w-circle .circle {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3764705882), var(--color-secondary));
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .excerpt-w-circle {
    width: 100%;
    text-align: center;
  }
  .excerpt-w-circle .circle {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.scroll-text-container {
  position: relative;
  overflow-x: hidden;
  align-items: center;
  display: flex;
  height: 100%;
}
.scroll-text-container h1 {
  white-space: nowrap;
  font-size: 7rem;
  padding-left: 80vw;
  font-weight: 300;
}
.scroll-text-container h1 span {
  color: var(--color-secondary);
}

.team-list {
  padding: 150px 0;
}
.team-list .team-item {
  margin-bottom: 50px;
}
.team-list .team-item .team-image {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  position: relative;
}
.team-list .team-item .team-image img {
  filter: grayscale(1);
}
.team-list .team-item .team-image .circle {
  position: absolute;
  right: 0%;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3764705882), var(--color-secondary));
  border-radius: 50%;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.team-list .team-item .team-image:hover a {
  opacity: 1;
}
.team-list .team-item .team-image:hover a img {
  filter: grayscale(0);
}
.team-list .team-item .team-image:hover .circle {
  opacity: 1;
}
.team-list .team-item .team-info {
  padding: 15px 0;
}
.team-list .team-item .team-info a {
  color: var(--color-black-rep);
}
.team-list .team-item .team-info a h3 {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0;
}
.team-list .team-item .team-info a p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.team-modal .modal-header {
  border-color: var(--border-color);
}
.team-modal .modal-content {
  background-color: var(--color-white-rep);
}
.team-modal .modal-image {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  position: relative;
}
.team-modal .modal-image .circle {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3764705882), var(--color-secondary));
  border-radius: 50%;
  z-index: 1;
}
.team-modal .modal-image img {
  z-index: 2;
  position: relative;
  width: 100%;
}
.team-modal .row {
  padding-left: 15px;
  padding-right: 15px;
}
.team-modal .row .name {
  font-size: 1.4rem;
}
.team-modal .row a {
  color: var(--color-secondary);
  display: block;
}
.team-modal .row.first-section {
  align-items: end;
  border-bottom: 1px solid var(--border-color);
}
.team-modal .row.second-section p {
  margin-top: 20px;
}

body.template-contact h1 {
  max-width: 750px;
}
body.template-contact img.contact-hero {
  margin: -300px 0 -150px 300px;
  z-index: -1;
  position: relative;
}
@media screen and (max-width: 991px) {
  body.template-contact img.contact-hero {
    margin: 30px 0 0 0;
  }
}

body.template-team .tagline {
  display: none;
}

body.template-csr header .tagline {
  color: var(--color-white-rep);
}
body.template-csr h1 {
  padding-top: 150px;
  padding-bottom: 150px;
}
body.template-csr h3 {
  font-size: 1rem;
}
body.template-csr .su-circle {
  top: -100px;
  position: absolute;
}
body.template-csr .su-circle.blur {
  top: -50px;
  right: 150px;
  background: linear-gradient(45deg, rgba(225, 70, 38, 0.3137254902) 0%, rgba(255, 255, 255, 0.1882352941) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
  opacity: 0.8;
}
body.template-csr .su-circle.blur.smaller {
  top: 350px;
  right: -50px;
  opacity: 0.6;
}
body.template-csr .value-item img {
  width: 48px;
}

body.template-join .excerpt-w-circle .circle {
  background-image: url(../uploads/join.png);
  background-size: cover;
}/*# sourceMappingURL=main.css.map */