@charset "UTF-8";
/* --------------------------------

Breakpoints

-------------------------------- */
/* --------------------------------

Nasıl Uygulanır?

  @include mq("mobil") {
    font-size: 3.8rem;
    width: 80%;
 }

 @include mq("tablet") {
    font-size: 3.2rem;
    text-align: left;
    width: 100%;
 }

-------------------------------- */
/* --------------------------------

Some common breakpoints for devices with different screen sizes are:

320px — 480px: Mobile devices
481px — 768px: iPads, Tablets
769px — 1024px: Small screens, laptops
1025px — 1200px: Desktops, large screens
1201px and more —  Extra large screens, TV

-------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*! formalize.css | MIT License | github.com/interacthings/formalize */
*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, figure, p, pre, fieldset, ul, ol, menu, form {
  margin: 0;
}

button, fieldset, iframe {
  border: 0;
}

fieldset, ul, ol, button, menu {
  padding: 0;
}

ol, ul {
  list-style: none;
}

textarea {
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  padding: 0;
}

* {
  font-size: 10px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

html,
body {
  width: 100%;
  color: #fafafa;
  scroll-behavior: smooth;
  backface-visibility: hidden;
  background-color: #f6f6f6;
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

img {
  object-fit: cover;
}

button {
  cursor: pointer;
  background-color: transparent;
}

.container {
  width: 90%;
  max-width: 184rem;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.flexRowCen {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.flexRowBet {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .flexRowBet {
    flex-direction: column-reverse;
  }
}

.flexColCen {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spaceBetween {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.MButton {
  display: flex;
  align-items: center;
  width: auto;
  max-width: fit-content;
  text-decoration: none;
  background-color: #dfba69;
  color: #fafafa;
  border-radius: 6rem;
  padding: 1.2rem 1.6rem;
  gap: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.3rem;
  font-weight: 500;
}
.MButton:hover {
  background-color: #caa24f;
}

.divider {
  width: 1px;
  height: 1em;
  background-color: #999;
  opacity: 0.6;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
}

.container.swiper.social-slider {
  padding-bottom: 4rem;
  position: relative;
}
.container.swiper.social-slider .swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  background-color: #a1a1a1;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background-color: #dfba69;
}

/* Header toggle (hamburger) */
.Header-toggle {
  cursor: pointer;
  z-index: 110;
  position: relative; /* referans noktası */
  width: 2.4rem;
  height: 2.4rem;
  display: none;
}

.hamburger-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: block; /* default görünür */
}

body.menu-open {
  width: 100%;
  overflow: hidden;
}

/* Responsive menu panel */
#responsiveMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 100dvh;
  background-color: white;
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

#responsiveMenu.active {
  transform: translateX(0);
}

/* Hamburger görünürlüğü */
body.menu-open .hamburger-icon {
  display: none !important;
}

/* Scroll durumunda hamburger ikonu değişimi */
body:not(.menu-open) .hamburger-icon.default-item {
  display: block;
}

.Header.scrolled:not(.menu-open) .hamburger-icon.default-item {
  display: none;
}

.Header.scrolled:not(.menu-open) .hamburger-icon.scrolled-item {
  display: block;
}

/* Header nav ve sosyal gizleme (mobil) */
@media (max-width: 768px) {
  .Header-nav,
  .Header-social {
    display: none !important;
  }
  .Header-toggle {
    display: block;
  }
}
/* Overlay arka plan */
#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#menuOverlay.active {
  opacity: 1;
  pointer-events: auto;
}

.Header-nav a.active-page {
  color: #dfba69 !important;
}

.Header-res-nav a.active-page {
  color: #dfba69 !important;
}

.active-nav {
  color: #dfba69 !important;
  font-weight: 700 !important;
  max-width: 20rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .active-nav {
    max-width: 12rem;
  }
}

.marginTop {
  margin-top: -36rem;
  position: relative;
}
@media (max-width: 1024px) {
  .marginTop {
    margin-top: -28rem;
  }
}
@media (max-width: 768px) {
  .marginTop {
    margin-top: -24rem;
  }
}
@media (max-width: 480px) {
  .marginTop {
    margin-top: -28rem;
  }
}

.gold {
  background-color: #dfba69;
}

.grey {
  background-color: #909090;
}

.row-reverse {
  flex-direction: row-reverse;
}

.nomargintop {
  margin-top: 0 !important;
}

.full-screen {
  width: 100%;
  height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .full-screen {
    width: 100%;
    aspect-ratio: 5/8;
    height: auto;
  }
}

.scrolled-item {
  display: none;
}

.Header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  display: flex;
  justify-content: center;
  border-bottom: 0.4px solid rgba(250, 250, 250, 0.4);
  transition: background-color 0.4s ease, border-bottom 0.4s ease;
}
.Header-res {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem 2.4rem 4rem;
}
.Header-res-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 4.3rem;
}
.Header-res-nav a {
  color: #101010;
  text-decoration: none;
  font-family: "Roboto mono";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2rem;
  transition: color 0.3s;
  padding: 0.4rem 0;
}
.Header-res-nav a:hover {
  color: #dfba69;
}
.Header-res-social {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .Header .Header-nav,
  .Header .Header-social {
    display: none !important;
  }
  .Header .Header-toggle {
    display: block;
  }
}
.Header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.Header-nav {
  display: flex;
  gap: 2rem;
}
.Header-nav a {
  color: #fafafa;
  text-decoration: none;
  font-family: "Roboto mono";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2rem;
  transition: color 0.3s;
}
.Header-nav a:hover {
  color: #dfba69;
}
.Header-social {
  display: flex;
  gap: 2.4rem;
}

