/* GLOBAL */

/* :root {
    --site-bg--color: #181f27;
    --text-color: #fff;
    --black-color: #000;
    --white-bg: #fff;
    --marketplace-content-bg: #1e1e1e;
} */

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  height: 100%;
  background-color: #fff;
  color: #222;
}

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

button {
  border: unset;
  background: unset;
}

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

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

input {
  background-color: #f6f6f6;
}

.container {
  max-width: 100%;
  padding-left: 80px !important;
  padding-right: 80px !important;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

p {
  margin: 0;
}

/* HEADER */
.header {
  height: 100px;
  width: 100%;
  padding: 50px 0 50px 0;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0 5px 5px; */
  /* box-shadow: 0 0 4px 0 #0000001a; */
}

.site__logo p {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #000;
  margin: 0;
}

.main__feature {
  background-size: cover;
  /* background-position: left -50px; */
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh !important;
  border-radius: 8px;
  margin-bottom: 136px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.main__feature::before {
  border-radius: 8px;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #2c343e;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}

.main__typography {
  padding: 15px;
  position: relative;
  top: 50%;
  left: 85px;
  transform: translateY(-50%);
  width: 600px;
  border-radius: 8px;
  /* backdrop-filter: blur(50px); */
}

.main__typography h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.main__typography p {
  width: fit-content;
  max-width: 660px;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
}

.main__card {
  /* position: relative; */
  margin-bottom: 160px;
}

.main__card-more {
  color: #fefcf7;
  background-color: #0e8784;
  opacity: 0.8;
  transition: background-color 500ms linear, opacity 500ms linear;
}

.main__card-more:hover {
  background-color: #0e8784;
  color: #fefcf7;
  opacity: 1;
}

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 350px;
  margin-bottom: 10px;
  transition: transform 0.5s;
  object-fit: fill;
  transform: scale(1);
}

.card img:hover {
  cursor: pointer;
  opacity: 0.9;
  transform: scale(1.1);
}

/* Main analysis */

.main__analysis-description {
  margin-bottom: 160px;
  background-color: #2c343e;
  border-radius: 8px;
  width: 100%;
  height: 475px;
}

.main__analysis-description > div {
  display: flex;
  justify-content: space-between;
}

.main__analysis-description .typography {
  position: relative;
  top: 85px;
  left: 100px;
  color: #fff;
  width: 580px;
}

.main__analysis-description .typography h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 32px;
}

.main__analysis-description .typography p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}

.main__analysis-description img {
  position: relative;
  top: -90px;
  right: 70px;
  border-radius: 8px;
  width: 500px;
  height: 475px;
  object-fit: cover;
}

/* Main mission */

.main__mission-statement {
  padding: 0 80px;
  margin-bottom: 160px;
}

.main__mission-statement > div {
  display: flex;
  gap: 125px;
  align-items: center;
  justify-content: space-between;
}

.main__mission-statement img {
  border-radius: 8px;
  width: 600px;
  height: 450px;
  object-fit: cover;
}

.main__mission-statement .typography {
}

.main__mission-statement .typography h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 32px;
}

.main__mission-statement .typography p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}

/* Footer */

.footer {
  padding: 25px 0;
  /* margin-bottom: 10px; */
  background-color: #2c343e;
  /* border-radius: 8px; */
  /* height: 120px; */
  width: 100%;
}

