@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Ruthie&display=swap";
@import "https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap";
@import "https://fonts.googleapis.com/css2?family=La+Belle+Aurore&display=swap";
.header-relative {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(
    to top,
    rgba(16, 20, 21, 0) 0%,
    rgb(16, 20, 21) 100%
  );
  max-height: 100px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(3px);
  position: fixed;
  z-index: 15000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header-relative nav {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 10rem;
}
.header-relative nav .header-logo-wrapper {
  height: 100%;
}
.header-relative nav .header-logo-wrapper .header-logo {
  width: 100%;
  height: 100%;
}
.header-relative nav .header-logo-wrapper .header-logo img {
  width: 100%;
  height: 132px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 1rem;
}
.header-relative nav .header-menu-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 40%;
}
.header-relative nav .header-menu-links ul li {
  height: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-relative nav .header-menu-links ul li a {
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: #f8f8ff;
  font-weight: 300;
  opacity: 0.7;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  max-height: 13px;
  overflow: hidden;
}
.header-relative nav .header-menu-links ul li a .text {
  transition: 0.4s;
}
.header-relative nav .header-menu-links ul li a .span {
  transition: 0.4s;
}
.header-relative nav .header-menu-links ul li:hover {
  color: #1466aa;
  opacity: 1;
}
.header-relative nav .header-menu-links ul li:hover a {
  opacity: 1;
}
.header-relative nav .header-menu-links ul li:hover .text {
  margin-top: -1.3rem;
}
.header-relative nav .header-menu-links ul li:hover span {
  color: #f8f8ff !important;
}
.header-relative nav .header-menu-links ul li:hover span:hover {
  color: #f8f8ff !important;
}
.brand-nav {
  width: -moz-max-content;
  width: max-content;
  text-align: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(1, 192, 250, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  cursor: pointer;
  display: none;
}
.brand-nav a {
  padding: 2rem;
  width: 100%;
  height: 100%;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 400;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.4s;
}
.brand-nav a:hover {
  color: #c7f2dc;
  padding-right: 2.5rem;
}
.fast-call-absolute {
  position: fixed;
  right: 0;
  top: 1rem;
  width: 70px;
  height: 60px;
  background-color: rgba(245, 245, 245, 0.067);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 16000;
  border-radius: 45px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: none;
  cursor: pointer;
}
.fast-call-absolute:hover {
  width: 85px;
}
.fast-call-absolute:hover .call-text {
  opacity: 1;
}
.fast-call-absolute:hover img {
  opacity: 1;
}
.fast-call-absolute .call-text {
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  opacity: 0.6;
  transition: 0.4s;
}
.fast-call-absolute img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: 0.4s;
}
.header-menu-links {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 96px;
  justify-content: center;
}
body > header > nav > div > ul:nth-child(1) {
  justify-content: start !important;
  padding-left: 90px;
}
.header-location {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
}
#menu-bar-container {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  display: none;
  z-index: 1500;
}
#menu-bar-container i {
  font-size: 50 !important;
}
.modal-mobile-menu-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s;
}
.modal-mobile-menu-container.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: 0.4s !important;
}
@media screen and (max-width: 1200px) {
  .header-relative nav {
    padding: 1rem 3rem;
  }
  .header-menu-links {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1080px) {
  .header-relative nav {
    padding: 1rem 1rem;
  }
  body > header > nav > div > ul:nth-child(1) {
    padding-left: 1rem;
  }
  .absolute-line-container {
    height: 100% important;
  }
  .header-relative nav .header-menu-links ul {
    justify-content: end;
  }
}
@media screen and (max-width: 650px) {
  .header-relative nav .header-menu-links ul {
    display: none;
  }
  .chat-container {
    right: 0 !important;
    width: 100% !important;
  }
  #chat-box {
    width: 100% !important;
  }
  #menu-bar-container {
    display: flex;
  }
  .header-menu-links {
    justify-content: center !important;
  }
}
@media screen and (max-width: 500px) {
  .header-relative nav .header-logo-wrapper .header-logo img {
    height: 70px;
  }
  .header-relative {
    max-height: 70px;
  }
  .header-relative nav {
    padding: 0 1rem;
  }
}
.modal-mobile-menu-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(3, 10, 57, 0.787);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-mobile-menu-container .modal-mobile-menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.modal-mobile-menu-container .modal-mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-left: 0 !important;
  gap: 1rem;
  width: 100%;
  height: 100%;
}
.modal-mobile-menu-container .modal-mobile-menu ul li {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-mobile-menu-container .modal-mobile-menu ul li a {
  font-size: 2.5rem;
  letter-spacing: 4px;
  font-weight: 200;
}
.hero-section-absolute {
  width: 100%;
  height: 100vh;
  overflow-y: hidden;
  min-height: 100vh;
}
.hero-section-absolute .hero-wrapper-relative {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-section-absolute .hero-wrapper-relative::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101415;
  opacity: 0.6;
}
.hero-section-absolute .hero-wrapper-relative video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.absolute-line-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.absolute-line-container .line-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-90deg);
  width: 100vw;
  overflow: hidden;
}
.absolute-line-container .line-group .top-title {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: rgba(248, 248, 255, 0.4588235294);
}
.absolute-line-container .line-group .line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.453);
  margin: 10px 0;
  position: relative;
  overflow-y: hidden;
  overflow: hidden;
}
.absolute-line-container .line-group .line:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 100px;
  max-width: 40px;
  max-height: 100px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  animation: lineAfter 5s infinite alternate;
}
.absolute-line-container .line-group .bottom-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: rgba(248, 248, 255, 0.4156862745);
}
.absolute-line-container .line-group a {
  transition: 0.5s;
}
.absolute-line-container .line-group a:hover {
  padding-left: 50px !important;
  text-shadow: 0 0 10px rgba(199, 242, 220, 0.3333333333);
}
.absolute-line-container .line-group a:hover .top-title,
.absolute-line-container .line-group a:hover .bottom-title {
  color: #f8f8ff !important;
}
@keyframes lineAfter {
  0% {
    left: 900px;
  }
  100% {
    left: 0px;
  }
}
body
  > main
  > section
  > div.absolute-line-container
  > div:nth-child(1)
  > a:nth-child(1) {
  margin-left: -200px;
}
body
  > main
  > section
  > div.absolute-line-container
  > div:nth-child(1)
  > a:nth-child(3) {
  margin-left: 0px;
}
body
  > main
  > section
  > div.absolute-line-container
  > div:nth-child(2)
  > a:nth-child(1) {
  margin-left: 100px;
}
body
  > main
  > section
  > div.absolute-line-container
  > div:nth-child(2)
  > a:nth-child(3) {
  margin-left: -200px;
}
.line-group:nth-child(2) .line::after {
  animation-delay: 1s;
}
.scroll-icon {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  animation: scrollDown 1.4s infinite alternate;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.548);
  border-radius: 50%;
  cursor: pointer !important;
  z-index: 999;
  opacity: 0.6;
}
.scroll-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform: scale(3);
}
@keyframes scrollDown {
  0% {
    bottom: 50px;
  }
  100% {
    bottom: 65px;
  }
}
@media screen and (max-width: 1200px) {
  .absolute-line-container {
    height: 81%;
  }
}
@media screen and (max-width: 900px) {
  .hero-section-absolute {
    min-height: -moz-max-content;
    min-height: max-content;
    height: 60vh;
  }
  body
    > main
    > section
    > div.absolute-line-container
    > div:nth-child(2)
    > a:nth-child(3) {
    margin-left: 0;
  }
  body
    > main
    > section
    > div.absolute-line-container
    > div:nth-child(1)
    > a:nth-child(1) {
    margin-left: 0;
  }
  .absolute-line-container .line-group {
    width: auto !important;
  }
}
@media screen and (max-width: 900px) {
  .absolute-line-container .line-group .bottom-title {
    font-size: 2.5rem;
    width: -moz-max-content;
    width: max-content;
  }
  .absolute-line-container .line-group .top-title {
    font-size: 1.3rem;
  }
  .absolute-line-container .line-group {
    transform: rotate(0deg);
    width: 100vw !important;
  }
  .absolute-line-container {
    height: -moz-max-content;
    height: max-content;
    top: 30%;
    transform: translateY(-50%);
  }
  .absolute-line-container .line-group .top-title {
    width: -moz-max-content;
    width: max-content;
  }
  body
    > main
    > section
    > div.absolute-line-container
    > div:nth-child(2)
    > a:nth-child(1) {
    margin-left: 0;
  }
  body
    > main
    > section.hero-section-absolute
    > div.absolute-line-container
    > div:nth-child(2) {
    display: none;
  }
}
.hero-sub {
  min-height: 100vh;
  position: relative;
}
.hero-sub {
  width: 100%;
  height: 90rem;
  padding: 200px 100px;
}
.hero-sub .hero-sub-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
 
}
.img-box-relative img{
    border-radius:20px;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .profile-photo {
  width: 120px;
  height: 120px;
  border: 2px solid #ae9563;
  border-radius: 50%;
  overflow: hidden;
 
  cursor: pointer;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .profile-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .profile-photo:hover img {
  transform: scale(1.1);
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .relative-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-sm-title {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4.3px;
  color: #8b9999;
  font-family: "Playfair Display", serif;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-small-title {
    font-size: 3rem;
    letter-spacing: 0.4px;
    line-height: 1.5;
    font-weight: 900;
    color: #ae9563;
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
    max-width: 32ch;
    text-transform: uppercase;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid rgba(245, 245, 245, 0.1098039216);
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-text {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2.3px;
  line-height: 2;
  color: #8b9999;
  max-width: 83ch;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-signature {
  font-size: 5.2rem;
  font-weight: 300;
  color: #ae9563;
  font-family: "La Belle Aurore", cursive;
  position: relative;
  margin-left: 60px;
  font-weight: 100;
  font-style: italic;
  align-self: end;
  margin-right: 180px;
  margin-top: 40px;

  line-height: 0.4;
  z-index: -1;

  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-signature span {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  line-height: 0.4;
  z-index: 9999;
  color: #8b9999;
  margin-left: 60px;
  font-weight: 300;
  letter-spacing: 2px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(224, 182, 0, 0.2705882353);
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .img-box-absolute-left {
  position: absolute;
  left: -80px;
  bottom: -90px;
}
.hero-sub
  .hero-sub-wrapper
  .w-50-sub-col
  .img-box-absolute-left
  .img-box-relative {
  z-index: 50;
  width: 270px;
  height: 340px;
  position: relative;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .img-box-absolute-left .hero-sub-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  filter: grayscale(40%);
  border-radius: 25px;
}
.hero-sub .hero-sub-wrapper .w-50-sub-col .img-box-absolute-right {
  position: absolute;
  right: 46%;
  transform: translateX(50%);
  top: -50px;
  filter: contrast(1.08);
}
.hero-sub
  .hero-sub-wrapper
  .w-50-sub-col
  .img-box-absolute-right
  .img-box-relative {
  width: 500px;
  height: 550px;
  position: relative;
}
.hero-sub
  .hero-sub-wrapper
  .w-50-sub-col
  .img-box-absolute-right
  .hero-sub-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  filter: grayscale(20%);
  border-radius: 25px;
}
.w-50-sub-col.img-area {
  width: 40% !important;
  border-left: 1px solid rgba(245, 245, 245, 0.1098039216);
  border-bottom: 1px solid rgba(245, 245, 245, 0.1098039216);
  border-radius: 0px;
  margin-top: 0 !important;
  z-index: 900;
}
@media screen and (max-width: 1280px) {
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-small-title {
    font-size: 3rem;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-text {
    max-width: 65ch;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .profile-photo {
    left: -11px;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-signature {
    right: 100px;
    margin-right: 0px;
    bottom: -90px;
  }
}
@media screen and (max-width: 1180px) {
  .hero-sub
    .hero-sub-wrapper
    .w-50-sub-col
    .img-box-absolute-right
    .img-box-relative {
    width: 375px;
  }
  .hero-sub
    .hero-sub-wrapper
    .w-50-sub-col
    .img-box-absolute-left
    .img-box-relative {
    z-index: 50;
    width: 215px;
    height: 272px;
    position: relative;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .profile-photo {
    display: none;
  }
  .hero-sub
    .hero-sub-wrapper
    .w-50-sub-col
    .img-box-absolute-right
    .img-box-relative {
    width: 100%;
    height: 450px;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col {
    justify-content: start;
    padding-top: 100px !important;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .img-box-absolute-left {
    display: none;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .img-box-absolute-right {
    position: relative;
    right: 0;
    top: 0;
    transform: translate(0);
  }
  .w-50-sub-col.img-area {
    border: 0 !important;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col {
    padding-top: 0 !important;
  }
  .hero-sub {
    height: -moz-max-content;
    height: max-content;
  }
  .hero-sub {
    padding: 50px;
    min-height: -moz-max-content;
    min-height: max-content;
  }
}
@media screen and (max-width: 1060px) {
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-text {
    max-width: 58ch;
  }
}
@media screen and (max-width: 900px) {
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-text {
    max-width: 58ch;
  }
  .hero-sub
    .hero-sub-wrapper
    .w-50-sub-col
    .img-box-absolute-right
    .img-box-relative {
    height: 100% !important;
  }
}
@media screen and (max-width: 900px) {
  .hero-sub .hero-sub-wrapper {
    flex-direction: column !important;
    justify-content: start;
    align-items: center;
    gap: 50px;
  }
  .hero-sub {
    padding: 2rem;
    margin-top: 50px;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col {
    margin-top: 0;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col {
    align-items: center;
    text-align: center !important;
    width: 100%;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-small-title {
    max-width: 100%;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .hero-sub-signature {
    position: revert;
    margin: 0;
    padding: 0;
    margin-top: 40px;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col {
    width: 100% !important;
    height: auto !important;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col .img-box-absolute-right {
    width: 100%;
    height: 100%;
    position: revert;
  }
}
@media screen and (max-width: 600px) {
  .hero-sub .hero-sub-wrapper {
    gap: 90px;
  }
  .hero-sub .hero-sub-wrapper .w-50-sub-col.w-50-sub-col.img-area {
    display: none;
  }
}
.tab-menu {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #101415;
  position: relative;
}
.tab-menu .tab-menu-title {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  letter-spacing: 5px;
  font-weight: 300;
  color: #101415;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}
.tab-menu:before {
  content: "";
  width: 100%;
  height: 300px;
  background-color: #f7eed6;
  position: absolute;
  bottom: -45px;
  left: 0;
  z-index: 0;
}
.tab-menu .tabs {
  width: 100%;
  height: 80%;
  margin: auto;
  background-color: #f8f8ff;
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
}
.tab-menu .tabs .tab-header {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 5rem;
  padding-left: 80px;
}
.tab-menu .tabs .tab-header .tab-header-item {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 3rem;
  color: #131724;
  letter-spacing: 12px;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  transition: 0.4s;
}
.tab-menu .tabs .tab-header .tab-header-item span {
  position: absolute;
  top: -20px;
  left: 0px;
  letter-spacing: normal;
  color: #101415;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab-menu .tabs .tab-header .tab-header-item:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #101415;
  opacity: 0.3;
  transition: 0.5s;
}
.tab-menu .tabs .tab-header .tab-header-item:hover:after {
  width: 100%;
}
.tab-menu .tabs .tab-header .tab-header-item.active {
  transition: 0.4s;
}
.tab-menu .tabs .tab-header .tab-header-item.active:after {
  width: 100%;
}
.tab-menu .tabs .tab-content {
  width: 70%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #101415;
  border-bottom-left-radius: 25px;
  overflow: hidden;
}
.tab-menu .tabs .tab-content .tab-content-item {
  position: absolute;
  width: 100%;
  height: 100%;
}
.tab-menu .tabs .tab-content .tab-content-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tab-content-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out, z-index 0s linear 0.3s;
}
.tab-content-item.active {
  opacity: 1;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .tab-menu .tabs .tab-header .tab-header-item {
    font-size: 2rem;
  }
  .tab-menu .tabs .tab-header {
    padding-left: 3rem;
  }
  .tab-menu .tabs {
    justify-content: space-between;
  }
  .tab-menu .tab-menu-title {
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .tab-menu {
    display: none !important;
  }
}
.video-slider-container {
  max-width: 90%;
  height: 500px;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 150px;
  position: relative;
}
.video-slider-container:after {
  content: "";
  position: absolute;
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 200px;
  background: linear-gradient(to bottom, rgba(16, 20, 21, 0) 0%, #131724 100%);
  z-index: 500;
  pointer-events: none;
}
.video-slider-container .slick-list {
  height: 100%;
  padding-top: 4rem;
  margin: auto;
}
.video-slider-container .main-video {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.video-slider-container .main-video .video-slider {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.video-slider-container
  .main-video
  .video-slider
  .video-item-relative.wow.fadeInDown {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.video-slider-container .main-video .video-slider video {
  width: 90%;
  height: 400px;
  min-height: 400px;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.video-slider-container .main-video .video-slider .play-png {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.video-slider-container .main-video .video-slider .play-png:hover img {
  transform: translateY(-30px);
}
.video-slider-container .main-video .video-slider .play-png img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 12000;
  transition: 0.4s;
}
.video-slider-container .main-video .video-slider .video-title {
  font-size: 1.4rem;
  letter-spacing: 1.2px;
  font-weight: 300;
  color: #f8f8ff;
}
.video-slider-container .main-video .slider-title.wow.fadeInDown {
  font-size: 1.8rem;
  letter-spacing: 4px;
  margin-bottom: 1.3rem;
  font-weight: 600;
  color: #8b9999;
  text-transform: uppercase;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(164, 163, 163, 0.2784313725);
  font-family: "Playfair Display", serif;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 2rem;
  top: calc(50% - 200px);
  width: 350px;
  height: 540px;
  background-color: #fff;
  border: 2px solid silver;
  border-radius: 2em;
  overflow: hidden;
  z-index: 13000;
}
.modal video {
  -o-object-fit: cover;
  object-fit: cover;
}
.close {
  position: absolute;
  top: 15px;
  right: 10px;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 25px;
  background-color: #444;
  font-weight: bold;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 13100;
  cursor: pointer;
}
#prev-btn,
#next-btn {
  margin-top: 1rem;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  top: 10px;
  left: 10px;
  background-color: #444;
  font-weight: bold;
  color: #fff;
  border: none;
  cursor: pointer;
}
#prev-btn {
  left: 50px;
}
#next-btn:hover,
#prev-btn:hover {
  background-color: #ddd;
}
.progress-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 10px;
  z-index: 15000;
  left: 0;
}
.progress-bar-container {
  width: 100%;
  height: 100%;
  background-color: rgba(204, 204, 204, 0.5529411765);
  position: relative;
}
.progress-bar {
  height: 100%;
  background-color: #444;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  .video-slider-container {
    margin-top: 50px;
  }
  .video-slider-container:after {
    top: -245px;
  }
  .video-slider-container .main-video .slider-title.wow.fadeInDown {
    margin-bottom: 4rem;
  }
}
.footer {
  width: 100%;
  height: 600px;
  margin-top: 100px;
}
.footer .footer-wrapper-relative {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.footer .footer-wrapper-relative .footer-absolute-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer .footer-wrapper-relative .footer-absolute-video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101415;
  opacity: 0.6;
}
.footer .footer-wrapper-relative .footer-absolute-video video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.footer .footer-wrapper-relative .footer-absolute-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  padding-right: 90px;
  display: flex;
  gap: 50px;
  align-items: center;
}
.footer .footer-wrapper-relative .footer-absolute-content .footer-logo-area {
  width: 130px;
  height: 130px;
  overflow: hidden;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-logo-area
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer .footer-wrapper-relative .footer-absolute-content .footer-line-group {
  display: flex;
  gap: 100px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  .line-box {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  .top-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 5px;
  transform: rotate(-90deg);
  position: absolute;
  top: 45%;
  left: -1rem;
  width: -moz-max-content;
  width: max-content;
  color: #8b9999;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  .line {
  width: 600px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.238);
  transform: rotate(90deg);
  position: absolute;
  top: 50%;
  left: -200px;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  .line-box:nth-child(3)
  .top-title {
  left: -1rem;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  ul {
  position: absolute;
  top: 50%;
  left: 73%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  ul
  li
  a {
  font-size: 16px;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 4px;
  font-weight: 300;
  color: #d8dcdc;
  transition: 0.4s;
  padding: 1rem;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 290px;
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
}
.footer
  .footer-wrapper-relative
  .footer-absolute-content
  .footer-line-group
  ul
  li
  a:hover {
  color: #f8f8ff;
  background-color: rgba(139, 153, 153, 0.1803921569);
}
.bottom-link-group.social ul {
  margin-top: 4rem !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}
.bottom-link-group.social ul li {
  width: 40%;
  height: 100px;
}
.bottom-link-group.social ul li a {
  width: 100% !important;
  height: 100% !important;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  font-size: 20px !important;
}
.footer-sub {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-sub .links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
}
.footer-sub .links a {
  font-size: 1.2rem;
  color: #b7c1c1;
  letter-spacing: 0.4px;
  transition: 0.4s;
}
.footer-sub .links a:hover {
  color: #f8f8ff;
}
.footer2 {
  width: 100%;
  color: rgba(248, 248, 255, 0.9019607843);
  padding: 200px;
  padding-bottom: 2rem;
  padding-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.footer2 .footer2-relative-wrapper {
  width: 100%;
  position: relative;
}
.footer2 .footer2-relative-wrapper .footer2-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.footer2 .footer2-relative-wrapper .footer2-row .footer2-w-50 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}
.footer2 .footer2-relative-wrapper .footer2-row .footer2-w-50:nth-child(2) {
  
}
.footer2 .footer2-relative-wrapper .footer2-row .footer-2-title {
    font-size: 30px;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    color: #ae9562;
    letter-spacing: 4px;
    text-transform: uppercase;
    width: -moz-max-content;
    /* max-width: 30ch; */
    margin-bottom: 1rem;
    line-height: 1.4;
}
.footer2 .footer2-relative-wrapper .footer2-row .footer-2-text {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: rgba(248, 248, 255, 0.7411764706);
 
  margin-bottom: 1rem;
  line-height: 2;
  text-align: justify;
}
.footer2 .footer2-relative-wrapper .footer2-row .footer-2-logo-area {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.139);
}
.footer2 .footer2-relative-wrapper .footer2-row .footer-2-logo-area .logtitle {
  font-size: 50px;
  letter-spacing: 2px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: "La Belle Aurore", cursive;
  line-height: 0.9rem;
}
.footer2 .footer2-relative-wrapper .footer2-row .footer-2-logo-area .sub-text {
  font-size: 1.2rem;
  letter-spacing: 2px;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.8;
  margin-left: 50px;
  padding-top: 5px;
}
.footer2 .footer2-relative-wrapper .footer2-row .footer-2-logo-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 70%;
  padding: 4rem 3rem;
  padding-left: 0;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row .col-6 {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row li {
  list-style-type: none;
  font-size: 1.1rem;
  letter-spacing: 3px;
  width: -moz-max-content;
  width: max-content;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row a {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  transition: 0.4s;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row a i {
  color: #ae9563;
  font-size: 15px;
  transition: 0.4s;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row a i:hover {
  color: #f8f8ff;
}
.footer2 .footer2-relative-wrapper .footer2-row .link-row a:hover {
  color: #ae9563;
}
.footer2 .footer2-relative-wrapper .footer-bottom {
  margin-top: 100px;
  width: 100%;
}
.footer2 .footer2-relative-wrapper .footer-bottom .bottom-box-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}
.footer2 .footer2-relative-wrapper .footer-bottom .footer-images {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.footer2 .footer2-relative-wrapper .footer-bottom .footer-images img {
  width: 200px;
  height: 250px;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 20px;
  filter: grayscale(100%);
}
.footer2 .footer2-relative-wrapper .footer-bottom .footer-images img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.footer2 .footer2-relative-wrapper .footer-bottom .follow-instagram-btn {
  width: -moz-max-content;
  width: max-content;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  gap: 1rem;
  font-size: 2rem;
  font-family: "Ruthie", cursive;
  font-weight: 900;
  letter-spacing: 4px;
  background-color: #f8f8ff;
  color: #101415;
  transition: 0.4s;
  border-radius: 25px;
}
.footer2 .footer2-relative-wrapper .footer-bottom .follow-instagram-btn:hover {
  background-color: #ae9563;
  color: #f8f8ff;
}
.footer2 .footer2-relative-wrapper .footer-copyhright {
  margin-top: 100px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.119);
  width: 100%;
}
.footer2 .footer2-relative-wrapper .footer-copyhright .copyhright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer2 .footer2-relative-wrapper .footer-copyhright a {
  text-decoration: none;
  color: #f8f8ff;
  font-size: 1.2rem;
  letter-spacing: 2px;
  transition: 0.4s;
  border-left: 1px solid rgba(255, 255, 255, 0.119);
  height: 50px;
  display: flex;
  font-weight: 300;
  align-items: center;
  padding-left: 2rem;
}
.footer2 .footer2-relative-wrapper .footer-copyhright a:hover {
  color: #ae9563;
}
body > section > div > div.footer2-row > div:nth-child(2) {
  align-items: end !important;
}
@media screen and (max-width: 1280px) {
  .footer2 .footer2-relative-wrapper .footer2-row .footer2-w-50:nth-child(2) {
    padding-left: 0;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-text {
    max-width: 100%;
  }
  .footer2 {
    padding: 40px;
  }
  .footer2 .footer2-relative-wrapper .footer2-row {
    align-items: start;
  }
}
@media screen and (max-width: 900px) {
  .footer2 .footer2-relative-wrapper .footer-bottom .footer-images {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .footer2 .footer2-relative-wrapper .footer2-row {
    flex-direction: column;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer2-w-50 {
    width: 100%;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-title {
    align-self: center;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-text {
    text-align: center;
  }
  .footer2 {
    margin-top: 70px;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .link-row {
    width: 100%;
  }
  .footer2 .footer2-relative-wrapper .footer-copyhright .copyhright {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
    flex-direction: column;
  }
  .footer2 .footer2-relative-wrapper .footer-copyhright a {
    padding-left: 0;
    border-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer2 .footer2-relative-wrapper .footer-bottom .footer-images img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .footer2 .footer2-relative-wrapper .footer-bottom {
    margin-top: 40px;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-title {
    font-size: 30px;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-text {
    text-align: justify;
  }
  .masonry-gallery .masonry-header .masonry-title {
    font-size: 17px !important;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-logo-area {
    align-self: center;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .link-row {
    justify-content: center;
  }
  .footer2 .footer2-relative-wrapper .footer-copyhright .copyhright {
    gap: 0;
  }
  .footer2 .footer2-relative-wrapper .footer-copyhright .copyhright a {
    height: 30px;
  }
  .footer2 .footer2-relative-wrapper .footer-bottom .follow-instagram-btn {
    align-self: center;
  }
  .footer2 .footer2-relative-wrapper .footer2-row .footer-2-title {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.masonry-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  position: relative;
}
.masonry-gallery .masonry-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 67px;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(218, 209, 209, 0.119);
}
.masonry-gallery .masonry-header .masonry-title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f8f8ff;
  font-weight: 300;
  opacity: 0.7;
  font-family: "Playfair Display", serif;
}
.masonry-gallery .masonry-header p {
  color: #ae9563;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.masonry-gallery img,
.masonry-gallery video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
.masonry-gallery .cell {
  position: relative;
  margin-bottom: 24px;
  height: 0;
  overflow: hidden;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  border-radius: 8px;
  cursor: pointer;
}
.masonry-gallery .cell img,
.masonry-gallery .cell video {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
}
.masonry-gallery .cell:hover img {
  transform: scale(1.1);
}
.masonry-gallery .cell:hover video {
  transform: scale(1.1);
}
.masonry-gallery .masonry-body {
  width: 100%;
}
.masonry-gallery .masonry-body .container-masonry {
  margin: 40px auto;
  padding: 0 24px;
  width: 100%;
}
.masonry-gallery .masonry-body .container-masonry .masonry-grid {
  -moz-column-width: 296px;
  column-width: 296px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.masonry-gallery .masonry-body .container-masonry .cell.ratio4x3 {
  padding-bottom: 75%;
}
.masonry-gallery .masonry-body .container-masonry .cell.ratio1x1 {
  padding-bottom: 100%;
}
.masonry-gallery .masonry-body .container-masonry .cell.ratio16x9 {
  padding-bottom: 56.25%;
}
.masonry-gallery .masonry-body .container-masonry .cell.ratio9x16 {
  padding-bottom: 177.77%;
}
.masonry-gallery .masonry-body .container-masonry .cell.ratio3x4 {
  padding-bottom: 133.33%;
}
.load-more-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #131724;
  z-index: 1000;
}
.load-more-container .load-more-relative-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  border-top: 1px solid rgba(218, 209, 209, 0.119);
}
.load-more-container .load-more-relative-wrapper img,
.load-more-container .load-more-relative-wrapper video {
  position: absolute;
  top: -180px;
  width: 100%;
  height: 200px;
  filter: blur(6px);
  width: 100%;
  z-index: -1;
}
.load-more-container .load-more-relative-wrapper .load-more-btn {
  position: absolute;
  top: -24px;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.6px;
  color: #f8f8ff;
  font-weight: 600;
  border-radius: 25px;
  background-color: #8b9999;
  padding: 16px 24px;
  cursor: pointer;
  transition: 0.4s;
  z-index: 18000;
}
.load-more-container .load-more-relative-wrapper .load-more-btn:hover {
  background-color: #f8f8ff;
  color: #8b9999;
}
.works-page {
  padding: 0 100px;
  margin-bottom: 0px;
}
.works-page .masonry-gallery {
  border-radius: 25px;
  padding: 3rem;
}
.works-page .masonry-gallery .works-header {
  padding: 50px 70px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  align-items: center !important;
  text-align: center;
  line-height: 1.3;
  border-bottom: 1px solid rgba(238, 238, 238, 0.0549019608);
  margin-bottom: 30px;
  border-radius: 25px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(238, 238, 238, 0.0549019608);
  margin-bottom: 30px;
}
.works-page .masonry-gallery .works-header .works-big-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 5px;
  color: #ae9563;
  font-family: "Playfair Display", serif;
}
.works-page .masonry-gallery .works-header .works-medium-title {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 10px;
  color: #8b9999;
  text-align: center;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .masonry-gallery .masonry-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .masonry-gallery .masonry-header {
    margin-bottom: 0;
  }
  .masonry-gallery {
    margin-top: 75px;
    max-height: 2000px;
    overflow: hidden;
  }
}
@media screen and (max-width: 1280px) {
  .works-page {
    padding: 0 30px;
  }
  .works-page .masonry-gallery {
    padding: 0;
  }
  .works-page .masonry-gallery .masonry-body .container-masonry {
    padding: 0;
  }
  .works-page .masonry-gallery {
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
@media screen and (max-width: 600px) {
  .services .services-header .services-big-title.wow.fadeInDown {
    font-size: 30px;
  }
  .services .services-header .services-medium-title.wow.fadeInDown {
    font-size: 20px;
  }
  .works-page .masonry-gallery .works-header {
    padding: 0 20px;
    padding-top: 50px;
  }
  .works-page .masonry-gallery .works-header .works-big-title {
    font-size: 20px;
  }
  .works-page .masonry-gallery .works-header .works-medium-title {
    padding-bottom: 2rem;
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .services:after {
    display: none;
  }
  .services .services-header .services-small-title.wow.fadeInDown {
    display: none;
  }
  .services .services-header .services-big-title.wow.fadeInDown {
    color: #fff !important;
  }
  .services .services-header .services-medium-title.wow.fadeInDown {
    color: #fff !important;
  }
  .services .services-header .services-small-title.wow.fadeInDown {
    color: #fff !important;
  }
  .contact-now .text .text-body {
    color: #fff !important;
  }
  .services .services-header {
    max-width: 100%;
    text-align: center;
  }
  .services .services-header .services-big-title.wow.fadeInDown {
    font-size: 24px !important;
    max-width: 25ch !important;
    text-align: center !important;
  }
  .services .services-header .services-medium-title.wow.fadeInDown {
    display: none;
  }
  .services {
    margin-top: 300px !important;
  }
}
@media screen and (max-width: 400px) {
  .services .services-header .services-small-title.wow.fadeInDown {
    display: none;
  }
}
main .about-page-wrapper {
  margin-top: 100px;
  padding: 150px;
  width: 100%;
}
main .about-page-wrapper .about-page-row {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
}
main .about-page-wrapper .about-page-row .absolute-img-wrapper {
  position: absolute;
  z-index: -1;
  bottom: -250px;
  left: -100px;
  width: 90%;
  height: auto;
}
main .about-page-wrapper .about-page-row .absolute-img-wrapper img {
  filter: brightness(0) invert(1);
  opacity: 0.1;
}
main .about-page-wrapper .about-page-row .col-text {
  display: flex;
  flex-direction: column;
  width: 50%;
}
main .about-page-wrapper .about-page-row .col-img {
  width: 40%;
  height: 600px;
}
main .about-page-wrapper .about-page-row .about-page-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  letter-spacing: 7px;
  font-weight: 100;
  text-transform: uppercase;
  font-family: "Display", serif;
  color: rgba(248, 248, 255, 0.8156862745);
}
main .about-page-wrapper .about-page-row .about-page-sub-title {
  font-size: 4rem;
  font-family: "Display", serif;
  font-style: italic;
  font-weight: bold;
  color: #ae9563;
  margin-bottom: 1.5rem;
}
main .about-page-wrapper .about-page-row .about-page-text {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #8b9999;
    line-height: 1.9;
    font-weight: 300;
    text-align: justify;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-text{
    max-height: 220px;
    overflow-y: auto;
    padding-right: 10px;
}
/* Scrollbar için genel ayarlar */
main .about-page-wrapper .about-page-row .about-page-text::-webkit-scrollbar {
    width: 8px; /* Scrollbar genişliği */
    background-color: #f1f1f12f; /* Scrollbar arka plan rengi */
}

/* Scrollbar'ın üst kısmı (track) */
main .about-page-wrapper .about-page-row .about-page-text::-webkit-scrollbar-track {
    background: #f1f1f12c; /* Track arka plan rengi */
    border-radius: 10px; /* Köşeleri yuvarlamak için */
    
}

/* Scrollbar'ın kaydırıcı kısmı (thumb) */
main .about-page-wrapper .about-page-row .about-page-text::-webkit-scrollbar-thumb {
    background: #8b9999; /* Kaydırıcının rengi */
    border-radius: 10px; /* Köşeleri yuvarlamak için */
}

/* Kaydırıcıya hover efekti eklemek için */
main .about-page-wrapper .about-page-row .about-page-text::-webkit-scrollbar-thumb:hover {
    background: #6a7c7c; /* Hover durumunda kaydırıcı rengi */
}




.blog-page .blog-page-wrappper .row-blog-banner .blog-text::-webkit-scrollbar {
    width: 8px; /* Scrollbar genişliği */
    background-color: #f1f1f12f; /* Scrollbar arka plan rengi */
}

/* Scrollbar'ın üst kısmı (track) */
.blog-page .blog-page-wrappper .row-blog-banner .blog-text::-webkit-scrollbar-track {
    background: #f1f1f12c; /* Track arka plan rengi */
    border-radius: 10px; /* Köşeleri yuvarlamak için */
    
}

/* Scrollbar'ın kaydırıcı kısmı (thumb) */
.blog-page .blog-page-wrappper .row-blog-banner .blog-text::-webkit-scrollbar-thumb {
    background: #8b9999; /* Kaydırıcının rengi */
    border-radius: 10px; /* Köşeleri yuvarlamak için */
}

/* Kaydırıcıya hover efekti eklemek için */
.blog-page .blog-page-wrappper .row-blog-banner .blog-text::-webkit-scrollbar-thumb:hover {
    background: #6a7c7c; /* Hover durumunda kaydırıcı rengi */
}

@media(max-width:600px){
    main .about-page-wrapper .about-page-row .about-page-text {
       
        max-height:max-content;
        overflow-y: hidden;
        padding-right: 0px;
    }
    .blog-page .blog-page-wrappper .row-blog-banner .blog-text {
       
        max-height:max-content;
        overflow-y: hidden;
        padding-right: 0px;
    }
}

main .about-page-wrapper .about-page-row .img-wrapper {
  width: 100%;
  height: 100%;
}
main .about-page-wrapper .about-page-row .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  filter: saturate(140%);
  border-radius: 25px;
}
main .about-page-wrapper .about-page-row .img-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  filter: saturate(140%);
  border-radius: 25px;
  border-top-left-radius: 225px;
  border-top-right-radius: 225px;
}
main .about-page-wrapper .about-page-row:nth-child(2) {
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: end;
  margin-top: -100px;
}
@media screen and (max-width: 1280px) {
  main .about-page-wrapper {
    padding: 50px;
  }
}
@media screen and (max-width: 1100px) {
  main .about-page-wrapper .about-page-row .about-page-sub-title {
    font-size: 3rem;
  }
  main .about-page-wrapper .about-page-row .about-page-title {
    font-size: 1.3rem;
  }
  main .about-page-wrapper .about-page-row .img-wrapper img {
    -o-object-position: center !important;
    object-position: center !important;
  }
  main .about-page-wrapper {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  main .about-page-wrapper .about-page-row {
    flex-direction: column;
    gap: 2rem;
  }
  main .about-page-wrapper .about-page-row .col-text {
    width: 100%;
  }
  main .about-page-wrapper .about-page-row .col-img {
    width: 100%;
    height: 400px;
  }
  main .about-page-wrapper .about-page-row .img-wrapper video {
    border-radius: 20px !important;
  }
  main .about-page-wrapper .about-page-row:nth-child(2) {
    margin-top: 80px;
  }
  main .about-page-wrapper .about-page-row .about-page-sub-title {
    font-size: 2rem;
  }
  main .about-page-wrapper .about-page-row:nth-child(2) {
    align-items: start;
  }
  main .about-page-wrapper .about-page-row .about-page-text {
    letter-spacing: 0.5px;
  }
}
@media screen and (max-width: 600px) {
  main .about-page-wrapper .about-page-row:nth-child(2) {
    flex-direction: column;
  }
  main .about-page-wrapper {
    padding: 30px;
    margin-bottom: 50px;
  }
}
.chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 22500;
  color: #f8f8ff;
}
#chat-icon {
  font-size: 30px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.052);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite alternate ease-in-out;
}
#chat-icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
#chat-box {
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(16, 20, 21, 0.9098039216);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  height: 400px;
  transition: all 0.4s ease;
}
.hidden {
  transform: translateY(100%);
  opacity: 0;
  transition: 0.4s;
  visibility: hidden;
  width: 0 !important;
  height: 0 !important;
}
#chat-header {
  background-color: rgba(19, 23, 36, 0.5803921569);
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  padding: 15px;
  justify-content: start;
  align-items: center;
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#chat-header img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#chat-content {
  padding: 10px;
  flex-grow: 1;
  overflow-y: auto;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #f8f8ff;
  padding: 2rem;
}
#chat-input-container {
  display: flex;
  padding: 20px;
  background-color: rgba(19, 23, 36, 0.5803921569);
  width: 100%;
  letter-spacing: 1px;
  font-size: 1.2rem;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
#user-input {
  flex-grow: 1;
  padding: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
  letter-spacing: 1px;
  font-size: 1.3rem;
  color: #8b9999;
  background: rgba(25, 27, 41, 0);
}
#send-btn {
  background-color: #1566aa;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1.4rem;
}
#send-btn:hover {
  background-color: #0056b3;
}
.bot-response {
  padding: 10px;
  margin-top: 5px;
  background-color: rgba(20, 103, 170, 0.0745098039);
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.bot-response:nth-child(1) {
  max-width: 100%;
  background-color: #ccc;
  color: #101415;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bot-response.hidden {
  display: none !important;
}
.typing-indicator {
  display: flex;
  align-items: center;
  padding: 10px;
}
.typing-indicator span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  opacity: 0;
  animation: typing 1s infinite;
}
.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}
.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
.first-message-typing-indicator {
  display: flex;
  align-items: center;
  padding: 10px;
}
.first-message-typing-indicator span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  opacity: 0;
  animation: typing 1s infinite;
}
.first-message-typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}
.first-message-typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}
.first-message-typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}
#first-message-typing-indicator-template.hidden {
  display: none !important;
}
#bot-message {
  padding: 10px;
  margin-top: 5px;
  background-color: rgba(20, 103, 170, 0.0745098039);
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.user-message {
  padding: 10px;
  margin-top: 5px;
  background-color: #1466aa;
  border-radius: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.bot-response label {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(32, 32, 34, 0.2039215686);
  color: #8b9999;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.bot-response a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bot-response a .icon {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1466aa;
  border-radius: 5px;
  color: #f8f8ff;
}
.bot-response a:hover {
  color: #1466aa;
}
@keyframes typing {
  0%,
  60%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}
#close-btn {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: #f8f8ff;
  font-size: 3rem;
  cursor: pointer;
  margin-left: auto;
}
.main-contact-us {
  width: 100%;
  height: auto;
  padding-bottom: 70px;
  margin-bottom: 150px;
  z-index: 12000;
}
.main-contact-us .main-contact-wrapper-relative {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main-contact-us .main-contact-wrapper-relative .main-contact-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .main-conctact-header {
    font-size: 1.7rem;
    letter-spacing: 5px;
    width: 100%;
    color: #8b9999;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    align-self: center;
    line-height: 1.5;
    max-width: 55ch;
    font-weight: 300;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .main-conctact-header
  b {
  letter-spacing: 10px;
  color: #ae9563;
}
.main-contact-us .main-contact-wrapper-relative .main-contact-body .body-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 80%;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .body-row:nth-child(3) {
  flex-direction: row-reverse;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .main-contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 20px;
  border: 1px solid #ae9563;
  width: 230px;
  letter-spacing: 3px;
  text-transform: uppercase;
  height: 70px;
  border-radius: 45px;
  gap: 10px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.4s;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .main-contact-btn:hover {
  padding-left: 4px;
  border: 1px solid #fff;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .main-contact-btn
  .fa-solid.fa-arrow-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.397);
  border-radius: 50%;
  font-size: 22px;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .img-overloud {
  width: 200px;
  height: 70px;
  overflow: hidden !important;
  border-radius: 45px;
  border: 1px solid #ae9563;
  cursor: pointer;
  transition: 0.4s;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .img-overloud:hover {
  border: 1px solid #fff;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .img-overloud:hover
  img {
  transform: scale(1.1);
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .img-overloud
  img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: 0.4s;
  width: 100%;
  height: 100%;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .text-overloud {
  font-size: 35px;
  font-weight: 100;
  letter-spacing: 5px;
  font-family: "Playfair Display", serif;
  color: #8b9999;
  font-family: "Roboto", serif;
}
.main-contact-us
  .main-contact-wrapper-relative
  .main-contact-body
  .text-overloud
  b {
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 50px;
  color: #f8f8ff;
  font-family: "Playfair Display", serif;
  text-shadow: 0 0 1px #131724;
}
.absolute-frame {
  position: absolute;
  z-index: -1;
  bottom: -569px;
  width: 90%;
  height: auto;
  pointer-events: none;
}
.absolute-frame img {
  filter: brightness(0) invert(1);
  opacity: 0.1;
}
@media screen and (max-width: 1250px) {
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .text-overloud
    b {
    font-size: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .text-overloud {
    font-size: 22px;
  }
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .text-overloud
    b {
    font-size: 30px;
  }
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .img-overloud {
    width: 150px;
    height: 50px;
  }
}
@media screen and (max-width: 769px) {
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .body-row:nth-child(3) {
    flex-direction: column-reverse;
  }
  .main-contact-us .main-contact-wrapper-relative .main-contact-body .body-row {
    flex-direction: column;
  }
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .img-overloud {
    width: 200px;
    height: 70px;
  }
  .main-contact-us .main-contact-wrapper-relative .main-contact-body {
    gap: 0;
  }
  .main-contact-us {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 769px) {
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .text-overloud {
    line-height: 1.4;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .main-contact-us
    .main-contact-wrapper-relative
    .main-contact-body
    .main-conctact-header {
    padding: 1rem;
  }
}
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 500px;
  position: relative;
  width: 100%;
  height: 300px;
  position: relative;
}
.services:after {
    content: "";
    position: absolute;
    top: -35%;
    left: 0!important;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 500px;
    background: #fff;
    z-index: -1;
}
.services .services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: -200px;
  width: -moz-max-content;
  width: max-content;
  left: 50%;
  transform: translate(-50%, -50%);
}
.services .services-header .services-big-title.wow.fadeInDown {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 10px;
  padding-left: 10px;
  font-weight: 900;
  color: #8b9999;
}
.services .services-header .services-medium-title.wow.fadeInDown {
  font-size: 24px;
  letter-spacing: 4px;
  color: #101415;
  font-weight: 300;
}
.services .services-header .services-small-title.wow.fadeInDown {
  font-size: 14px;
  letter-spacing: 10px;
  color: #101415;
  font-weight: 300;
  padding-left: 10px;
}
.services .slider {
  position: relative;
  width: 230px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotates 30s linear infinite;
}
.services .slider span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(350px);
}
.services .slider span:hover .title {
  margin-top: -20px;
}
.services .slider span .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
  z-index: 999;
  letter-spacing: 4px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.4s;
}
.services .slider span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.144), transparent);
  pointer-events: none;
  transform-origin: center;
  transform: rotateY(180deg);
}
.services .slider span img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  border-radius: 14px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 2s;
  cursor: pointer;
  background-color: #101415;
}
.services .slider span img:hover {
  opacity: 0.5;
}
@keyframes rotates {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}
.contact-now {
  margin-top: 30px;
  border-radius: 25px;
  padding: 12px 24px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
}
.contact-now:hover .text-body {
  margin-top: -23px;
}
.contact-now .text {
  width: 100%;
  height: 100%;
  max-height: 17px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 6px;
}
.contact-now .text .text-body {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 4px;
  color: #101415;
  transition: 0.5s;
}
.contact-now .text span {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #101415;
}
.contact-page {
  width: 100%;
  padding: 120px;
  padding-bottom: 0;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-page .section.contact-page-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-page .section.contact-page-wrapper .contact-page-main-title {
  font-size: 2.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ae9563;
}
 {
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 50px 120px;
  padding-top: 75px;
  width: 100%;
  border-radius: 20px;
  margin-top: 3rem;
}
 .col-60 {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.col-40 {
  width: 40%;
}
 .col-60-header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-header
  .col-60-main-title {
  font-size: 1.6rem;
  color: #ae9563;
  font-family: "Playfair Display", serif;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-header
  .col-60-title-sub {
  font-size: 1.3rem;
  color: #f8f8ff;
  letter-spacing: 2px;
  font-weight: 300;
}
 .col-60-form {
  width: 100%;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem;
  padding-left: 0;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .form-group-two-item {
  width: 100%;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .form-group-two-item
  .input-group-wrapper-w-100 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 0.4rem;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .form-group-two-item
  .input-group-w-50 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .form-group-two-item
  .input-group-w-50
  label {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #8b9999;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .form-group-two-item
  .input-group-w-50
  input {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #8b9999;
  width: 100%;
  height: 4rem;
  border: 1px solid #ae9563;
  outline: none;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 20px;
  color: #fff;
  font-weight: 600;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .input-group-wrapper-w-100 {
  width: 100%;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .input-group-wrapper-w-100
  .input-group-w-100 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .input-group-wrapper-w-100
  .input-group-w-100
  label {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #8b9999;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .input-group-wrapper-w-100
  .input-group-w-100
  textarea {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #8b9999;
  width: 100%;
  height: 7rem;
  border: 1px solid #ae9563;
  outline: none;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  color: #fff;
  font-weight: 600;
  resize: none;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .send-btn {
  width: 12rem;
  height: 4rem;
  background-color: #ae9563;
  outline: none;
  border-radius: 10px;
  border: none;
  outline: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.4s;
}
.contact-page
  .section.contact-page-wrapper
  .contact-container
  .col-60-form
  .send-btn:hover {
  background-color: #1466aa;
}
 .col-40-title {
  font-size: 1.6rem;
  color: #ae9563;
  font-family: "Playfair Display", serif;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}

  .col-40-title-sub {
  font-size: 1.3rem;
  color: #8b9999;
  line-height: 1.6;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
 .adress-title {
  font-size: 1.6rem;
  color: #ae9563;
  font-family: "Playfair Display", serif;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}
 .adress {
  font-size: 1.3rem;
  color: #8b9999;
  line-height: 1.3;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 1.6rem;
}
 .google-map {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

  .google-map
  .absolute-link {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.4s;
  font-size: 2rem;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
}

  .google-map:hover
  .absolute-link {
  opacity: 1;
  pointer-events: all;
}

  .google-map
  iframe {
  width: 100%;
  height: 100%;
}

  .social-media-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
  margin-top: 5rem;
}

  .social-media-links
  .links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

  .social-media-links
  label {
  font-size: 1.3rem;
  color: #8b9999;
  letter-spacing: 2px;
  font-weight: 300;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(238, 238, 238, 0.0549019608);
}

  .social-media-links
  a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #f8f8ff;
  text-decoration: none;
  font-weight: 300;
  transition: 0.4s;
}

  .social-media-links
  a:hover {
  color: #ae9563;
}
.apply-for-data {
  display: flex;
  align-items: center;
}
.apply-for-data input[type="checkbox"] {
  display: none;
}
.apply-for-data .data-text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  color: #8b9999;
  line-height: 1;
}
.apply-for-data .data-text a {
  color: #ae9563;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
}
.apply-for-data .data-text a:hover {
  text-decoration: underline;
  color: #1466aa;
}
.apply-for-data label {
  display: flex;
  cursor: pointer;
}
.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #ae9563;
  border-radius: 4px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
}
.custom-checkbox::after {
  content: "✓";
  font-size: 16px;
  color: #ae9563;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}
input[type="checkbox"]:checked + label .custom-checkbox::after {
  transform: scale(1);
}
@media screen and (max-width: 1280px) {
  .contact-page {
    padding: 120px 30px;
  }
   {
    padding: 50px 0;
  }
}
@media screen and (max-width: 900px) {
   {
    flex-direction: column;
  }
   .col-60 {
    width: 100%;
  }
  .contact-page
    .section.contact-page-wrapper
    .contact-container
    .col-60-form
    form {
    padding: 4rem 0 !important;
  }
 .col-40 {
    width: 100%;
  }
 .google-map {
    height: 345px;
  }
}
.blog-page {
  padding: 170px;
  padding-top: 130px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-page .blog-page-title {
  font-size: 1.6rem;
  color: #8b9999;
  letter-spacing: 4px;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 40ch;
  line-height: 1.3;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(238, 238, 238, 0.0549019608);
  align-self: start;
}
.blog-page .blog-page-sub-title {
  font-size: 2rem;
  letter-spacing: 4px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  color: #ae9563;
  align-self: start;
}
.blog-page .blog-page-wrappper {
  width: 100%;
  margin-top: 3rem;
}
.blog-page .blog-page-wrappper .row-blog-banner {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 40px;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-banner-img-col {
  width: 50%;
  height: 35rem;
  border-radius: 20px;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-banner-text-col {
  width: 50%;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-banner-img {
  width: 100%;
  height: 100%;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-banner-img .lazy {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-title {
    font-size: 1.6rem;
    color: #f8f8ff;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
    max-width: 95%;
    text-transform: capitalize;
    line-height: 1.3;
    padding-bottom: 1rem;
}
.blog-page .blog-page-wrappper .row-blog-banner .blog-text {
  font-size: 1.3rem;
  color: #8b9999;
  line-height: 1.7;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 1.6rem;
  text-align: justify;
}
.blog-page .blog-page-wrappper .row-blog-banner .read-more {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #f8f8ff;
  border: 1px solid rgba(255, 255, 255, 0.563);
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 20px;
  width: 140px;
  height: 40px;
  transition: 0.4s;
}
.blog-page .blog-page-wrappper .row-blog-banner .read-more:hover {
  padding-left: 6px;
}
.blog-page .blog-page-wrappper .row-other-blogs {
  margin-top: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.blog-page .blog-page-wrappper .row-other-blogs .blog-card-relative {
  flex: 1 1 22.5%;
  max-width: 400px;
  height: 100%;
  position: relative;
  height: 300px;
  background-color: #131724;
}
.blog-page
  .blog-page-wrappper
  .row-other-blogs
  .blog-card-relative:hover:after {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.blog-page .blog-page-wrappper .row-other-blogs .blog-card-relative:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 0;
  transition: 0.3s;
}
.blog-page .blog-page-wrappper .row-other-blogs .blog-card-img {
  width: 100%;
  height: 100%;
}
.blog-page .blog-page-wrappper .row-other-blogs .blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.2s;
}
.blog-page .blog-page-wrappper .row-other-blogs .blog-content-absolute {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  z-index: 500;
  flex-direction: column;
}
.blog-page
  .blog-page-wrappper
  .row-other-blogs
  .blog-content-absolute
  .blog-card-title {
  font-size: 1.3rem;
  color: #f8f8ff;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: 40ch;
  line-height: 1.3;
  padding-bottom: 1rem;
}
.blog-page
  .blog-page-wrappper
  .row-other-blogs
  .blog-content-absolute
  .go-details {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #f8f8ff;
  border: 1px solid rgba(255, 255, 255, 0.563);
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 20px;
  width: 120px;
  height: 30px;
  transition: 0.4s;
}
.blog-page
  .blog-page-wrappper
  .row-other-blogs
  .blog-content-absolute
  .go-details:hover {
  padding-left: 6px;
}
.blog-details-wrapper {
  width: 100vw;
  margin-top: 20px;
  margin-bottom: 130px;
  background-color: #fff;
  padding: 100px 140px;
}
.blog-details-wrapper .lazy {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  float: left;
  margin-right: 3rem;
  border-radius: 20px;
}
.blog-details-wrapper .text {
  font-size: 1.3rem;
  color: #101415;
  line-height: 1.9;
  letter-spacing: 2px;
  font-weight: 300;
  text-align: justify;
}
.blog-details-wrapper .text .blog-page-sub-title {
  text-align: left;
  color: #101415;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1280px) {
  .blog-page {
    padding: 170px 40px;
  }
}
@media screen and (max-width: 650px) {
  .blog-page .blog-page-wrappper .row-blog-banner {
    flex-direction: column;
  }
  .blog-page .blog-page-wrappper .row-blog-banner .blog-banner-img-col {
    width: 100%;
  }
  .blog-page .blog-page-wrappper .row-blog-banner .blog-banner-text-col {
    width: 100%;
  }
  .blog-page .blog-page-wrappper .row-other-blogs .blog-card-relative {
    flex: 1 1 45%;
  }
}
@media screen and (max-width: 500px) {
  .blog-page {
    padding: 170px 13px !important;
  }
  .blog-page .blog-page-wrappper .row-other-blogs {
    gap: 9px;
  }
}
@media screen and (max-width: 420px) {
  .blog-page .blog-page-wrappper .row-other-blogs .blog-card-relative {
    flex: 1 1 90%;
  }
  .blog-page .blog-page-wrappper .row-other-blogs {
    gap: 1.3rem;
  }
}
.videos-page {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}
.videos-page .videos-page-wrapper-relative {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.videos-page .videos-page-wrapper-relative video {
  flex: 1 20% !important;
  height: 400px;
  margin: 5px;
  -o-object-fit: cover;
  object-fit: cover;
}
.videos-page .videos-page-wrapper-relative .videos-absolute-header {
  position: absolute;
  top: 200px;
  left: 70px;
  font-size: 70px;
  max-width: 55ch;
  z-index: 12200;
  font-weight: 900;
  letter-spacing: 3px;
}
.videos-page
  .videos-page-wrapper-relative
  .videos-absolute-header
  .videos-top-sm-title {
  clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #fff;
}
.videos-page
  .videos-page-wrapper-relative
  .videos-absolute-header
  .videos-top-title {
  font-size: 20px;
  letter-spacing: 7px;
}
.videos-page
  .videos-page-wrapper-relative
  .videos-absolute-header
  .videos-top-md-title {
  font-size: 30px;
  font-weight: 300;
  margin-top: 1rem;
  letter-spacing: 14px;
}
@media screen and (max-width: 768px) {
  .videos-page .videos-page-wrapper-relative .videos-absolute-header {
    max-width: 95%;
  }
  .videos-page .videos-page-wrapper-relative .videos-absolute-header {
    font-size: 40px;
  }
  .videos-page
    .videos-page-wrapper-relative
    .videos-absolute-header
    .videos-top-title {
    max-width: 40ch;
  }
  .videos-page
    .videos-page-wrapper-relative
    .videos-absolute-header
    .videos-top-md-title {
    font-size: 1.5rem;
    max-width: 40ch;
  }
  .videos-page .videos-page-wrapper-relative {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .videos-page .videos-page-wrapper-relative .videos-absolute-header {
    top: 130px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}
html {
  font-size: 62.5%;
}
* {
  box-sizing: border-box;
}
body {
  background-color: #131724;
  color: #f8f8ff;
  width: 100%;
  min-height: 100vh;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style: none;
}
main {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.lazy {
  background-image: linear-gradient(
    135deg,
    rgba(20, 103, 170, 0.0745098039) 25%,
    rgba(20, 103, 170, 0.2) 50%,
    rgba(20, 103, 170, 0.0745098039) 75%
  );
  transition: all 1s linear !important;
  background-size: 400% 400%;
  animation: gradientAnimation 5s infinite;
}
.lazy.loaded {
  background-image: none;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.video-popup-container {
  width: 300px;
  height: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s;
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 22000;
}
.video-popup-container .popup-relative {
  width: 100%;
  height: 100%;
  position: relative;
}
.video-popup-container .popup-relative .close-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 20px;
  cursor: pointer;
  color: #f8f8ff;
  background-color: #8b9999;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-popup-container .popup-relative video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-popup-container.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}
@media screen and (max-width: 768px) {
  .video-popup-container {
    display: none !important;
  }
}
.detail-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 170px;
  max-width: 1440px;
  margin: auto;
}
.detail-page .detail-page-title {
  font-size: 34px;
  font-weight: 900;
  color: #ae9563;
  margin-bottom: 5px;
  text-align: center;
}
.detail-page .detail-page-sub-title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #8b9999;

  text-align: center;
  margin-bottom: 80px;
}
.detail-page .section-rows {
  width: 100%;
}
.detail-page .section-rows .col {
  width: 100%;
  display: flex;
  align-items: center;
}
.detail-page .section-rows .col {
    display: flex; /* Flexbox kullanımı */
    position: relative; /* Konumlandırma için gerekli */
  }
  
  .detail-page .section-rows .col:nth-child(even) {
    flex-direction: row-reverse; /* Çift sayılı sütunlar ters yönde */
  }
  
  .detail-page .section-rows .col:nth-child(even) .body {
    text-align: right;
    align-items: end;
    padding-right: 30px;
  }
  
  .detail-page .section-rows .col:nth-child(even) .link-portfolio {
    align-self: end;
  }

  .detail-page .section-rows .body{
    padding-top: 50px;
  }
  .body-text ul{
    padding: 0;
    margin: 0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;list-style: none!important;
    list-style-type: none;
    margin-bottom: 1.2rem;
}
.body-text ul li{
    
    font-size: 13px;
    font-weight: 300;
    color: #78aac5;
    letter-spacing: 2px;
    position: relative;
    list-style: none!important;
    list-style-type: none;
    transition: .4s;
    cursor: pointer;
}
.body-text ul li:hover{
    color: #fff;
}
      .body-text ul li {
    position: relative; /* İlişkilendirilmiş pozisyon için gerekli */
    padding-left: 30px; /* Sağdaki noktaya boşluk bırakmak için */
  }
  
  .body-text ul li:after {
    content: "\f1ce";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .detail-page .section-rows .col:nth-child(even) .body-text ul li{
    padding-right: 30px;
  }
  .detail-page .section-rows .col:nth-child(even) .body-text ul li:after {
    right: 0px; /* Ters yönde olduğunda sağda */
  }
  
  .detail-page .section-rows .col:nth-child(odd) .body-text ul li:after {
    left: 0px; /* Normal yönde olduğunda solda */
  }
  
.detail-page .section-rows .col img {
  width: 50%;
  object-fit: cover;
  height: 500px;
  border-radius: 20px;
}
.detail-page .section-rows .col .body {
  width: 50%;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}
.detail-page .section-rows .col .body-title {
    font-size: 30px;
    font-weight: 800;
    color: #9f9f9f;
    letter-spacing: 10px;
}
.body-text h2{
    font-size: 24px;
    font-weight: 800;
    color:#ae9562;
    letter-spacing: 2px;
    margin-top: 2rem;
}



.body-text .desc{
    display: none;
}
.body-text p{
    font-size: 15px;
    font-weight: 300;
    color: #9f9f9f;
    letter-spacing: 2px;
}
.detail-page .section-rows .col .body-text {
  display: flex;
  flex-direction: column;

  font-size: 13px;
  line-height: 2.3;
  letter-spacing: 2px;
  color: #fefefe95;
  max-width: 100%;
  font-weight: 300;
  margin-top: 12px;
}
.detail-page .section-rows .col .desc {
  margin-top: 20px;
}
.detail-page .section-rows .col .body-text b {
  color: #ae9563;
  font-size: 17px;
  line-height: 1.5;
}
.detail-page .section-rows .col .body-text br {
}

.link-portfolio {
  font-size: 14px;
  color: #e2e2e2;
  border: 1px solid #1566;
  padding: 10px 20px;
  width: 200px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: 0.4s;
}
.link-portfolio:hover {
  background-color: #1566aa;
  border: 1px solid #1566;
}

@media (max-width: 1000px) {
  .detail-page .section-rows {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    gap: 3rem;
  }
  .detail-page .section-rows .col {
    flex-direction: column !important;
    align-items: center;
    gap: 30px;
    text-align: center;
    padding: 0;
  }
  .detail-page .section-rows .col .body {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .detail-page .section-rows .col .body-text {
    max-width: 80%;
    width: 80%;
    margin: auto;
  }
  .detail-page .section-rows .col .body-text b {
    color: #ae9563;
    font-size: 17px;
    line-height: 1.5;
    padding: 0px 100px;
  }
  .link-portfolio {
    align-self: center;
  }
  .detail-page .section-rows .col:nth-child(even) .body {
    text-align: right;
    align-items: end;
    padding-right: 0px;
  }
  .detail-page .section-rows .col:nth-child(even) .body {
    align-items: center;
  }
  .detail-page .section-rows .col .body-text b {
    text-align: center;
  }
  .detail-page .section-rows .col:nth-child(even) .link-portfolio {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .detail-page .section-rows .col img {
    width: 100%;
  }
  .detail-page .body-text ul li:after{
    display: none;
  }
  .detail-page .section-rows .col .body-text {
    width: 100%;
  }
  .detail-page .detail-page-sub-title {
    margin-bottom: 30px;
  }
  .detail-page .section-rows .col .body-text b {
    padding: 0 10px;
    margin-top: 1rem;
  }
  .blog-details-wrapper {
    width: 100vw;
    margin-top: -80px;
    margin-bottom: 130px;
    background-color: #fff;
    padding: 12px;
}
.blog-details-wrapper .lazy {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    float: left;
    margin-bottom: 2rem;
    margin-right: 3rem;
    border-radius: 20px;
}
}
@media (max-width: 582px) {
  .detail-page .detail-page-title {
    font-size: 20px;
  }
  .detail-page-sub-title {
    font-size: 14px !important;
    padding: 0 20px;
  }
  .detail-page {
    padding-top: 140px;
  }
  .detail-page .section-rows .col .desc {
    text-align: justify;
  }
}

#modal #prev-btn,
#modal #next-btn {
  display: none !important;
}
/*# sourceMappingURL=main.css.map */


.video-popup-container.show{
    display: none;
}

.form-container {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;

}

.form-container ul {
  padding: 0 !important;
  margin: 0 !important;
}

.contact-form__right {

  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 30px;

  gap: 20px;
}

.formm-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 2rem;


}

.formm-group .form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 calc(50% - 1rem);
}

.formm-group .form-field.wfull {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 calc(100%);
}

.formm-group .form-field label {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: .3px;
  color: #757575;
}

.form-container input {
  background-color: transparent;
  border: 1px solid #ae9562ab;
  padding: 10px;
  border-radius: 10px;
  height: 40px;
  width: 100%;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  outline: none;
  color: #ffefef;
}

.form-container textarea {
  background-color: transparent;
  border: 1px solid #ae9562ab;
  padding: 10px;
  border-radius: 10px;
  resize: none !important;
  width: 100%;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  outline: none;
  color: #ffefef;
  height: 60px;


  text-align: left;
}

.form-row-d {
  display: flex;
  align-items: start;
  width: 100%;
  margin-top: 50px;

}

.form-row-d .contact-title {
  font-size: 26px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #ae9562;
  line-height: 1.2;
}

.form-row-d .contact-sub-title {
  font-size: 17px;
  letter-spacing: .4px;

  font-weight: 300;
  color: #ffefef;
  margin-top: -1rem;
}

.form-kvkk {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-kvkk label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-kvkk label .text {
  font-size: 12px;

}

.form-kvkk label a {
  font-weight: 600;
  color: #ae9562;
  cursor: pointer;
}

.form-kvkk input {
  width: 20px;
  height: 20px;
}

.form-kvkk input:checked {
  background-color: #ae9562 !important;
  border-color: #ae9562 !important;
}

.form-send {
  background-color: #ae9562;
  text-transform: uppercase;
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
  transition: .4s;
}

.form-send input {
  transition: .4s;
}

.form-send:hover input {
  background-color: #fff;
  color: #000 !important;
}

.contact-title-main {
  width: 100%;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  color: #ae9562;
  font-family: "Playfair Display", serif;
}

.contact-form__left {
  width: 50%;
  padding: 30px;
}

.contact-form__left .col-40 {
  width: 100%;
}

.kvkk-relative-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 50px;


}

.modal-close-btn {
  position: sticky;
  top: 10px;
  right: 30px;
  color: #131724 !important;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  padding-right: 10px;
}

.kvkk-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  padding-bottom: 0;
}

.modal-kvkk-text h2 {
  color: #2c3e50;
}

.modal-kvkk-text p,
.modal-kvkk-text li {
  color: #2c3e50;
}

.modal-kvkk-text ul {
  list-style-type: disc;
  margin-left: 20px;
}

.modal-kvkk-text strong {
  color: #2980b9;
}

.modal-kvkk-text .contact-info {
  margin-top: 20px;
  background-color: #ecf0f1;
  padding: 10px;
  border-radius: 8px;
}

.modal-kvkk-text {
  position: fixed;
  top: 90%;
  left: 50%;
  flex-direction: column;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
  background-color: white;
  overflow-y: auto;
  z-index: 999;
  border-radius: 20px;


  opacity: 0;
  visibility: hidden;

  transition: 0.5s;
}

.modal-kvkk-text.show {
  opacity: 1;
  top: 50%;
  visibility: visible;

}

.loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.7);
}

.loading.ui-no-bg {
  background: transparent;
}

.loading:not([class*=ui-size-])::before {
  width: 100px;
  height: 100px;
}

.loading.ui-size-small {
  background: none;
}

.loading.ui-size-small::before {
  width: 60px;
  height: 60px;
}

.loading.is-visible {
  opacity: 1;
  visibility: visible;
}

.loading::before {
  content: "";
  position: absolute;
  border: 5px solid #fff;
  border-top: 5px solid #e94e1b;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

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

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

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

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

@media(max-width: 768px) {
  .form-row-d{
    flex-direction: column;
    margin-top: 24px;
  }
  .contact-form__right, .contact-form__left{
    width: 100%;
  }
  .form-page-wrapper{
    margin-top: 100px!important;
  }
  .modal-kvkk-text {
    position: fixed;
    top: 90%;
    left: 50%;
    flex-direction: column;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 100%;
    z-index: 22000 !important;
    background-color: white;
    overflow-y: auto;
    z-index: 999;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
} 
.form-messages .ui-success{
  font-size: 30px!important;
  width: 100%!important;
  text-align: center!important;
  display: flex!important;
  flex-direction: column!important;
  color: #009e0d!important;
}
.form-messages .ui-success i{
 font-size: 40px!important;
}
.socials{
  display: flex;
  gap: 8px;
  align-items: center;

}

.socials a{
 


  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  
}
.hero-sub-signature .text {
  font-family: "Playfair Display", serif;
    font-weight: 200;
}