.dropbtn {
  color: #fafafa;
  text-decoration: none;
  font-family: "Roboto mono";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2rem;
  transition: color 0.3s;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fafafa;
  min-width: 16rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 0.4rem 0;
  border-radius: 0.2rem;
}

.dropdown-content a {
  color: #101010;
  padding: 1.6rem;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.Header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f6f6f6;
  border-bottom: 1px solid #fafafa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
}

.Header.scrolled .default-item {
  display: none;
}

.Header.scrolled .scrolled-item {
  display: block;
}

.Header.scrolled .Header-nav a {
  color: #101010;
}

.Header.scrolled .Header-nav .dropbtn {
  color: #101010;
}

.Header.scrolled .Header-nav a:hover {
  color: #dfba69;
}

.Header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.social-icons a svg {
  fill: #fafafa;
  cursor: pointer;
}

.Banner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.Banner .swiper-wrapper {
  height: 100%;
}
.Banner .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.Banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.Banner .swiper-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #101010;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.BannerText {
  position: absolute;
  bottom: 2.4em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  text-align: center;
}
.BannerText-h1 img {
  width: 100%;
}
.BannerText p {
  color: #fafafa;
  font-size: 1.6rem;
  font-family: "Roboto mono";
  font-weight: 400;
  margin-top: 1.6rem;
}
@media (max-width: 480px) {
  .BannerText p {
    margin-top: 1.2rem;
    font-size: 1.2rem;
  }
}
.BannerText-arrow {
  padding-top: 3.2em;
}
@media (max-width: 480px) {
  .BannerText-arrow {
    display: none;
  }
}

.BannerText.container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.Bio {
  width: 100%;
  margin: 4rem 0;
}
.Bio .container {
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .Bio .container {
    flex-direction: column;
  }
}
.Bio-info {
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .Bio-info {
    width: 100%;
  }
}
.Bio-info-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.2rem;
}
.Bio-info-text-tag {
  font-size: 1.2rem;
  font-family: "Roboto mono";
  font-weight: 400;
  color: #101010;
}
.Bio-info-text-h {
  font-size: 3.6rem;
  font-weight: 500;
  color: #101010;
}
.Bio-info-text-p p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: #231f20;
  text-align: left;
}
.Bio-pic {
  width: 50%;
}
@media (max-width: 1024px) {
  .Bio-pic {
    width: 100%;
  }
}
.Bio-pic img {
  object-fit: cover;
  width: 100%;
}

