@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body {
  scroll-behavior: smooth;
  max-width: 100vw;
  position: relative;
}

.h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.25em;
}

@media only screen and (max-width: 1600px) {
  .h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1400px) {
  .h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 700px) {
  .h2 {
    font-size: 30px;
  }
}
header {
  height: 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: #F2D717;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 100px;
}
header .logo {
  display: flex;
}
header .logo img {
  height: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 35px;
}
header nav a {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: 0.25s ease;
}
header nav a:hover, header nav a.active {
  color: #3F65CF;
}
header .cta__btn a {
  font-size: 20px;
  padding: 0.5em 1.5em;
  color: #F47A4F;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #3F65CF;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 55;
  background: #3F65CF;
  backdrop-filter: blur(5px);
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 2px solid #FB753F;
  font-weight: 600;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1400px) {
  header {
    height: 6rem;
  }
  header .logo img {
    height: 2.5rem;
  }
  header .left {
    gap: 35px;
  }
  header nav {
    gap: 25px;
  }
  header nav a {
    font-size: 15px;
  }
  header .cta__btn a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) {
  header {
    padding: 0 10%;
  }
  header nav {
    display: none;
  }
  header .cta__btn {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}
.btn a {
  font-size: 33px;
  border: 3px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  padding: 0.25em 1.5em;
  font-weight: 700;
  transition: 0.2s ease;
  z-index: 2;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  border-radius: 50px;
}
.btn:hover a {
  transform: translateX(10px);
}

@media only screen and (max-width: 1600px) {
  .btn a {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1400px) {
  .btn a {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) {
  .btn a {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) {
  .btn a {
    font-size: 19px;
  }
}
footer {
  padding: 3.5rem 5%;
  background: #D9D9D9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer img {
  height: 3.5rem;
}
footer .socials {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
footer .socials span {
  font-size: 20px;
}
footer .socials .links {
  font-size: 27px;
  font-weight: 700;
}
footer .socials .links a {
  text-decoration: none;
  color: #000;
  transition: 0.25s ease;
}
footer .socials .links a:hover {
  color: #3F65CF;
}
footer .link {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

@media only screen and (max-width: 1400px) {
  footer .socials {
    gap: 10px;
  }
  footer .socials span {
    font-size: 16px;
  }
  footer .socials .links {
    font-size: 21px;
  }
  footer .link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 850px) {
  footer img {
    height: 2.5rem;
  }
  footer .socials {
    flex-flow: column;
    gap: 0;
  }
  footer .link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    justify-content: space-around;
    flex-flow: row wrap;
    gap: 5px;
    row-gap: 20px;
  }
  footer img {
    flex: 100%;
    height: auto;
    margin: 0 25%;
  }
  footer .socials {
    flex: 100%;
    flex-flow: row;
    gap: 10px;
    justify-content: center;
  }
  footer .link {
    font-size: 14px;
  }
}
.gallery {
  padding: 5rem 10%;
}
.gallery .slide {
  display: none;
}
.gallery .slide#gallery-slide-1 {
  display: flex;
}
.gallery .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.gallery .content .image {
  width: 100%;
  height: 17.5vw;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
}
.gallery .content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.35s ease;
  display: block;
}
.gallery .content .image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: rgba(63, 101, 207, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.gallery .content .image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%233F65CF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/22px no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery .content .image:hover img {
  transform: scale(1.07);
}
.gallery .content .image:hover::after {
  background: rgba(63, 101, 207, 0.25);
}
.gallery .content .image:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 2.5rem;
}
.gallery .navigation button {
  height: 41px;
  width: 41px;
  border-radius: 50%;
  background: rgba(63, 101, 207, 0.6);
  border: none;
  transition: 0.25s ease;
  cursor: pointer;
}
.gallery .navigation button.active, .gallery .navigation button:hover {
  background: #3F65CF;
}
.gallery .navigation .gallery-nav-arrow {
  width: 69px;
  height: 69px;
  background: none;
  border: none;
  color: #3F65CF;
  font-size: 45px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding-bottom: 1px;
  flex-shrink: 0;
}
.gallery .navigation .gallery-nav-arrow:hover {
  background: none;
}
.gallery .navigation .gallery-nav-arrow:active {
  transform: scale(0.92);
}
.gallery .navigation .gallery-nav-arrow.gallery-nav-prev {
  margin-right: 4px;
}
.gallery .navigation .gallery-nav-arrow.gallery-nav-next {
  margin-left: 4px;
}

#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#gallery-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 35, 0.88);
  backdrop-filter: blur(6px);
  cursor: zoom-out;
}

#gallery-lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: calc(100vw - 200px);
  max-height: 90vh;
  transition: opacity 0.15s ease;
}
#gallery-lb-img-wrap.switching {
  opacity: 0;
}
#gallery-lb-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

