@font-face {
  font-family: 'EncodeSans';
  src: url('../fonts/EncodeSans-Regular.woff2') format('woff2'),
       url('../fonts/EncodeSans-Regular.woff') format('woff'),
       url('../fonts/EncodeSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EncodeSans';
  src: url('../fonts/EncodeSans-SemiBold.woff2') format('woff2'),
       url('../fonts/EncodeSans-SemiBold.woff') format('woff'),
       url('../fonts/EncodeSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EncodeSans';
  src: url('../fonts/EncodeSans-Bold.woff2') format('woff2'),
       url('../fonts/EncodeSans-Bold.woff') format('woff'),
       url('../fonts/EncodeSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EncodeSans';
  src: url('../fonts/EncodeSans-ExtraBold.woff2') format('woff2'),
       url('../fonts/EncodeSans-ExtraBold.woff') format('woff'),
       url('../fonts/EncodeSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'EncodeSans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #02020a;
  background-color: #f2f3f7;
  overflow-x: hidden;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 16px;
  text-align: center;
  font-size: 18px;
  margin: auto;
}

header .header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

header .logo {
  flex: 1;
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
  z-index: 1000;
}

.lang-btn {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'EncodeSans', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #02020a;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: space-between;
}

.lang-btn:hover {
  border-color: #4e42a5;
  background: #f8f8ff;
}

.lang-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.lang-btn.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 160px;
  overflow: hidden;
  margin-top: 4px;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 14px;
  color: #02020a;
}

.lang-option:hover {
  background: #f8f8ff;
}

.lang-option.active {
  background: #4e42a5;
  color: #fff;
}

.lang-option .flag {
  font-size: 16px;
}

.lang-flag {
  font-size: 16px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  header .header-top {
    flex-direction: column;
    gap: 16px;
  }
  
  .language-switcher {
    align-self: flex-end;
  }

  .lang-btn {
    min-width: 110px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .lang-dropdown {
    min-width: 150px;
  }
}

section {
  margin-bottom: 64px;
}

#slider1 {
  width: 100%;
  height: 525px;
  overflow: hidden;
  padding: 0 8px;
  transform: translate(8px, 0px);
  margin-left: -8px;
  margin-right: -8px;
  position: relative;
  z-index: 2;
}

#slider1 .swiper-wrapper {
  display: flex;
  align-items: center;
}

#slider1 .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
  height: 525px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}

#slider1 .swiper-slide > img {
  height: 184px;
  margin: 16px 20px;
}

#slider1 .swiper-slide > p {
  padding-bottom: 16px;
}

#slider1 .swiper-slide > a {
  margin-top: auto;
  font-weight: 600;
  height: 56px;
  line-height: 56px;
  border: 1px solid transparent;
  border-radius: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#slider1 .swiper-slide:nth-child(3n-2) > a {
  background-color: #f0d274;
}

#slider1 .swiper-slide:nth-child(3n-1) > a {
  background-color: #796dd3;
}

#slider1 .swiper-slide:nth-child(3n) > a {
  background-color: #8bd0b8;
}

#slider1 .swiper-slide > a > img {
  margin-left: 5px;
}

.about-teknasyon {
  width: 1168px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  border-radius: 32px;
  background-color: #4e42a5;
  background-image: url('../img/about-teknasyon-bg.svg');
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-teknasyon-text {
  padding: 16px;
}

.about-teknasyon-title {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 18px;
}

.about-teknasyon-content {
  position: relative;
  z-index: 1;
}

.about-teknasyon-content p {
  margin-bottom: 16px;
}

.about-teknasyon-content b {
  font-weight: 600;
}

.about-teknasyon-img {
  flex-shrink: 0;
}

.about-teknasyon img {
  width: 100%;
}

.about-teknasyon img:last-child {
  display: none;
}

#slider2 {
  width: 100%;
  overflow: hidden;
  padding: 0 8px;
  transform: translate(8px, 0px);
  margin-left: -8px;
  margin-right: -8px;
}

#slider2 .swiper-wrapper {
  display: flex;
  align-items: center;
}

#slider2 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85%;
  flex-shrink: 0;
  background-color: #fff;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 60px 55px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

#slider2 .swiper-slide > img {
  max-width: 100%;
}

#slider2 .slider-text {
  margin: 0 auto 24px;
  width: 1168px;
  max-width: calc(100% - 32px);
}

