:root {
  --text-color: #333;
  --span: #4f80ef;
  --button-bg: linear-gradient(94deg, #2d63d8 -54.35%, #3048a5 73.12%);
  --white: #fff;
  --black: #000;
  --transition: all 0.2s ease-in-out;
}

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Lato", sans-serif;
  color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  outline: none;
  border: none;
  text-align: unset;
}

.header-top {
  background-color: var(--white);
  color: var(--text-color);
  padding: 10px;
}

.header-top-inner {
  display: flex;
  align-self: center;
  justify-content: space-between;
}

.header-top-inner .left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top-inner .right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-top-inner .right i {
  font-size: 15px;
}

.header-top-inner a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.header-top-inner a:hover {
  color: var(--span);
}

header {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

header nav ul {
  display: flex;
  align-items: center;
}

header nav ul li a {
  padding: 0 16px;
  color: var(--white);
  font-family: Raleway;
  font-size: 15.771px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

header nav ul .dropdown-li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  cursor: pointer;
}

header nav ul .dropdown-li .dropdown-menu {
  position: absolute;
  display: block;
  top: 120%;
  right: 10%;
  background: var(--white);
  color: var(--black);
  padding: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: var(--transition);
}

header nav ul .dropdown-li.active .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

header nav ul .dropdown-li .chevron-down {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

header nav ul .dropdown-li.active .chevron-down {
  transform: rotate(180deg);
}

header nav ul .dropdown-li .dropdown-menu li button {
  padding: 8px 16px;
  display: block;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  width: 100%;
}

header nav ul .dropdown-li .dropdown-menu li button:hover,
header nav ul .dropdown-li .dropdown-menu li button.active {
  background: var(--button-bg);
  color: var(--white);
}

.lang-button {
  display: none;
}

.close-icon {
  display: none;
}

.menu-trigger {
  display: none;
}

@media (max-width: 992px) {
  .sidebar-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .sidebar {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-bg);
    width: 350px;
    height: 100vh;
    z-index: 10;
    transition: var(--transition);
    transform: translateX(350px);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .close-icon {
    position: absolute;
    top: 5%;
    right: 10%;
    cursor: pointer;
    display: block;
  }

  .close-icon i {
    font-size: 26px;
  }

  .sidebar ul {
    flex-direction: column;
    gap: 32px;
  }

  .sidebar ul li a {
    font-size: 26px;
  }

  .lang-button {
    display: block;
  }

  .lang-button button {
    background-color: unset;
    color: var(--white);
    text-transform: uppercase;
    font-size: 26px;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .dropdown-li {
    display: none !important;
  }

  .menu-trigger {
    display: block;
    cursor: pointer;
  }

  .menu-trigger i {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .header-top-inner .left a span {
    display: none;
  }
}

/* ANA SAYFA */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80vh;
  width: 100vw;
}

.hero-section .hero-left {
  width: 50%;
}

.hero-section .hero-left h1 {
  color: var(--white);
  font-size: clamp(24px, 5vw, 53px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 30px;
}

.hero-button {
  display: inline-flex;
  padding: 14.254px 46.326px;
  justify-content: center;
  align-items: center;
  gap: 8.909px;
  border-radius: 13.363px;
  background: #3048a5;
  color: var(--white);
  transition: var(--transition);
}

.hero-button:hover {
  background: white;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 90vh;
    padding-top: 40px;
  }
}

.benefits-section {
  background: rgba(238, 238, 238, 0.12);
  backdrop-filter: blur(44.544673919677734px);
  padding: 20px 0;
}

.benefits-section-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 130px;
}

.benefits-section-inner .benefit {
  display: flex;
  align-items: center;
  gap: 30px;
}

.benefits-section-inner .benefit h5 {
  color: var(--white);
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

@media (max-width: 992px) {
  .benefits-section-inner {
    gap: 24px;
  }
}

@media (max-width: 465px) {
  .benefits-section-inner {
    justify-content: start;
  }
}

.about-us {
  padding: 50px 0;
}

.about-us-text {
  text-align: center;
}

.about-us-text h3 {
  color: var(--white);
  font-size: clamp(16px, 5vw, 32px);
  font-style: normal;
  font-weight: 400;
  line-height: 42.763px;
  padding-bottom: 16px;
}

.about-us-text p {
  color: #a9a9a9;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 21.381px;
}

.about-us-cards {
  padding: 50px 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.about-us-card {
  max-width: 310px;
  width: 100%;
  border-radius: 35.636px;
  border: 4.454px solid rgba(95, 164, 234, 0.55);
  background: #202020;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  gap: 45px;
  position: relative;
}

.about-us-card.dynamic-bg {
  background-size: 170px auto;
  background-position: center;
  background-repeat: no-repeat;
}

.bottom {
  position: absolute;
  bottom: -30px;
  left: 0;
}

.about-us-card.page {
  height: 400px;
  justify-content: unset;
}

.more-bottom {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
}

.about-us-card .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-color);
  border-radius: 23px;
}

.about-us-card .slogan {
  color: #f9f9f9;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-us-card .chart-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-us-card .more {
  display: flex;
  align-items: center;
  padding-top: 10px;
  color: #f9f9f9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 8px;
  transition: var(--transition);
}

.about-us-card .more:hover {
  color: var(--span);
}

@media (max-width: 992px) {
  .about-us-cards {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .about-us-cards {
    justify-content: center;
  }
}

.contact-us {
  border-radius: 9.8px;
  border: 0.891px solid #fff;
  background: rgba(255, 255, 255, 0.11);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-us-left,
.contact-us-right {
  width: 50%;
}

.contact-us-right h4 {
  color: var(--white);
  text-shadow: 0px 1.849px 1.849px rgba(0, 0, 0, 0.25);
  font-size: 36.837px;
  font-style: normal;
  font-weight: 400;
  line-height: 52.282px;
  padding-bottom: 14px;
}

.contact-us-right h4 span {
  color: var(--span);
}

.contact-us-right p {
  color: #9e9e9e;
  font-size: 12.473px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.709px; /* 150% */
  padding-bottom: 26px;
}

#emaliForm .input {
  height: 44px;
  display: flex;
}

#emaliForm .input input,
#emaliForm .input button {
  height: 45px;
  padding: 0;
}

#emaliForm .input input {
  width: 70%;
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(222.72337341308594px);
  outline: none;
  border: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: var(--white);
  border-left: 1px solid transparent;
  transition: var(--transition);
}

#emaliForm .input input:focus {
  border-left: 1px solid var(--white);
}