#gallery-lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding-bottom: 2px;
}
#gallery-lb-close:hover {
  background: rgba(63, 101, 207, 0.8);
  border-color: #3F65CF;
  transform: rotate(90deg);
}

#gallery-lb-prev,
#gallery-lb-next {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding-bottom: 2px;
  margin: 0 16px;
  user-select: none;
}
#gallery-lb-prev:hover,
#gallery-lb-next:hover {
  background: #3F65CF;
  border-color: #3F65CF;
}
#gallery-lb-prev:active,
#gallery-lb-next:active {
  transform: scale(0.92);
}

#gallery-lb-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 16px;
  border-radius: 20px;
}

body.lb-open {
  overflow: hidden;
}

@media only screen and (max-width: 700px) {
  #gallery-lb-img-wrap {
    max-width: calc(100vw - 100px);
  }
  #gallery-lb-prev,
  #gallery-lb-next {
    width: 44px;
    height: 44px;
    font-size: 32px;
    margin: 0 6px;
  }
  #gallery-lb-close {
    width: 42px;
    height: 42px;
    font-size: 26px;
    top: 12px;
    right: 12px;
  }
}
@media only screen and (max-width: 1550px) {
  .gallery .navigation button {
    height: 35px;
    width: 35px;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 60px;
    height: 60px;
    font-size: 39px;
  }
}
@media only screen and (max-width: 1300px) {
  .gallery .content {
    gap: 25px;
  }
  .gallery .navigation button {
    height: 27px;
    width: 27px;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 51px;
    height: 51px;
    font-size: 33px;
  }
}
@media only screen and (max-width: 700px) {
  .gallery {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .gallery .content {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    padding: 0 5%;
  }
  .gallery .content .image {
    height: auto;
    aspect-ratio: 16/12;
    border-radius: 15px;
  }
  .gallery .content .image img {
    border-radius: 15px;
  }
  .gallery .navigation {
    margin-top: 1.5rem;
    gap: 12px;
  }
  .gallery .navigation button {
    height: 23px;
    width: 23px;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.6);
  }
  .gallery .navigation button.active, .gallery .navigation button:hover {
    background: #fff;
  }
  .gallery .navigation .gallery-nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 30px;
    color: #fff;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  color: #fff;
}

@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
.partners {
  padding: 5rem 10% 7.5rem;
}
.partners h2.h2 {
  text-align: center;
}
.partners .partners__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 35px;
  margin-top: 2rem;
}
.partners .partners__content img {
  width: 140px;
  height: 55px;
  object-fit: contain;
}
.partners .partners__content img[src*=tepe] {
  width: 90px;
}

