﻿:root {
  --kütüp-library-burntsienna: #e76f51;
  --kütüp-library-white: white;
  --kütüp-library-dark-slate-grey: #132f3c;
  --kütüp-library-dark-slate-grey-x: #2b4553;
  --kütüp-library-dim-grey: #6e6e6e;
  --renew: #29b675;
}

/* New Hero Redesign Styles */
.hero-redesign {
  background-image: url('../images/re.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 5%;
  position: relative;
}

.hero-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.65) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-text-content {
  padding-right: 20px;
}

.hero-registration-form {
  background-color: var(--kütüp-library-dark-slate-grey);
  padding: 40px;
  border-radius: 8px;
  color: white;
}

.compact-list {
  margin-bottom: 0;
}

.compact-list li {
  margin-bottom: 8px;
  font-family: Open Sans, sans-serif;
}

/* Track Tabs Styles */
.section-tracks-sidebyside {
  background-color: #fff;
  padding: 40px 3%;
}

.tracks-container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.heading-10-centered {
  color: var(--kütüp-library-dark-slate-grey-x);
  font-family: Open Sans, sans-serif;
  text-align: center;
  margin-bottom: 30px;
}

.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.track-card {
  background-color: #f8f8f8;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
}

.track-card:hover {
  border-color: var(--renew);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.track-title {
  color: var(--kütüp-library-dark-slate-grey);
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.track-description {
  color: var(--kütüp-library-dark-slate-grey);
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.teams-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0078d4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.teams-button:hover {
  background-color: #005a9e;
}

.teams-button div {
  color: white;
}

/* Side-by-Side Schedule Styles */
.schedule-section-sidebyside {
  background-color: #eeece9;
  padding: 50px 2%;
}

.schedule-container-wide {
  max-width: 1600px;
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.schedule-track {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 8px;
}

.heading-7-compact {
  color: var(--kütüp-library-dark-slate-grey);
  margin-bottom: 15px;
  margin-top: 0;
  font-family: Open Sans, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.schedule-header {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1.2fr;
  gap: 10px;
  background-color: var(--kütüp-library-dark-slate-grey);
  color: white;
  padding: 12px 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
}

.col-time {
  text-align: left;
}

.col-subject,
.col-company,
.col-speaker {
  text-align: left;
}

/* Schedule Row Styles */
.schedule-row {
  margin-bottom: 8px;
}

.schedule-row-grid {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 1.2fr;
  gap: 10px;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
  border-radius: 2px;
  font-size: 13px;
  transition: background-color 0.2s ease;
  min-height: 65px;
  align-items: center;
}

.schedule-row-grid:hover {
  background-color: #f9f9f9;
}

.schedule-row-grid.active-now {
  background-color: #e8f5e9;
  border: 2px solid var(--renew);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(41, 182, 117, 0.2);
}

.schedule-row-grid.active-now:hover {
  background-color: #e8f5e9;
}

.schedule-cell {
  display: flex;
  align-items: center;
  font-family: Open Sans, sans-serif;
  line-height: 1.4;
}

.time-cell {
  font-weight: 700;
  color: var(--kütüp-library-dark-slate-grey);
}

.time-cell.highlight-red {
  background-color: #ffe6e6;
  border-radius: 4px;
  padding: 2px 6px;
}

.subject-cell {
  font-weight: 700;
}

.text-red {
  color: #c83b47;
  font-weight: 700;
}

.company-cell strong {
  font-weight: 700;
  color: var(--kütüp-library-dark-slate-grey);
}

.speaker-cell {
  color: var(--kütüp-library-dim-grey);
}

/* Subject Section (breaks between schedule sections) */
.subject-section {
  background-color: #2b4553;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 10px;
  margin-top: 15px;
  padding: 12px 10px;
  border-radius: 4px;
}

.subject-section.spacer-section {
  background-color: #e8e8e8;
  border: 1px dashed #c0c0c0;
}

.spacer-section .heading-5 {
  color: #999;
  margin: 0 0 5px 0;
  font-size: 16px;
}

.spacer-section .text-block-7 {
  color: #999;
  margin: 0;
  font-size: 13px;
  font-style: italic;
}

.subject-section .heading-5 {
  color: #f1f1f1;
  margin: 0 0 5px 0;
  font-size: 16px;
}

.subject-section .text-block-7 {
  color: #fafafa;
  margin: 0;
  font-size: 13px;
}

/* Spacer Row Styles */
.schedule-row.spacer-row {
  opacity: 0.5;
}

.spacer-grid {
  background-color: #f5f5f5 !important;
}

.spacer-grid:hover {
  background-color: #f5f5f5 !important;
}

.spacer-text {
  color: #999 !important;
  font-style: italic;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.kutup-button-line {
  width: 100%;
  height: 1px;
  background-color: var(--kütüp-library-burntsienna);
  position: relative;
  top: 5px;
}

.white-text {
  color: var(--kütüp-library-white);
}

.kutup-button-with-line {
  color: var(--kütüp-library-dark-slate-grey);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.kutup-nav-link-white {
  color: var(--kütüp-library-white);
  padding: 15px;
  font-size: 17px;
  font-weight: 700;
  transition: opacity .2s;
}

.kutup-nav-link-white:hover {
  color: rgba(255, 255, 255, .7);
}

.kutup-dropdown-link {
  color: var(--kütüp-library-dark-slate-grey-x);
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
}

.kutup-dropdown-link:hover {
  color: var(--kütüp-library-dark-slate-grey);
}

.kutup-dropdown-list {
  padding: 2px;
}

.kutup-dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #eeece9;
  border-radius: 5px;
  padding: 10px 5px;
}

.kutup-dropdown-arrow-white {
  margin-right: 12px;
  font-size: 12px;
}

.kutup-dropdown-toggle-white {
  color: #fff;
  padding: 15px 30px 15px 15px;
  font-size: 17px;
  transition: opacity .2s;
}

.kutup-dropdown-toggle-white:hover {
  color: rgba(255, 255, 255, .7);
}

.kutup-dropdown {
  font-weight: 700;
}

.kutup-flex-divider {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.kutup-last-item {
  order: 1;
}

.kutup-first-element {
  order: -1;
}

.kutup-nav-container-4 {
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.kutup-nav-component-4 {
  background-color: var(--kütüp-library-dark-slate-grey);
  padding: 25px 3%;
}

.image {
  width: 100%;
}

.kutup-button-white {
  background-color: var(--kütüp-library-white);
  color: var(--kütüp-library-dark-slate-grey);
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 700;
}

.kutup-button-white:hover {
  background-color: rgba(255, 255, 255, .74);
}

.kutup-subhead-white {
  color: rgba(255, 255, 255, .7);
  font-size: 19px;
  font-weight: 400;
}

.kutup-divider-15px {
  height: 15px;
}

.kutup-display-2 {
  color: var(--kütüp-library-dark-slate-grey);
  margin-top: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.kutup-display-2.white-text {
  color: #fff;
}

.kutup-small-top-text {
  color: var(--kütüp-library-burntsienna);
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
}

.kutup-cta-right-part {
  color: #fff;
  background-color: #bbb;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 13%;
  display: flex;
}

.kutup-cta-photo {
  background-color: #fff;
  background-image: url('../images/fish_farming2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.kutup-cta-3 {
  min-height: 700px;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  background-color: var(--kütüp-library-dark-slate-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0 0%;
  display: grid;
}

.kutup-nav-link {
  color: var(--kütüp-library-dark-slate-grey);
  padding: 15px;
  font-size: 17px;
  font-weight: 700;
  transition: opacity .3s;
}

.kutup-nav-link:hover {
  color: rgba(38, 70, 83, .8);
}

.kutup-dropdown-arrow {
  color: var(--kütüp-library-dark-slate-grey-x);
  margin-right: 12px;
  font-size: 12px;
  font-weight: 300;
}

.kutup-dropdown-toggle {
  color: #264653;
  padding: 15px 30px 15px 15px;
  font-size: 17px;
  font-weight: 600;
}

.kutup-dropdown-toggle:hover {
  color: rgba(38, 70, 83, .8);
}

.kutup-brand-link-line {
  border-right: 1px solid #ddd;
  padding-top: 15px;
  padding-bottom: 19px;
  padding-right: 20px;
}

.kutup-horizontal-flex {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.kutup-nav-component-1 {
  background-color: #fff;
  padding: 25px 3%;
}

.image-2 {
  width: 260px;
}

.kutup-x-button {
  width: 40px;
  height: 40px;
  background-color: var(--kütüp-library-dark-slate-grey-x);
  cursor: pointer;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

.kutup-x-button:hover {
  opacity: .54;
}

.kutup-white-link {
  color: #fff;
}

.kutup-announcement-text {
  color: var(--kütüp-library-white);
  font-size: 15px;
  font-weight: 700;
}

.kutup-announcement-bar-2 {
  z-index: 10;
  grid-column-gap: 20px;
  background-color: var(--kütüp-library-dark-slate-grey);
  justify-content: center;
  align-items: center;
  padding: 12px 2%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.kutup-hero-right-part {
  background-image: url('../images/re.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: #f71818;
  border-radius: 5px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 14px;
}

.success-message {
  color: #fff;
  background-color: #00963e;
  border-radius: 5px;
  font-size: 15px;
}

.kutup-other-font {
  font-weight: 500;
}

.kutup-gray-link {
  color: #818181;
  font-weight: 700;
}

.kutup-checkbox-label {
  color: var(--kütüp-library-dim-grey);
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 21px;
}

.kutup-checkbox {
  width: 17px;
  height: 17px;
  background-color: #fff;
  border: 1px solid rgba(41, 51, 92, .2);
  margin-top: 0;
  margin-right: 10px;
  position: relative;
  top: 2px;
}

.kutup-checkbox.w--redirected-checked {
  border-color: var(--kütüp-library-burntsienna);
  background-color: var(--kütüp-library-burntsienna);
  background-size: 11px;
}

.kutup-checkbox-field {
  font-size: 15px;
  display: flex;
}

.kutup-divider-10px {
  height: 10px;
}

.kutup-button-subscribe {
  min-height: 60px;
  background-color: var(--kütüp-library-dark-slate-grey);
  color: #fff;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 12px 39px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  position: absolute;
  top: 10px;
  right: 14px;
}

.kutup-button-subscribe:hover {
  color: #fff;
  background-color: #3f6474;
  background-image: none;
}

.kutup-form-input {
  min-height: 80px;
  color: rgba(87, 87, 87, .8);
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 50px;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 700;
}

.kutup-form-input::-ms-input-placeholder {
  font-weight: 700;
}

.kutup-form-input::placeholder {
  font-weight: 700;
}

.relative-form {
  position: relative;
}

.kutup-form-block {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.kutup-divider-30px {
  height: 30px;
}

.kutup-paragraph {
  color: var(--kütüp-library-dim-grey);
  font-size: 16px;
  font-weight: 700;
}

.kutup-hero-title-2 {
  color: var(--kütüp-library-dark-slate-grey-x);
  font-family: Open Sans, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.kutup-hero-left-part {
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  padding: 105px 10%;
  display: flex;
}

.kutup-hero-2 {
  min-height: 700px;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.kutup-hero-right-part-2 {
  background-image: url('../images/photo-7.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading, .heading-2, .heading-3, .heading-4 {
  font-size: 26px;
}

.image-3 {
  width: 260px;
}

.section {
  padding-top: 60px;
  padding-left: 3%;
  padding-right: 3%;
}

.section-2 {
  padding-top: 100px;
  padding-left: 17px;
  padding-right: 19px;
}

.div-block {
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 0;
}

.text-block, .text-block-2, .text-block-3 {
  font-weight: 700;
}

.text-block-4 {
  text-align: center;
  padding-left: 0;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.text-block-5 {
  padding-left: 0;
  font-weight: 700;
}

.subject-section {
  background-color: #2b4553;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 10px;
  padding: 10px 0 10px 10px;
}

.heading-5 {
  color: #f1f1f1;
  align-items: flex-start;
  display: flex;
}

.bold-text {
  padding-left: 0;
}

.div-block-2 {
  padding-bottom: 10px;
  padding-left: 10px;
}

.text-block-6 {
  padding-bottom: 14px;
  font-family: Open Sans, sans-serif;
}

.heading-6 {
  font-family: Open Sans, sans-serif;
}

.text-block-7 {
  color: #fafafa;
}

.text-block-8 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.bold-text-2 {
  font-family: Open Sans, sans-serif;
}

.text-block-9 {
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.break {
  background-color: #425d6b;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.body {
  margin-bottom: 0;
  padding-bottom: 146px;
}

.text-block-10, .text-block-11 {
  color: #fff;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.div-block-4 {
  padding-bottom: 10px;
  padding-left: 10px;
}

.columns {
  padding-top: 0;
  padding-bottom: 0;
}

.column {
  background-color: #f3f3f3;
  padding-top: 10px;
  padding-bottom: 10px;
}

.column-2 {
  border-right: 0 solid #000;
  padding-top: 10px;
  display: block;
}

.column-3, .column-4 {
  padding-top: 10px;
}

.container {
  max-width: 1200px;
  background-color: #fafafa;
  padding-left: 20px;
  padding-right: 20px;
}

.container-2 {
  max-width: 1200px;
}

.heading-7 {
  color: var(--kütüp-library-dark-slate-grey);
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 26px;
}

.kutup-button-line-2 {
  width: 100%;
  height: 1px;
  background-color: var(--kütüp-library-burntsienna);
  position: relative;
  top: 5px;
}

.white-text-2 {
  color: var(--kütüp-library-white);
}

.kutup-button-with-line-2 {
  color: var(--kütüp-library-dark-slate-grey);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.kutup-divider-20px {
  height: 20px;
}

.kutup-button-white-2 {
  background-color: var(--kütüp-library-white);
  color: var(--kütüp-library-dark-slate-grey);
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 700;
}

.kutup-button-white-2:hover {
  background-color: rgba(255, 255, 255, .74);
}

.kutup-component-divider {
  color: var(--kütüp-library-dark-slate-grey);
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.kutup-paragraph-white {
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  font-weight: 700;
}

.kutup-setup-heading {
  font-size: 31px;
  line-height: 1;
}

.kutup-setup-right-part {
  background-color: var(--kütüp-library-dark-slate-grey);
  color: var(--kütüp-library-white);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 50px;
  display: flex;
}

.kutup-button-green {
  background-color: var(--kütüp-library-dark-slate-grey);
  color: #fff;
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  transition: background-color .2s;
}

.kutup-button-green:hover {
  background-color: #3f6474;
}

.kutup-divider-60px {
  height: 60px;
}

.kutup-qoute-big-text {
  margin-top: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.kutup-divider-15px-2 {
  height: 15px;
}

.kutup-author-title {
  color: var(--kütüp-library-dark-slate-grey);
  font-size: 15px;
  font-weight: 700;
}

.kutup-setup-left-part {
  min-height: 450px;
  color: var(--kütüp-library-dark-slate-grey);
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 48px;
  display: flex;
}

.kutup-setup-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.kutup-large-container {
  max-width: 1200px;
  background-color: var(--kütüp-library-white);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px;
  position: relative;
}

.kutup-cta-2 {
  background-color: #eeece9;
  padding: 80px 5%;
}

.kutup-cta-2-copy {
  background-color: var(--kütüp-library-white);
  padding: 80px 5%;
}

.kutup-photo-wrapper {
  width: 86%;
  height: 570px;
  object-fit: cover;
  object-position: 50% 100%;
  background-image: url('../images/photo-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
}

.kutup-features-line-block {
  grid-column-gap: 10px;
  border: 2px solid var(--kütüp-library-dark-slate-grey);
  color: var(--kütüp-library-dark-slate-grey);
  border-radius: 40px;
  flex: none;
  align-items: center;
  margin-bottom: 15px;
  margin-right: 15px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
}

.text-block-12 {
  color: #264653;
}

.kutup-featrues-flex {
  width: 100%;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.kutup-display-3 {
  color: var(--kütüp-library-dark-slate-grey);
  margin-top: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.kutup-display-3.white-text {
  color: #fff;
}

.kutup-features-grid {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.kutup-section {
  background-color: #fff;
  padding: 90px 5%;
}

.kutup-flex-divider-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.kutup-subhead-white-2 {
  color: rgba(255, 255, 255, .7);
  font-size: 19px;
  font-weight: 400;
}

.kutup-small-top-text-2 {
  color: var(--renew);
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
}

.kutup-cta-right-part-2 {
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 13%;
  display: flex;
}

.kutup-cta-photo-2 {
  background-color: #fff;
  background-image: url('../images/re3.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.kutup-cta-4 {
  min-height: 300px;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  background-color: var(--kütüp-library-dark-slate-grey);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0 0%;
  display: grid;
}

.kutup-paragraph-2 {
  color: var(--kütüp-library-dim-grey);
  font-size: 16px;
  font-weight: 700;
}

.kutup-features-title {
  color: var(--kütüp-library-white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Open Sans, sans-serif;
  font-size: 19px;
  line-height: 1;
}

.kutup-divider-30px-2 {
  height: 30px;
}

.kutup-features-wrapper {
  flex: 1;
}

.kutup-features-flex {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  justify-content: space-between;
  display: flex;
}

.list-item, .list-item-2, .list-item-3 {
  padding-bottom: 10px;
  font-family: Open Sans, sans-serif;
}

.list-item-4 {
  font-family: Open Sans, sans-serif;
}

.link, .link-2, .link-3, .link-4 {
  color: var(--kütüp-library-white);
}

.kutup-logo-image {
  z-index: 2;
}

.kutup-logo-grid-2 {
  max-width: 85%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.kutup-divider-30px-3 {
  height: 30px;
}

.kutup-display-4 {
  color: var(--kütüp-library-dark-slate-grey);
  margin-top: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.kutup-max-w-width-640px {
  max-width: 640px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.kutup-medium-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.kutup-client-1 {
  background-color: #eeece9;
  padding: 60px 5%;
}

.kutup-paragraph-3 {
  color: var(--kütüp-library-dim-grey);
  font-size: 16px;
  font-weight: 700;
}

.kutup-faq-content {
  text-align: left;
  padding-top: 20px;
  padding-left: 0;
  padding-right: 20px;
}

.kutup-faq-item {
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  overflow: hidden;
}

.kutup-stripe-2 {
  width: 100%;
  height: 2px;
  background-color: #264653;
  position: absolute;
}

.kutup-stripe-1 {
  width: 2px;
  height: 100%;
  background-color: #264653;
}

.kutup-faq-plus-icon {
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.kutup-faq-icon {
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.kutup-faq-title {
  color: var(--kütüp-library-dark-slate-grey);
  font-size: 21px;
  font-weight: 700;
}

.kutup-faq-title-content {
  text-align: left;
  flex: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.kutup-faq-top-part {
  background-color: #fff;
  border-bottom: 1px solid rgba(41, 51, 92, .15);
  align-items: center;
  display: flex;
}

.kutup-faq-wrapper {
  cursor: pointer;
  margin-bottom: 10px;
  line-height: 1.6em;
  overflow: hidden;
}

.kutup-faq-componenet {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.kutup-divider-60px-2 {
  height: 60px;
}

.kutup-display-5 {
  color: var(--kütüp-library-dark-slate-grey);
  margin-top: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.kutup-small-top-text-3 {
  color: var(--kütüp-library-burntsienna);
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
}

.kutup-large-container-2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.kutup-section-2 {
  background-color: #fff;
  padding: 90px 5%;
}

.heading-8 {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: var(--kütüp-library-burntsienna) var(--kütüp-library-burntsienna) var(--kütüp-library-white);
  color: var(--kütüp-library-white);
  padding-bottom: 10px;
  font-family: Open Sans, sans-serif;
}

.text-block-13 {
  line-height: 22px;
}

.text-block-14, .text-block-15, .text-block-16, .text-block-17 {
  color: var(--kütüp-library-white);
  font-family: Open Sans, sans-serif;
  line-height: 26px;
}

.link-5 {
  color: var(--kütüp-library-white);
}

.column-copy {
  background-color: #e4e4e4;
  padding-top: 10px;
  padding-bottom: 10px;
}

.text-block-8-copy {
  color: #c83b47;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
}

.paragraph {
  color: var(--kütüp-library-white);
  padding-bottom: 33px;
}

.heading-9 {
  color: #fff;
}

.heading-10 {
  color: var(--kütüp-library-dark-slate-grey-x);
  font-family: Open Sans, sans-serif;
}

.text-block-18 {
  color: var(--kütüp-library-dark-slate-grey);
  padding-top: 7px;
  font-family: Open Sans, sans-serif;
  line-height: 25px;
}

.div-block-5 {
  padding-bottom: 25px;
}

.div-block-6 {
  padding-bottom: 15px;
}

.italic-text, .italic-text-2 {
  font-weight: 700;
}

.column-5 {
  padding-right: 40px;
}

.column-6 {
  padding-left: 40px;
}

.div-block-7 {
  padding-bottom: 66px;
}

.div-block-8 {
  padding-bottom: 30px;
}

.container-3 {
  max-width: 1200px;
}

.section-3 {
  background-color: #fff;
  padding: 40px 3%;
}

.section-3-copy {
  background-color: #f7f7f7;
  padding: 40px 3%;
}

.features-list {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-4 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  max-width: 40%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  color: var(--renew);
  margin-left: 2px;
  font-size: 21px;
  font-weight: 700;
  display: flex;
}

.features-right {
  max-width: 46%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 16px;
}

.text-block-19 {
  color: var(--renew);
  font-family: Bitter, serif;
  font-size: 17px;
  font-weight: 700;
}

.list-item-5, .list-item-6, .list-item-7, .list-item-8, .list-item-9, .list-item-10, .list-item-11, .list-item-12 {
  font-family: Open Sans, sans-serif;
}

@media screen and (max-width: 991px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text-content {
    padding-right: 0;
  }

  .hero-registration-form {
    padding: 30px;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .schedule-header {
    font-size: 11px;
    gap: 8px;
    grid-template-columns: 50px 1fr 1fr 1.2fr;
  }

  .schedule-row-grid {
    grid-template-columns: 50px 1fr 1fr 1.2fr;
    gap: 8px;
    font-size: 12px;
    padding: 8px;
    min-height: 60px;
  }

  .subject-section .heading-5 {
    font-size: 14px;
  }

  .subject-section .text-block-7 {
    font-size: 12px;
  }

  .kutup-menu-button {
    order: 1;
    padding-top: 15px;
    padding-left: 30px;
  }

  .kutup-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .kutup-nav-link-white {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .kutup-dropdown-arrow-white {
    margin-right: 30px;
  }

  .kutup-dropdown-toggle-white {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .kutup-dropdown {
    width: 100%;
  }

  .kutup-nav-menu-dark {
    background-color: #264653;
  }

  .kutup-last-item {
    order: 1;
  }

  .kutup-cta-3 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .kutup-nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .kutup-dropdown-arrow {
    margin-right: 30px;
  }

  .kutup-dropdown-toggle {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .kutup-nav-menu {
    background-color: #fff;
  }

  .kutup-nav-component-1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .kutup-hero-right-part {
    min-height: 600px;
  }

  .kutup-hero-2 {
    min-height: auto;
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    display: flex;
  }

  .kutup-hero-right-part-2 {
    min-height: 600px;
  }

  .kutup-setup-left-part {
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .kutup-setup-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .kutup-photo-wrapper {
    object-position: 50% 50%;
  }

  .kutup-featrues-flex {
    align-items: center;
  }

  .kutup-features-grid {
    grid-row-gap: 50px;
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .kutup-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .kutup-cta-4 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .kutup-features-wrapper {
    flex: 0 45%;
  }

  .kutup-features-flex {
    grid-row-gap: 40px;
    flex-wrap: wrap;
    align-content: stretch;
  }

  .kutup-logo-grid-2 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .kutup-section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container-4 {
    max-width: 728px;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .hero-redesign {
    padding: 40px 5%;
  }

  .hero-registration-form {
    padding: 25px;
  }

  .tracks-grid {
    gap: 15px;
  }

  .track-card {
    padding: 20px;
  }

  .track-title {
    font-size: 16px;
  }

  .schedule-section-sidebyside {
    padding: 30px 2%;
  }

  .schedule-header {
    font-size: 10px;
    padding: 10px 8px;
    gap: 6px;
    grid-template-columns: 45px 1fr 1fr 1fr;
  }

  .schedule-row-grid {
    grid-template-columns: 45px 1fr 1fr 1fr;
    gap: 6px;
    font-size: 11px;
    padding: 8px 6px;
    min-height: 58px;
  }

  .subject-section {
    padding: 10px 8px;
  }

  .subject-section .heading-5 {
    font-size: 13px;
  }

  .subject-section .text-block-7 {
    font-size: 11px;
  }

  .heading-7-compact {
    font-size: 18px;
  }

  .kutup-display-2 {
    font-size: 40px;
  }

  .kutup-cta-right-part {
    padding: 60px 11%;
  }

  .kutup-cta-3 {
    grid-template-columns: 1fr;
  }

  .kutup-announcement-bar-2 {
    padding: 13px 3%;
  }

  .kutup-hero-right-part {
    min-height: 500px;
  }

  .kutup-hero-title-2 {
    font-size: 50px;
  }

  .kutup-hero-left-part {
    padding: 70px 10%;
  }

  .kutup-hero-right-part-2 {
    min-height: 500px;
  }

  .kutup-qoute-big-text {
    font-size: 34px;
  }

  .kutup-photo-wrapper {
    height: 500px;
  }

  .kutup-display-3 {
    font-size: 40px;
  }

  .kutup-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .kutup-cta-right-part-2 {
    padding: 60px 11%;
  }

  .kutup-cta-4 {
    grid-template-columns: 1fr;
  }

  .kutup-display-5 {
    font-size: 40px;
  }

  .kutup-section-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .features-list {
    padding: 60px 15px;
  }
}

@media screen and (max-width: 479px) {
  .hero-content-wrapper {
    gap: 20px;
  }

  .kutup-hero-title-2 {
    font-size: 32px;
  }

  .hero-registration-form {
    padding: 20px;
  }

  .track-card {
    padding: 15px;
  }

  .track-title {
    font-size: 15px;
  }

  .schedule-section-sidebyside {
    padding: 20px 2%;
  }

  .schedule-row-grid {
    grid-template-columns: 40px 1fr;
    gap: 8px;
    font-size: 10px;
    min-height: 50px;
  }

  .schedule-header {
    grid-template-columns: 40px 1fr;
    font-size: 9px;
  }

  .company-cell,
  .speaker-cell {
    display: none;
  }

  .col-company,
  .col-speaker {
    display: none;
  }

  .heading-7-compact {
    font-size: 16px;
  }

  .kutup-mobile-portrait-hide {
    display: none;
  }

  .kutup-flex-divider {
    flex-direction: column;
    align-items: flex-start;
  }

  .kutup-nav-component-4 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .kutup-display-2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .kutup-brand-link-line {
    border-right-style: none;
    padding-bottom: 15px;
    padding-right: 0;
  }

  .kutup-nav-component-1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .kutup-x-button {
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .kutup-announcement-bar-2 {
    flex-direction: column;
  }

  .kutup-hero-right-part {
    min-height: 340px;
  }

  .kutup-checkbox {
    flex: none;
  }

  .kutup-button-subscribe {
    width: 100%;
    min-height: 50px;
    position: relative;
    top: 0;
    right: 0;
  }

  .kutup-form-input {
    min-height: 60px;
  }

  .kutup-hero-title-2 {
    font-size: 40px;
  }

  .kutup-hero-left-part {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .kutup-hero-right-part-2 {
    min-height: 340px;
  }

  .kutup-setup-right-part {
    padding-left: 20px;
    padding-right: 20px;
  }

  .kutup-setup-left-part {
    padding: 19px 26px 34px;
  }

  .kutup-photo-wrapper {
    width: 100%;
    height: 300px;
  }

  .kutup-features-line-block {
    margin-right: 0;
  }

  .kutup-featrues-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .kutup-display-3 {
    font-size: 30px;
    line-height: 1.1;
  }

  .kutup-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .kutup-flex-divider-2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .kutup-features-wrapper {
    flex: 0 auto;
  }

  .kutup-features-flex {
    grid-row-gap: 35px;
  }

  .kutup-logo-grid-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .kutup-display-5 {
    font-size: 30px;
    line-height: 1.1;
  }

  .kutup-section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-4 {
    max-width: none;
  }

  .features-right {
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }
}

#w-node-_7332adf8-70cf-393c-2072-a87f69488165-1b2516fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_7332adf8-70cf-393c-2072-a87f69488187-1b2516fa, #w-node-_58615e91-a668-77dc-a57c-13e57478332e-1b2516fa, #w-node-_58615e91-a668-77dc-a57c-13e57478332f-1b2516fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


