/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
}
/* start header*/
.container {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding: 15px 20px;
  /* background-color: #004080;  */
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #004080;
}


.logo img {
  height: 59px;
}

.nav-menu {
  display: flex;
}

.menu-list {
  list-style: none;
  display: flex;
}

.menu-list li {
  margin: 0 15px;
  text-align: center;
}

.menu-list li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.menu-list li a:hover {
  color: #ffcb47; 
}

ul.main-menu li .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #004080;
    list-style: none;
    padding: 10px 0;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

ul.main-menu li .dropdown-content li {
    margin: 15px 0;
}

ul.main-menu li .dropdown-content li a {
    display: block;
    padding: 12px 20px;
    font-size: 20px;
    color: #333;
    background-color: #004080;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

ul.main-menu li .dropdown-content li a:hover {
    background-color: #ff5722;
    color: white;
}

/* Show Dropdown on Hover with Smooth Animation */
ul.main-menu li:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hover Arrow Styling */
/* Chỉ áp dụng cho menu cha */
ul.menu-list li.dropdown > a::after {
  /* Hoặc mã SVG/icon khác */
  font-family: "Font Awesome 5 Free"; /* Hoặc font bạn đang sử dụng */
  font-weight: 900; 
  margin-left: 5px;
  font-size: 12px;
  color: #ffffff;
}

/* Đảm bảo rằng dropdown content không bị ảnh hưởng */
ul.menu-list li .dropdown-content {
  /* Định dạng dropdown nếu cần */
  display: none;
  /* Các thuộc tính khác... */
}

/* Dropdown Menu */
ul.menu-list li {
  position: relative; /* Để dropdown được định vị chính xác */
}
ul.menu-list li .dropdown-content li {
  margin: 25px 0; /* Tạo khoảng cách 5px giữa các mục */
}
ul.menu-list li .dropdown-content {
  display: none; /* Ẩn dropdown mặc định */
  position: absolute;
  top: 100%; /* Đưa dropdown xuống dưới item chính */
  left: 0;
  background-color: #004080;
  list-style: none;
  padding: 15px; /* Tăng padding cho dropdown */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0; /* Ẩn dropdown */
  transform: translateY(10px); /* Đẩy xuống một chút */
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 200px; /* Chiều rộng tối thiểu cho dropdown (thay đổi từ 150px thành 200px) */
  margin-top: 10px; /* Tạo khoảng cách phía trên dropdown */
  margin-bottom: 20px; /*Khoảng cách phía dưới dropdown*/
  padding: 20px;
}

/* Hiện dropdown khi hover vào mục cha */
ul.menu-list li:hover .dropdown-content {
  display: block; /* Hiện dropdown */
  opacity: 1; /* Hiện rõ */
  transform: translateY(0); /* Đưa dropdown về vị trí bình thường */
}

/* Hamburger Icon for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
      position: absolute;
      top: 65px;
      left: 0;
      width: 100%;
      background-color: #004080;
  }

  .menu-list {
      flex-direction: column;
      padding: 15px;
  }

  .menu-list li {
      text-align: center;
      margin: 10px 0;
  }

  .hamburger {
      display: flex;
  }

  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
  }

  nav.active {
      display: block;
  }
}
/* end header */
/* Start Slider */
.slider-container {
  position: relative;
  max-width: 100%; /* Đảm bảo slider chiếm toàn bộ chiều rộng */
  margin: auto;
  overflow: hidden;
}

.slider-image {
  width: 100%; /* Hình ảnh sẽ chiếm 100% chiều rộng của container */
  vertical-align: middle;
  object-fit: cover;
}

.mySlides {
  display: none; /* Ẩn tất cả các slide */
}

/* Navigation Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Styling */
@media (max-width: 768px) {
  .slider-image {
    height: 400px; /* Đặt chiều cao cho hình ảnh trên màn hình nhỏ */
    object-fit: cover;
  }
}

/* Animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* mẫu intro */
/* Adjust the slider and intro for seamless integration */
.slider-container {
  position: relative;
  margin-bottom: -50px; /* Negative margin to bring the intro up */
  z-index: 1;
}

.intro-section {
  background-color: #fff;
  width: 80%;
  margin: 0 auto; /* Ensures the section is horizontally centered */
  padding: 15px 5px;
  position: relative;
  z-index: 2; /* This will keep it above the slider */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow to lift intro */
  border-radius: 10px;
  display: flex;
  justify-content: center;
}

.intro-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.intro-item {
  background-color: #d60000;
  color: white;
  width: 120px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}

.intro-item i {
  font-size: 24px;
  margin-bottom: 10px;
}

.intro-item p {
  margin: 0;
  font-size: 14px;
}

/* About thanh niên */
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px; /* Padding inside the content area */
  background-color: #fff; /* Background color of the content section */
  margin-bottom: 200px; /* Space below the content */
  margin-top: 100px; /* Adjust this to create space from the intro section */
}

