<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 

--- 01 Typography System
  - FONT SIZE SYSTEM (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98


  - Font weights:
    - Default: 400
    - Medium: 500
    - Semi-bold: 600
    - Bold: 700

  - Line heights:
    - Default: 1
    - Small: 1.05
    - Medium: 1.2  // for (i = 0; i &lt; dots.length; i++) {
  //   dots[i].className = dots[i].className.replace(" active", "");
  // }
    - Large: 1.8
    - Paragraph: 1.6

  - Letter Spacing
    - 0.5px
    - 0.75px


--- 02 Colors

  - Primary: #2c3494

  - Tints:
    - #fdf2e9 #eaebf4 10
    - #fae5d3 #d5d6ea 9
    - #eb984e #565da9 3
  - Shades: 
    - #cf711f #282f85 2
    - #45260a #0d102c 8
  - Accents: 
  - Greys: 
    - #888
    - #767676 (Lightest grey allowed on #fff)
    - #6f6f6f (Lightest grey allowed)
    - #555
    - #333



--- 05 Shadows
  - box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 Border-radius
  - Default: 9px
  - Medium: 11px


--- 07 Whitespace
  - SPACING SYSTEM (px)
  2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

/* ******************************** */
/* Header */
/* ******************************** */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;

  /* We want header to be sticky later, if you don't want it, you can add padding */
  height: 12.8rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  /* height: 8rem; */
  font-size: 4.2rem;
  color: #2c3494;
}

.logo img {
  width: 15%;
}

/* Mobile */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* Sticky Navigation */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/* ******************************** */
/* Hero Section */
/* ******************************** */

.section-hero {
  margin-top: 1.2rem;
  background-color: #ffffff;
  /* padding: 4.8rem 0 9.6rem 0; */
}

.index-hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem 6.4rem 3.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.8rem;
  align-items: center;
}

/* It is not the same as container because the hero looks better when its a little bit bigger. */
.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem 6.4rem 3.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.6rem;
  align-items: center;
}

.carousel-img {
  height: 70rem;
  border-radius: 21px;
}

.carousel-img img {
  border-radius: 21px;
}

/* .hero-image-box {
  height: 70rem;
} */

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  border-radius: 9px;
}

/* ******************************** */
/* Section */
/* ******************************** */

.section-how {
  padding: 9.6rem 0;
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.6;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;

  border-radius: 50%;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60 percent of parents width */
  padding-bottom: 60%;
  /* background-color: #eaebf4; */
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  /* height: 60%; */

  /* 60 percent of parents width */
  padding-bottom: 45%;
  /* background-color: #d5d6ea; */
  z-index: -1;
}

.step-img {
  width: 100%;
}

/* ******************************** */
/* Åžirket Profili section */
/* ******************************** */

.section-sirket-profili {
  padding: 9.6rem 0;
}

.page-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

/* ******************************** */
/* DeÄŸerlerimiz section */
/* ******************************** */

.section-degerlerimiz {
  padding: 9.6rem 0;
}

/* ******************************** */
/* Vizyon section */
/* ******************************** */

.section-vizyon {
  padding: 9.6rem 0;
}

/* ******************************** */
/* Misyon section */
/* ******************************** */

.section-misyon {
  padding: 9.6rem 0;
}

/* ******************************** */
/* Tarihce section */
/* ******************************** */

.section-tarihce {
  padding: 9.6rem 0;
}

/* ******************************** */
/* Ortaklarimiz section */
/* ******************************** */

.section-ortaklarimiz {
  padding: 9.6rem 0;
}

/* ******************************** */
/* Yonetim section */
/* ******************************** */

.section-yonetim {
  padding: 9.6rem 0;
}

.yonetim-kurulu-graph {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  margin-top: 2.4rem;
  border-radius: 11px;
}

/* ******************************** */
/* Istatistikler section */
/* ******************************** */

.section-istatistikler {
  padding: 9.6rem 0;
}

.istatistikler {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  margin-top: 2.4rem;
  border-radius: 11px;
  width: 100%;
}

/* ******************************** */
/* Ä°letiÅŸim section */
/* ******************************** */

.section-iletisim {
  padding: 9.6rem 0;
}

.iletisim-img {
  width: 100%;
  border-radius: 11px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.3);
}

/* ******************************** */
/* Limanlar section */
/* ******************************** */

.section-limanlar {
  padding: 9.6rem 0;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
}

.limanlar-logo {
  transition: all 0.3s;
}

.limanlar-logo:hover {
  transform: scale(1.1);
}

/* ******************************** */
/* Faaliyetlerimiz section */
/* ******************************** */

.section-faaliyetler {
  padding: 9.6rem 0;
}

.faaliyet {
  border-radius: 11px;
  width: 33.6rem;
  height: 33.6rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
}

.faaliyet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
}

/* .faaliyet {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;

  transition: all 0.4s;
}

.faaliyet:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.faaliyet-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.faaliyet-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
} */

/* .faaliyet-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.faaliyet-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faaliyet-attribute {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
}

.faaliyet-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}

.faaliyet-img {
  width: 100%;
}

.tum-faaliyetler {
  text-align: center;
  font-size: 1.8rem;
} */

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegetarian {
  background-color: #51cf66;
}
.tag--vegan {
  background-color: #94d82d;
}
.tag--paleo {
  background-color: #ffd43b;
}

/* ******************************** */
/* Footer section */
/* ******************************** */

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
  background-color: #eaebf4;
}

.grid--footer {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 6.4rem;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/* Mobile */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}
</pre></body></html>