#slider2 .slider-text-head {
  display: flex;
  justify-content: space-between;
  line-height: 34px;
  margin-bottom: 16px;
}

#slider2 .slider-text-head span {
  font-weight: 800;
  font-size: 28px;
}

#slider2 .swiper-controls {
  display: flex;
}

#slider2 .swiper-controls .swiper-button-next,
#slider2 .swiper-controls .swiper-button-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #D2D5E1;
  border-radius: 50%;
  margin-left: 8px;
  background-image: url('../img/arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

#slider2 .swiper-controls .swiper-button-prev {
  transform: rotate(180deg);
}

#slider2 .swiper-controls .swiper-button-disabled {
  opacity: 50%;
  cursor: default;
}

#slider2 .slider-text p {
  color: #6E718E;
}
.growhub-features {
  width: 1168px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.growhub-features .growhub-features-title {
  font-weight: 800;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
}

.growhub-features .growhub-features-content {
  display: flex;
  flex-direction: column;
}

.growhub-features .growhub-feat {
  background-color: #3a77ba;
  background-image: url('../img/growhub-features-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  margin-bottom: 32px;
  color: #fff;
  text-align: center;
  padding: 40px 30px 30px;
  position: relative;
}

.growhub-features .growhub-feat:after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  bottom: 24px;
  background-color: #3b77ba;
}

.growhub-features .growhub-feat-inside {
  position: relative;
  z-index: 1;
  padding: 16px;
}

.growhub-features .growhub-feat img {
  margin: 0 auto 24px;
}

.growhub-features .growhub-feat-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
}

.here-is-teknasyon {
  width: 1168px;
  max-width: calc(100% - 32px);
  margin: auto;
  overflow: hidden;
}

.here-is-teknasyon .head {
  text-align: center;
  margin-bottom: 24px;
}

.here-is-teknasyon .head span {
  font-weight: 800;
  font-size: 28px;
}

.here-is-teknasyon .head p {
  color: #6E718E;
}

.here-is-teknasyon .content {
  background-color: #fff;
  border-radius: 24px;
}

#slider3 {
  position: relative;
  padding-top: 16px;
}

#slider3 .swiper-pagination-wrap {
  display: flex;
}

#slider3 .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #F2F3F7;
  border-radius: 23px;
  margin: 0 16px 32px;
}

#slider3 .swiper-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 28px;
  margin-right: 24px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease;
  flex-shrink: 0;
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(1) {
  background-image: url('../img/nav-icon-1.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(2) {
  background-image: url('../img/nav-icon-2.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(3) {
  background-image: url('../img/nav-icon-3.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
  background-image: url('../img/nav-icon-4.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(5) {
  background-image: url('../img/nav-icon-5.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(6) {
  background-image: url('../img/nav-icon-6.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(7) {
  background-image: url('../img/nav-icon-7.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(8) {
  background-image: url('../img/nav-icon-8.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(9) {
  background-image: url('../img/nav-icon-9.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(10) {
  background-image: url('../img/nav-icon-10.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(11) {
  background-image: url('../img/nav-icon-11.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(12) {
  background-image: url('../img/nav-icon-12.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(1):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(1).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-1-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(2):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(2).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-2-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(3):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(3).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-3-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(4):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(4).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-4-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(5):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(5).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-5-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(6):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(6).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-6-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(7):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(7).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-7-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(8):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(8).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-8-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(9):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(9).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-9-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(10):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(10).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-10-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(11):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(11).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-11-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(12):hover,
#slider3 .swiper-pagination .swiper-pagination-bullet:nth-child(12).swiper-pagination-bullet-active {
  background-image: url('../img/nav-icon-12-hover.svg');
}

#slider3 .swiper-pagination .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  top: 12px;
  right: -14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #B7B9CE;
}

#slider3 .swiper-pagination .swiper-pagination-bullet:last-child:after {
  display: none;
}

#slider3 .swiper-controls {
  display: flex;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 320px;
  width: 296px;
}

#slider3 .swiper-controls .swiper-button-next,
#slider3 .swiper-controls .swiper-button-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #D2D5E1;
  border-radius: 50%;
  margin-left: 8px;
  background-color: #fff;
  background-image: url('../img/arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

#slider3 .swiper-controls .swiper-button-prev {
  transform: rotate(180deg);
}

#slider3 .swiper-controls .swiper-button-disabled {
  opacity: 50%;
  cursor: default;
}

#slider3 .swiper-wrapper {
  display: flex;
  align-items: center;
}

#slider3 .swiper-slide {
  flex-shrink: 0;
}

#slider3 .swiper-slide .slide-text {
  width: 296px;
  max-width: calc(100% - 32px);
  margin: 0 auto 10px;
}

#slider3 .swiper-slide .slide-text span {
  font-size: 30px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

#slider3 .swiper-slide .slide-text p {
  color: #6E718E;
}

#slider3 .swiper-slide .slide-img {
  width: 296px;
  height: 296px;
  max-width: calc(100% - 32px);
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin: 100px auto 16px;
}

#slider3 .swiper-slide .slide-img img {
  max-width: 100%;
}

.teknasyon-edu {
  width: 1168px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.teknasyon-edu .head {
  text-align: center;
  margin: 0 auto 24px;
  max-width: calc(100% - 32px);
}

.teknasyon-edu .head span {
  font-weight: 800;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 16px;
  display: block;
}

.teknasyon-edu .head p {
  color: #6E718E;
}

#slider4 {
  width: 100%;
  overflow: hidden;
  padding: 0 8px;
  transform: translate(8px, 0px);
  margin-left: -8px;
  margin-right: -8px;
}

#slider4 .swiper-wrapper {
  display: flex;
  align-items: center;
}

#slider4 .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
  flex-shrink: 0;
  background-color: #fff;
  background-image: url('../img/growhub-features-bg.svg');
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  color: #fff;
}

