.table-custom table {
  width: 100%;
}
.table-custom table th {
  border: 3px solid #fff;
  padding: 10px;
  background: #d90011;
  color: #fff;
}
.table-custom table td {
  border: 1px solid #000;
  padding: 10px;
}
.table-custom table tr:nth-child(odd) {
  background: #d6001136;
}
.pb-20 {
  padding: 20px 0;
}
.grid-pad h2 {
  font-size: 30px !important;
}
.grid-pad h3 {
  font-size: 24px !important;
}
.tab {
  --tab-padding: 1.25rem;
  --tab-bg: #000;
  --tab-active-bg: #fff;
}
.tab input {
  display: none;
}
.tab input:checked + label {
  background-color: var(--tab-active-bg);
  color: #d90011;
  margin: 5px 0 0 0;
}
.tab input:not(:checked) + label + * {
  display: none;
}
.tab label {
  color: #fff;
  cursor: pointer;
  padding: var(--tab-padding);
}
@media (max-width: 575px) {
  .tab label {
    width: 100%;
  }
}
.tab-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #d90011;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.tab-content {
  width: 100%;
  padding: var(--tab-padding);
  background-color: var(--tab-active-bg);
}
@media (min-width: 576px) {
  .tab-content {
    order: 9999;
  }
}
.demo {
  font-size: 16px;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-container {
  width: 100%;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background-color: #d90012;
  color: #ffffff;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 7px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid red;
  border-radius: 7px;
}

.accordion-content {
  background-color: #fafafa;
  border-radius: 7px;
  overflow: hidden;
  padding: 0 15px;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
}

.icon {
  transition: transform 0.3s ease;
}

.active .icon {
  transform: rotate(45deg);
}
.pt-20 {
  padding-top: 20px;
}
.pt-40 {
  padding-top: 40px;
}
.cities-list li {
  padding: 10px;
  border-bottom: 1px dotted #d90011;
  font-weight: 600;
  font-size: 19px;
}
#cities-section {
  margin: 30px 0;
}