.News {
  margin-bottom: 8rem;
}
.News .container.swiper {
  overflow: visible !important;
}
.News-slider {
  width: 100%;
  display: flex;
  overflow-x: visible;
}
.News-slider-item {
  flex: 0 0 80%;
  height: 800px;
  position: relative;
  overflow: hidden;
  display: block;
}
@media (max-width: 1200px) {
  .News-slider-item {
    flex: 0 0 95%;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .News-slider-item {
    flex: 0 0 95%;
    height: 520px;
  }
}
.News-slider-item-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.News-slider-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.News-slider-item-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(16, 16, 16, 0.8) 0%, rgba(16, 16, 16, 0) 100%);
}
.News-slider-item-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 50%;
  left: 4rem;
  bottom: 4rem;
  gap: 1.6rem;
}
@media (max-width: 1200px) {
  .News-slider-item-content {
    width: 60%;
  }
}
@media (max-width: 1024px) {
  .News-slider-item-content {
    width: 72%;
  }
}
@media (max-width: 768px) {
  .News-slider-item-content {
    width: 84%;
  }
}
.News-slider-item-content-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.News-slider-item-content-top-date {
  font-family: Roboto Mono;
  font-size: 1.2rem;
  font-weight: 400;
}
.News-slider-item-content-top-cat {
  font-family: Roboto Mono;
  font-size: 1.2rem;
  font-weight: 400;
  color: #dfba69;
}
.News-slider-item-content-top-cat a {
  color: #dfba69;
}
.News-slider-item-content-h {
  color: #fafafa;
  font-size: 3.2rem;
  font-weight: 700;
}
.News-slider-item-content-p p {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: 400;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.News-nav {
  margin-top: 4rem;
}
.News-nav-buttons {
  display: flex;
  gap: 1.6rem;
}

.Social {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.Social .container.swiper {
  overflow: hidden;
}
.Social-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.Social-head-h {
  font-size: 3.6rem;
  color: #101010;
  font-weight: 900;
  text-align: center;
}
.Social-head-l {
  font-size: 1.6rem;
  color: #dfba69;
  font-family: "Roboto mono";
  font-weight: 400;
  text-align: center;
}
.Social-slider-item {
  width: auto;
  height: auto;
  box-sizing: border-box;
  border-radius: 0.2em;
  border: solid 0.4px #a1a1a1;
  padding: 2rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}
.Social-slider-item-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.Social-slider-item-head-pic img {
  width: 4rem;
  height: 4rem;
  border-radius: 6rem;
}
.Social-slider-item-head-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.Social-slider-item-head-content-n {
  font-family: "Roboto mono";
  color: #101010;
  font-size: 1.2rem;
  font-weight: 400;
}
.Social-slider-item-head-content-l {
  font-family: "Roboto mono";
  font-size: 1.2rem;
  color: #dfba69;
  font-weight: 400;
}
.Social-slider-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.Social-slider-item-content-rt {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.Social-slider-item-content-rt-t {
  color: #909090;
  font-family: "Roboto mono";
  font-size: 1.1rem;
  line-height: 1.1rem;
}
.Social-slider-item-content-text p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #101010;
  font-weight: 400;
}
.Social-slider-item-content-text p + p {
  margin-top: 0.5rem;
}

.Footer {
  background-color: #101010;
  color: #fafafa;
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .Footer {
    margin-top: 4rem;
  }
}
.Footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  padding: 4rem 0 2.8rem 0;
}
.Footer-top-menu {
  display: flex;
  gap: 2rem;
}
.Footer-top-menu a {
  font-family: "Roboto mono";
  font-size: 1.2rem;
  color: #909090;
  line-height: 1.2rem;
}
.Footer-top-menu a:hover {
  color: #fafafa;
}
@media (max-width: 768px) {
  .Footer-top-menu {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
.Footer-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 2.4rem 0;
  border-top: 0.1px solid #a1a1a1;
  border-bottom: 0.1px solid #a1a1a1;
  height: 100%;
}
.Footer-mid img {
  height: 4.8rem;
  width: auto;
}
.Footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 0;
}
@media (max-width: 1024px) {
  .Footer-bot {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
.Footer-bot-copy {
  font-family: "Roboto mono";
  font-size: 1rem;
  color: #909090;
  line-height: 1rem;
}
.Footer-bot-copy #dynamicYear {
  font-family: "Roboto mono";
  font-size: 1rem;
  color: #909090;
  line-height: 1rem;
}
@media (max-width: 1024px) {
  .Footer-bot-copy {
    text-align: center;
    line-height: 1.5;
  }
}
.Footer-bot-copy span {
  font-family: "Roboto mono";
  font-size: 1rem;
  color: #dfba69;
  line-height: 1rem;
}
.Footer-bot-social {
  display: flex;
  gap: 2.4rem;
}

.head-screen {
  width: 100%;
  height: 60rem;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #101010;
}
@media (max-width: 1024px) {
  .head-screen {
    height: 52rem;
  }
}
@media (max-width: 768px) {
  .head-screen {
    height: 44rem;
  }
}

.Above-nav {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .Above-nav {
    gap: 1.6rem;
  }
}
.Above-nav-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.Above-nav-info a {
  text-decoration: none;
  color: #fafafa;
  font-size: 1.2rem;
  font-weight: 400;
}
.Above-nav-title {
  font-size: 5.2rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .Above-nav-title {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .Above-nav-title {
    font-size: 2.8rem;
  }
}
.Above-cover {
  margin-top: 2rem;
  aspect-ratio: 4/1.6;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .Above-cover {
    margin-top: 2rem;
    aspect-ratio: 4/3;
  }
}
.Above-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
  display: block;
}
.Above-image {
  margin-top: 2rem;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .Above-image {
    margin-top: 2rem;
  }
}
.Above-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
  display: block;
}

.Resume {
  margin: 8rem 0;
}
@media (max-width: 768px) {
  .Resume {
    margin: 4rem 0;
  }
}
@media (max-width: 768px) {
  .Resume .container {
    gap: 4rem;
  }
}
.Resume-left {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 33.33%;
}
@media (max-width: 768px) {
  .Resume-left {
    width: 100%;
  }
}
.Resume-left-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.Resume-left-card-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.Resume-left-card-title-text {
  font-family: "Roboto mono";
  font-size: 1.2rem;
  color: #dfba69;
}
.Resume-left-card-info p {
  color: #231f20;
  font-size: 1.6rem;
}
.Resume-left-card-info p + p {
  margin-top: 0.8rem;
}
.Resume-right {
  width: 66.66%;
}
@media (max-width: 768px) {
  .Resume-right {
    width: 100%;
  }
}
.Resume-right p {
  color: #231f20;
  font-size: 1.6rem;
  line-height: 150%;
}
.Resume-right p + p {
  margin-top: 1.5rem;
}

.ResumeGallery .container {
  gap: 3.6rem;
}
.ResumeGallery-title {
  text-align: center;
  color: #101010;
  font-size: 3.6rem;
  font-weight: 700;
}
.ResumeGallery-photos {
  display: flex;
  gap: 2rem;
  width: 100%;
}
.ResumeGallery-photos-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.ResumeGallery-photos-item a {
  width: 100%;
  aspect-ratio: 1/1;
}
.ResumeGallery-photos-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.2rem;
  display: block;
}

