* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  --primary-color: #0c34f0;
  --lighter-pry-color: #e2e6f9;
  --second-color: #ff0101;
  --text-color: #000000;
  --title-color: #27408b;
  --container-bg-color: #f4f6f9;
  --border-color: #cccccc;
  --body-bg-color: #ffffff;

  --header-height: 3.5rem;
  --normal-font-size: 0.938rem;

  --font-regular: 400;
  --font-semi-bold: 600;

  /* ------z index---------- */
  --z-tooltip: 10;
  --z-fixed: 100;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--normal-font-size);
  background: var(--body-bg-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  margin-inline: 1.5rem;
  max-width: 1120px;
}

.section {
  padding: 5rem 9% 2rem;
  /* min-height: 100vh; */
}

.header-1 {
  border-bottom: 1px solid #2c2c30;
  left: 0;
  min-width: 320px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 9%;
  background: white;
  width: 100%;
  transition: top 0.3s;
}

.main-logo img {
  width: 180px;
}

.nav_button {
  display: flex;
  align-items: center;
}

.log_btn i {
  display: none;
}

.nav-btn_a {
  position: relative;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--body-bg-color);
  font-size: 14px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  margin: auto;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  height: 48px;
  min-width: 189px;
  z-index: 1;
}

.nav-btn {
  padding: 10px 25px;
  background: var(--lighter-pry-color);
  color: var(--primary-color);
  font-size: 14px;
  width: 100%;
  border-radius: 20px;
  margin-left: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-2 {
  position: fixed;
  top: 6rem;
  left: 0;
  width: 100%;
  padding: 0px 9%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.2);
  background-color: #fff;
  z-index: 999;
  transition: opacity 0.3s ease, top 0.3s ease;
}

.nav {
  height: var(--header-height);
}

.nav_data {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav_logo {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-size: var(--font-semi-bold);
  transition: color 0.3s;
}

.nav_logo i {
  font-size: 1.25rem;
}

.nav_logo:hover {
  color: var(--second-color);
}

.nav_toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav_toggle-menu,
.nav_toggle-close {
  font-size: 1.25rem;
  color: var(--text-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s transform 0.4s;
}

.nav_toggle-close {
  opacity: 0;
}

.home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background-image: url("../assets/images/0ec51a34-iphone.png"); 
  background-size: cover;
  background-position: center;
  background-color: var(--title-color);
  margin-top: 3rem;
  color: #fff;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.home-img img {
  width: 40vw;
}

.home-content h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3rem;
}

.home-content h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.home span {
  color: var(--second-color);
}

.home-content p {
  font-size: 1rem;
  width: 70%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.home-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--primary-color);
  color: var(--container-bg-color);
  font-size: 16px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
}

.home-btn:hover {
  background: var(--title-color);
  font-weight: 600;
}

@media screen and (max-width: 1118px) {
  .nav_menu {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav_menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav_menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}

.nav_link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav_link:hover {
  background-color: var(--lighter-pry-color);
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

.show-icon .nav_toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav_toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

.dropdown_button {
  cursor: pointer;
}

.dropdown_arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown-content,
.dropdown-group,
.dropdown-list {
  display: grid;
}

.dropdown-container {
  background-color: var(--lighter-pry-color);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown-content {
  row-gap: 1.75rem;
}

.dropdown-group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}

.dropdown-group:first-child {
  margin-top: 1rem;
}

.dropdown-group:last-child {
  margin-bottom: 1.25rem;
}

.dropdown-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: var(--font-semi-bold);
  color: #313131;
}

.dropdown-list {
  row-gap: 0.25rem;
}

.dropdown-link {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
  transition: color 0.3s;
}

.dropdown-link:hover {
  color: var(--title-color);
}

.show-dropdown .dropdown_arrow {
  transform: rotate(180deg);
}

.icons-section {
  width: 100%;
  /* height: 100vh; */
  margin-top: -5rem;
}

.icons-section h1 {
  text-align: center;
  padding-top: 5%;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
}

.icons-section p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.icons-section p span a {
  color: var(--primary-color);
}

.icons-section p span a:hover {
  text-decoration: underline;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  grid-gap: 5px;
}

.icon-service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
}

.imag {
  margin-bottom: 0;
  padding-bottom: 0;
}

.icon-service a {
  margin-top: -30px;
  color: var(--title-color);
  font-size: 14px;
  font-weight: 500;
}

.icon-service a:hover {
  color: #ff0101;
  text-decoration: underline;
}

.account-table {
  width: 100%;
  min-height: 100vh;
  /* padding-top: -10rem; */
  background-color: #f8f9fa;
}

.account-table h3 span {
  text-align: center;
  padding-top: 5%;
  color: #7a0c0c;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.2rem;
  margin-bottom: 20px;
}

.account-table h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.account-table h4 a {
  color: var(--second-color);
}