#slider4 .swiper-slide:nth-child(1),
#slider4 .swiper-slide:nth-child(1) .slide-inside  {
  background-color: #7bb6fe;
}

#slider4 .swiper-slide:nth-child(2),
#slider4 .swiper-slide:nth-child(2) .slide-inside  {
  background-color: #7b6dd9;
}

#slider4 .swiper-slide:nth-child(3),
#slider4 .swiper-slide:nth-child(3) .slide-inside  {
  background-color: #85cfb7;
}

#slider4 .swiper-slide:nth-child(4),
#slider4 .swiper-slide:nth-child(4) .slide-inside  {
  background-color: #ab5070;
}

#slider4 .swiper-slide .slide-inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

#slider4 .swiper-slide .slide-inside img {
  margin-bottom: 16px;
}

.teknasyon-community {
  width: 1168px;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.teknasyon-community .head {
  text-align: center;
  margin: 0 auto 24px;
  max-width: calc(100% - 32px);
}

.teknasyon-community .head span {
  font-weight: 800;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 16px;
  display: block;
}

.teknasyon-community .head p {
  color: #6E718E;
}

#slider5 {
  width: 100%;
  overflow: hidden;
  padding: 0 8px;
  transform: translate(8px, 0px);
  margin-left: -8px;
  margin-right: -8px;  
}

#slider5 .swiper-wrapper {
  display: flex;
}

#slider5 .swiper-slide {
  width: 85%;
  flex-shrink: 0;
  background-color: #5043aa;
  border: 2px solid #7b6dd9;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  color: #fff;
}

#slider5 .swiper-slide .slide-inside {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

#slider5 .swiper-slide .slide-inside img {
  margin: 0 auto 24px;
  display: block;
}

#slider5 .swiper-slide .slide-inside p {
  margin-bottom: 24px;
}

#slider5 .swiper-slide .slide-inside a {
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  font-weight: 600;
  color: #02020a;
  background-color: #fff;
  display: block;
}

.teknasyon-follow {
  background-color: #fff;
  border-radius: 24px;
  padding: 16px;
  width: 1168px;
  max-width: calc(100% - 32px);
  margin: auto;
}

.teknasyon-follow .teknasyon-follow-text {
  margin-bottom: 24px;
}

