@charset "UTF-8";
:root {
  --width: 1276px;
  --bg-color: #FFFFFF;
  --grey: #F1F3F5;
  --orange: #EC5D29;
  --blue: #031031;
  --dark-blue: #031031;
  --light-blue:#E8F4FD;
  --gray: #454c5d;
  --form-color: #f8f8f8;
  --green-box: #d4edda;
  --green-btn:#129c33;
}

body {
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100lvw;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

html {
  font-size: 16px; /* 1rem = 16px */
}

h1 {
  font-size: 3.5rem; /* 56px */
  line-height: 4.25rem; /* 68px */
  font-weight: 600;
}

h2 {
  font-size: 2.875rem; /* 46px */
  line-height: 3.5rem; /* 56px */
  font-weight: 500;
  margin: 0;
}

@media (max-width: 360px) {
  h2 {
    font-size: 28px !important;
    line-height: 36px !important;
  }
}
h3 {
  font-size: 1.75rem; /* 28px */
  line-height: 2.25rem; /* 36px */
  font-weight: 500;
  color: var(--dark-blue);
  margin: 0;
}

h4 {
  font-size: 1.5rem; /* 24px */
  line-height: 2rem; /* 32px */
  font-weight: 500;
  color: var(--dark-blue);
  margin: 0;
}

h5 {
  font-size: 1.25rem; /* 20px */
  line-height: 1.875rem; /* 30px */
  font-weight: 500;
  color: var(--dark-blue);
  margin: 0;
}

p, pre {
  font-size: 1rem; /* 16px */
  line-height: 1.5rem; /* 24px */
  color: var(--gray);
  margin: 0;
}

pre {
  margin: 0;
  padding: 0;
  white-space: pre-line;
  font-family: "Manrope", sans-serif;
  font-weight: 200;
}

@media (max-width: 768px) {
  html {
    font-size: 16px; /* 1rem теперь = 14px */
  }
  h1 {
    font-size: 38px;
    line-height: 48px;
  }
  h2 {
    font-weight: 600;
    font-size: 34px;
    line-height: 42px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
  }
}
.bread-cumbs-cont {
  font-size: 16px;
  line-height: 24px;
  color: #E8F4FD;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.bread-cumbs-cont .separator, .bread-cumbs-cont .page {
  opacity: 0.5;
}

.bread-cumbs-cont-dark {
  z-index: 100;
  width: 100%;
  max-width: 1276px;
  margin: auto;
  height: 50px;
  margin-bottom: -50px;
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-blue);
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 12px;
}
.bread-cumbs-cont-dark .separator, .bread-cumbs-cont-dark .page {
  opacity: 0.5;
}

.white-cumbs {
  color: #E8F4FD;
}

@media (max-width: 768px) {
  .bread-cumbs-cont-dark {
    height: 30px;
    margin-bottom: -30px;
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .bread-cumbs-cont {
    font-size: 14px;
  }
}
.section-label {
  color: var(--orange);
}

.section-label::before {
  content: url("../images/Divider.svg");
  margin-right: 8px;
  vertical-align: baseline;
  display: inline-block;
  transform: translateY(-4px);
  z-index: 0;
}

.highlight {
  color: var(--orange);
}

.orange-btn {
  cursor: pointer;
  padding: 15px 30px;
  border: 0;
  border-radius: 12px;
  background-color: var(--orange);
  color: white;
  width: -moz-fit-content;
  width: fit-content;
}

.orange-btn::after {
  content: " ";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url("../images/Vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

header {
  width: 100%;
  background-color: var(--bg-color);
  max-width: var(--width);
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1276px) {
  header {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  #header-nav {
    display: none;
  }
  header {
    padding-left: 8px;
    padding-right: 8px;
  }
  #header-lookup-Btn {
    display: none;
  }
  #burger-menu-btn {
    display: block;
  }
  .open-nav header {
    position: absolute;
  }
  .open-nav #header-nav {
    margin-top: 25px;
    display: block;
    display: flex;
    flex-direction: column;
    order: 10; /* отправляем nav вниз */
    width: 100%; /* занимает всю ширину */
    height: calc(70vh - 64px); /* Full viewport height minus 64px */
  }
  .open-nav #header-lookup-Btn {
    display: block;
    order: 11;
    width: 100%;
    background-color: var(--orange);
  }
  .open-nav #close-top-nav-btn {
    display: block;
  }
  .open-nav #burger-menu-btn {
    display: none;
  }
}
#close-top-nav-btn {
  display: none;
}

@media (min-width: 768px) {
  #burger-menu-btn {
    display: none;
  }
}
.menu-Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 24px; /* Может не совпадать */
  border: 0;
  text-decoration: none;
  padding: 12px 24px 12px 24px;
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
  color: var(--dark-blue);
}

.menu-Btn:hover {
  text-decoration: underline;
}

.active {
  background-color: var(--grey);
}

.lookup-Btn {
  cursor: pointer;
  border: 0;
  color: var(--bg-color);
  background-color: var(--dark-blue);
  padding: 12px 24px 12px 24px;
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.lookup-Btn::after {
  content: " ";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/Vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

.hero-sec {
  background-image: url(../images/hero-sec-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100lvw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-sec h1,
.hero-sec p,
.hero-sec .orange-span,
#sticky-search h1,
#sticky-search p,
#sticky-search .orange-span {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-sec h1,
#sticky-search h1 {
  color: var(--dark-blue);
  max-width: 718px;
  margin-bottom: 28px;
  margin-top: 28px;
}
.hero-sec p,
#sticky-search p {
  font-size: 18px;
  line-height: 28px;
  color: var(--gray);
  max-width: 718px;
  margin-bottom: 40px;
}
.hero-sec .orange-span,
#sticky-search .orange-span {
  color: var(--orange);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.hero-sec .search-section,
#sticky-search .search-section {
  background-color: var(--dark-blue);
  padding: 16px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.hero-sec .search-box,
#sticky-search .search-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.hero-sec .search-input,
#sticky-search .search-input {
  height: 60px;
  flex: 1;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  padding-left: 20px;
  color: var(--dark-blue);
}
.hero-sec .search-input::-moz-placeholder, #sticky-search .search-input::-moz-placeholder {
  color: var(--dark-blue);
}
.hero-sec .search-input::placeholder,
#sticky-search .search-input::placeholder {
  color: var(--dark-blue);
}
.hero-sec .search-select,
#sticky-search .search-select {
  height: 60px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  background-color: #ffffff;
  color: var(--gray);
  padding: 13px;
}
.hero-sec .search-button,
#sticky-search .search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.hero-sec .camera-button,
#sticky-search .camera-button {
  background-color: rgba(255, 255, 255, 0.1);
  height: 60px;
  width: 60px;
}
.hero-sec .search-lookup-btn,
#sticky-search .search-lookup-btn {
  background-color: var(--orange);
  height: 60px;
  padding: 18px 36px;
  font-size: 20px;
  color: #ffffff;
}
.hero-sec .search-lookup-btn::after,
#sticky-search .search-lookup-btn::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/Vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}
.hero-sec .recent-searches,
#sticky-search .recent-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ffffff;
}
.hero-sec .recent-list,
#sticky-search .recent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-sec .recent-item,
#sticky-search .recent-item {
  color: #ffffff;
  padding: 5px 10px;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: #243154;
  font-size: 14px;
  text-decoration: none;
}
.hero-sec .recent-item:hover,
#sticky-search .recent-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.hero-sec .dark-blue,
#sticky-search .dark-blue {
  border: 0;
  height: 1px;
  background-color: #243154;
  margin-top: 16px;
  margin-bottom: 16px;
}
.hero-sec .vertical-line,
#sticky-search .vertical-line {
  background-color: #243154;
  width: 1px;
  height: 60px;
  border: none;
  display: inline-block;
  margin: 0 10px;
}