@media only screen and (max-width: 1400px) {
  .partners {
    padding-top: 3rem;
  }
  .partners .partners__content {
    gap: 15px 25px;
  }
  .partners .partners__content img {
    width: 115px;
    height: 45px;
  }
}
@media only screen and (max-width: 900px) {
  .partners {
    padding: 5rem 10%;
  }
}
@media only screen and (max-width: 700px) {
  .partners {
    padding: 3.5rem 10%;
  }
  .partners .partners__content {
    gap: 15px 20px;
  }
  .partners .partners__content img {
    width: 90px;
    height: 35px;
  }
}
.blog {
  padding: 7.5rem 5%;
}
.blog .h2 {
  text-align: center;
}
.blog .blog__content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 25px;
  padding-top: 4rem;
  width: 100%;
}
.blog .blog__content .item {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 0.2fr;
  gap: 50px;
  align-items: stretch;
  contain: layout;
  cursor: pointer;
}
.blog .blog__content .item:nth-of-type(1) .text {
  background: #F2D717;
}
.blog .blog__content .item:nth-of-type(3) .text {
  background: #3F65CF;
}
.blog .blog__content .item:nth-of-type(3) .text h3, .blog .blog__content .item:nth-of-type(3) .text p {
  color: #fff;
}
.blog .blog__content .item:nth-of-type(5) .text {
  background: #fff;
}
.blog .blog__content .item .text {
  padding: 5rem 10%;
  min-height: 300px;
  width: 100%;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1rem;
  position: relative;
  border: 3px solid #000;
  align-self: stretch;
  transition: 0.25s ease;
}
.blog .blog__content .item .text:hover {
  border-left: 10px solid #000;
}
.blog .blog__content .item .text h3 {
  font-size: 50px;
  font-weight: 800;
  text-align: center;
}
.blog .blog__content .item .text p {
  text-align: center;
  font-size: 20px;
}
.blog .blog__content .item .text .arrow {
  width: 30px;
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.blog .blog__content .item .image {
  width: 100%;
  position: relative;
}
.blog .blog__content .item .image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 25px;
  object-fit: cover;
}
.blog .blog__popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 500;
  display: none;
}
.blog .blog__popup .popup__content {
  height: 500px;
  width: 80vw;
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 50px 15%;
  border-radius: 20px;
  border: 2px solid #000;
}
.blog .blog__popup .popup__content .close__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.blog .blog__popup .popup__content .close__btn svg {
  height: 41px;
  width: 41px;
}
.blog .blog__popup .popup__content h3 {
  font-size: 51px;
  text-align: center;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 1600px) {
  .blog .blog__content .item .text h3 {
    font-size: 45px;
  }
  .blog .blog__content .item .text p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1400px) {
  .blog {
    padding: 7.5rem 5%;
  }
  .blog .blog__content {
    row-gap: 50px;
  }
  .blog .blog__content .item .text {
    padding: 70px 10%;
  }
  .blog .blog__content .item .text h3 {
    font-size: 30px;
  }
  .blog .blog__content .item .text p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) {
  .blog {
    padding: 5rem 5%;
  }
  .blog .blog__content {
    row-gap: 25px;
  }
  .blog .blog__content .item {
    gap: 15px;
  }
  .blog .blog__content .item .text {
    padding: 50px 10%;
  }
  .blog .blog__content .item .text h3 {
    font-size: 25px;
  }
  .blog .blog__content .item .text p {
    font-size: 15px;
  }
  .blog .blog__content .item .text .arrow {
    width: 22px;
    bottom: 15px;
    right: 15px;
  }
}
@media only screen and (max-width: 700px) {
  .blog {
    padding: 5rem 5%;
  }
  .blog .blog__content {
    row-gap: 65px;
  }
  .blog .blog__content .item {
    grid-template-columns: 1fr;
  }
  .blog .blog__content .item .text {
    padding: 5rem 20px;
    min-height: 0;
  }
  .blog .blog__content .item .text h3 {
    font-size: 20px;
  }
  .blog .blog__content .item .text p {
    font-size: 14px;
  }
  .blog .blog__content .item .image {
    height: 250px;
  }
  .blog .blog__content .item .image img {
    object-position: top;
    height: 100%;
  }
  .blog .blog__popup .popup__content {
    padding: 50px 7.5%;
  }
  .blog .blog__popup .popup__content .close__btn {
    top: 15px;
    right: 15px;
  }
  .blog .blog__popup .popup__content .close__btn svg {
    height: 31px;
    width: 31px;
  }
  .blog .blog__popup .popup__content h3 {
    font-size: 30px;
  }
  .blog .blog__popup .popup__content p {
    font-size: 14px;
  }
}
.hero {
  background: #F2D717;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  padding: 0 5vw;
}
.hero .text {
  padding: 5rem 0 15rem 0;
  position: relative;
}
.hero .text h1 {
  font-size: 95px;
  line-height: 1.1em;
}
.hero .text p {
  margin: 2rem 0 3rem;
  font-size: 30px;
  font-weight: 300;
}
.hero .text .bottom__content {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
}
.hero .text .bottom__content .timetable {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 5px;
  margin-top: 10px;
}
.hero .text .bottom__content .timetable .item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 75px;
}
.hero .text .bottom__content .timetable .item span {
  font-size: 20px;
  font-weight: 600;
}
.hero .text .bottom__content .timetable .item span br {
  display: none;
}
.hero .text .socials {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.hero .text .socials span {
  font-size: 26px;
}
.hero .text .socials .links {
  font-size: 33px;
  font-weight: 700;
}
.hero .text .socials .links a {
  text-decoration: none;
  color: #000;
  transition: 0.25s ease;
}
.hero .text .socials .links a:hover {
  color: #3F65CF;
}
.hero .image {
  position: relative;
  height: 100%;
  width: 100%;
}
.hero .image img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
}

