/* normalize css */
@import url("../../vendor/normalizecss/normalize.css");

/* document root */
:root {
  /* colors */
  --cq-very-dark-gray-100: #404040;
  --cq-very-dark-gray-200: #484848;
  --cq-white: #ffffff;
  --cq-bright-orange: #f3703a;
  --cq-mostly-black-100: #202020;
  --cq-mostly-black-200: #232323;
  --cq-dark-blue: #0060ad;
  --cq-very-dark-blue: #15133c;
  --cq-strong-blue: #0072bc;
  --cq-light-grayish-blue: #ecf9fe;
  --cq-mostly-white-100: #f2f2f2;
  --cq-mostly-white-200: #f5f5f5;
  --cq-mostly-white-300: #f7f7f7;
  --cq-mostly-white-400: #fffaec;
  --cq-mostly-white-500: #e4e3ee;
  --cq-light-gray: #d6d6d6;

  /* font families */
  --font-circular-std: "Circular Std";
  --font-poppins: "Poppins";
  --font-pacifico: "Pacifico";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* common styles */
body {
  font-family: var(--font-circular-std, "Circular Std"), sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-style: normal;
  color: var(--cq-very-dark-gray-100, #404040);
  font-weight: 400;
  line-height: 1.625;
}

.container {
  max-width: 1164px;
  max-width: 116.4rem;
  padding-left: 10px;
  padding-left: 1rem;
  padding-right: 10px;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.title-1,
.title-2,
.title-3,
.title-4,
.title-5,
.title-6 {
  font-family: var(--font-circular-std, "Circular Std"), sans-serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--cq-mostly-black-100, #202020);
  margin-top: 0;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

.title-1 {
  font-size: 48px;
  font-size: 4.8rem;
}

.title-2 {
  font-size: 40px;
  font-size: 4rem;
}

.title-3 {
  font-size: 32px;
  font-size: 3.2rem;
}

.title-5 {
  font-size: 24px;
  font-size: 2.4rem;
}

.title-6 {
  font-size: 20px;
  font-size: 2rem;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  padding: 0;
  margin: 0;
}

.text-1,
.text-2,
.text-3,
.text-4,
.text-5,
.text-6 {
  font-family: var(--font-circular-std, "Circular Std"), sans-serif;
  font-weight: 400;
  line-height: 1.625;
  color: var(--cq-very-dark-gray-100, #404040);
  margin-top: 0;
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}

.text-1 {
  font-size: 28px;
  font-size: 2.8rem;
}

.text-2 {
  font-size: 24px;
  font-size: 2.4rem;
}

.text-3 {
  font-size: 20px;
  font-size: 2rem;
}

.text-4 {
  font-size: 18px;
  font-size: 1.8rem;
}

.text-5 {
  font-size: 16px;
  font-size: 1.6rem;
}

.text-6 {
  font-size: 14px;
  font-size: 1.4rem;
}

.cq-btn {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  gap: 1rem;
  border: 1px solid transparent;
  border: 0.1rem solid transparent;
  background-color: transparent;
  border-radius: 0;
  text-align: center;
  color: var(--cq-mostly-black-200, #232323);
  padding: 10px 24px;
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: 300ms ease;
  cursor: pointer;
}

.cq-btn > * {
  flex: 0 0 auto;
}

.cq-btn:hover {
  opacity: 0.9;
}

.cq-btn-white {
  background-color: var(--cq-white, #ffffff);
  color: var(--cq-bright-orange, #f3703a);
}

.cq-btn-white:hover {
  color: var(--cq-bright-orange, #f3703a);
}

.cq-btn-orange {
  background-color: var(--cq-bright-orange, #f3703a);
  color: var(--cq-white, #ffffff);
}

.cq-btn-orange:hover {
  color: var(--cq-white, #ffffff);
}

.cq-btn.cq-arrow-btn {
  padding: 6px 24px 6px 6px;
  padding: 0.6rem 2.4rem 0.6rem 0.6rem;
}

.cq-btn.cq-arrow-btn .icon {
  width: 32px;
  width: 3.2rem;
  height: 32px;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--cq-white, #ffffff);
  color: var(--cq-mostly-black-100, #202020);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-size: 1.6rem;
}

.cq-btn.cq-arrow-btn-lg {
  padding: 8px 32px 8px 8px;
  padding: 0.8rem 3.2rem 0.8rem 0.8rem;
  font-size: 16px;
  font-size: 1.6rem;
}

.cq-btn.cq-arrow-btn-lg .icon {
  width: 45px;
  width: 4.5rem;
  height: 45px;
  height: 4.5rem;
  background-color: var(--cq-white, #ffffff);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cq-mostly-black-100, #202020);
  font-size: 25px;
  font-size: 2.5rem;
}

.rounded-pill {
  border-radius: 50rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.bg-holder {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reboot-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.hidden {
  overflow: hidden;
}

/* header main */
.header-main {
  position: absolute;
  top: 0;
  z-index: 99999999;
  width: 100%;
  background-color: transparent;
  transition: 300ms ease;
}

.header-main.sticky {
  background-color: var(--cq-white, #ffffff);
  box-shadow: 0 0.5rem 1.6rem 0 rgb(0 0 0 / 0.12);
  position: fixed;
}

.navbar-main {
  padding-top: 40px;
  padding-top: 4rem;
  padding-bottom: 20px;
  padding-bottom: 2rem;
}

.header-main.sticky .navbar-main {
  padding-top: 16px;
  padding-top: 1.6rem;
  padding-bottom: 16px;
  padding-bottom: 1.6rem;
}

.navbar-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  gap: 1rem;
}

.navbar-main__brand {
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-main__brand > * {
  width: 225px;
  width: 22.5rem;
  transition: 300ms ease;
}

.header-main.sticky .navbar-main__brand > * {
  width: 180px;
  width: 18rem;
}

.navbar-menu-btn,
.navbar-main-sm {
  display: none;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  gap: 2.8rem;
}

.navbar-main .container .navbar-menu {
  margin-right: auto;
  margin-left: 30px;
  margin-left: 3rem;
}

.navbar-menu__item-link {
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cq-very-dark-gray-200, #484848);
  transition: 300ms ease;
}

.navbar-menu__item-link:hover {
  color: var(--cq-bright-orange, #f3703a);
}

.navbar-utils {
  display: flex;
  align-items: center;
  gap: 16px;
  gap: 1.6rem;
}

.navbar-utils > * {
  flex: 0 0 auto;
}

.navbar-utils .search-btn {
  padding: 12px;
  padding: 1.2rem;
  font-size: 18px;
  font-size: 1.8rem;
  border-radius: 50%;
  color: var(--cq-very-dark-gray-200, #484848);
}

/* hero home */
.hero-home {
  padding-top: 200px;
  padding-top: 20rem;
  position: relative;
  overflow: hidden;
}

.hero-home .hero-img {
  text-align: right;
}

.hero-home .hero-img img {
  transform: scale(1.375) translate(5%, -15%);
}

.hero-home .inner-content {
  display: flex;
}

.hero-home .hero-content {
  flex: 0 0 55%;
}

.hero-home .hero-content .text-4 {
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
}

/* ai overview */
.ai-overview {
  position: relative;
  text-align: center;
  padding-top: 56px;
  padding-top: 5.6rem;
  padding-bottom: 76px;
  padding-bottom: 7.6rem;
}

.ai-overview .inner-content {
  width: 930px;
  width: 93rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.ai-overview .img-wrapper {
  text-align: center;
  margin-top: -7%;
}

.ai-overview .img-wrapper img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ai support */
.ai-support {
  position: relative;
  padding-top: 2em;
  padding-bottom: 3.8em;
}

.ai-support .bg-holder {
  background-size: 25% auto;
  background-position: left center;
}

.ai-support .title-2 {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
}

.ai-support .capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  gap: 2.8rem;
  max-width: 75%;
  margin-left: auto;
}

.capabilities-list .capabilities-list__item {
  /* local variables */
  --space: -7%;
  /* local variables */

  display: flex;
  gap: 32px;
  gap: 3.2rem;
}

.capabilities-list .capabilities-list__item:nth-of-type(1) {
  margin-left: calc(var(--space) * 3);
}

.capabilities-list .capabilities-list__item:nth-of-type(2) {
  margin-left: calc(var(--space) * 2);
}

.capabilities-list .capabilities-list__item:nth-of-type(3) {
  margin-left: var(--space);
}

.capabilities-list .capabilities-list__item:nth-of-type(6) {
  margin-left: var(--space);
}

.capabilities-list .capabilities-list__item:nth-of-type(7) {
  margin-left: calc(var(--space) * 2);
}

.capabilities-list .capabilities-list__item:nth-of-type(8) {
  margin-left: calc(var(--space) * 3.5);
}

.capabilities-list .capabilities-list__item:nth-of-type(9) {
  margin-left: calc(var(--space) * 5);
}

.capabilities-list__item .icon {
  flex-shrink: 0;
  width: 140px;
  width: 14rem;
  height: 140px;
  height: 14rem;
  background: var(--cq-mostly-white-300, #f7f7f7);
  border: 4px solid var(--cq-white, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capabilities-list__item.active .icon {
  background: var(--cq-white, #ffffff);
  box-shadow: 50px 50px 50px var(--cq-mostly-white-100, #f2f2f2),
    inset 30px 30px 50px var(--cq-mostly-white-300, #f7f7f7);
}

.capabilities-list__item .icon img {
  width: 76px;
  width: 7.6rem;
}

.capabilities-list__item .title-5 {
  color: var(--cq-dark-blue, #0060ad);
}

.capabilities-list__item .text-5:last-of-type {
  margin-bottom: 0;
}

/* realted insights */
.realted-insights {
  padding-top: 108px;
  padding-top: 10.8rem;
  padding-bottom: 68px;
  padding-bottom: 6.8rem;
}

.realted-insights .container {
  position: relative;
}

.realted-insights .astronut-icon {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, -50%);
}

.realted-insights .astronut-icon > * {
  width: 92px;
  width: 9.2rem;
}

.realted-insights .title-2 {
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 4rem;
}

.realted-insights .inner-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.featured-insight {
  padding-right: 25px;
  padding-right: 2.5rem;
}

.featured-insight .card-img {
  position: relative;
  margin-bottom: 42px;
  margin-bottom: 4.2rem;
}

.featured-insight .featured-img {
  border-radius: 1.6rem;
  backdrop-filter: blur(20px);
  backdrop-filter: blur(2rem);
  width: 100%;
}

.featured-insight .feather-icon {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.meta-data {
  font-family: var(--font-pacifico), cursive;
  color: var(--cq-strong-blue, #0072bc);
}

.meta-data a {
  color: var(--cq-strong-blue, #0072bc);
  text-decoration: none;
  transition: 300ms ease;
}

.meta-data a {
  opacity: 0.75;
  color: var(--cq-dark-blue, #0060ad);
}

.insight-content {
  border-left: 1px solid var(--cq-light-gray, #d6d6d6);
  border-left: 0.1rem solid var(--cq-light-gray, #d6d6d6);
}

.insight-list__item {
  padding: 25px 0 25px 25px;
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-bottom: 1px solid var(--cq-light-gray, #d6d6d6);
  border-bottom: 0.1rem solid var(--cq-light-gray, #d6d6d6);
}

.insight-list__item:first-of-type {
  padding-top: 0;
}

.insight-list__item:last-of-type {
  border-bottom: 0;
}

.insight-list__item .card {
  display: flex;
  gap: 25px;
  gap: 2.5rem;
}

.insight-list__item .card-img {
  flex-shrink: 0;
  border-radius: 1.6rem;
  overflow: hidden;
}

.insight-list__item .card-img img {
  width: 170px;
  width: 17rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.insight-list__item .text-5:last-of-type {
  margin-bottom: 0;
}

.insight-content .button-wrapper {
  padding-top: 40px;
  padding-top: 4rem;
  padding-left: 25px;
  padding-left: 2.5rem;
}

/*start power content area css*/
.ai_power_main_area {
  padding: 6.8rem 0 12.8rem;
  background: url(../images/power_shape.png) no-repeat scroll 0 0 / cover;
}

.ai_power_content_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}

.power_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.power_images {
  background: #ffffff;
  border: 6px solid #ffffff;
  box-shadow: 50px 50px 50px #f2f2f2, inset 30px 30px 50px #f7f7f7;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.power_left_area {
  flex: 0 0 calc(45% - 6rem / 2);
}

.power_right_items {
  flex: 0 0 calc(55% - 6rem / 2);
}

.power_right_items .title-3 {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.power_images:after {
  content: "";
  position: absolute;
  background: url(../images/power_frame.png) no-repeat scroll 0 0 / contain;
  background-position: left bottom;
  bottom: 0;
  left: 0;
  width: 65%;
  height: 35%;
  border-radius: 12px;
}

.btn_style_1 {
  text-decoration: none;
  border: 1px solid #f3703a;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  font-family: "Circular Std";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #202020;
  padding: 8px 21px 8px 8px;
}

.btn_style_1 span img {
  width: 18px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_style_1 span {
  display: inline-block;
  padding: 12px 11px;
  background: #f3703a;
  box-shadow: 4px 4px 50px #eeeeee;
  border-radius: 50%;
  margin-right: 14px;
}

/*benefit_main_area css*/
.benefit_main_area {
  padding-top: 7.6rem;
  background: url(../images/benefit_shape.png) no-repeat scroll 0 0 / cover;
  padding-bottom: 25rem;
}

.section_heading {
  margin-bottom: 3.2rem;
}

.benefit_icon {
  width: 96px;
  height: 96px;
  background: var(--cq-mostly-white-400, #fffaec);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-right: 24px;
}

.benefit_icon img {
  width: auto;
  height: 58px;
  display: block;
}

.benefit_content_area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.single_benefit_items {
  box-shadow: 0px 4px 50px #f2f2f2;
  border-radius: 16px;
  padding: 2.2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.single_benefit_items .green-icon-sm,
.single_benefit_items .green-icon {
  position: absolute;
  z-index: 0;
  bottom: -0.8rem;
}

.single_benefit_items .green-icon-sm {
  right: 1.6rem;
}

.single_benefit_items .green-icon {
  left: 0;
}

.single_benefit_items:hover {
  background: #ecf9fe;
}

.single_benefit_items:hover .benefit_icon {
  background: var(--cq-white, #ffffff);
}

/*start footer main area css*/
.footer__heading {
  text-align: center;
  max-width: 745px;
  width: 100%;
  margin: auto;
}

.footer_top_content {
  background: url(../images/footer_top.png) no-repeat scroll 0 0 / cover;
  padding-bottom: 150px;
  background-position: bottom center;
  background-size: 100% 80%;
}

.footer_content_area {
  padding-top: 116px;
  padding-bottom: 43px;
  display: flex;
  gap: 6.4rem;
}

.footer_left_items {
  flex: 0 0 calc(100% / 4 * 3 - 6.4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.6rem 6.4rem;
  align-items: start;
}

.footer_single_items {
  border-bottom: 1px solid #e4e3ee;
}

.footer_right_content {
  flex: 0 0 calc(100% / 4);
}

.footer_contact_title {
  border-bottom: 1px solid #e4e3ee;
  padding-bottom: 19px;
}

.footer_contact_title.text-4 {
  font-weight: 500;
  padding-bottom: 1.8rem;
}

.footer__right_txt ul li a {
  font-family: "Circular Std";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 32px;
  color: #404040;
  text-decoration: none;
}

.footer__right_txt ul {
  padding: 0;
  margin: 0;
  padding-top: 8px;
}

.footer__right_txt ul li {
  list-style: none;
}

.footer__heading h2 {
  margin-bottom: 21px;
}

.footer_bottom_left p.text-6 {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  margin-bottom: 0;
}

.footer_bottom_left p span {
  margin-left: 20px;
  display: inline-block;
}

.footer_social_icon ul li a {
  color: #e4e3ee;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  justify-content: center;
  border: 1px solid #e4e3ee;
  border-radius: 50%;
  margin: 0 8px;
  transition: 0.3s ease;
}

.footer_social_icon ul li a:hover {
  color: #0071bb;
  border-color: #0071bb;
}

.footer_bottom_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}

.footer_bottom_left {
  flex: 0 0 50%;
}

.footer_bottom_right {
  flex: 0 0 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom_priacy ul {
  display: flex;
  align-items: center;
}

.footer__bottom_priacy ul li a {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #404040;
  margin: 0 5px;
}

.footer_social_icon ul {
  display: flex;
}

.trusted-world-area {
  padding-top: 160px;
  position: relative;
}

.trusted-world-area:before {
  content: "";
  position: absolute;
  background: url("../images/shape.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 90%;
  height: 50%;
  left: 0;
  top: 5%;
  z-index: -1;
}

.trusted-world-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.trusted-world-left-content {
  flex: 0 0 32%;
}

.trusted-world-right-content {
  flex: 0 0 68%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trusted-world-right-left-content,
.trusted-world-right-right-content {
  flex: 0 0 50%;
}

.single-trusted-world-content {
  background: #f7f7f7;
  width: 94%;
  margin-bottom: 25px;
  padding: 25px 20px;
  box-sizing: border-box;
  border-radius: 15px;
}

.single-trusted-world-text p {
  font-weight: 300 !important;
  font-size: 16px;
  color: #404040;
  margin: 0;
}

.single-trusted-world-text h5 {
  font-weight: 500;
  font-size: 18px;
  color: #202020;
  text-transform: inherit;
  line-height: 1.4;
  margin: 6px 0;
}

.single-trusted-world-logo a img {
  height: 30px;
  width: auto;
  margin-bottom: 5px;
}

.single-trusted-world-text a {
  font-weight: 400;
  font-size: 14px;
  color: #0072bc;
  text-transform: inherit;
  line-height: normal;
  text-decoration: none;
}

.single-trusted-world-text.ceat {
  position: relative;
}

.single-trusted-world-text.ceat:after {
  content: "";
  position: absolute;
  background: url("../images/chet.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 155px;
  height: 60px;
  right: -20px;
  bottom: -25px;
}

.personalized-demo-heading h2 {
  font-weight: 700;
  font-size: 32px;
  color: #202020;
  text-transform: inherit;
  line-height: 1.4;
  margin-bottom: 35px;
}

.personalized-demo-heading {
  text-align: center;
  max-width: 635px;
  width: 100%;
  margin: auto;
}

.personalized-demo-heading h2 {
  font-weight: 700;
  font-size: 32px;
  color: #202020;
  text-transform: inherit;
  line-height: 1.4;
}

.personalized-demo-content {
  background: url("../images/footer-top.png") no-repeat scroll 0 0 / cover;
  padding-bottom: 25rem;
  background-position: center bottom;
  background-size: cover;
  padding-top: 25rem;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  border-bottom: 0.1rem solid var(--cq-mostly-white-500, #e4e3ee);
  padding-bottom: 1.8rem;
  color: var(--cq-mostly-black-200, #232323);
}

.dropdown-toggle > * {
  margin: 0;
  color: var(--cq-mostly-black-200, #232323);
  transition: 300ms ease;
}

.dropdown-toggle svg {
  font-size: 1.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
  width: 100%;
  background-color: var(--cq-white, #ffffff);
  box-shadow: 0 0.4rem 1rem rgb(0 0 0 / 0.21);
  opacity: 0;
  visibility: hidden;
  transition: 300ms ease;
  max-height: 24rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #555555 #d9d9d9;
}

.dropdown-menu::-webkit-scrollbar {
  width: 5px;
  width: 5px;
}
.dropdown-menu::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #d9d9d9;
}

.dropdown-menu::-webkit-scrollbar-track:hover {
  background-color: #777777;
}

.dropdown-menu::-webkit-scrollbar-track:active {
  background-color: #c2c2c2;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #555555;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: #454545;
}

.dropdown-menu::-webkit-scrollbar-thumb:active {
  background-color: #232323;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown.active .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown__item {
  padding: 1rem 1.6rem;
  display: block;
  text-decoration: none;
  color: var(--cq-mostly-black-100, #202020);
  transition: 300ms ease;
}

.dropdown__item:hover {
  background-color: var(--cq-mostly-white-300, #f7f7f7);
}
