* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(252, 252, 253);
  overflow-x: hidden !important;
  scroll-behavior: smooth !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tugmadagi kichik spinner */
.btn__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 2px solid rgba(255, 255, 255, 0.35); /* tugma foniga qarab o'zgartiring */
  border-top-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-sizing: border-box;
  animation: btn-spin 0.8s linear infinite;
}

/* Agar tugma qora matnli yoki yengil rangli bo'lsa, yuqoridagi ranglarni moslashtiring.
   Masalan, agar .btn tipi qora emas, border rangini rgba(0,0,0,0.2) va border-top-color: #000 qilib o'zgartirish mumkin. */
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
/* tugma loading paytida pointer-events va opasity boshqaruvi */
.btn--loading {
  pointer-events: none;
  opacity: 0.85;
}

.solar-bg {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 50px auto;
}
.solar-bg .orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 91, 38, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.solar-bg .orbit.orbit-1 {
  width: 45%;
  height: 45%;
}
.solar-bg .orbit.orbit-2 {
  width: 65%;
  height: 65%;
  animation: rotate1 35s linear infinite;
}
.solar-bg .orbit.orbit-2 .planet {
  background-color: #f25b26;
}
.solar-bg .orbit.orbit-3 {
  width: 83%;
  height: 83%;
}
.solar-bg .orbit.orbit-4 {
  width: 100%;
  height: 100%;
  animation: rotate2 85s linear infinite;
}
.solar-bg .orbit.orbit-4 .planet {
  background-color: #f25b26;
}
.solar-bg .orbit .planet {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotate1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
nav {
  /* ---------- RESPONSIVE STYLES ---------- */
}
nav span {
  display: none;
}
nav .navbar_wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
nav .navbar_wrapper .logo img {
  max-width: 130px;
  max-height: 130px;
}
nav .navbar_wrapper .controller_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav .navbar_wrapper .btn_wrapper a {
  padding: 10px 16px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #f25b26;
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}
nav .navbar_wrapper .btn_wrapper a:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0px 4px rgb(240, 233, 251);
}
nav .navbar_wrapper .language-select {
  position: relative;
  width: 160px;
}
nav .navbar_wrapper .language-select .selected {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 14px;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
nav .navbar_wrapper .language-select .selected .flag {
  font-size: 18px;
}
nav .navbar_wrapper .language-select .selected span {
  flex: 1;
  text-align: center;
  display: flex;
  padding-left: 10px;
  font-size: 14px;
  color: #333;
}
nav .navbar_wrapper .language-select .selected .arrow {
  transition: transform 0.3s ease;
}
nav .navbar_wrapper .language-select .selected.open .arrow {
  transform: rotate(180deg);
}
nav .navbar_wrapper .language-select .options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.25s ease;
  z-index: 999;
}
nav .navbar_wrapper .language-select .options li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  background: #fff;
}
nav .navbar_wrapper .language-select .options li span {
  display: flex;
  width: 100%;
  padding-left: 10px;
}
nav .navbar_wrapper .language-select .options li .flag {
  font-size: 18px;
}
nav .navbar_wrapper .language-select .options li:hover {
  background: #f5f5f5;
}
nav .navbar_wrapper .language-select .options li .check {
  opacity: 0;
  transition: opacity 0.2s ease;
}
nav .navbar_wrapper .language-select .options li.active .check {
  opacity: 1;
}
nav .navbar_wrapper .language-select .options.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  nav .navbar_wrapper .language-select {
    width: 62px;
  }
  nav .navbar_wrapper .language-select .selected span {
    display: none;
  }
  nav .navbar_wrapper .language-select .flag {
    font-size: 15px !important;
  }
  nav .navbar_wrapper .language-select .options {
    gap: 4px;
    background-color: transparent;
    box-shadow: none;
    border: none;
  }
  nav .navbar_wrapper .language-select .options li {
    margin: 4px;
    padding: 6px 10px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  nav .navbar_wrapper .language-select .options li span {
    display: none;
  }
}
nav .navbar_wrapper .navlink_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.4s ease;
}
nav .navbar_wrapper .navlink_wrapper .nav_links {
  display: flex;
}
nav .navbar_wrapper .navlink_wrapper .nav_links li {
  padding: 13px;
}
nav .navbar_wrapper .navlink_wrapper .nav_links li a {
  color: #101828;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
nav .navbar_wrapper .navlink_wrapper .nav_links li a:hover {
  color: #f25b26;
}
nav .navbar_wrapper .navlink_wrapper .nav_links .active {
  color: #f25b26;
}
nav .navbar_wrapper .hamburger_menu {
  display: none;
}
@media (max-width: 848px) {
  nav .navbar_wrapper .logo img {
    max-width: 100px;
    max-height: 100px;
  }
  nav .navbar_wrapper .controller_wrapper .btn_wrapper {
    display: none;
  }
  nav .navbar_wrapper .navlink_wrapper .nav_links li {
    padding: 8px;
  }
  nav .navbar_wrapper .navlink_wrapper .nav_links li a {
    font-size: 14px;
  }
  nav .navbar_wrapper .navlink_wrapper .btn_wrapper button {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 737px) {
  nav {
    padding-top: 100px;
  }
  nav .navbar_wrapper {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    background-color: rgb(252, 252, 253);
    z-index: 1000;
    top: 0;
  }
  nav .navbar_wrapper .logo img {
    max-width: 67px;
    max-height: 67px;
  }
  nav .navbar_wrapper .controller_wrapper {
    width: 100%;
    justify-content: end;
  }
  nav .navbar_wrapper .navlink_wrapper {
    position: relative;
    border: none;
    position: fixed;
    top: 50px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 50px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    transition: left 0.4s ease;
    transition: all 0.3s ease;
    z-index: 999;
    background-color: rgb(252, 252, 253);
  }
  nav .navbar_wrapper .navlink_wrapper span {
    display: block;
    position: absolute;
    z-index: 0;
  }
  nav .navbar_wrapper .navlink_wrapper .background1 {
    left: 0;
    width: 140px;
    height: 200px;
    background-image: url(../images/bacground2.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  nav .navbar_wrapper .navlink_wrapper .background2 {
    top: 150px;
    right: 0;
    width: 170px;
    height: 240px;
    background-image: url(../images/background1.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  nav .navbar_wrapper .navlink_wrapper .background3 {
    top: 360px;
    left: 0;
    width: 180px;
    height: 270px;
    background-image: url(../images/bacground2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  nav .navbar_wrapper .navlink_wrapper .background4 {
    top: 530px;
    right: 0;
    width: 140px;
    height: 230px;
    background-image: url(../images/background1.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  nav .navbar_wrapper .navlink_wrapper.menu_open {
    left: 0;
    opacity: 1;
  }
  nav .navbar_wrapper .navlink_wrapper .nav_links {
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    width: 100%;
  }
  nav .navbar_wrapper .navlink_wrapper .nav_links li {
    padding: 15px 0;
  }
  nav .navbar_wrapper .navlink_wrapper .nav_links li a {
    font-size: 18px;
    font-weight: 600;
  }
  nav .navbar_wrapper .navlink_wrapper .btn_wrapper {
    display: none;
  }
  nav .navbar_wrapper .hamburger_menu {
    display: flex;
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn .menu-btn__burger {
    width: 25px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn .menu-btn__burger::before, nav .navbar_wrapper .hamburger_menu .menu-btn .menu-btn__burger::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    background: #000;
    transition: all 0.3s ease;
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn .menu-btn__burger::before {
    transform: translateY(-7px);
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn .menu-btn__burger::after {
    transform: translateY(7px);
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn.open .menu-btn__burger {
    transform: translateX(20px);
    background: transparent;
    box-shadow: none;
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn.open .menu-btn__burger::before {
    transform: translateX(-20px) rotate(45deg);
  }
  nav .navbar_wrapper .hamburger_menu .menu-btn.open .menu-btn__burger::after {
    transform: translateX(-20px) rotate(-45deg);
  }
}

.home_hero {
  position: relative;
  /* ---------- RESPONSIVE STYLES ---------- */
}
.home_hero .home_hero_wrapper .home_hero_content {
  padding-top: 20px;
  display: flex;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side {
  flex-basis: 60%;
  max-width: 709px;
  padding-top: 70px;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .solar-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 140px;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper {
  position: relative;
  z-index: 1;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 82px;
  color: #101828;
  margin-bottom: 20px;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper h1 span {
  color: #f25b26;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #646464;
  max-width: 526px;
  line-height: 180%;
  margin-bottom: 36px;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper a {
  padding: 16px 28px;
  text-decoration: none;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #f25b26;
  transition: all 0.3s ease;
}
.home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper a:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0px 4px rgb(240, 233, 251);
}
.home_hero .home_hero_wrapper .home_hero_content .right_side {
  flex-basis: 40%;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper {
  position: absolute;
  top: 290px;
  right: 0px;
  z-index: 1;
  width: 370px;
  overflow: hidden;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper {
  position: relative;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image {
  border: 1px solid #f25b26;
  border-radius: 50%;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .deco_dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f25b26;
  position: absolute;
  bottom: 0;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card {
  width: 120px;
  padding: 20px;
  background: #fff;
  border: 1px solid #f25b26;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone .ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone .ring circle {
  fill: none;
  stroke-width: 8px;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone .ring__bg {
  stroke: #eef1f5;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone .ring__progress {
  stroke: #f25b26;
  stroke-linecap: round;
  stroke-dasharray: 226.1946708;
  stroke-dashoffset: 226.1946708;
  transition: stroke-dashoffset 1.6s ease;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .stat-number__value {
  font-size: 25px;
  font-weight: 700;
  color: #101828;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .stat-number__suffix {
  font-size: 25px;
  font-weight: 700;
  color: #101828;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .stat-label {
  font-size: 14px;
  color: rgba(16, 24, 40, 0.5);
  font-weight: 400;
  min-width: 80px;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card.is-animated .ring__progress {
  stroke-dashoffset: calc(226.1946708 * 0.4);
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2,
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 {
  border: 1px solid #f25b26;
  display: flex;
  align-items: center;
  border-radius: 18px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 18px;
  gap: 12px;
  background-color: rgb(252, 252, 253);
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .icon_wrapper,
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .icon_wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #f25b26;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .icon_wrapper img,
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .icon_wrapper img {
  pointer-events: none;
  width: 30px;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .content p,
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .content p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(16, 24, 40, 0.5);
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .content h4,
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .content h4 {
  font-size: 25px;
  font-weight: 700;
  color: #101828;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 {
  position: absolute;
  top: -20px;
  right: -30px;
  z-index: 3;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 {
  position: absolute;
  top: 180px;
  left: -80px;
  z-index: 3;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 {
  position: absolute;
  top: 370px;
  right: -60px;
  z-index: 3;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper {
  border: 1px solid #f25b26;
  position: relative;
  z-index: 2;
  transform: translate(20px, 20px);
  height: 495px;
  width: 495px;
  border-radius: 50%;
  background-color: rgb(241, 123, 20);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper img {
  height: 495px;
  width: -moz-fit-content;
  width: fit-content;
}
.home_hero .home_hero_wrapper .keywords {
  padding-top: 50px;
}
.home_hero .home_hero_wrapper .keywords ul {
  display: flex;
  gap: 34px;
  align-items: center;
}
.home_hero .home_hero_wrapper .keywords ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home_hero .home_hero_wrapper .keywords ul li img {
  pointer-events: none;
}
.home_hero .home_hero_wrapper .keywords ul li span {
  font-size: 32px;
}
.home_hero .home_hero_wrapper .keywords ul li p {
  color: rgba(29, 41, 57, 0.6980392157);
}
@media (max-width: 1200px) {
  .home_hero .home_hero_wrapper .home_hero_content {
    padding-top: 10px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .solar-bg {
    top: 20px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper h1 {
    font-size: 32px;
    line-height: 50px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper p {
    font-size: 12px;
    max-width: 350px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper a {
    padding: 16px;
    font-size: 14px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image {
    width: 400px;
    height: 400px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper {
    width: 400px;
    height: 400px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper img {
    height: 400px;
  }
}
@media (max-width: 800px) {
  .home_hero .home_hero_wrapper .home_hero_content {
    flex-direction: column-reverse;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side {
    flex-basis: 100%;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .solar-bg {
    top: 120px;
    width: 260px;
    height: 260px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper h1 {
    font-size: 32px;
    line-height: 50px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper p {
    font-size: 12px;
    max-width: 350px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper a {
    padding: 16px;
    font-size: 14px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 310px;
    height: 315px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper .solar-bg {
    width: 290px;
    height: 290px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image {
    width: 400px;
    height: 400px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper {
    width: 400px;
    height: 400px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper img {
    height: 400px;
  }
}
@media (max-width: 580px) {
  .home_hero .home_hero_wrapper .home_hero_content {
    flex-direction: column-reverse;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side {
    flex-basis: 100%;
    padding-top: 40px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .solar-bg {
    top: 20px;
    width: 160px;
    height: 160px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .solar-bg .orbit {
    border: 0.5px solid rgba(242, 91, 38, 0.3);
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .solar-bg .planet {
    width: 10px;
    height: 10px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper h1 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 7px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper p {
    font-size: 12px;
    max-width: 350px;
    margin-bottom: 12px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .left_side .left_side_wrapper a {
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 230px;
    height: 230px;
    right: 0px;
    top: 180px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper .solar-bg {
    width: 220px;
    height: 220px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper .solar-bg .orbit {
    border: 0.5px solid rgba(242, 91, 38, 0.3);
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .solar_bg_wrapper .solar-bg .planet {
    width: 12px;
    height: 12px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image {
    width: 224px;
    height: 224px;
    border: 0.5px solid #f25b26;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .deco_dot {
    width: 24px;
    height: 24px;
    left: 30px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card {
    width: 55px;
    padding: 9px;
    border: 0.5px solid #f25b26;
    border-radius: 8px;
    gap: 5px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone {
    width: 36px;
    height: 36px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .ring-zone .ring circle {
    stroke-width: 6px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .stat-number__value {
    font-size: 12px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .stat-number__suffix {
    font-size: 12px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 .stat-card .stat-label {
    font-size: 6px;
    font-weight: 400;
    min-width: auto;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2,
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 {
    border: 0.5px solid #f25b26;
    border-radius: 8px;
    padding: 8px;
    gap: 12px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .icon_wrapper,
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .icon_wrapper {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .icon_wrapper img,
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .icon_wrapper img {
    pointer-events: none;
    width: 13px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .content p,
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .content p {
    font-size: 6px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 .content h4,
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 .content h4 {
    font-size: 12px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_1 {
    position: absolute;
    top: -20px;
    right: -10px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_2 {
    position: absolute;
    top: 80px;
    left: -40px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .statistic_3 {
    position: absolute;
    top: 170px;
    right: -30px;
    z-index: 3;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper {
    transform: translate(10px, 10px);
    width: 224px;
    height: 224px;
  }
  .home_hero .home_hero_wrapper .home_hero_content .right_side .right_side_wrapper .hero_image .hero_image_wrapper img {
    height: 224px;
    width: auto;
  }
  .home_hero .home_hero_wrapper .keywords {
    padding-top: 17px;
  }
  .home_hero .home_hero_wrapper .keywords ul {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .home_hero .home_hero_wrapper .keywords ul li {
    gap: 3px;
  }
  .home_hero .home_hero_wrapper .keywords ul li img {
    width: 12px;
  }
  .home_hero .home_hero_wrapper .keywords ul li p {
    font-size: 10px;
  }
}

.popular_tools .section_title_wrapper {
  padding-top: 80px;
}
.popular_tools .section_title_wrapper h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #101828;
}
.popular_tools .section_title_wrapper p {
  font-size: 20px;
  font-weight: 400;
  color: rgb(102, 112, 133);
}
.popular_tools .course-slider {
  padding: 0;
  background: #fbfdfe;
  /* --- Pagination (centered dots + active pill) --- */
  /* --- Top-right navigation buttons --- */
  /* --- Responsive behavior --- */
}
.popular_tools .course-slider .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.popular_tools .course-slider .swiper {
  position: relative;
  padding-top: 60px;
  padding-bottom: 36px;
}
.popular_tools .course-slider .swiper-wrapper {
  align-items: stretch;
}
.popular_tools .course-slider .swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}
.popular_tools .course-slider .course-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.popular_tools .course-slider .course-card .teachers_info {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px;
}
.popular_tools .course-slider .course-card .teachers_info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.popular_tools .course-slider .course-card .teachers_info h4 {
  font-size: 18px;
  font-weight: 500;
  color: #101828;
}
.popular_tools .course-slider .course-card .teachers_info p {
  color: rgb(242, 91, 38);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-top: 8px;
  line-height: 24px;
}
.popular_tools .course-slider .course-card .teachers_info span {
  color: rgb(102, 112, 133);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin-top: 8px;
  line-height: 24px;
  margin-bottom: 16px;
}
.popular_tools .course-slider .course-card .teachers_info .social_networks {
  display: flex;
  gap: 16px;
}
.popular_tools .course-slider .course-card .teachers_info .social_networks i {
  color: rgb(102, 112, 133);
  font-size: 20px;
}
.popular_tools .course-slider .course-card:hover {
  transform: translateY(-8px);
}
.popular_tools .course-slider .course-card .card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.popular_tools .course-slider .course-card .card-media {
  height: 240px;
  padding: 10px;
  margin: 18px;
  border-radius: 8px;
  background-size: cover;
  display: flex;
  justify-content: end;
  background-position: center;
  background-repeat: no-repeat;
}
.popular_tools .course-slider .course-card .card-media .eta {
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgb(102, 112, 133);
  display: none;
}
.popular_tools .course-slider .course-card .card-media .eta i {
  color: rgb(65, 60, 105);
  font-size: 16px;
}
.popular_tools .course-slider .course-card .card-body {
  padding: 0 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.popular_tools .course-slider .course-card .card-body .category {
  color: #f25b26;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.popular_tools .course-slider .course-card .card-body .title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}
.popular_tools .course-slider .course-card .card-body .title {
  color: #0f1724;
  font-size: 20px;
  margin: 0 0 8px;
  line-height: 1.15;
}
.popular_tools .course-slider .course-card .card-body .desc {
  color: #61677a;
  font-size: 14px;
  margin-bottom: 12px;
  flex: 1;
}
.popular_tools .course-slider .course-card .card-body .rating {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.popular_tools .course-slider .course-card .card-body .rating span {
  font-size: 14px;
  padding-right: 5px;
  font-weight: 500;
  color: rgb(127, 86, 217);
}
.popular_tools .course-slider .course-card .card-body .rating .stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 16px;
  color: rgb(255, 155, 38);
}
.popular_tools .course-slider .course-card .card-body .rating .stars i {
  color: #ccc; /* oddiy kulrang */
}
.popular_tools .course-slider .course-card .card-body .rating .stars i.active {
  color: rgb(255, 155, 38); /* sariq (#fbbf24 = Tailwind yellow-400) */
}
.popular_tools .course-slider .course-card .card-body .rating p {
  padding-left: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(150, 150, 150);
}
.popular_tools .course-slider .course-card .card-body .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popular_tools .course-slider .course-card .card-body .meta .author {
  color: #6b7280;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.popular_tools .course-slider .course-card .card-body .meta .author .teacher_img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.popular_tools .course-slider .course-card .card-body .meta .author .name {
  font-size: 14px;
  font-weight: 500;
  color: rgb(16, 24, 40);
}
.popular_tools .course-slider .course-card .card-body .meta .author .experiance {
  font-size: 14px;
  font-weight: 400;
  color: rgb(102, 112, 133);
}
.popular_tools .course-slider .course-card .card-body .meta .price {
  color: #f25b26;
  font-weight: 700;
  font-size: 18px;
}
.popular_tools .course-slider .swiper-pagination {
  position: absolute;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}
.popular_tools .course-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #e9e9ec;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.28s ease;
}
.popular_tools .course-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #f25b26;
  width: 36px;
  height: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(242, 91, 38, 0.18);
}
.popular_tools .course-slider .controller_wrapper {
  width: 140px;
  height: 45px;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  top: 10px;
  top: 0;
}
.popular_tools .course-slider .custom-prev,
.popular_tools .course-slider .custom-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(190deg, rgb(241, 240, 251) 0%, rgb(255, 242, 192) 50%);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  cursor: pointer;
  z-index: 30;
  transition: transform 0.18s ease, background 0.18s ease;
}
.popular_tools .course-slider .custom-prev::after,
.popular_tools .course-slider .custom-next::after {
  display: none;
}
.popular_tools .course-slider .custom-prev i,
.popular_tools .course-slider .custom-next i {
  font-size: 24px;
  color: #f25b26;
}
.popular_tools .course-slider .custom-prev:hover,
.popular_tools .course-slider .custom-next:hover {
  transform: scale(1.04);
  background: rgba(242, 91, 38, 0.07);
}
.popular_tools .course-slider .custom-prev:hover::after,
.popular_tools .course-slider .custom-next:hover::after {
  border-color: #fff;
}
.popular_tools .course-slider .swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 1100px) {
  .popular_tools .course-slider .course-card {
    max-width: 320px;
  }
  .popular_tools .course-slider .custom-prev {
    right: 68px;
  }
}
@media (max-width: 800px) {
  .popular_tools .course-slider .course-card {
    max-width: 88%;
  }
  .popular_tools .course-slider .custom-prev,
  .popular_tools .course-slider .custom-next {
    width: 40px;
    height: 40px;
    top: 6px;
  }
  .popular_tools .course-slider .custom-prev {
    right: 60px;
  }
}
@media (max-width: 600px) {
  .popular_tools .course-slider .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 0px 0px 15px;
  }
  .popular_tools .course-slider .course-card {
    max-width: 92%;
  }
  .popular_tools .course-slider .custom-prev,
  .popular_tools .course-slider .custom-next {
    display: none;
  }
  .popular_tools .course-slider .swiper-pagination {
    bottom: -10px;
  }
}
@media (max-width: 450px) {
  .popular_tools .section_title_wrapper {
    padding-top: 40px;
  }
  .popular_tools .section_title_wrapper h2 {
    font-size: 18px;
  }
  .popular_tools .section_title_wrapper p {
    font-size: 16px;
  }
}

.faq {
  padding: 80px 20px;
  background: rgb(252, 252, 253);
}
.faq .container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0b0f19;
  margin-bottom: 50px;
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
}
.faq__item {
  background: #f8f8fb;
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.faq__item.active {
  background: linear-gradient(90deg, #fff9ee, #fffef9);
  box-shadow: 0 4px 12px rgba(241, 100, 60, 0.1);
}
.faq__item.active h3 {
  color: #f1643c;
}
.faq__item.active .faq__answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faq__question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b0f19;
  transition: color 0.3s;
}
.faq__question .faq__question-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq__question .faq__question-left i {
  color: #b5b5c3;
  font-size: 18px;
  transition: color 0.3s;
}
.faq__question .faq__toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f3f3f8;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.faq__question .faq__toggle i {
  color: #7b7e8c;
  font-size: 14px;
}
.faq__question .faq__toggle:hover {
  background: #ececf5;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .faq {
    padding: 30px 0px;
  }
  .faq__container {
    padding: 0px 0px;
  }
  .faq .faq__title {
    font-size: 17px;
  }
  .faq h3 {
    font-size: 11px;
  }
  .faq .faq__answer {
    font-size: 9px;
  }
  .faq__grid {
    gap: 10px;
  }
  .faq__item {
    padding: 16px;
  }
}

.register {
  background-color: rgb(252, 252, 253);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register__container {
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 30px;
}
.register__form {
  flex: 1;
}
.register__form .register__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.register__form .register__desc {
  color: rgb(102, 112, 133);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 48px;
}
.register__form form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.register__form form .form__group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.register__form form .form__group--half {
  width: calc(50% - 0.5rem);
}
.register__form form .form__group .form__label {
  margin-bottom: 10px;
  display: flex;
  font-weight: 400;
  font-size: 14px;
}
.register__form form .form__group label {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 6px;
}
.register__form form .form__group input,
.register__form form .form__group textarea {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.9rem;
  font-size: 1rem;
  outline: none;
}
.register__form form .form__group input::-moz-placeholder, .register__form form .form__group textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(102, 112, 133, 0.68);
}
.register__form form .form__group input::placeholder,
.register__form form .form__group textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(102, 112, 133, 0.68);
}
.register__form form .form__group input:focus,
.register__form form .form__group textarea:focus {
  border-color: #e65c2a;
}
.register__form form .form__group textarea {
  resize: none;
  min-height: 100px;
}
.register__form form .radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.register__form form .radio input[type=radio] {
  accent-color: #e65c2a;
}
.register__form form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.register__form form .checkbox input[type=checkbox] {
  accent-color: #e65c2a;
}
.register__form form .checkbox a {
  color: #e65c2a;
  text-decoration: underline;
}
.register__form form .btn {
  width: 100%;
  background: #e65c2a;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.9rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 1rem;
  transition: 0.3s;
}
.register__form form .btn:hover {
  background: rgb(220.6071428571, 77.6785714286, 25.8928571429);
}
.register__image {
  flex: 1;
  background: linear-gradient(90deg, #fff6e8, #f7f7f7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.register__image img {
  width: 70%;
  height: auto;
}
@media (max-width: 900px) {
  .register__container {
    flex-direction: column;
    text-align: center;
  }
  .register__form {
    padding: 2rem 1.5rem;
  }
  .register__image {
    padding: 2rem 0;
  }
  .register__image img {
    width: 50%;
  }
  .register .form__group--half {
    width: 100% !important;
  }
}
@media (max-width: 450px) {
  .register .register__form {
    padding: 0;
    padding-bottom: 50px;
  }
  .register .register__form .register__title {
    font-size: 18px;
    text-align: start;
  }
  .register .register__form .register__desc {
    font-size: 11px;
    text-align: start;
    line-height: 15px;
  }
  .register .register__form label {
    text-align: start;
  }
  .register .register__image {
    display: none;
  }
}

.footer {
  background: #0d111b;
  color: #fff;
  padding: 60px 20px 30px;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__brand {
  flex: 1 1 250px;
}
.footer__brand .footer__logo {
  width: 100px;
}
.footer__brand .footer__title {
  color: #f1643c;
  font-weight: 700;
  margin: 10px 0 20px;
  letter-spacing: 0.5px;
}
.footer__brand .footer__desc {
  color: #bfc2c8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__brand .footer__socials {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.footer__brand .footer__socials li a {
  color: #bfc2c8;
  font-size: 20px;
  transition: color 0.3s;
}
.footer__brand .footer__socials li a:hover {
  color: #f1643c;
}
.footer__brand .footer__phone {
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
}
.footer__links {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__links .footer__column h4 {
  color: #a1a5ad;
  font-size: 16px;
  margin-bottom: 15px;
}
.footer__links .footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links .footer__column ul li {
  margin-bottom: 10px;
}
.footer__links .footer__column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}
.footer__links .footer__column ul li a:hover {
  color: #f1643c;
}
.footer__bottom {
  border-top: 1px solid #1a1f2b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #a1a5ad;
  font-size: 14px;
}
@media (max-width: 992px) {
  .footer__top {
    flex-direction: column;
    gap: 20px;
  }
  .footer__links {
    flex-direction: column;
    flex: 2 1 200px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 40px 15px;
  }
  .footer .footer__brand {
    text-align: left;
  }
  .footer .footer__brand .footer__socials {
    justify-content: flex-start;
  }
  .footer__bottom {
    font-size: 13px;
  }
}/*# sourceMappingURL=styles.css.map */