@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
}

.bg-header {
  transition: 0.3s;
  top: -10px;
  padding: 10px 0;
  position: fixed;
  z-index: 10;
  background: white;
}

.header_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header_container .header {
  margin-top: 10px;
  width: 100%;
}
.header_container .header .nav {
  margin: 0 auto;
  background: #fff;
  max-width: 1368px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_container .header .nav .logo {
  width: 120px;
  padding: 10px 20px;
}
.header_container .header .nav .pages {
  display: flex;
  align-items: center;
}
.header_container .header .nav .pages a {
  font-weight: 600;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
}
.header_container .header .nav .working_part {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_container .header .nav .working_part .language {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 13px;
  background-color: #f8f8f8;
  font-weight: 600;
}
.header_container .header .nav .working_part .search {
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.header_container .header .nav .working_part .search img {
  width: 20px;
}
.header_container .header .nav .working_part .burger {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.advertising_container {
  margin-top: 10px;
  width: 100%;
}
.advertising_container .advertising {
  margin: 0 auto;
  max-width: 1370px;
  border-bottom: 2px solid #d0d0d0;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  gap: 12.5rem;
}
.advertising_container .advertising div:hover {
  transition: color 0.2s;
  cursor: pointer;
  color: rgb(0, 0, 199);
}

.latest_news_container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 20px;
}
.latest_news_container .main_news-left {
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.latest_news_container .main_news-left .main_news-top {
  display: flex;
}
.latest_news_container .main_news-left .main_news-top:hover .main-news_left-title {
  color: rgb(0, 0, 199);
}
.latest_news_container .main_news-left .main_news-top .main-news_left-content .main-news_left-title {
  transition: color 0.3s;
  margin: 40px 0 20px 0;
  font-size: 26px;
  max-width: 400px;
  font-weight: 700;
}
.latest_news_container .main_news-left .main_news-top .main-news_left-content .main-news_left-text {
  margin: 0;
  max-width: 400px;
  font-size: 16px;
  font-weight: 400;
}
.latest_news_container .main_news-left .main_news-top .main-news_left-img img {
  max-width: 550px;
}
.latest_news_container .main_news-left .main_news-bottom {
  display: flex;
  gap: 2rem;
}
.latest_news_container .main_news-left .main_news-bottom .news_left .new-items {
  border-bottom: 2px solid rgba(0, 0, 0, 0.062745098);
  display: flex;
  padding: 20px 0;
  margin-bottom: 20px;
  gap: 2rem;
  transition: color 0.3s;
}
.latest_news_container .main_news-left .main_news-bottom .news_left .new-items:hover {
  color: rgba(0, 0, 199, 0.669);
}
.latest_news_container .main_news-left .main_news-bottom .news_left .new-items .new-item_writing {
  font-size: 22px;
  font-weight: 700;
  max-width: 420px;
}
.latest_news_container .main_news-left .main_news-bottom .news_left .new-items .new-item_img {
  width: 200px;
  height: 110px;
}
.latest_news_container .main_news-left .main_news-bottom .news_right {
  max-width: 300px;
}
.latest_news_container .main_news-left .main_news-bottom .news_right h2 {
  margin-bottom: 20px;
}
.latest_news_container .main_news-left .main_news-bottom .news_right .news-list_box {
  margin-top: 20px;
  padding: 20px;
  transition: all 0.3s;
  background: #e2f1f6;
}
.latest_news_container .main_news-left .main_news-bottom .news_right .news-list_box:hover {
  box-shadow: 5px 5px 0 5px #cae8f1;
  transform: translate(-10px, -10px);
}
.latest_news_container .main_news-left .main_news-bottom .news_right .news-list_box .news_p1 {
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.latest_news_container .main_news-left .main_news-bottom .news_right .news-list_box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.latest_news_container .main_news-left .main_news-bottom .news_right .news-list_box .news_p2 {
  font-size: 17px;
}
.latest_news_container .main_news-right .latest_news {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: inherit;
}
.latest_news_container .main_news-right .main_news-right_list .btn {
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.latest_news_container .main_news-right .main_news-right_list .btn .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #0c2f75;
}
.latest_news_container .main_news-right .main_news-right_list .btn .icon img {
  width: 25px;
}
.latest_news_container .main_news-right .main_news-right_list .main_news-right_item {
  transition: color 0.2s;
  cursor: pointer;
  padding: 20px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.062745098);
}
.latest_news_container .main_news-right .main_news-right_list .main_news-right_item p {
  max-width: 320px;
}
.latest_news_container .main_news-right .main_news-right_list .main_news-right_item span {
  color: #9f9f9f;
  font-size: 12px;
}
.latest_news_container .main_news-right .main_news-right_list .main_news-right_item:hover {
  color: rgb(97, 97, 255);
}

.current_messages_container .current-wrapper .current-writing {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.current_messages_container .current-wrapper .current-writing:hover img {
  scale: 1.2;
}
.current_messages_container .current-wrapper .current-writing h2 {
  font-size: 30px;
}
.current_messages_container .current-wrapper .current-writing img {
  transition: scale 0.3s;
  transform: translateY(-10px);
}
.current_messages_container .current-wrapper .current_three-boxes {
  margin: 20px auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two img {
  width: 300px;
  height: 180px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .jaxon_writing {
  border-bottom: 2px solid rgba(0, 0, 0, 0.062745098);
  margin-top: 50px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .jaxon_writing p {
  font-size: 12px;
  font-weight: 700;
  color: #9f9f9f;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .jaxon_writing h5 {
  margin-top: 10px;
  max-width: 280px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .uzb_writing {
  margin-top: 20px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .uzb_writing p {
  font-size: 12px;
  font-weight: 700;
  color: #9f9f9f;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .uzb_writing h5 {
  max-width: 300px;
  margin-top: 10px;
  font-weight: 700;
  font-size: 15px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .military_writing p {
  font-size: 13px;
  font-weight: 700;
  color: #9f9f9f;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_two .military_writing h5 {
  max-width: 330px;
  font-size: 18px;
  font-weight: 700;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_three img {
  width: 300px;
  height: 180px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_three .current-writing_gift {
  margin-bottom: 20px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_three .current-writing_gift h3 {
  max-width: 320px;
}
.current_messages_container .current-wrapper .current_three-boxes .current_box-item_three .current-writing_people h3 {
  max-width: 320px;
}
.current_messages_container .current-wrapper .current_three-boxes .date {
  margin-top: 10px;
}
.current_messages_container .current-wrapper .current_three-boxes h2 {
  max-width: 700px;
  margin-top: 10px;
}
.current_messages_container .current-wrapper .current_three-boxes p {
  max-width: 660px;
  margin-top: 10px;
}

.new_video_container .video-writing {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.new_video_container .video-writing:hover img {
  scale: 1.2;
}
.new_video_container .video-writing img {
  transition: scale 0.2s;
  cursor: pointer;
  transform: translatey(-10px);
}
.new_video_container .new_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1350px;
  row-gap: 20px;
  margin: 0 auto;
}
.new_video_container .new_cards .news-card_box {
  cursor: pointer;
  overflow: hidden;
  background: #d2d5e1;
  border-radius: 20px;
}
.new_video_container .new_cards .news-card_box:hover h3 {
  color: #1955cc;
}
.new_video_container .new_cards .news-card_box h3 {
  transition: color 0.3s;
  max-width: 260px;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0 0 20px;
}
.new_video_container .new_cards .news-card_box p {
  font-size: 12px;
  color: #9f9f9f;
  padding: 10px 0 30px 20px;
}
.new_video_container .new_cards .news-card_box img {
  width: 320px;
  height: 200px;
}

.aqsh_2024 {
  display: flex;
  justify-content: center;
  max-width: 1350px;
  margin: 30px auto;
}
.aqsh_2024 img {
  margin-right: 20px;
  width: 100px;
  border-radius: 50%;
}
.aqsh_2024 .aqsh_news {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.aqsh_2024 .aqsh_news .aqsh_writing h1 {
  font-weight: 800;
}
.aqsh_2024 .aqsh_news .aqsh_writing p {
  font-size: 15px;
  font-weight: 600;
  max-width: 850px;
}
.aqsh_2024 .aqsh_news .aqsh_btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aqsh_2024 .aqsh_news .aqsh_btn .aqsh_icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0c2f75;
  border-radius: 50%;
}
.aqsh_2024 .aqsh_news .aqsh_btn .aqsh_icon img {
  margin: 0;
  width: 20px;
  height: 20px;
}

.main-life_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1350px;
  justify-content: space-between;
  margin: 0 auto;
}
.main-life_list .main-life_item {
  padding: 25px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.062745098);
  display: flex;
  gap: 20px;
}
.main-life_list .main-life_item img {
  width: 200px;
  height: 120px;
}
.main-life_list .main-life_item .main-life_writing p {
  font-size: 12px;
  font-weight: 600;
}
.main-life_list .main-life_item .main-life_writing h4 {
  font-size: 18px;
  max-width: 430px;
}

.main-interview {
  width: 100%;
  background: #232323;
}
.main-interview .black_news_latest {
  width: 100%;
  justify-content: center;
  gap: 25px;
  padding: 30px 0;
  display: flex;
}
.main-interview .black_news_latest .new-latest_items {
  color: #fff;
}
.main-interview .black_news_latest .new-latest_items h2 {
  margin-bottom: 10px;
  max-width: 300px;
  font-size: 22px;
}
.main-interview .black_news_latest .new-latest_items p {
  font-size: 13px;
  color: grey;
}
.main-interview .black_news_latest .new-latest_items img {
  border-radius: 10px;
  width: 320px;
  height: 200px;
}

.elon {
  display: flex;
  justify-content: center;
  max-width: 1350px;
  margin: 30px auto;
}
.elon img {
  margin-right: 20px;
  width: 100px;
  border-radius: 50%;
}
.elon .elon_news {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.elon .elon_news .elon_writing h1 {
  font-weight: 800;
}
.elon .elon_news .elon_writing p {
  font-size: 15px;
  font-weight: 600;
  max-width: 600px;
}
.elon .elon_news .elon_btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.elon .elon_news .elon_btn .elon_icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0c2f75;
  border-radius: 50%;
}
.elon .elon_news .elon_btn .elon_icon img {
  margin: 0;
  width: 20px;
  height: 20px;
}

.swiper_container {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.swiper_container img {
  width: 320px;
  height: 200px;
}
.swiper_container .first_swiper,
.swiper_container .double_swiper,
.swiper_container .third_swiper,
.swiper_container .fourth_swiper {
  max-width: 320px;
  background: #26304d;
  color: #fff;
}
.swiper_container .first_swiper h2,
.swiper_container .double_swiper h2,
.swiper_container .third_swiper h2,
.swiper_container .fourth_swiper h2 {
  margin: 20px;
  font-size: 20px;
}

.footer_container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.footer_container .footer-top_part {
  border-bottom: 2px solid rgba(0, 0, 0, 0.124);
  max-width: 1350px;
  margin: 0 auto;
  gap: 3rem;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_container .footer-top_part .apps_list img {
  transition: 0.4s;
  cursor: pointer;
  width: 160px;
  height: 50px;
}
.footer_container .footer-top_part .apps_list img:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 10px 0 grey;
}
.footer_container .footer-top_part .footer_logo {
  font-size: 25px;
  font-weight: 900;
  cursor: pointer;
}
.footer_container .footer-top_part .footer_pages {
  display: flex;
  gap: 25px;
}
.footer_container .footer-top_part .footer_pages a {
  text-decoration: none;
  color: black;
  font-weight: 700;
  font-size: 18px;
}
.footer_container .footer-top_part .web_sites {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer_container .footer-top_part .web_sites img {
  transition: 0.3s;
  cursor: pointer;
  width: 25px;
}
.footer_container .footer-top_part .web_sites img:hover {
  transform: translateY(-5px);
}/*# sourceMappingURL=style.css.map */