.teknasyon-follow span {
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

.teknasyon-follow p {
  color: #6f718e;
}

.teknasyon-follow .teknasyon-follow-links {
  display: flex;
  flex-wrap: wrap;
}

.teknasyon-follow > .teknasyon-follow-links a {
  display: block;
  margin-right: 16px;
  margin-bottom: 16px;
}

.teknasyon-gallery {
  display: flex;
  flex-direction: column;
}

.teknasyon-gallery img {
  width: 100%;
}

.teknasyon-gallery > div {
  display: flex;
}

.teknasyon-gallery .first > div,
.teknasyon-gallery .third > div {
  flex-grow: 1
}

.teknasyon-opportunity {
  width: 1168px;
  max-width: calc(100% - 32px);
  margin: auto;
  padding: 16px;
  border-radius: 24px;
  background-color: #1a286f;
  background-image: url('../img/opportunity.svg');
  background-position: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.teknasyon-opportunity span {
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

.teknasyon-opportunity p {
  margin-bottom: 42px;
}

.teknasyon-opportunity a {
  display: block;
  height: 56px;
  line-height: 56px;
  padding: 0 40px;
  border-radius: 28px;
  background-color: #fff;
  color: #02020a;
  font-weight: 600;
}

.teknasyon-opportunity a:last-child {
  display: none;
}

footer {
  display: none;
  background-color: #fff;
  padding: 32px;
}

footer-inside {
  width: 1168px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

footer .footer-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

footer .footer-menu li {
  margin: 0 65px;
  position: relative;
}

footer .footer-menu li:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #3d3c3c;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -64px;
}

footer .footer-menu li:last-child:after {
  display: none;
}

footer .footer-menu li a {
  display: inline-block;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
}

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

footer .footer-social span {
  display: block;
  height: 20px;
  line-height: 20px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #6f718e;
}

footer .footer-social .footer-social-links {
  display: flex;
}

footer .footer-social .footer-social-links a {
  display: block;
  margin: 0 14px;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  header {
    font-size: 20px; 
  }

  section {
    margin-bottom: 160px;
  }

  .about-teknasyon {
    flex-direction: row;
  }

  .about-teknasyon-text {
    padding: 32px;
  }

  .about-teknasyon img:first-child {
    display: none;
  }

  .about-teknasyon img:last-child {
    display: block;
  }

  #slider1 .swiper-slide {
    width: 45%;
  }

  #slider2 {
    margin: 0 auto 0;
  }

  #slider2 .swiper-slide {
    width: 256px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  #slider3 .swiper-pagination {
    display: inline-flex;
    margin: 0 auto 32px;
    max-width: calc(100% - 32px);
  }

  #slider3 .swiper-controls {
    left: 16px;
    bottom: 16px;
    margin: 0;
  }

  #slider3 .swiper-slide {
    display: flex;
    padding: 16px;
    align-items: flex-start;
  }

  #slider3 .swiper-slide .slide-img {
    margin-top: 0;
    height: auto;
  }

  #slider3 .swiper-slide .slide-text {
    width: auto;
  }

  #slider4 .swiper-slide,
  #slider5 .swiper-slide {
    width: 45%;
  }

  .teknasyon-gallery {
    flex-direction: row;
  }

  .teknasyon-opportunity {
    border-radius: 32px;
  }

  .teknasyon-opportunity a {
    display: inline-block;
  }

  .teknasyon-opportunity a:first-child {
    display: none;
  }

  .teknasyon-opportunity a:last-child {
    display: inline-block;
  }

  footer {
    display: block;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .growhub-features .growhub-features-title {
    margin-bottom: 48px;
  }
  .growhub-features .growhub-features-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .growhub-features .growhub-feat {
    width: calc(33.3333% - 21px);
  }

  #slider3 .swiper-controls {
    left: 24px;
    bottom: 24px;
  }

  #slider3 .swiper-slide {
    padding: 24px;
  }

  #slider3 .swiper-slide .slide-img {
    width: 350px;
    height: auto;
  }

  .about-teknasyon-text {
    padding: 48px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body {
    background-image: url('../img/body-bg.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
  }

  main > section:first-child {
    position: relative;
  }

  main > section:first-child:after {
    content: '';
    position: absolute;
    width: 84px;
    height: 84px;
    right: 30px;
    bottom: 100px;
    background-image: url('../img/shape-1.svg');
  }
  
  header {
    width: 787px;
    padding: 64px 0;
  }

  #slider1 {
    width: 1168px;
    max-width: calc(100% - 32px);
    margin: 0 auto 0;
    padding: 0;
    transform: translate(0, 0);    
  }

  #slider1 .swiper-wrapper {
    justify-content: space-between;
  }

  #slider1 .swiper-slide {
    width: calc(33.3333% - 20px);
    margin-right: 0 !important;
  }

  #slider1 .swiper-slide > a {
    background-color: #fff !important;
    border-color: #d3d5e1;
    transition: all .3s linear;
  }

  #slider1 .swiper-slide:nth-child(3n-2):hover > a {
    background-color: #f0d274 !important;
  }

  #slider1 .swiper-slide:nth-child(3n-1):hover > a {
    background-color: #796dd3 !important;
  }

  #slider1 .swiper-slide:nth-child(3n):hover > a {
    background-color: #8bd0b8 !important;
  }

  #slider2 .swiper-slide:hover {
    background-image: url('../img/great-place-bg.png');
    background-size: 110%;
  }

  #slider3 .swiper-controls {
    left: 48px;
    bottom: 48px;
  }

  #slider3 .swiper-slide {
    padding: 48px;
  }

  #slider3 .swiper-slide .slide-img {
    width: 500px;
  }

  .teknasyon-edu {
    display: flex;
    justify-content: space-between;
  }

  .teknasyon-edu .head {
    text-align: left;
  }

  .teknasyon-edu .head span {
    font-size: 40px;
    line-height: 48px;
  }

  .teknasyon-edu .content {
    width: 648px;
    flex-shrink: 0;
    margin-left: 16px;
  }

  .about-teknasyon-text {
    padding: 78px;
  }

  #slider4 {
    padding: 0;
    margin: 0;
    transform: translate(0, 0);
  }

  #slider4 .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #slider4 .swiper-slide {
    background-image: none;
    width: 307px;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #slider4 .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/growhub-features-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
  }

  #slider4 .swiper-slide .slide-inside {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #slider4 .swiper-slide .slide-inside img {
    transition: transform 0.3s ease;
  }

  #slider4 .swiper-slide .slide-inside p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    margin: 0;
    padding: 16px 0 0;
    line-height: 20px;
    font-size: 14px;
  }

  #slider4 .swiper-slide:nth-child(1),
  #slider4 .swiper-slide:nth-child(2) {
    margin-bottom: 24px;
  }

  #slider4 .swiper-slide:nth-child(1) {
    border-bottom-right-radius: 16px;
    box-shadow: inset 0 0 0 6px rgba(171, 217, 251, 1);
  }

  #slider4 .swiper-slide:nth-child(2) {
    border-bottom-left-radius: 16px;
    box-shadow: inset 0 0 0 6px rgba(153, 148, 218, 1);
  }

  #slider4 .swiper-slide:nth-child(3) {
    border-top-right-radius: 16px;
    box-shadow: inset 0 0 0 6px rgba(157, 227, 207, 1);
  }

  #slider4 .swiper-slide:nth-child(4) {
    border-top-left-radius: 16px;
    box-shadow: inset 0 0 0 6px rgba(207, 110, 144, 1);
  }

  #slider4 .swiper-slide:hover::before {
    opacity: 1;
  }

  #slider4 .swiper-slide:hover {
    box-shadow: inset 0 0 0 6px transparent;
  }

  #slider4 .swiper-slide:hover .slide-inside img {
    transform: translateY(-25px);
  }

  #slider4 .swiper-slide:hover .slide-inside p {
    opacity: 1;
    transform: translateY(-10px);
  }

  #slider5 {
    padding-top: 16px;
  }

  #slider5 .swiper-wrapper {
    justify-content: space-between;
    align-items: flex-start;
  }

  #slider5 .swiper-slide {
    width: 268px;
    height: 172px;
    position: relative;
    transition: 0.3s;
  }

  #slider5 .swiper-slide:hover {
    background-color: #e0776e;
    border-color: #f49b98;
    height: auto;
  }

  #slider5 .swiper-slide:hover:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    width: 48px;
    height: 48px;
    margin: auto;
    background: url('../img/community-hover.svg');
    z-index: 2;
  }

  #slider5 .swiper-slide .slide-inside {
    justify-content: center;
  }

  #slider5 .swiper-slide .slide-inside img {
    margin: 0;
  }

  #slider5 .swiper-slide .slide-inside p,
  #slider5 .swiper-slide .slide-inside a {
   display: none;
  }

  #slider5 .swiper-slide:hover .slide-inside p,
  #slider5 .swiper-slide:hover .slide-inside a {
    display: block;
  }
  #slider5 .swiper-slide:hover .slide-inside img {
    margin: 0 auto 24px;
  }

  .teknasyon-follow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px
  }

  .teknasyon-follow .teknasyon-follow-links {
    flex-shrink: 0;
    margin-left: 20px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  #slider3 .swiper-controls {
    left: 64px;
    bottom: 64px;
  }
  #slider3 .swiper-slide {
    padding: 64px;
  }
}