#sticky-search {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  margin: 0;
  padding: 16;
  border-radius: 0;
  width: 100%;
}
#sticky-search .search-section {
  padding: 16px;
  width: 100%;
  border-radius: 0;
  max-width: none;
}
#sticky-search .search-section .search-box {
  margin: 0;
  padding: 16;
  max-width: var(--width);
  margin: auto;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  #sticky-search {
    display: none;
  }
  .hero-sec {
    background-image: url(../images/hero-bg-mob.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    gap: 24px;
  }
  .hero-sec .vertical-line {
    display: none;
  }
  .hero-sec .search-select {
    width: 100%;
  }
  .hero-sec .search-lookup-btn {
    flex-grow: 1;
  }
  .hero-sec h1 {
    margin: 0;
  }
  .hero-sec .recent-list {
    justify-content: center;
  }
  .hero-sec .recent-list > *:nth-child(n+5) {
    display: none;
  }
}
@media (max-width: 1276px) {
  .hero-sec {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (min-width: 1276px) {
  .hero-sec {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-sec .search-input {
    min-width: 480px;
  }
}
.about-section {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  margin: 0 auto;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-section .text-info {
  max-width: 884px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-section .highlight {
  color: var(--orange);
}
.about-section p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.about-section .about-image {
  display: flex;
  flex-direction: column;
  background-image: url("../images/about-sec.webp");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  position: relative;
}
.about-section .about-image .info-card {
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 30px;
  margin-left: 20px;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-section .about-image .info-card p {
  text-align: start;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  max-width: 256px;
  color: var(--gray);
}
.about-section .about-image .info-card-icon {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
.about-section .about-image .info-card-icon span {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.main-button {
  margin-top: -24px;
  background: white;
  color: #0e1733; /* приближённо к тёмно-синему */
  border: none;
  padding: 24px 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.arrow-button {
  margin-top: -15px;
  background: var(--grey);
  border-radius: 10px;
  padding: 10px 16px;
  animation: moveUpDown 2s infinite ease-in-out;
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@media (max-width: 1276px) {
  .about-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-section .about-image {
    margin-top: 28px;
    width: 100%;
    min-height: 556px;
    background-size: auto 100%;
    background-position: 20% center;
  }
}
@media (min-width: 1276px) {
  .about-section .about-image {
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 48px;
    width: 1276px;
    min-height: 556px;
  }
}
.benefit-sec {
  background-color: var(--grey);
  background-image: url("../images/benefit-sec-bg.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.benefit-sec .card-container {
  max-width: var(--width);
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}
.benefit-sec .card {
  background-color: white;
  padding: 32px;
  border-radius: 24px;
}
.benefit-sec h3 {
  margin-top: 64px;
  text-align: center;
}
.benefit-sec h2 {
  text-align: center;
}

@media (max-width: 1276px) {
  .benefit-sec {
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .benefit-sec h2 {
    padding-bottom: 16px;
  }
  .benefit-sec .card-container h3, .benefit-sec .card-container p {
    padding-bottom: 8px;
  }
  .benefit-sec .card-container .card {
    padding: 24px;
    flex: 1;
  }
  .benefit-sec .card-container h3 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 1276px) {
  .benefit-sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .benefit-sec .card-container {
    margin-top: 24px;
  }
  .benefit-sec .card-container h3, .benefit-sec .card-container p {
    padding-bottom: 16px;
  }
}
@media (max-width: 992px) {
  .benefit-sec .card-container {
    flex-direction: column;
  }
  .benefit-sec .card-container .card {
    min-width: 450px;
  }
  .benefit-sec h3 {
    margin-top: 24px;
    text-align: start;
  }
}
@media (max-width: 450px) {
  .benefit-sec .card-container {
    flex-direction: column;
  }
  .benefit-sec .card-container .card {
    min-width: 300px;
    width: 100%;
    gap: 8px;
  }
  .benefit-sec .card-container .card img {
    max-height: 50px;
  }
  .benefit-sec .card-container h3 {
    font-size: 20px;
    line-height: 32px;
    margin-top: 8px;
  }
  .benefit-sec .card-container p {
    margin-top: 8px;
    font-size: 14px;
    margin-top: 0px;
    padding-bottom: 8px;
  }
}
.howdosec {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: white;
}
.howdosec .l-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.howdosec .section-container {
  width: 100%;
  max-width: var(--width);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
}
.howdosec .cont {
  margin-top: 48px;
  border-radius: 24px;
  background-color: var(--grey);
  padding: 32px;
}
.howdosec .cont h4 {
  margin-bottom: 20px;
}
.howdosec .cont .card-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.howdosec .cont .card {
  flex: 1;
  padding: 16px;
  border-radius: 16px;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
  color: var(--dark-blue);
}

@media (max-width: 768px) {
  .howdosec img, .howdosec video {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
  .howdosec .r-cont img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .howdosec .cont .card-container {
    flex-direction: column;
    gap: 8px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .howdosec .r-cont img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .howdosec {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .howdosec .section-container {
    flex-direction: column;
    gap: 28px;
  }
}
@media (max-width: 1276px) {
  .howdosec {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.s-section {
  width: 100%;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/search-sec-bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.s-section h4 {
  margin: 0;
  padding-bottom: 4px;
}
.s-section span, .s-section h2, .s-section p {
  margin: 0;
}
.s-section h2, .s-section p {
  max-width: 800px;
  text-align: center;
}
.s-section .cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: var(--width);
  gap: 80px;
}
.s-section .l-cont {
  padding-bottom: 40px;
  padding-left: 16px;
  min-height: 488px;
  flex: 1;
  background-image: url("../images/phone-girl.webp");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 20px;
}
.s-section .l-cont .sticker {
  color: var(--dark-blue);
  font-size: 14px;
  padding: 8px 16px 8px 14px;
  background-color: white;
  border-radius: 16px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  gap: 6px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Added light shadow */
}
.s-section .l-cont .sticker:nth-child(odd) {
  margin-left: -30px; /* Margin for odd stickers */
}
.s-section .l-cont .sticker:nth-child(even) {
  margin-left: 0px; /* Margin for even stickers */
}
.s-section .r-cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.s-section .r-cont span {
  color: var(--gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.s-section .r-cont .check-cont {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.s-section .r-cont .orange {
  color: var(--orange);
}

@media (max-width: 768px) {
  .s-section {
    align-items: flex-start;
  }
  .s-section h2, .s-section p {
    text-align: start;
  }
  .s-section .cont {
    flex-direction: column-reverse;
    gap: 28px;
  }
}
@media (max-width: 992px) {
  .s-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .s-section .cont {
    gap: 24px;
  }
}
@media (max-width: 1276px) {
  .s-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.useful-sec {
  background-color: white;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.useful-sec .cont {
  width: 100%;
  max-width: var(--width);
  display: flex;
  flex-direction: row;
  padding-bottom: 48px;
  gap: 80px;
}
.useful-sec .cont h2,
.useful-sec .cont p,
.useful-sec .cont span {
  margin: 0;
}
.useful-sec .cont .l-cont,
.useful-sec .cont .r-cont {
  flex: 1;
}
.useful-sec .cont .l-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.useful-sec .cont .r-cont {
  display: flex;
  flex-direction: column;
  counter-reset: list-counter;
  gap: 8px;
}
.useful-sec .cont .r-cont .list {
  position: relative;
  padding: 20px;
  padding-left: 60px;
  margin-right: 30px;
  border-radius: 16px;
  counter-increment: list-counter;
  width: 100%;
}
.useful-sec .cont .r-cont .list::before {
  content: "0" counter(list-counter) "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--orange);
}
.useful-sec .cont .r-cont .list:nth-child(odd) {
  background-color: #F1F3F5;
}
.useful-sec .cont-2 {
  padding: 48px;
  border-radius: 24px;
  background-color: var(--grey);
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  max-width: var(--width);
}
.useful-sec .cont-2 div {
  flex: 1;
}
.useful-sec .cont-2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.useful-sec .cont-2 > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.useful-sec .cont-2 > div h3 {
  font-weight: 500;
}

@media (max-width: 768px) {
  .useful-sec {
    padding-top: 56px !important;
    padding-bottom: 56px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .useful-sec {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (max-width: 992px) {
  .useful-sec {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .useful-sec .cont {
    flex-direction: column;
    gap: 28px;
  }
  .useful-sec .cont-2 {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
}
@media (max-width: 1276px) {
  .useful-sec {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.protect-sec {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/protect-sec-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.protect-sec h2, .protect-sec span, .protect-sec p {
  margin: 0;
  padding: 0;
  max-width: 844px;
  text-align: center;
}
.protect-sec .cont {
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  max-width: var(--width);
}
.protect-sec .cont .card {
  flex: 1;
  padding: 32px;
  border-radius: 24px;
  background-color: white;
}
.protect-sec .cont .card h3 {
  margin-top: 64px;
  margin-bottom: 16px;
}
.protect-sec .cont .card p {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.protect-sec .form-container {
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
  max-width: var(--width);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../images/form-cont-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  gap: 20px;
}
.protect-sec .form-container h2 {
  color: white;
}
.protect-sec .form-container p {
  color: var(--grey);
}
.protect-sec .search-section {
  background-color: white;
  padding: 16px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.protect-sec .search-input {
  flex: 1;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  padding-left: 20px;
  background-color: var(--grey);
  color: var(--gray);
}
.protect-sec .search-input::-moz-placeholder {
  color: var(--gray);
}
.protect-sec .search-input::placeholder {
  color: var(--gray);
}
.protect-sec .search-select {
  height: 60px;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  background-color: var(--grey);
  color: var(--gray);
}
.protect-sec .search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.protect-sec .camera-button {
  background-color: #9198A9;
  height: 60px;
  width: 60px;
}
.protect-sec .search-lookup-btn {
  background-color: var(--orange);
  height: 60px;
  padding: 18px 36px;
  font-size: 20px;
  color: #ffffff;
}
.protect-sec .search-lookup-btn::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/Vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}
.protect-sec .recent-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-color: var(--grey);
}
.protect-sec .recent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.protect-sec .recent-item {
  color: var(--dack-blue);
  padding: 5px 10px;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: var(--grey);
  font-size: 14px;
  text-decoration: none;
}
.protect-sec .recent-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.protect-sec .grey {
  border: 0;
  height: 1px;
  background-color: var(--grey);
  margin-top: 16px;
  margin-bottom: 16px;
}
.protect-sec .vertical-line {
  background-color: var(--grey);
  width: 1px;
  height: 60px;
  border: none;
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .protect-sec {
    overflow: hidden;
    padding: 56px 16px;
  }
  .protect-sec .cont {
    margin: 0;
    flex-direction: column;
  }
  .protect-sec .card {
    padding: 24px;
  }
  .protect-sec .card h3 {
    margin-top: 48px;
    margin-bottom: 8px;
  }
  .protect-sec .form-container {
    padding: 48px 16px;
    box-sizing: border-box;
  }
  .protect-sec .recent-list .recent-item:nth-child(n+4) {
    display: none;
  }
  .protect-sec .search-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
  }
  .protect-sec .search-box input, .protect-sec .search-box select {
    width: 100%;
    min-height: 60px;
    padding: 20px;
  }
  .protect-sec .search-box div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .protect-sec .search-box .search-lookup-btn {
    flex: 1;
  }
  .protect-sec .search-box hr {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .protect-sec {
    padding: 56px 16px;
  }
  .protect-sec .cont {
    margin: 0;
    flex-direction: row;
  }
  .protect-sec .card {
    padding: 18px !important;
  }
  .protect-sec .card h3 {
    margin-top: 16px !important;
    margin-bottom: 8px;
  }
  .protect-sec .form-container {
    padding: 48px 16px;
  }
  .protect-sec .search-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .protect-sec .search-box input, .protect-sec .search-box select {
    min-height: 60px;
    padding: 13px;
  }
  .protect-sec .search-box div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .protect-sec .search-box div .search-lookup-btn {
    flex: 1;
  }
}
@media (min-width: 992px) {
  .search-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
  }
  .search-box div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .search-select, input {
    height: 60px;
    padding: 10px 20px;
  }
}
.support-sec {
  background-color: white;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.support-sec .sec-cont {
  width: 100%;
  max-width: var(--width);
  display: flex;
  flex-direction: row;
  gap: 40px;
  background-color: var(--grey);
  padding: 48px;
  border-radius: 24px;
}
.support-sec .sec-cont .r-cont, .support-sec .sec-cont .l-cont {
  flex: 1;
}
.support-sec .sec-cont .r-cont {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.support-sec .sec-cont img {
  max-width: 100%;
  height: auto;
  display: block;
}
.support-sec .sec-cont p {
  max-width: 570px;
}
.support-sec .orange-btn {
  font-size: 16px;
}

@media (max-width: 992px) {
  .support-sec {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .support-sec .sec-cont {
    flex-direction: column;
    padding: 24px;
  }
  .support-sec .r-cont {
    gap: 12px;
  }
  .support-sec .orange-btn {
    width: 100%;
    font-size: 16px;
  }
}
.blog-sec {
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: var(--width);
  margin: auto;
}
.blog-sec h2,
.blog-sec span {
  text-align: center;
  margin: 0;
}
.blog-sec h1 {
  margin: 0;
}
.blog-sec .search-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6; /* светло-серый */
  border-radius: 12px;
  padding: 10px 16px;
  max-width: 400px;
  width: 100%;
}
.blog-sec .search-container input {
  padding: 13px;
  max-height: 50px;
  border: none;
  background: transparent;
  outline: none;
  flex-grow: 1;
  font-size: 16px;
  color: #4b5563; /* тёмно-серый текст */
  max-width: 414px;
}
.blog-sec .search-container button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.blog-sec .search-container svg {
  width: 20px;
  height: 20px;
  color: #4b5563;
}

.blog-contanier {
  padding-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: var(--width);
  margin: auto;
  gap: 17px;
}

.blog-card {
  flex: 1;
  max-width: 414px;
  border-radius: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--grey);
}

.blog-card-img > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}

.blog-card-info {
  padding: 20px;
}

.blog-card-date {
  color: var(--orange);
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.blog-card-title {
  margin-bottom: 12px;
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.blog-card-content {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray);
  font-weight: 400;
}

.blog-card-content,
.blog-card-tittle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card-btn {
  cursor: pointer;
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 20px;
  border: 0;
  background-color: white;
  font-weight: bold;
  padding-left: 0;
}
.blog-card-btn:hover {
  color: var(--orange);
}
.blog-card-btn::after {
  content: " ";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url("../images/orange-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

.blog-page-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.title-cont {
  margin-top: 64px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.large {
  grid-column: span 2;
  background-image: url("../images/blog-img-bg.webp");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.large .info-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  gap: 12px;
}
.large .info-div .date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.large .info-div p {
  font-size: 16px;
  line-height: 24px;
  color: white !important;
}
.large .info-div .tittle {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.large .read-more-btn {
  margin-top: 24px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  border: 0;
  color: white;
  padding: 0;
  line-height: 20px;
  font-size: 16px;
  font-weight: bold;
}
.large .read-more-btn::after {
  content: " ";
  display: inline-block;
  width: 12px;
  height: 11px;
  background-image: url("../images/orange-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

.show-more-blog-btn {
  background-color: var(--orange);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.show-more-blog-btn:hover {
  background-color: #d94f1d; /* чуть темнее при наведении */
}
.show-more-blog-btn::after {
  content: " ";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../images/arrow-right-down-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .blog-sec {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 40px;
    padding-bottom: 56px;
    gap: 28px;
  }
  .blog-sec .large {
    min-height: 433px;
  }
  .blog-sec .title-cont {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
  .blog-sec .blog-contanier {
    display: flex;
    flex-direction: column;
  }
  .blog-sec .blog-page-container {
    display: flex;
    flex-direction: column;
  }
  .blog-sec .blog-page-container .blog-card {
    flex: 1;
    width: 100%;
  }
  .blog-sec .blog-page-container .blog-card-img > img {
    width: 100%;
    height: 100%;
    min-height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    border-radius: 16px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .blog-sec {
    padding-left: 16px;
    padding-right: 16px;
    gap: 56px;
  }
}
@media (max-width: 770px) {
  .blog-contanier {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--width);
    margin: auto;
    gap: 17px;
  }
  .blog-card {
    margin: auto;
    justify-self: center;
    align-self: center;
  }
}
.legal-sec {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../images/legan-sec-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
}
.legal-sec p {
  max-width: var(--width);
  margin: auto;
}
.legal-sec .cont {
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  width: 100%;
  max-width: var(--width);
}
.legal-sec .cont .l-cont {
  flex: 1;
}
.legal-sec .cont .l-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.legal-sec .cont .r-cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-sec .cont .r-cont p {
  margin: 0;
}
.legal-sec .cont .r-cont ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-sec .cont .r-cont ul li {
  color: var(--gray);
  position: relative;
  padding-left: 24px;
}
.legal-sec .cont .r-cont ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/sq-check.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .legal-sec {
    padding: 56px 16px 56px 16px;
    gap: 28px;
  }
  .legal-sec .cont {
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .legal-sec ul {
    padding: 0;
    display: flex;
    gap: 12px;
  }
  .legal-sec .r-cont {
    gap: 16px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .legal-sec {
    padding: 56px 16px 56px 16px;
    gap: 28px;
  }
  .legal-sec .cont {
    margin: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .legal-sec ul {
    padding: 0;
    display: flex;
    gap: 12px;
  }
  .legal-sec .r-cont {
    gap: 16px;
  }
  .legal-sec .l-cont {
    border-radius: 16px;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (max-width: 1276px) {
  .legal-sec {
    padding: 56px 16px 56px 16px;
  }
  .legal-sec .cont {
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .legal-sec .l-cont {
    border-radius: 16px;
    overflow: hidden;
  }
}
.report-sec {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.report-sec span {
  text-align: center;
}
.report-sec h2 {
  text-align: center;
}
.report-sec .all-plates-cont,
.report-sec .car-img-cont {
  width: 100%;
  max-width: var(--width);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.car-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

.plate-cont {
  background-color: var(--grey);
  padding: 24px;
  border-radius: 24px;
  flex: 1;
  flex-grow: 0;
  width: 100%;
  max-width: 400px;
  min-width: 300px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.plate-cont img {
  margin: auto;
  max-width: 260px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.plate-info {
  margin-top: 16px;
  color: var(--gray);
}

@media (max-width: 1276px) {
  .report-sec {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .report-sec {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media (min-width: 992px) {
  .report-sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .report-sec h2 {
    max-width: 700px;
  }
  .report-sec .car-img {
    margin: auto;
    flex: 1 1 calc(25% - 16px);
    max-width: calc(25% - 16px);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .plate-cont {
    background-color: var(--grey);
    padding: 24px;
    border-radius: 24px;
    margin: auto;
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .plate-cont img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .car-img {
    margin: auto;
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
  .car-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .report-sec {
    padding-left: 16px;
    padding-right: 16px;
  }
  .report-sec .car-img-cont {
    display: flex;
    flex-wrap: wrap;
  }
  .report-sec .car-img-cont > *:nth-child(n+5) {
    display: none !important;
  }
  .report-sec .all-plates-cont {
    display: flex;
    flex-direction: column;
  }
  .report-sec .all-plates-cont > *:nth-child(n+5) {
    display: none !important;
  }
  .plate-cont {
    background-color: var(--grey);
    padding: 24px;
    border-radius: 24px;
    margin: auto;
    flex: 1 1 100%;
    min-width: 100%;
  }
  .plate-cont img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .car-img {
    margin: auto;
  }
  .car-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 24px;
  }
}
#howdo-sec-state {
  width: 100vw;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: white;
  background-image: url("../images/state-howdo-bg.webp");
  background-size: cover;
  background-position: center;
}
#howdo-sec-state .section-cont {
  margin: auto;
  width: 100%;
  max-width: var(--width);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
}
#howdo-sec-state .l-cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

video {
  border-radius: 24px;
}

@media (max-width: 992px) {
  #howdo-sec-state {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  #howdo-sec-state .section-cont {
    flex-direction: column;
    gap: 56px;
  }
  #howdo-sec-state .r-cont {
    text-align: center;
  }
  #howdo-sec-state .r-cont img, #howdo-sec-state .r-cont video {
    max-width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
}
@media (max-width: 1276px) {
  #howdo-sec-state {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.state-search-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100vw;
  padding-top: 100px;
  padding-bottom: 100px;
}
.state-search-sec h2 {
  max-width: 884px;
  text-align: center;
  line-height: 56px;
}
.state-search-sec .text-block {
  max-width: 884px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.state-search-sec .text-block p {
  text-align: center;
}
.state-search-sec .search-section {
  background-color: white;
  padding: 16px;
  border-radius: 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.state-search-sec .search-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.state-search-sec .search-input {
  min-width: 480px;
  height: 60px;
  min-height: 60px;
  flex: 1;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  padding-left: 20px;
  background-color: var(--grey);
  color: var(--gray);
}
.state-search-sec .search-input::-moz-placeholder {
  color: var(--gray);
}
.state-search-sec .search-input::placeholder {
  color: var(--gray);
}
.state-search-sec .search-select {
  height: 60px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  background-color: var(--grey);
  color: var(--gray);
}
.state-search-sec .search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.state-search-sec .camera-button {
  background-color: #9198A9;
  height: 60px;
  width: 60px;
}
.state-search-sec .search-lookup-btn {
  background-color: var(--orange);
  height: 60px;
  padding: 18px 36px 18px 36px;
  font-size: 20px;
  color: #ffffff;
}
.state-search-sec .search-lookup-btn::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/Vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}
.state-search-sec .recent-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-color: var(--grey);
}
.state-search-sec .recent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.state-search-sec .recent-item {
  color: var(--dack-blue);
  padding: 5px 10px;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  border-color: var(--grey);
  font-size: 14px;
  text-decoration: none;
}
.state-search-sec .recent-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.state-search-sec .grey {
  border: 0;
  height: 1px;
  background-color: var(--grey);
  margin-top: 16px;
  margin-bottom: 16px;
}
.state-search-sec .vertical-line {
  background-color: var(--grey);
  width: 1px;
  height: 60px;
  border: none;
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 992px) {
  .state-search-sec {
    padding-top: 56px;
    padding-bottom: 40px;
    gap: 16px;
    align-items: start;
  }
  .state-search-sec .search-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 15px;
  }
  .state-search-sec .search-section {
    max-width: none;
  }
  .state-search-sec .search-input {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    flex: 1;
  }
  .state-search-sec .search-select {
    width: 100%;
  }
  .state-search-sec .vertical-line {
    display: none;
  }
  .state-search-sec .search-lookup-btn {
    flex: 1;
  }
  .state-search-sec h2 {
    max-width: none;
    text-align: start;
    font-size: 34px;
    line-height: 42px;
  }
  .state-search-sec .text-block p {
    text-align: start;
  }
  .state-search-sec .cont-hor {
    flex-direction: column;
    gap: 16;
    padding: 16px;
    justify-content: center;
  }
  .state-search-sec .cont-hor p {
    max-width: none;
  }
  .state-search-sec .cont-hor img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: auto;
  }
  .state-search-sec .swap {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1276px) {
  .state-search-sec {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.gray-bg {
  background-color: var(--grey);
}

.cont-hor {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--width);
  padding: 48px;
  margin: auto;
  gap: 40px;
  border-radius: 24px;
}
.cont-hor div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.cont-hor img {
  max-width: 570px;
}
.cont-hor h3 {
  margin: 0;
  padding-bottom: 20px;
}
.cont-hor p {
  max-width: 570px;
}

.cont-vert {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1276px;
  border-radius: 24px;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.state-car-owner {
  margin: auto;
  width: 100%;
  padding-bottom: 100px;
  max-width: var(--width);
}
.state-car-owner p {
  margin-top: 48px;
}

@media (max-width: 992px) {
  .state-car-owner {
    margin: auto;
    width: 100%;
    padding-bottom: 100px;
    gap: 28px;
    max-width: var(--width);
  }
  .state-car-owner p {
    margin-top: 0px;
  }
  .state-car-owner .p-padings26 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cont-4 {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  margin: auto;
}
.cont-4 .row-2-upper, .cont-4 .row-2-lower {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.cont-4 .col-l, .cont-4 .col-r {
  width: 100%;
  flex: 1;
  margin: auto;
}
.cont-4 .col-r {
  padding-right: 48px;
  padding-left: 24px;
}
.cont-4 .col-l {
  padding-left: 48px;
  padding-right: 24px;
}

@media (max-width: 992px) {
  .cont-vert {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: auto;
    border-radius: 24px;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 28px;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 28px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .cont-4 {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .cont-4 .row-2-upper, .cont-4 .row-2-lower {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .cont-4 img {
    max-width: 100%;
    height: auto;
  }
  .cont-4 .row-2-lower {
    flex-direction: column-reverse;
  }
  .cont-4 .col-l, .cont-4 .col-r {
    padding: 0;
    margin: auto;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .cont-4 p {
    margin: 0;
    padding: 0;
  }
}
.about-page-hero {
  width: 100lvw;
  background: url("../images/about-pg-hero-bg.webp") no-repeat center center;
  background-size: cover;
  padding-bottom: 100px;
}
.about-page-hero div {
  max-width: var(--width);
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: end;
  min-height: 556px;
}
.about-page-hero div h1 {
  color: white;
  margin: 0;
}

.about-page-about, .about-page-manager {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
}
.about-page-about .cont, .about-page-manager .cont {
  width: 100%;
  margin: auto;
  max-width: var(--width);
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.about-page-about .l-cont, .about-page-about .r-cont, .about-page-manager .l-cont, .about-page-manager .r-cont {
  max-width: 598px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-page-about .l-cont img, .about-page-about .r-cont img, .about-page-manager .l-cont img, .about-page-manager .r-cont img {
  max-width: 598px;
}

.about-page-manager {
  background: url("../images/search-sec-bg.webp") no-repeat center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .about-page-hero {
    background: url("../images/about-pg-hero-bg-mob.webp") no-repeat;
    background-size: auto 100%;
    background-color: red;
  }
}
@media (max-width: 992px) {
  #about-page-about, #about-page-manager {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  #about-page-about .cont, #about-page-manager .cont {
    align-items: center;
    gap: 28px;
  }
  #about-page-about .cont .l-cont, #about-page-about .cont .r-cont, #about-page-manager .cont .l-cont, #about-page-manager .cont .r-cont {
    flex: 1;
    max-width: none;
    width: 100% !important;
  }
  .about-page-manager .cont {
    flex-direction: column-reverse;
  }
  .about-page-manager .cont .l-cont img {
    margin: auto;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-page-about .cont {
    flex-direction: column;
  }
  .about-page-about .cont .r-cont img {
    margin: auto;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1276px) {
  .about-page-about, .about-page-manager, .about-page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.contacts-hero, .faq-section {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: auto;
}

@media (max-width: 1276px) {
  .contacts-hero, .faq-section {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media (max-width: 992px) {
  .contacts-hero, .faq-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.width-container {
  max-width: var(--width);
  width: 100%;
  margin: auto;
}

.h-cont {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

@media (max-width: 992px) {
  .h-cont {
    flex-direction: column;
    gap: 0;
  }
}
.v-cont {
  display: flex;
  flex-direction: column;
}

.l-col, .r-col {
  flex: 1;
}

.contacts-hero {
  background: url("../images/contacts-hero-bg.webp") no-repeat center center;
  background-size: cover;
  color: white;
}

@media (max-width: 768px) {
  .contacts-hero {
    background: 0;
    padding: 0;
    margin: 0;
  }
  .contacts-hero .l-col {
    background: url("../images/contact-page-hero-mob-bg.webp");
    background-size: 100% auto;
    min-height: 588px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 56px;
  }
}
.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 0.3fr 2.5fr; /* First column even narrower than the second */
  grid-template-rows: repeat(2, auto);
  gap: 24px;
  font-weight: 400;
}

.contact-form {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 32px;
  gap: 24px;
  border-radius: 24px;
}
.contact-form h3 {
  color: var(--dark-blue);
}
.contact-form input::-moz-placeholder, .contact-form select::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: var(--gray);
  font-size: 14px;
  line-height: 20px;
  border: 0;
}
.contact-form label, .contact-form input, .contact-form textarea, .contact-form input::placeholder, .contact-form select::placeholder, .contact-form textarea::placeholder, .contact-form select, .contact-form button {
  color: var(--gray);
  font-size: 14px;
  line-height: 20px;
  border: 0;
}
.contact-form input, .contact-form textarea, .contact-form select {
  background-color: var(--grey);
  padding: 13px;
  border-radius: 12px;
}
.contact-form .contact-form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form button {
  color: white;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-form {
    margin: 16px;
    padding: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  .contact-form .contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-form #subject {
    height: 50px;
  }
}
.accordion {
  max-width: 630px;
  margin: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item {
  background: #f1f4f9;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  color: var(--gray);
  cursor: pointer;
}

.header h3 {
  font-size: 16px;
  margin: 0;
}

.header .arrow {
  color: var(--orange);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.content {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--gray);
  display: none;
  transition: all 0.3s ease;
}

/* Открытый элемент */
.item.open .content {
  display: block;
}

.down {
  transform: rotate(90deg);
  transition: all 0.5s ease;
}

.article-hero {
  width: 100%;
  margin: 0;
  background: url("../images/article-hero-bg.webp") no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
}
.article-hero h1 {
  color: white;
  max-width: 800px;
  margin: 0;
}
.article-hero div {
  min-height: 649px;
  height: 100%;
  width: 100%;
  max-width: var(--width);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 88px;
  gap: 12px;
}
.article-hero .article-hero-data {
  color: white;
}

.blog-article-content {
  width: 100svw;
  padding-top: 76px;
  padding-bottom: 76px;
  display: flex;
  flex-direction: column;
}
.blog-article-content article {
  width: 100%;
  max-width: 1060px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.blog-article-content article div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-article-content article h2 {
  max-width: 700px;
  font-size: 40px;
  line-height: 50px;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.blog-article-content article h3 {
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 20px;
}
.blog-article-content article h4 {
  font-size: 28px;
  line-height: 36px;
}
.blog-article-content article h5, .blog-article-content article .quote {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.blog-article-content article h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin: 0;
}
.blog-article-content article .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.blog-article-content article .facts-list {
  margin-bottom: 16px;
}

.two-img-cont {
  display: flex !important;
  flex-direction: row !important;
  gap: 24px;
}
.two-img-cont img {
  width: calc(50% - 9px);
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.blog-article-card {
  display: flex;
  flex-direction: row !important;
  align-items: flex-start;
  padding: 24px;
  border-radius: 24px;
  background-color: var(--grey);
}

.blog-article-card::before {
  content: "";
  display: flex;
  width: 48px;
  height: 48px;
  background: url("../images/hug-icon.svg") no-repeat center center;
  background-size: contain;
}

.read-also {
  width: 100%;
  background-color: var(--grey);
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.read-also h2 {
  margin-bottom: 24px;
}
.read-also .blog-card {
  background-color: white;
}

@media (max-width: 1276px) {
  .blog-article-content, .article-hero > div, .read-also {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 768px) {
  .read-also .blog-contanier {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .read-also {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .blog-article-content article {
    gap: 40px;
  }
  .blog-article-content article h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .blog-article-content article h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .blog-article-content article h4 {
    font-size: 24px;
    line-height: 32px;
  }
  .blog-article-content article h5 {
    font-size: 20px;
    line-height: 30px;
  }
}
.line {
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #f1f3f5;
  height: 1px;
}

.add-section {
  padding-bottom: 100px;
  width: 100%;
  max-width: 1276px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.go-back-cont {
  width: 100%;
  max-width: 1276px;
  display: flex;
  flex-direction: row;
  align-items: start;
  padding-top: 12px;
}

.go-back-btn {
  border: 0;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  font-family: Manrope;
  line-height: 28px;
  color: #454c5d;
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.go-back-btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #454c5d;
  border-bottom: 2px solid #454c5d;
  transform: rotate(45deg);
}

.add-text-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 48px;
}
.add-text-info h1 {
  line-height: 68px;
  margin: 0;
  text-align: center;
}
.add-text-info p {
  max-width: 456px;
  text-align: center;
}

.add-toolbar-links {
  max-width: 1276px;
  width: 100%;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #f1f3f5;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.add-toolbar-links .link {
  cursor: pointer;
  min-width: 100px;
  font-size: 16px;
  font-weight: 400;
  font-family: Manrope;
  line-height: 28px;
  color: #454c5d;
  padding: 8px;
  display: 100%;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.add-toolbar-links svg {
  fill: var(--gray);
}
.add-toolbar-links .link.selected-link {
  border-color: var(--orange);
  border-width: 0px 0px 1px 0px;
  border-style: solid;
}
.add-toolbar-links .link.selected-link svg {
  fill: var(--orange);
}
.add-toolbar-links .link.selected-link span {
  color: var(--orange);
}

@media (max-width: 768px) {
  .link, .go-back-btn {
    font-size: 12px !important;
    line-height: 18px !important;
  }
  .add-text-info {
    gap: 8px !important;
  }
  .add-form-cont {
    padding: 16px;
  }
}
@media (max-width: 1276px) {
  .add-toolbar-links, .go-back-cont, .add-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.add-form-cont {
  padding: 24px 32px 32px 32px;
  width: 100%;
  background-color: var(--form-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.add-form-cont Label {
  margin-top: 8px;
  color: #454c5d;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.add-form-cont select, .add-form-cont input, .add-form-cont textarea {
  padding: 8px 16px 8px 16px;
  color: #031031;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  border-radius: 12px;
  border-width: 0;
  outline: none;
}
.add-form-cont input {
  max-height: 50px;
  height: 50px;
}
.add-form-cont select {
  min-height: 50px;
  height: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white !important;
  background: url("../images/select-arrow.svg") no-repeat right 10px center;
  background-size: 12px;
  padding-right: 30px;
}
.add-form-cont input::-moz-placeholder, .add-form-cont textarea::-moz-placeholder {
  color: #454c5d;
}
.add-form-cont input::placeholder, .add-form-cont textarea::placeholder {
  color: #454c5d;
}
.add-form-cont input:focus, .add-form-cont textarea:focus {
  border-style: solid;
  border-width: 1px;
  border-color: var(--orange) !important;
}
.add-form-cont .buttons {
  padding-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 16px;
}
.add-form-cont .span {
  font-size: 13px;
  line-height: 18px;
  color: #666666;
  font-weight: 200;
}
.add-form-cont .row-cont {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.add-form-cont .left-cont, .add-form-cont .right-cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btm24 {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .add-form-cont {
    padding: 16px;
  }
  .add-form-cont .buttons {
    flex-direction: column;
  }
  .add-form-cont label {
    font-size: 12px;
  }
  .add-form-cont input {
    padding: 10px;
    min-height: 28px;
  }
  .add-form-cont .row-cont {
    flex-direction: column;
  }
}
.upload-div {
  background-color: white;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.upload-div button > div {
  color: #031031;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}
.upload-div p {
  color: #454c5d;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}

.upload-btn {
  cursor: pointer;
  border: 0;
  background-color: transparent;
}

.form-btn, .form-btn-full {
  border-radius: 16px;
  padding: 15px 30px 15px 30px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

.form-btn {
  min-width: 202px;
}

.form-btn-full {
  width: 100%;
}

.reset-btn {
  background-color: transparent;
  color: var(--orange);
  border-color: var(--orange);
  border-width: 1px;
  border-style: solid;
}

.submit-btn {
  background-color: var(--orange);
  color: white;
  border-color: var(--orange);
  border-width: 1px;
  border-style: solid;
}

.green-btn::after,
.submit-btn::after {
  content: " ";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/Vector.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

.check-input {
  height: 10px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.leave-reply-sec {
  padding-top: 100px;
  padding-bottom: 0px;
  width: 100%;
  max-width: 1276px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.leave-reply-sec .tittle-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 992px) {
  .leave-reply-sec {
    padding: 25px;
  }
}
.leave-repl-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 32px;
  background: url("../images/plate-hero-bg.webp") no-repeat center center;
  background-size: cover;
}
.leave-repl-hero .tittle-cont {
  max-width: 304px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.leave-repl-hero .tittle-cont .orange-span {
  color: var(--orange);
}
.leave-repl-hero .tittle-cont h1 {
  margin: 0;
  color: white;
}
.leave-repl-hero .tittle-cont .country-cont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.leave-repl-hero .tittle-cont .country-cont span {
  color: var(--light-blue);
}

.green-btn {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 18px 36px 18px 36px;
  color: white;
  background-color: green;
  width: 100%;
  border: 0;
}

.top-m-38 {
  margin-top: 38px;
}

.p-b {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .p-b {
    padding-bottom: 40px;
  }
}
.sponsored {
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: var(--light-blue);
}

.grey-bar {
  width: 100%;
  padding: 32px;
  background-color: var(--form-color);
  border-radius: 24px;
}

.img-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.plate-auto-cont {
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

.plate-auto-label-cont, .plate-auto-plate-cont {
  max-width: 159px;
}

.plate-auto-img-cont {
  max-width: 468px;
}

.plate-auto-img-cont img, .plate-auto-label-cont img, .plate-auto-plate-cont img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.info-container {
  margin-bottom: -412px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1276px;
  position: sticky;
  top: 0px;
  pointer-events: none;
  gap: 0;
  box-sizing: border-box;
}

.right-info {
  margin-left: auto;
  box-sizing: border-box;
  margin-top: 42px;
  padding: 22px 16px 16px 16px;
  width: 300px;
  height: 412px;
  background-color: white;
  border-radius: 16px;
  border-style: solid;
  border-color: var(--grey);
  align-self: flex-end;
  pointer-events: auto;
  gap: 0;
  background: linear-gradient(to bottom, var(--orange) 3%, #ffffff 3%);
}

/*
@media(min-width: $desktop) {
    #info-select {
        display: none;
    }
}

#info-select {
    display: flex;
    padding: 16px;
    width: 100%;
    position: sticky;
}
    */
.aside-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 16px;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .right-info {
    margin-top: -38px;
    border-color: white;
    height: auto;
    width: 100%;
    padding: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-color: var(--orange);
    background: linear-gradient(to bottom, #ffffff 3%, #ffffff 3%);
  }
  .info-container {
    margin: 0;
    padding-top: 40px;
    min-height: none;
    height: auto;
  }
  .g-bullet::before {
    content: none !important;
    display: none !important;
  }
  .aside-item {
    flex: 1;
    width: auto;
    justify-content: center;
    gap: 8px;
    padding: 4px;
    align-items: center;
    font-size: 12px;
  }
}
.g-bullet::before {
  content: " ";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  margin-bottom: 4px;
  background: url("../images/gray-bullet.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.full-section-white {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.p-42-100 {
  padding-top: 42px;
  padding-bottom: 100px;
}

.db {
  border-style: dashed !important;
  border-width: 1px !important;
  border-color: red !important;
}

.plate-car-container {
  width: 100%;
  max-width: 1276px;
  margin: auto;
}

.plate-car-container-bg {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url("../images/plate-car-container-bg.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.plate-car-container-white {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

@media (min-width: 1276px) {
  .plate-car-container-white,
  .plate-car-container-bg {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 992px) {
  .plate-car-container-white,
  .plate-car-container-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.gallery-wrapper {
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.image-gallery {
  display: flex;
  gap: 20px;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

#galleryTrack {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.image-gallery .picture-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 6px;
  min-width: 400px;
}

@media (max-width: 768px) {
  .image-gallery .picture-card {
    min-width: none;
  }
  .image-gallery img {
    width: 290px;
  }
}
.gallery-btn-cont {
  display: flex;
  width: 100%;
  justify-content: start;
  gap: 8px;
}

@media (max-width: 992px) {
  .gallery-btn-cont {
    display: none;
  }
}
.prev-btn {
  background-color: white !important;
  color: var(--orange);
}

.next-btn {
  color: white;
  background-color: var(--orange);
}

.prev-btn, .next-btn {
  padding: 8px;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--orange);
  height: 36px;
  width: 36px;
}

.plate-left-info {
  max-width: 956px;
  width: calc(100% - 320px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .plate-left-info {
    max-width: none;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    overflow-x: hidden;
    gap: 16px;
  }
}
.car-info-title h2 {
  color: var(--blue);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .car-info-title h2 {
    font-size: 28px;
  }
}
.b-tb {
  border-style: solid;
  border-width: 1px 0px 1px 0px;
  border-color: #f1f3f5;
}

.b-b {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: #f1f3f5;
}

.b-b-w {
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  border-color: white;
}

.t-info {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray);
}

.t-info-type {
  margin-left: auto;
  margin-right: 0;
  color: var(--blue);
  font-weight: 500;
}

.t-info2 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--gray);
  max-width: 810px;
}

@media (max-width: 768px) {
  .t-info, .t-info2, .t-info-type {
    font-size: 12px;
    line-height: 20px;
  }
}
.car-info-tab {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plate-tab-row {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: flex-start;
  gap: 12px;
}

@media (max-width: 768px) {
  .plate-tab-row {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.tittle-row {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin-bottom: 24px;
}

.round-span {
  color: white;
  background-color: var(--orange);
  border: 0;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.round-span2 {
  color: white;
  background-color: var(--orange);
  border: 0;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.square-span {
  color: white;
  background-color: var(--orange);
  border: 0;
  border-radius: 4px;
  height: 22px;
  width: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.square-span-e {
  color: var(--dark-blue);
  background-color: var(--grey);
  border: 0;
  border-radius: 4px;
  height: 22px;
  width: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .square-span-e, .square-span {
    height: 18px;
    width: 18px;
    font-size: 14px;
  }
}
.r-more-btn {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  color: var(--blue);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}

.report-grid {
  background-color: white;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
  border-radius: 8px;
  overflow: hidden;
}
.report-grid > * {
  padding: 16px;
  border: 0.5px solid #e0e0e0;
  display: flex;
  align-items: start;
  gap: 12px;
}

@media (max-width: 768px) {
  .report-grid > * {
    padding: 4px;
    gap: 8px;
  }
  .report-grid .t-info {
    font-size: 8px;
    line-height: 12px;
  }
}
.max-28px {
  margin-top: 2px;
  max-width: 26px;
}

.plate-pictures-cont {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.plate-pictures-cont .video-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 430px;
  padding: 0;
  border-radius: 24px;
  border-color: white;
  border-width: 1px;
  border-style: solid;
}
.plate-pictures-cont .video-cont {
  width: 100%;
  background-color: var(--grey);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
}
.plate-pictures-cont .video-cont img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.plate-pictures-cont .video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}
.plate-pictures-cont .video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plate-pictures-cont .card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plate-pictures-cont .tag-cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 12px;
}
.plate-pictures-cont .picture-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 430px;
  gap: 20px;
}
.plate-pictures-cont .picture-tittle {
  color: var(--dark-blue);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
.plate-pictures-cont .picture-cont {
  width: 100%;
  height: 100%;
  max-height: 300px;
  padding: 15px;
  background-color: var(--grey);
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plate-pictures-cont .picture-cont img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 992px) {
  .plate-pictures-cont {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .plate-pictures-cont .picture-card {
    min-width: 100%;
    width: auto;
    align-items: center;
  }
  .plate-pictures-cont .picture-cont {
    min-height: none;
    min-width: none;
  }
  .plate-pictures-cont .video-cont {
    min-width: 100%;
    max-width: 300px;
  }
  .plate-pictures-cont .video-cont img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .plate-pictures-cont .tag-cont {
    flex-direction: row;
  }
  .plate-pictures-cont .label-tag {
    font-size: 10px;
  }
}
.card-info-2strings {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.label-tag {
  border-color: var(--orange);
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  padding: 8px;
}

.green-box {
  border-radius: 24px;
  width: 100%;
  background-color: var(--green-box);
  padding: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}
.green-box .left-cont, .green-box .right-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.green-box-content {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.green-btn2 {
  min-width: 299px;
  padding: 12px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  border: 0;
  background-color: var(--green-btn);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.green-btn2::after, .add-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/up-right.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .green-box {
    flex-direction: column;
  }
  .green-box-content {
    font-size: 14px;
    line-height: 20px;
  }
  .green-btn2 {
    font-size: 14px;
  }
}
.orange-bullet::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  margin-left: -18px;
  background: url("../images/orange-bullet.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.left-cont-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.left-cont-row .col {
  padding-left: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comments-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comments-cont .comment-card {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  padding: 24px;
  background-color: white;
  border-radius: 24px;
  gap: 12px;
}
.comments-cont .comment-card img {
  flex-shrink: 0;
}
.comments-cont .comment-card .comment-date {
  text-align: end;
  min-width: 100px;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 14px;
  line-height: 20px;
}
.comments-cont .comment-card .text {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .comments-cont .comment-card {
    flex-direction: column;
    padding: 16px;
  }
  .comments-cont .comment-card .text {
    font-size: 12px;
    line-height: 18px;
  }
  .comments-cont .comment-card .comment-date {
    text-align: start;
    color: var(--orange);
    font-size: 12px;
    line-height: 18px;
  }
  .comments-cont .comment-card .comment-text .name {
    font-size: 14px;
  }
}
.no-box {
  padding: 32px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--orange);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
}

.no-box-info {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--dark-blue);
}

.no-box-info::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: -12px;
  margin-right: 4px;
  margin-bottom: 4px;
  background: url("../images/allert.svg") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.add-btn {
  background-color: var(--dark-blue);
  color: white;
  border: 0;
  padding: 12px 24px 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 20px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .no-box {
    flex-direction: column;
    gap: 24px;
  }
  .no-box-info {
    font-size: 14px;
    line-height: 20px;
  }
  .add-btn {
    padding: 10px 18px 10px 18px;
    font-size: 14px;
  }
}
@media (max-width: 1276px) {
  .plate-car-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.state-list-hero {
  background: url("../images/state-list-hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.state-list-hero .width-cont {
  color: white;
  max-width: 1276px;
  min-height: 360px;
  margin: auto;
  display: flex;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.state-list-hero .info-cont {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: auto;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  text-align: center;
}
.state-list-hero .info-cont p {
  color: white;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

@media (max-width: 1276px) {
  .state-list-hero .width-cont {
    padding-top: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .state-list-hero .info-cont p {
    font-size: 14px;
  }
}
.states-list-sec {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 100px;
}
.states-list-sec .width-cont {
  margin: auto;
  max-width: 1276px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

@media (max-width: 768px) {
  .states-list-sec {
    padding-top: 20px;
  }
}
#selectorWidget {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #F1F3F5;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #031031;
}
#selectorWidget .char-select {
  opacity: 0.35;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#selectorWidget .char-select:hover {
  text-decoration: underline;
}
#selectorWidget .active {
  opacity: 1;
}
#selectorWidget .selected {
  background-color: var(--orange);
  opacity: 1;
  color: white;
}

@media (max-width: 768px) {
  #selectorWidget {
    flex-wrap: wrap;
  }
}
#statesList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  color: #454C5D;
}
#statesList .state-head {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 12px;
  align-items: center;
  border-color: #F1F3F5;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  padding-bottom: 20px;
}
#statesList .number {
  height: 22px;
  width: 22px;
  font-size: 14px;
  background-color: #F1F3F5;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#statesList .main-char {
  color: var(--orange);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}
#statesList ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#statesList li {
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  border-color: #F1F3F5;
  border-style: solid;
  border-width: 0px 0px 1px 0px;
  display: flex;
  flex-direction: row;
  align-items: end;
  cursor: pointer;
}
#statesList li::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-right-down-line-orange.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}

@media (max-width: 1276px) {
  #selectorWidget, #statesList {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  #statesList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  #statesList {
    display: flex;
    flex-direction: column;
  }
}
footer {
  padding-top: 64px;
  padding-bottom: 32px;
  background-color: var(--dark-blue);
  width: 100%;
  margin: auto;
  color: var(--grey);
}
footer hr {
  color: white;
  opacity: 0.1;
  max-width: var(--width);
  margin-top: 32px;
  margin-bottom: 32px;
}
footer .cont {
  width: 100%;
  max-width: var(--width);
  margin: auto;
  box-sizing: border-box;
}
footer .footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footer-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}
@media (max-width: 1286px) {
  footer .cont {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
}
footer nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0;
  margin: 0;
}
footer .footer-social {
  margin-left: 20px;
}
footer .footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0;
  margin: 0;
}
footer .footer-social img {
  transform: scale(1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
footer .footer-social img:hover {
  transform: scale(1.1);
}
footer .footer-btm {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: var(--width);
  margin: auto;
}
footer .footer-btm span, footer .footer-btm .footer-links {
  font-size: 16px;
  line-height: 24px;
  color: #8F99B2;
}
footer .footer-btm .footer-links {
  display: flex;
  gap: 24px;
}
footer .footer-btm .footer-links {
  margin-left: 20px;
}
@media (max-width: 768px) {
  footer .footer-btm {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: var(--width);
    margin: auto;
    gap: 32px;
  }
}
footer a:hover {
  text-decoration: underline;
}
footer .footer-logo {
  margin-right: 20px;
  transform: scale(1);
  transition: transform 0.3s ease;
  cursor: pointer;
}
footer .footer-logo:hover {
  transform: scale(1.1);
}

.facts-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facts-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray);
  max-width: 566px;
}

.facts-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--orange);
  border-radius: 50%;
}

@media (max-width: 992px) {
  .facts-list li {
    max-width: none;
    text-align: start;
  }
}
.how-do-state-ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-do-state-ol li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 40px;
  margin: 0;
}
.how-do-state-ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
}

/* Padding */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

/* Padding X (left & right) */
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

/* Padding Y (top & bottom) */
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Margin */
.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

/* Margin X (left & right) */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

/* Margin Y (top & bottom) */
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}