.footer div {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.footer p {
  color: #fff;
}

/* Language */

.header__lng {
  margin-right: 15px;
  position: relative;
  display: flex;
  align-items: center;
}

.lng {
  position: relative;
}

.lng__button {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.lng__active {
  margin-right: 5px;
  line-height: 0;
  font-size: 0.875rem;
  font-weight: bold;
  width: 20px;
  text-align: center;
  white-space: nowrap;
}

.lng__arrow img {
  width: 9px;
  height: 9px;
  transition: transform 0.3s ease;
}

.lng__content {
  display: none;
  position: absolute;
  width: 100px;
  top: 100%;
  left: -30px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
  overflow: hidden;
}

.lng__button.active .lng__arrow img {
  transform: rotate(180deg);
}

.lng__content.open {
  display: block;
}

.lng__item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.lng__item i {
  margin-right: 8px;
}

.lng__item i img {
  width: 24px;
  height: 24px;
}

.lng__item:hover {
  background: #f5f5f5;
}

.lng__item.active {
  background: #e0e0e0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .main__typography h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .main__typography p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 800px;
  }

  .main__feature {
    /* background-image: ; */
  }

  .main__analysis-description .typography {
    width: 500px;
  }

  .main__analysis-description .typography h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .main__analysis-description .typography p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .main__mission-statement {
    padding: 0 50px;
  }

  .main__mission-statement > div {
    gap: 100px;
  }

  .main__mission-statement img {
    width: 500px;
    height: 400px;
  }

  .main__mission-statement .typography {
  }

  .main__mission-statement .typography h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
  }

  .main__mission-statement .typography p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* hi-res laptops and desktops */
@media (min-width: 1281px) {
  .main__typography {
    width: 500px;
  }
}

/* big landscape tablets, laptops, and desktops */
@media (max-width: 1260px) {
  .main__typography {
    /* width: 450px; */
  }

  .main__typography h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .main__typography p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    /* max-width: 800px; */
  }

  .main__card {
    margin-bottom: 300px;
  }

  .main__analysis-description {
    height: 588px;
  }

  .main__analysis-description > div {
    display: flex;
    flex-direction: column-reverse;
  }

  .main__analysis-description img {
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main__analysis-description .typography {
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main__analysis-description .typography h2 {
    text-align: center;
  }

  .main__analysis-description .typography p {
    text-align: center;
  }

  .main__mission-statement {
    padding: 0;
  }

  .main__mission-statement img {
    width: 400px;
    object-fit: cover;
    gap: 65px;
  }

  .footer {
    padding: 30px 0;
  }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width: 1025px) {
  .main__analysis-description {
    height: 588px;
  }

  .main__analysis-description > div {
    display: flex;
    flex-direction: column-reverse;
    /* flex-direction: column; */
  }

  .main__analysis-description img {
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main__analysis-description .typography {
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .main__analysis-description .typography h2 {
    text-align: center;
  }

  .main__analysis-description .typography p {
    text-align: center;
  }

  .main__mission-statement img {
    width: 281px;
    height: 470px;
    object-fit: cover;
  }

  .main__feature {
    margin-bottom: 100px;
  }

  .main__typography {
    padding: 10px;
    position: relative;
    width: 450px;
    top: 50%;
    left: 0;
    margin: auto auto;
    text-align: center;
  }

  .main__typography h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
  }

  .main__typography p {
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
  }

  .main__list {
    justify-content: center; /* Itemlarni markazlashtirish */
  }

  .main__item {
    flex: 1 1 45%; /* Birinchi qatorda ikkita item, 45% kenglik */
  }

  .main__list .main__item:nth-child(3) {
    flex: 1 1 100%; /* Ikkinchi qatordagi bitta item uchun 100% kenglik */
    text-align: center; /* Pastki item markazlashtiriladi */
    margin-top: 50px;
  }

  .footer p {
    display: none;
  }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width: 850px) {
  .site__logo p {
    display: none;
  }

  .main__feature {
    background-position: unset;
  }

  .main__typography {
    /* position: unset; */
    top: 50%;
    left: 0;
    margin: auto auto;
    text-align: center;
  }

  .main__list {
    flex-direction: column; /* Itemlarni ustma-ust joylashtirish */
    align-items: center; /* Itemlarni markazga joylashtirish */
  }

  .main__item {
    flex: 1 1 100%; /* Har bir item uchun 100% kenglik */
    margin-bottom: 20px; /* Itemlar orasida 20px bo'shliq */
    width: 100%;
  }

  .main__list .main__item:nth-child(3) {
    margin-top: 0;
  }

  .main__mission-statement > div {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .main__mission-statement img {
    width: 100%;
    height: 470px;
    object-fit: cover;
  }

  .main__mission-statement .typography h2 {
    text-align: center;
  }

  .main__mission-statement .typography p {
    text-align: center;
  }
}

/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
@media (max-width: 641px) {
  .container {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .main__feature {
    height: 60vh !important;
  }

  .main__typography {
    width: auto;
  }

  .main__typography p {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 10px;
    text-align: center;
  }

  .main__typography h1 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    padding: 0 10px;
    text-align: center;
  }

  .main__analysis-description {
    margin-bottom: 120px;
  }

  .main__analysis-description .typography h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 10px;
  }

  .main__analysis-description .typography p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 15px;
  }

  .main__mission-statement {
    margin-bottom: 120px;
  }

  .main__mission-statement .typography h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 10px;
  }

  .main__mission-statement .typography p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 15px;
  }
}

/* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
@media (max-width: 481px) {
  .site__logo-img {
    width: 70px;
    /* height: 60px; */
  }
  .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .main__card {
    margin-bottom: 220px;
  }

  .main__list {
    padding: 0;
    margin: 0;
  }

  .main__item {
    padding: 0;
    width: 100%;
  }

  .card {
    width: 100% !important;
  }

  .card img {
    height: 300px;
  }

  .main__analysis-description {
    height: 550px;
    margin-bottom: 100px;
  }

  .main__analysis-description .typography {
    top: 60px;
  }
  .main__analysis-description .typography p,
  .main__analysis-description .typography h2 {
    padding: 0;
  }

  .main__analysis-description img {
    height: 300px;
    object-fit: cover;
  }

  .main__mission-statement img {
    height: 300px;
  }
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (max-width: 320px) {
  .main__feature {
    height: 50vh !important;
  }

  .main__analysis-description {
    margin-bottom: 120px;
  }

  .main__analysis-description .typography h2 {
    font-size: 1.25rem;
    padding: 0;
  }

  .main__analysis-description .typography p {
    padding: 0;
  }

  .main__mission-statement {
    margin-bottom: 120px;
  }

  .main__mission-statement .typography h2 {
    font-size: 1.25rem;
    padding: 0;
  }

  .main__mission-statement .typography p {
    padding: 0;
  }
}


.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.footer__text {
  margin-left: 10px;
}

.footer__right {
  display: flex;
  justify-content: flex-end;
}