.sub-content {
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
  width: 90%; /* Width of the content */
  padding: 20px;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.content-blog {
  flex: 1;
  padding-right: 20px;
}

.content-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.content-img img {
  max-width: 100%;
  border-radius: 10px; /* Optional: Rounds the image corners */
}
/* end about thanh niên */
.content-blog h3 {
  color: red;
  font-size: 26px; /* Tăng cỡ chữ để thu hút sự chú ý */
  font-weight: bold;
  text-align: center; /* Căn giữa tiêu đề */
  text-transform: uppercase; /* Chuyển thành chữ in hoa */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Thêm bóng cho tiêu đề */
  padding-bottom: 50px; /* Tạo khoảng cách giữa tiêu đề và nội dung bên dưới */
}
.btn-read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff4d4d;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-read-more:hover {
  background-color: #ff1a1a;
  cursor: pointer;
}
/* activity */
@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=Lato');

*{
 padding:0;
 margin:0;
 box-sizing:border-box;
}

body{
 background-image:url("https://www.nasa.gov/sites/all/themes/custom/nasatwo/images/starfield-banner.jpg");
}
.wrap{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
 grid-gap:10px;
 padding:0.5em;
 perspective:500px;
 margin-top: -200px;
}
.article {
 display:flex;
 flex-direction:column;
 height:300px;
 position:relative;
 background-size:cover;
 border-radius:7px;
 overflow:hidden;
 padding:1em;
 cursor:pointer;
 transform: rotateX(0deg) rotateY(0deg);
 transition: all 0.2s linear ;
 will-change: transform;
}

.article:nth-child(5n+1){
   background-image:url("/img/myteam.jpg");
}

.article:nth-child(5n+2){
   background-image:url("/img/kg.jpg");
}
.article:nth-child(5n+3){
 background-image:url("/img/qs1.jpg");
}

.article:nth-child(5n+4){
 background-image:url("/img/trai2.png");
}
.article:nth-child(5n+5){
 background-image:url("/img/23IT2.jpg");
}
.article:nth-child(5n+6){
  background-image:url("/img/giai.jpg");
 }

.overlay {
 width:100%;
 height:100%;
 background-image:radial-gradient(circle at 50% 50%,rgba(0,0,0,0.3) 20%,rgba(0,0,0,0.4) 50%);
 position:absolute;
 left:0;
 top:0;
 z-index:1;
}
.article h1{
 font-size:1.5em;
 font-family:'Oswald';
 margin-top:auto;
 cursor:pointer;
 transition:all 0.3s;
 position:relative;
 z-index:2;
 pointer-events:none;
}

.article h1{
 transform:translateY(-20px)
}
.article h1 span{
 color:#fff;
}

.article span.cat {
 letter-spacing:2px;
 font-weight:bold;
 font-family: 'Lato', sans-serif;
 position:relative;
 z-index:2;
 pointer-events:none;
 overflow:hidden;
 color:#fff;
}

@media screen and (min-width:1000px){
 .wrap{
   grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
   grid-gap:20px;
   padding:1em;
 }
 .article h1{
   transform:translateY(0px);
 }
 .article:hover h1{
 transform:translateY(-20px)
 }
 
 .article span.cat {
   color:transparent;
 }
 
.article span.cat::before,.article span.cat::after{
 content:attr(data-hover);
 position:absolute;
 display:inline-block;
 left:0;
 top:0;
 white-space: nowrap;
 overflow:hidden;
 max-width:0%;
 transition:max-width 300ms ease-out; 
}
.article span.cat::before {
 color:yellow;
 transition-delay:100ms;
}
.article span.cat::after {
 color:white;
}

.article:hover span.cat:after,.article:hover span.cat:before{
 max-width:100%;
}

.article:hover span.cat:after {
 transition-delay:300ms;
}
}

/* giải thưởng */
@import url("https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");

html,
body {
	margin: 0;
	padding: 0;
	font-family: "Quattrocento Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #e0e0e0;
}
.🥙 {
	position: relative;
	margin: 2rem 0;
	h3,
	p {
		margin: 0 auto;
		padding: 0 2rem 1rem;
		max-width: 800px;
		a {
			color: inherit;
		}
	}
}
/* Swiper JS */
.swiper-full {
	width: 100%;
	height: 100%;
	padding: 1rem 0 3rem;
	margin: 4rem 0;
	overflow: hidden;
	.swiper-slide {
		text-align: center;
		font-size: 18px;
		background: transparent;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 56%;
		@media screen and (max-width: 990px) {
			width: 88%;
		}
		img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			border-radius: 2rem;
			/*  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 1rem rgba(0, 0, 0, 0.1); */
		}
	}
	.swiper-button-next,
	.swiper-button-prev {
		color: #fff;
		height: 40px;
		width: 40px;
		background-color: rgba(0, 0, 0, 0.4);
		backdrop-filter: blur(10px);
		border-radius: 100px;
		right: 40px;
		&:after {
			font-size: 1rem;
		}
		@media screen and (max-width: 990px) {
			display: none;
		}
	}
	.swiper-button-prev {
		left: 40px;
	}
	.swiper-pagination {
		position: absolute;
		left: 50%;
		display: block;
		text-align: center;
		font-size: 0;
		line-height: 0;
		padding: 8px;
		margin: 0;
		width: auto;
		transform: translate(-50%, 20%);
		border-radius: 100px;
		background-color: rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(10px);
		.swiper-pagination-bullet {
			height: 0.8rem;
			width: 0.8rem;
			border-radius: 1rem;
			transition: all 0.4s ease-in-out;
		}
		.swiper-pagination-bullet-active {
			background-color: #fff;
			width: 2rem;
		}
	}
}