.account-table h3 {
  text-align: center;
  padding-top: 5%;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.account-table p {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.3;
  color: #969292;
  margin-bottom: 1rem;
}

.acc-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-container {
  max-width: 1091px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.acc-container .acc-card {
  width: calc(33% - 20px);
  background: #fff;
  text-align: center;
  padding: 15px 30px 30px 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.acc-top {
  height: 130px;
  background: #39b54a;
  color: #fff;
  padding: 12px 0 0 0;
  width: 100%;
}

.acc-top .acc-title {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 600;
}

.acc-price-sec {
  margin-top: -10px;
}

.acc-price-sec span {
  color: #fff;
}
.acc-price-sec .price {
  font-size: 40px;
}

.acc-details .plan {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.acc-details .plan span {
  font-weight: 400;
  color: #000000;
}

.acc-details .plan::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: -12px;
  background: #ddd;
}

.acc-card button {
  height: 42px;
  display: block;
  outline: none;
  border: none;
  margin-top: 30px;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 1px;
  background: var(--title-color);
  font-size: 18px;
  cursor: pointer;
}

.acc-card button:hover {
  background: #020e41;
}

.two .acc-top {
  background: #7a0c0c;
}

.grey {
  background: gainsboro;
}

.acc-btn {
  align-items: center;
}


/* * ===============Hero-contact Section ============= */

.get-in-touch {
  margin-bottom: 1rem;
}

.get-in-touch .get-in-touch-heading {
  text-align: center;
  padding-bottom: 15px;
  font-size: 40px;
  color: #fff;
  margin-bottom: 0.5rem;
}

.get-in-touch .get-in-touch-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 10px;
}

.get-in-touch .get-in-touch-container .get-in-touch-box {
  border-radius: 10px;
  background: none;
  text-align: center;
  padding: 30px 20px;
}

.get-in-touch .get-in-touch-container .get-in-touch-box h3 {
  font-size: 16px;
  color: var(--first-color);
  padding: 10px 0;
}

.get-in-touch .get-in-touch-container .get-in-touch-box p {
  font-size: 15px;
  color: var(--text-color);
  padding: 10px 0;
}

.get-in-touch .get-in-touch-container .get-in-touch-box .btn {
  margin-top: 10px;
  display: inline-block;
  color: #000;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
  font-weight: 500;
  margin-top: 0;
}

.get-in-touch .get-in-touch-container .get-in-touch-box .btn:hover {
  color: var(--second-color);
  text-decoration: underline;
}


/* * ===============Portfolio Section ============= */

.portfolio {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--title-color);
  color: #fff;
}

.portfolio-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-img video {
  width: 100%;
  height: 50vh;
  display: block;
}

.portfolio-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.portfolio-content p {
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.portfolio-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--primary-color);
  color: var(--container-bg-color);
  font-size: 16px;
  border-radius: 4rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
}

.portfolio-btn:hover {
  background: var(--title-color);
  font-weight: 600;
  border: 2px solid #fff;
}


/* * ===============Counter Section ============= */

.count {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #fcfcff;
}

.count h3 span {
  text-align: center;
  padding-top: 5%;
  color: #7a0c0c;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.2rem;
  margin-bottom: 20px;
}

.count h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.count-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.count-content h3 {
  text-align: center;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 2rem;
}

.count-content span {
  text-transform: lowercase;
}

.count-content p {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.count-title {
  font-size: 22px;
  margin-bottom: 1rem;
  text-transform: capitalize;
  color: #000000;
}

.count-content p span {
  text-transform: capitalize;
  color: #7a0c0c;
}

.count-img img {
  width: 50vw;
}


/* * ===============Trust Piloit Section ============= */

.reviews {
  background: #ddd;
}

.review-container {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 5rem 3%;
  background: #fff;
  border-radius: 20px;
}

.reviews-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.reviews-box {
  background: #f3f5fe;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.reviews-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.reviews-content .reviews-image {
  height: 35px;
  width: 100px;
  padding: 3px;
  background: transparent;
  border-radius: 5px;
}

.reviews-stars {
  display: flex;
}

.reviews-stars span {
  background-color: #00b67a;
  padding: 3px 4px;
  display: inline-flex;
  align-items: center;
  margin-right: 1px;
}

.reviews-stars span svg {
  width: 16px;
  height: 16px;
}

.reviews-stars span svg .tp-star__shape {
  fill: #fff;
}

.reviews-stars span:last-child {
  margin-right: 0;
}

.reviews-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
  border: none;
}

.reviews-image img {
  border-color: #fff;
}




/* * ===============Live Price Section ============= */

.live-forex-prices {
  background-color: #ffffff;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid black;
  gap: 20px;
}

.forex-table,
.news-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    min-width: 300px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    overflow-x: auto; 
}

.forex-table th,
.forex-table td,
.news-table th,
.news-table td {
    padding: 12px 15px;
    text-align: left;
}

.forex-table th,
.news-table th {
    background-color: #009879;
    color: #ffffff;
}

.forex-table tr:nth-of-type(even),
.news-table tr:nth-of-type(even) {
    background-color: #ff0000;
}

.forex-table tr:hover,
.news-table tr:hover {
    background-color: #f1f1f1;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.news-article {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-article h3 {
    margin-top: 0;
}


/* * ===============Scroll Section ============= */