.ResumeGallery-photos-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(223, 186, 105, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ResumeGallery-photos-item:hover .gallery-overlay {
  opacity: 1;
}

.ResumeGallery-photos-item .gallery-overlay svg {
  width: 48px;
  height: 48px;
  fill: #fafafa;
  transition: transform 0.3s ease;
}

.ResumeGallery-photos-item:hover .gallery-overlay svg {
  transform: scale(1.2);
}

.Content {
  margin-top: 4rem;
}
.Content-found {
  font-size: 2rem;
  color: #101010;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .Content-found {
    font-size: 1.6rem;
  }
}
.Content-found span {
  font-size: 2rem;
  font-weight: 700;
  color: #dfba69;
}
@media (max-width: 768px) {
  .Content-found span {
    font-size: 1.6rem;
  }
}
.Content-nofound {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.Content-nofound span {
  font-size: 2rem;
  color: #101010;
  margin-top: 1.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .Content-nofound span {
    font-size: 1.6rem;
  }
}
.Content-nofound svg {
  width: 10rem;
}
.Content-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3.6rem;
  row-gap: 3.6rem;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .Content-list {
    gap: 2.4rem;
    row-gap: 2.4rem;
  }
}
@media (max-width: 480px) {
  .Content-list {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.Content-list-item {
  width: calc((100% - 7.2rem) / 3);
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 16px rgba(144, 144, 144, 0.08);
  transition: transform 0.5s ease;
}
@media (max-width: 1024px) {
  .Content-list-item {
    width: calc((100% - 4.8rem) / 2);
  }
}
@media (max-width: 768px) {
  .Content-list-item {
    width: 100%;
  }
}
.Content-list-item:hover {
  box-shadow: 0px 2px 16px rgba(144, 144, 144, 0.18);
}
.Content-list-item-img {
  border-radius: 2px 2px 0 0;
  width: 100%;
  overflow: hidden;
}
.Content-list-item-img img {
  border-radius: 2px 2px 0 0;
  width: 100%;
  aspect-ratio: 4/3;
}
.Content-list-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0 0 2px 2px;
  width: 100%;
  flex-grow: 1;
}
.Content-list-item-content-head {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #101010;
}
.Content-list-item-content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.6rem;
  border-top: 0.4px solid #a1a1a1;
}
.Content-list-item-content-bottom-date {
  font-family: "Roboto mono";
  font-size: 1.2rem;
  color: #909090;
}
.Content-media {
  position: relative;
  width: calc((100% - 7.2rem) / 3);
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 16px rgba(144, 144, 144, 0.08);
  transition: transform 0.5s ease;
}
@media (max-width: 1024px) {
  .Content-media {
    width: calc((100% - 4.8rem) / 2);
  }
}
@media (max-width: 768px) {
  .Content-media {
    width: 100%;
  }
}
.Content-media:hover {
  box-shadow: 0px 2px 16px rgba(144, 144, 144, 0.18);
}
.Content-media-img {
  border-radius: 2px;
  width: 100%;
  overflow: hidden;
}
.Content-media-img img {
  border-radius: 2px;
  width: 100%;
  aspect-ratio: 4/3;
}
.Content-media-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 16, 0.3);
  transition: background 0.3s ease;
}
.Content-media-img:hover::after {
  background: rgba(16, 16, 16, 0.2);
}
.Content-media-header {
  left: 0;
  bottom: 0;
  padding: 0 2rem 2rem 2rem;
  position: absolute;
  font-size: 2rem;
  font-weight: 700;
  color: #fafafa;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fafafa;
  z-index: 2;
}