/* footer */
/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/*===== VARIABLES CSS =====*/
:root{
  --header-height: 3rem;

  /*===== Colors =====*/
  --first-color: #3E0E12;
  --first-color-dark: #2F0A0D;
  --text-color: #524748;
  --first-color-light: #7B6F71;
  --first-color-lighten: #FBF9F9;

  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*===== Margins =====*/
  --mb-1: .5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*===== z index =====*/
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}
  
@media screen and (min-width: 768px){
  :root{
    --biggest-font-size: 4.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  background-color: var(--first-color-lighten);
  color: var(--text-color);
  line-height: 1.6;
}

h1,h2,h3,ul,p{
  margin: 0;
}

h2,h3{
  font-weight: var(--font-semi-bold);
}

ul{
  padding: 0;
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

/*===== CLASS CSS =====*/
.section {
  padding: 4rem 0 2rem;
}

.section-title, .section-subtitle {
  text-align: center;
}

.section-title {
  font-size: var(--h1-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
}

/*===== LAYOUT =====*/
.bd-container {
  max-width: 1024px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.bd-grid {
  display: grid;
  gap: 1.5rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #000;
}

/*===== FOOTER =====*/
.footer {
  background-color: #5d7d9d;
  color: var(--first-color-lighten);
  text-align: center;
}

.footer__container {
  padding: 3rem 0;
}

.footer__title {
  font-size: var(--h1-font-size);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-semi-bold);
}

.footer__description {
  margin-bottom: var(--mb-3);
}

.footer__social {
  margin-bottom: var(--mb-6);
}

.footer__link {
  font-size: 1.4rem;
  color: var(--first-color-lighten);
  margin: 0 var(--mb-1);
  transition: .3s;
}

.footer__link:hover {
  color: var(--first-color-light);
}

.footer__copy {
  font-size: var(--smaller-font-size);
  color: #dbbfbf;
}

/*===== MEDIA QUERIES =====*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* blog developer */
:root {
  --sidebar-bg-color: #f6f6f6;
  --active-link-color: #000;
  --text-color: #000;
  --progress-bar-color: #000;
  --lightbulb-color: black;
}

body.dark-mode {
  --sidebar-bg-color: #23282d;
  --active-link-color: #00d084;
  --text-color: #fff;
  --progress-bar-color: #00d084;
  --lightbulb-color: white;
}

@media (max-width: 750px) {
  :root {
    --sidebar-bg-color: rgba(240, 240, 240, 0.95);
  }

  body.dark-mode {
    --sidebar-bg-color: rgba(35, 40, 45, 0.95);
  }
}
/* Blog  */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "DM Sans", sans-serif;
}

.header-one {
  margin-top: 0px;
}

#dark-mode-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--lightbulb-color);
  font-size: 2rem;
  transition: 350ms;
}

#dark-mode-toggle:hover {
  transform: scale(1.1);
}