.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--title-color);
  display: inline-flex;
  font-size: 1.35rem;
  padding: .35rem;
  border-radius: .25rem;
  color: var(--body-bg-color);
  z-index: var(--z-tooltip);
  transition: .3s;
}



.scrollup:hover{
  transform: translateY(-.25rem);
  color: var(--lighter-pry-color);
}

.show-scroll{
  bottom: 5rem;
}








/* * ===============footer Section ============= */

footer {
  padding: 5rem 9% 2rem;
  display: flex;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer__title {
  font-size: 0.858rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
  color: #bcbaba;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__link {
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer-risk {
  border-top: 1px solid black;
  padding-top: 20px;
  text-align: justify;
}

.footer-risk p {
  margin-bottom: 1rem;
  font-size: 10px;
}

.footer-risk p span {
  font-size: 22px;
  color: var(--second-color);
  font-weight: 500;
  letter-spacing: -1px;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social img {
  width: 35px;
  height: 35px;
  filter: grayscale(100%);
}
.footer__social .footer__social-link:hover img {
  filter: grayscale(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 1rem 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  margin-top: 2rem;
}

.footer-logo {
  height: 40px;
  filter: grayscale(100%);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links .footer__link {
  margin-bottom: 0;
}




















































/* ----------Scren BreakPoint------------- */

@media screen and (min-width: 1118px) {
  /* nav */
  .nav {
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
  }

  .nav_logo {
    display: initial;
  }

  .nav_toggle {
    display: none;
  }

  .nav_list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  /* nav li {
        display: flex;
    } */
  .nav_link {
    padding: 0;
    text-transform: capitalize;
  }

  .nav_link:hover {
    background-color: initial;
  }

  /* --Dropdown-- */
  .dropdown_button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown-container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-bg-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s opacity 0.3s;
  }

  .dropdown-content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }

  .dropdown-group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: 0;
  }

  .dropdown-list {
    row-gap: 0.75rem;
  }
  .dropdown-title {
    font-size: 13px;
  }
  .dropdown-link {
    font-size: 12px;
    font-weight: 500;
  }
  .dropdown-link:hover {
    color: var(--title-color);
  }
  .dropdown_item {
    cursor: pointer;
  }

  /* Rotate dropdown icon */
  .dropdown_item:hover .dropdown_arrow {
    transform: rotate(180deg);
  }

  /* Show dropdown menu */
  .dropdown_item:hover > .dropdown-container {
    top: 4rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }

  .dropdown_arrow {
    display: none;
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

@media screen and (max-width: 1070px) {
  .header-1 {
    padding: 20px 5%;
  }

  .section {
    padding: 5rem 3%;
  }

  .reviews-box {
    width: calc(50% - 10px);
    margin: 10px 0;
  }
}

@media screen and (max-width: 667px) {
  .main-logo {
    width: 40px;
    margin-right: 3px;
  }

  .nav_button a {
    display: none;
    padding: 6px 14px;
    margin-right: 8px;
    font-size: 10px;
  }

  #menu-icon {
    margin-right: 1px;
  }

  .log_btn i {
    display: block;
    color: var(--border-color);
    font-size: 25px;
    margin-left: 15px;
  }

  .home {
    flex-direction: column;
  }

  .home-content {
    order: 2;
    padding: 1rem;
  }

  .home-content h1 {
    font-size: 1.5rem;
  }

  .home-content p {
    font-size: 1rem;
    line-height: 1.3;
    text-align: justify;
  }

  .home-content span {
    font-size: 2.5rem;
  }

  .home-img img {
    width: 90vw;
    margin-top: 4rem;
  }

  .icon-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
  }

  .icons-section h1 {
    font-size: 30px;
  }

  .icons-section p {
    font-size: 15px;
  }

  .acc-container .acc-card {
    width: 100%; /* One card per row */
    margin-bottom: 20px;
  }

  .account-table h3,
  .account-table h3 span {
    font-size: 32px;
  }

  .acc-details .plan {
    font-size: 14px;
  }

  .acc-card button {
    font-size: 16px;
  }

  .portfolio {
    flex-direction: column;
  }

  .portfolio-content {
    order: 2;
    padding: 1rem;
  }

  .portfolio-content h1 {
    font-size: 1.5rem;
  }

  .portfolio-content h3 {
    font-size: 1rem;
  }

  .portfolio-content p {
    font-size: 1rem;
    line-height: 1.3;
    text-align: justify;
  }

  .portfolio-content span {
    font-size: 2.5rem;
  }

  .portfolio-img img {
    width: 90vw;
    margin-top: 4rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__title {
    font-size: 1.125rem;
  }

  .footer__link {
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .count-img img {
    width: 90vw;
  }

  .reviews-box {
    width: 100%;
  }

  .forex-table,
  .news-table {
    font-size: 0.8em;
  }
  .forex-table th,
  .forex-table td {
    padding: 8px 10px;
  }
  .news-container {
    flex-direction: column;
  }
  .news-article {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 300px) {
  .dropdown-group {
    padding-left: 1.5rem;
  }

  .news-article {
    flex: 1 1 100%;
  }
}