.Search {
  margin: 8rem 0 4rem 0;
}
@media (max-width: 768px) {
  .Search {
    margin: 4rem 0 4rem 0;
  }
}
.Search-form {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .Search-form {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.Search-form .search {
  flex: 4;
}
@media (max-width: 768px) {
  .Search-form .search {
    flex: 1 1 100%;
  }
}
.Search-form .start {
  flex: 2;
}
@media (max-width: 768px) {
  .Search-form .start {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.Search-form .end {
  flex: 2;
}
@media (max-width: 768px) {
  .Search-form .end {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.Search-form .submit {
  flex: 1;
}
@media (max-width: 768px) {
  .Search-form .submit {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.Search-form .reset {
  flex: 1;
}
@media (max-width: 768px) {
  .Search-form .reset {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
.Search-form .Search-form-input + .Search-form-input {
  border-left: none;
}
@media (max-width: 768px) {
  .Search-form .Search-form-input + .Search-form-input {
    border-left: 0.4px solid #a1a1a1;
  }
}
.Search-form-input, .Search-form-button {
  height: 5.6rem;
  font-size: 1.6rem;
  padding: 1.2rem 1.6rem;
  border: 0.4px solid #a1a1a1;
  border-radius: 0;
}
.Search-form-input {
  background-color: #ffffff;
  color: #231f20;
  border: 0.4px solid #a1a1a1;
}
.Search-form-input::placeholder {
  color: #909090;
}
.Search-form-input:focus {
  border-color: #dfba69;
  outline: none;
}
.Search-form-button {
  color: #fafafa;
  font-weight: 700;
  border: none;
  max-width: none;
}

.Pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
@media (max-width: 480px) {
  .Pagination {
    flex-wrap: wrap;
  }
}
.Pagination .opacity50 svg {
  opacity: 50%;
}
.Pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 0.2px solid #a1a1a1;
  width: 5rem;
  height: 5rem;
  color: #909090;
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 480px) {
  .Pagination-item {
    width: 4rem;
    height: 4rem;
  }
}
.Pagination .active-pg-item {
  background-color: #f6f6f6;
}
.Pagination .Pagination-item + .Pagination-item {
  border-left: none;
}

.NewsDetail {
  margin-bottom: 8rem;
}
.NewsDetail-wrapper {
  background-color: #ffffff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .NewsDetail-wrapper {
    gap: 2.4rem;
    padding: 2.4rem;
  }
}
.NewsDetail-text p {
  font-size: 1.8em;
  line-height: 1.5;
  color: #231f20;
}
@media (max-width: 768px) {
  .NewsDetail-text p {
    font-size: 1.6rem;
  }
}
.NewsDetail-text p + p {
  margin-top: 1rem;
}
.NewsDetail-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.4px solid #a1a1a1;
  padding-top: 4rem;
  width: 100%;
}
@media (max-width: 768px) {
  .NewsDetail-bottom {
    padding-top: 2.4rem;
  }
}
.NewsDetail-bottom-date {
  font-family: "Roboto mono";
  font-size: 1.2rem;
  color: #909090;
}
.NewsDetail-bottom-share {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.NewsDetail-bottom-share span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #101010;
}

.PhotoGallery {
  padding: 8rem 0;
}
.PhotoGallery .container {
  gap: 3.6rem;
}
@media (max-width: 768px) {
  .PhotoGallery {
    padding: 4rem 0;
  }
}
.PhotoGallery-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
.PhotoGallery-photos-item {
  position: relative;
  display: block;
  overflow: hidden;
  width: calc((100% - 8rem) / 5);
}
@media (max-width: 1024px) {
  .PhotoGallery-photos-item {
    width: calc((100% - 4rem) / 3);
  }
}
@media (max-width: 1024px) {
  .PhotoGallery-photos-item {
    width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 480px) {
  .PhotoGallery-photos-item {
    width: 100%;
  }
}
.PhotoGallery-photos-item a {
  width: 100%;
  aspect-ratio: 1/1;
}
.PhotoGallery-photos-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.2rem;
  display: block;
}
.PhotoGallery .PhotoGallery-photos-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(223, 186, 105, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.PhotoGallery .PhotoGallery-photos-item:hover .gallery-overlay {
  opacity: 1;
}
.PhotoGallery .PhotoGallery-photos-item .gallery-overlay svg {
  width: 48px;
  height: 48px;
  fill: #fafafa;
  transition: transform 0.3s ease;
}
.PhotoGallery .PhotoGallery-photos-item:hover .gallery-overlay svg {
  transform: scale(1.2);
}/*# sourceMappingURL=main.css.map */