@media only screen and (max-width: 1600px) {
  .hero .text h1 {
    font-size: 80px;
  }
  .hero .text p {
    font-size: 32px;
  }
  .hero .image img {
    height: 100%;
  }
}
@media only screen and (max-width: 1400px) {
  .hero .text h1 {
    font-size: 50px;
  }
  .hero .text p {
    font-size: 23px;
    margin: 2rem 0 2.5rem;
  }
  .hero .text .bottom__content .timetable .item {
    gap: 60px;
  }
  .hero .text .bottom__content .timetable .item span {
    font-size: 17px;
  }
  .hero .text .socials span {
    font-size: 21px;
  }
  .hero .text .socials .links {
    font-size: 28px;
  }
  .hero .image img {
    height: 95%;
  }
}
@media only screen and (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero .text {
    padding: 3.5rem 0 12.5rem;
  }
  .hero .text p {
    font-size: 20px;
    width: 400px;
  }
  .hero .text .bottom__content .timetable .item {
    gap: 50px;
  }
  .hero .text .bottom__content .timetable .item span {
    font-size: 16px;
  }
  .hero .text .socials span {
    font-size: 19px;
  }
  .hero .text .socials .links {
    font-size: 23px;
  }
  .hero .image img {
    left: initial;
    right: 0;
    height: 450px;
  }
}
@media only screen and (max-width: 700px) {
  .hero {
    padding: 0 10%;
    overflow-x: hidden;
  }
  .hero .text {
    width: 100%;
    padding: 1rem 0 15rem 0;
  }
  .hero .text h1 {
    font-size: 35px;
  }
  .hero .text p {
    font-size: 16px;
    width: 100%;
    margin: 1rem 0 1.25rem;
  }
  .hero .text .socials {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
    align-items: start;
    flex-flow: column;
    gap: 0;
  }
  .hero .text .bottom__content .timetable .item {
    gap: 15px;
  }
  .hero .text .bottom__content .timetable .item span {
    font-size: 14px;
  }
  .hero .text .bottom__content .timetable .item:last-child {
    max-width: 65%;
  }
  .hero .text .bottom__content .timetable .item:last-child span br {
    display: block;
  }
  .hero .image img {
    height: 300px;
    transform: translateX(45%);
  }
}