#dark-mode-toggle:active {
  transform: scale(0.9);
  transition: transform 100ms;
}

.post-content {
  font-size: 1.2rem;
  margin: 0px 0px 0px 35px;
}

.sidebar-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 90vw;
  max-width: 900px;
  margin: auto;
}

.intro,
.outro {
  width: 90vw;
  max-width: 900px;
  margin: auto;
  font-size: 1.2rem;
  padding: 20px 0px;
}

.sidebar-wrapper {
  position: sticky;
  top: 25px;
  width: 275px;
  flex: none;
}

.sidebar {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: var(--sidebar-bg-color);
  transition: 250ms;
}

@media (max-width: 750px) {
  .sidebar {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.reading-progress-container {
  height: 5px;
  background-color: #e0e0e0;
  margin-top: 25px;
  border-radius: 100px;
}

.reading-progress-bar {
  height: 100%;
  background-color: var(--progress-bar-color);
  border-radius: 100px;
}

.sidebar a {
  display: block;
  padding: 0px 5px;
  margin: 5px 0;
  line-height: 1.5rem;
  text-decoration: none;
  color: var(--text-color);
  transition: 250ms;
}

.sidebar-link.active {
  transform: scale(1.05);
  font-weight: bold;
  transform-origin: left;
  transition: transform 0.3s ease, font-weight 0.3s ease;
  color: var(--active-link-color);
}

.author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: var(--sidebar-bg-color);
  transition: 250ms;
}

@media (max-width: 750px) {
  .author-box {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.author-gravatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0px 10px 0px 10px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  color: var(--text-color);
}

.author-title {
  font-size: 0.75rem;
  color: var(--active-link-color);
}

.sidebar-toggle {
  display: none;
}

@media (max-width: 750px) {
  .sidebar-wrapper {
    position: fixed;
    left: 50%;
    top: 25x;
    width: 90vw;
    transform: translate(-50%, -150%);
    transition: transform 0.5s;
    z-index: 10;
  }

  .sidebar-visible .sidebar-wrapper {
    transform: translate(-50%, 0%);
  }

  .post-content {
    margin: 0px 0px 0px 0px;
  }

  .sidebar-toggle {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    padding: 7px 13px 10px 14px;
    font-size: 24px;
    background-color: #23282d;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
  }

  .sidebar-visible .sidebar-wrapper {
    margin: auto;
    position: fixed;
  }
}
/* content share */

@import url("https://fonts.googleapis.com/css2?family=Hind&family=Montserrat:wght@700&display=swap");

:root {
	--text-font: "Hind", sans-serif;
	--title-font: "Montserrat", sans-serif;

	--dark: #151515;
	--grey: #717171;
	--light-gray: #a1a1a1;
	--faded-gray: #e1e1e1;
}

img {
	width: 100%;
	vertical-align: top;
}

.card {
	text-align: center;

	&__img {
		margin-bottom: 30px;
	}

	&__title {
		font-family: var(--title-font);
		text-transform: capitalize;
		color: var(--dark);
		line-height: 35px;
		font-size: 24px;
	}

	&__text {
		font-family: var(--text-font);
		color: var(--grey);
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 20px;
	}

	&__readbtn {
		font-family: var(--text-font);
		font-size: 14px;
		text-transform: uppercase;
		color: var(--light-gray);
		text-decoration: none;
		line-height: 26px;
		transition: all ease 0.3s;
		position: relative;

		&::after {
			content: "";
			position: absolute;
			left: 0;
			bottom: 0;
			width: 0;
			height: 2px;
			background-color: var(--dark);
			transition: all ease 0.3s;
		}

		&:hover {
			color: var(--dark);
			&::after {
				width: 100%;
			}
		}
	}
}

.divider {
	background-color: var(--faded-gray);
	height: 2px;
	max-width: 30px;
	margin: 15px auto 20px;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 35px;
	max-width: 1300px;
	margin: 50px auto;
	padding: 0 10px;
}