#emaliForm .input button {
  width: 30%;
  border-radius: 0px 8.018px 8.018px 0px;
  background: linear-gradient(98deg, #2a6bf2 -44.89%, #2d3794 95.32%);
  text-align: center;
  color: var(--white);
  font-size: 14.254px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.709px;
}

@media (max-width: 768px) {
  .contact-us {
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    text-align: center;
  }

  .contact-us-left,
  .contact-us-right {
    width: 100%;
  }

  .contact-us-left {
    display: flex;
    justify-content: center;
  }
}

/* FOOTER */
footer {
  background: rgba(238, 238, 238, 0.1);
  padding: 47px 0 34px 0;
  color: var(--white);
}

footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  color: var(--white);
  padding-bottom: 24px;
}

@media (max-width: 968px) {
  footer .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  footer .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
}

@media (max-width: 576px) {
  footer .footer-inner {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}

.slogan {
  padding-top: 12px;
  color: var(--white);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.575px; /* 173.654% */
  letter-spacing: -0.195px;
}

.col-title {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 125% */
  padding-bottom: 18px;
}

footer .column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .column ul li a {
  color: var(--white) !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
  transition: all 0.3s ease-in-out;
}

footer .column ul li a:hover {
  color: var(--primary) !important;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-block-item {
  display: flex;
  gap: 6px;
}

.contact-block-item span {
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 166.667% */
}

.contact-block-item p {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px; /* 146.429% */
}

.contact-block-item a {
  color: var(--white) !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
  transition: all 0.3s ease-in-out;
}
.contact-block-item a:hover {
  color: var(--primary) !important;
}

.contact-block-item i {
  padding-right: 4px;
}

.contact-block-item span {
  display: flex;
}

.socials {
  display: flex;
  gap: 6px;
}

.socials i {
  font-size: 18px;
}

.socials a svg {
  transition: all 0.3s ease-in-out;
}

.socials a:hover svg {
  fill: var(--primary);
}

.copyright {
  border-top: 1px solid;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.copright-inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.copyright-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
/* FOOTER */

/* ANA SAYFA */

/* BİZ KİMİZ */
.about-us-page {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-us-page .left {
  width: 50%;
}

.about-us-page .left h3 {
  color: var(--white);
  font-size: 29.023px;
  font-style: normal;
  font-weight: 500;
  line-height: 38.785px; /* 133.634% */
  padding-bottom: 12px;
}

.about-us-page .left p {
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.381px; /* 142.543% */
}

.about-us-page .right {
  position: relative;
}

.about-us-page .right img {
  border-radius: 23px;
  margin-right: 50px;
  position: relative;
  z-index: 1;
}

.about-us-page .right::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 90%;
  right: 0;
  top: 55px;
  background: transparent;
  border: 1px solid white;
  border-radius: 25px;
  z-index: 0;
}

@media (max-width: 768px) {
  .about-us-page {
    flex-direction: column;
    justify-content: center;
    padding: 50px 16px;
  }

  .about-us-page .left {
    width: 100%;
    text-align: center;
    padding-bottom: 24px;
  }

  .about-us-page .right {
    width: 60%;
  }

  .about-us-page .right::after {
    width: 80%;
    right: -20px;
  }
}
/* BİZ KİMİZ */

/* HESAP BİLGİLERİ */
.hesap-bilgileri {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}

.hesap-bilgileri .left {
  width: 45%;
}

.hesap-bilgileri .right {
  width: 50%;
}

.hesap-bilgileri .left h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 29.023px;
  font-style: normal;
  font-weight: 500;
  line-height: 38.785px;
}

.hesap-bilgileri .left p {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 46px 0;
}

.hesap-bilgileri .left .account-info {
  border-radius: 35.636px;
  border: 4.454px solid rgba(95, 164, 234, 0.55);
  background: #202020;
  padding: 32px 0;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block:not(:first-child) {
  padding-top: 32px;
}

.info-block li.title {
  color: var(--white);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px; /* 141.176% */
  padding-left: 48px;
}

.info-block li {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 141.176% */
  padding: 6px 0 6px 48px;
}

.info-block li:not(:last-child) {
  border-bottom: 1px solid var(--white);
}

@media (max-width: 768px) {
  .hesap-bilgileri {
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hesap-bilgileri .left {
    width: 100%;
  }
  .hesap-bilgileri .right {
    width: 100%;
  }
}
/* HESAP BİLGİLERİ */

/* İLETİŞİM */
.contact-page-header {
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-page-header h3 {
  display: flex;
  gap: 12px;
  font-size: 29.023px;
  font-style: normal;
  font-weight: 500;
  line-height: 38.785px; /* 133.634% */
}

.contact-page-form {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-page-form .left {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-page-form .right {
  width: 60%;
}

.contact-box {
  position: relative;
  border-radius: 3px;
  border: 1px solid #000;
  background: #fcfcfc;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  padding: 30px;
}

.contact-box::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--span);
}

.contact-box .left {
  color: #202934;
  font-size: 16.212px;
  font-style: normal;
  font-weight: 500;
  line-height: 36.477px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.contact-box .left i {
  color: var(--span);
  font-size: 36px;
}

.contact-box .right {
  color: var(--text-color);
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 200% */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
}

.contact-box a {
  transition: var(--transition);
}

.contact-box a:hover {
  color: var(--span);
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-container {
  display: flex;
  gap: 24px;
  width: 100%;
}

.input-container input {
  border-radius: 7px;
  border: 0.35px solid #6b6b6b;
  background: #fcfcfc;
  height: 50px;
  border: 1px solid transparent;
  transition: var(--transition);
  width: 100%;
  outline: none;
  padding-left: 16px;
}

.input-container input:focus {
  border: 1px solid var(--span);
}

.input-container input::placeholder {
  color: #a9aeb3;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 55px; /* 458.333% */
}

#contactForm label {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
}

input[type="checkbox"] {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  border-radius: 2px;
  border: 0.45px solid #fcfcfc;
  background-color: transparent;
}

textarea {
  border-radius: 7px;
  border: 0.35px solid #6b6b6b;
  background: #fcfcfc;
  border: 1px solid transparent;
  transition: var(--transition);
  width: 100%;
  outline: none;
  padding-left: 16px;
}

textarea:focus {
  border: 1px solid var(--span);
}

textarea::placeholder {
  color: #a9aeb3;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 55px; /* 458.333% */
}

#contactForm button {
  width: 182px;
  height: 51px;
  flex-shrink: 0;
  border-radius: 5px;
  background: linear-gradient(
    90deg,
    #202934 37.63%,
    rgba(0, 0, 0, 0.25) 90.46%
  );
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.304px; /* 159.314% */
  text-align: center;
}

@media (max-width: 992px) {
  .contact-page-form {
    flex-direction: column;
    gap: 32px;
  }

  .contact-page-form .left,
  .contact-page-form .right {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .input-container {
    flex-direction: column;
  }
}

/* İLETİŞİM */

/* HİZMETLERİMİZ */
.services-header {
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-header h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 29.023px;
  font-style: normal;
  font-weight: 500;
  line-height: 38.785px; /* 133.634% */
}
/* HİZMETLERİMİZ */

@media (max-width: 576px) {
  .section-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.whatsapp-box {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(98deg, #2a6bf2 -44.89%, #2d3794 95.32%);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
}

.account-info {
  border-radius: 35.636px;
  border: 4.454px solid rgba(95, 164, 234, 0.55);
  background: #202020;
  padding: 32px 0;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block:not(:first-child) {
  padding-top: 32px;
}

.info-block li.title {
  color: var(--white);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: 24px;
  /* 141.176% */
  padding-left: 48px;
}

.info-block li {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 141.176% */
  padding: 6px 0 6px 48px;
}

.info-block li:not(:last-child) {
  border-bottom: 1px solid var(--white);
}
.info-block.page li {
  font-size: 18px;
}

.account-info h4 {
  padding-left: 48px;
  font-size: 24px;
  font-weight: 700;
}

.currency-section {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.currency-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;
  flex: 1;
}

.currency-boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 600px;
  overflow: scroll;
  flex: 1;
  max-width: 600px;
  width: 100%;
}

.currency-section-inner .currency-box {
  border-radius: 20px;
  background: #d9d9d9;
  box-shadow: 1px 4px 34px 1px rgba(92, 62, 188, 1);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  width: 100%;
}

.currency-section-inner .currency-box .right {
  display: grid;
  gap: 32px;
  color: #2f53b8;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  grid-template-columns: 1fr 1fr;
  width: 250px;
}

.currency-section-inner .currency-box .right .alis {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-section-inner .currency-box .right .satis {
  display: flex;
  align-items: center;
  gap: 8px;
}

.birim {
  color: #2f53b8;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.para {
  color: #2f53b8;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.increase {
  color: #48a100;
}

.decrease {
  color: #b82f2f;
}

@media (max-width: 567px) {
  .currency-section-inner .currency-box .right {
    width: 200px;
  }

  .currency-boxes {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .birim {
    font-size: 20px;
  }

  .para {
    font-size: 16px;
  }

  .hero-section {
    height: auto;
  }

  .currency-section-inner .currency-box .right {
    font-size: 18px;
  }

  .currency-section-inner .currency-box .right .alis,
  .currency-section-inner .currency-box .right .satis {
    font-size: 16px;
  }
}
