@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.blog-nav {
  background-color: #000;
  margin: 0;
  position: relative;
  top: -1px;
  margin-bottom: -1px;
}
.blog-nav .navbar {
  padding: 0;
}
.blog-nav .navbar button {
  display: none;
}
.blog-nav .navbar-collapse ul li .nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  padding: 20px 32px;
}
.blog-nav .navbar-collapse ul li .nav-link.active {
  background-color: #fff;
  position: relative;
  padding: 20px 38px;
  color: var(--secondary-theme-color);
}
.blog-nav .navbar-collapse ul li .nav-link.active::before, .blog-nav .navbar-collapse ul li .nav-link.active::after {
  content: "";
  background-color: #000;
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
}
.blog-nav .navbar-collapse ul li .nav-link.active::before {
  left: 0;
  border-radius: 0 10px 10px 0;
}
.blog-nav .navbar-collapse ul li .nav-link.active::after {
  right: 0;
  border-radius: 10px 0 0 10px;
}
.blog-nav .navbar-collapse ul li .nav-link:hover {
  color: var(--secondary-theme-color);
}

.blk-news-categories .white-container {
  padding: 0;
}
.blk-news-categories .cat {
  text-align: center;
}
.blk-news-categories .cat a {
  padding: 40px;
  text-decoration: none;
  color: #000;
  text-align: center;
}
.blk-news-categories .cat a:hover i::before {
  color: #000;
}
.blk-news-categories .cat a:hover h3 {
  color: var(--secondary-theme-color);
}
.blk-news-categories .cat h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.blk-news-categories .cat div {
  font-size: 14px;
  line-height: 14px;
}
.blk-news-categories .cat i {
  display: block;
  height: 40px;
  width: 40px;
  margin: auto;
  padding: 24px 0 64px 0;
}
.blk-news-categories .cat i::before {
  color: var(--secondary-theme-color);
  font-size: 40px;
}

.blk-news-latest .news-container .news-item {
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .blk-news-latest .news-container .news-item {
    margin-bottom: 0;
  }
}
.blk-news-latest .news-container .news-item .item {
  margin-bottom: 0;
  padding-bottom: 0;
}
.blk-news-latest .news-container .news-item .item h3 {
  padding: 40px 0 24px 0;
  font-size: 24px;
  line-height: 32px;
}
.blk-news-latest .news-container .news-item .item .divider {
  margin: 0;
  padding: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 30px;
  margin-bottom: 24px;
}
.blk-news-latest .news-container .news-item .item .divider li {
  width: 40px;
}
.blk-news-latest .news-container .news-item .item .image {
  height: 370px;
  border-radius: 30px 30px 30px 0;
}
@media screen and (max-width: 991px) {
  .blk-news-latest .news-container .news-item .item .image {
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (max-width: 776px) {
  .blk-news-latest .news-container .news-item .item .image {
    border-radius: 16px 16px 0 0;
  }
}
@media screen and (max-width: 525px) {
  .blk-news-latest .news-container .news-item .item .image {
    height: 220px;
  }
}
.blk-news-latest .news-container .news-item .item .w-by,
.blk-news-latest .news-container .news-item .item .pub {
  padding: 0;
}

.right-side-container {
  padding-left: 37px;
}
@media screen and (max-width: 991px) {
  .right-side-container {
    padding-left: 0;
  }
}
.right-side-container .white-container {
  padding: 30px;
}
.right-side-container .title {
  margin-bottom: 30px;
}
.right-side-container .title h3 {
  font-size: 18px;
  font-weight: 300;
}
.right-side-container .news-container {
  margin-bottom: 15px;
}
.right-side-container .news-container .news-item {
  margin-bottom: 24px;
}
.right-side-container .news-container .news-item .item {
  margin-bottom: 0;
  padding-bottom: 0;
}
.right-side-container .news-container .news-item .item h3 {
  padding: 16px 0 16px 0;
  font-size: 16px;
  line-height: 21px;
}
.right-side-container .news-container .news-item .item .divider {
  margin: 0;
  padding: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 16px;
  margin-bottom: 16px;
}
.right-side-container .news-container .news-item .item .divider li {
  width: 20%;
}
.right-side-container .news-container .news-item .item .image {
  height: 123px;
  border-radius: 16px;
}
.right-side-container .news-container .news-item .item .w-by,
.right-side-container .news-container .news-item .item .pub {
  padding: 0;
}
.right-side-container .items .item {
  padding: 16px 0;
  border-top: 1px solid var(--container-border);
  border-bottom: 1px solid var(--container-border);
  margin-bottom: -1px;
}
.right-side-container .items .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.right-side-container .items .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 14px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  line-height: 20px;
}
.right-side-container .items .item a:hover {
  color: var(--secondary-theme-color);
}
.right-side-container .items .item a:hover img {
  opacity: 0.7;
}
.right-side-container .items .item a .image {
  min-width: 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.right-side-container .items .item a .image img {
  width: auto;
  height: 100%;
}

.social-line {
  margin-bottom: 20px;
  font-size: 14px;
}
.single-page .article-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  opacity: 0.8;
  padding-left: 34px;
  line-height: 12px;
  margin-bottom: 16px;
}
.single-page .article-dates i.divider {
  display: block;
  background-color: #000;
  width: 4px;
  height: 4px;
  border-radius: 3px;
  opacity: 0.6;
}
.single-page .article-dates span b {
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .single-page .article-dates {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .single-page .article-dates i.divider {
    display: none;
  }
}
.single-page p img {
  border-radius: 16px;
}
.single-page .disclosure {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 16px;
}
@media screen and (min-width: 992px) {
  .single-page .disclosure {
    padding: 40px;
    border-radius: 30px;
  }
}
.single-page .disclosure p {
  font-size: 14px;
  line-height: 1.5em;
  opacity: 0.9;
}
.single-page .title.style-b-left.s-42 h3,
.single-page .title.style-b-left.s-42 h2 {
  font-size: 1.4em;
  border-left-width: 4px;
}
@media screen and (max-width: 991px) {
  .single-page .title.style-b-left.s-42 h3,
  .single-page .title.style-b-left.s-42 h2 {
    font-size: 1.1em;
    font-weight: 700;
    padding-left: 16px;
  }
}
.single-page .blk- {
  padding-top: 40px;
}
.single-page .blk- h2,
.single-page .blk- h3,
.single-page .blk- h4 {
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 12px;
}
.single-page .blk- h2 {
  font-size: 1.7em;
}
@media screen and (max-width: 767px) {
  .single-page .blk- h2 {
    font-size: 1.3em;
  }
}
.single-page .blk- h3 {
  font-size: 1.4em;
}
@media screen and (max-width: 767px) {
  .single-page .blk- h3 {
    font-size: 1.1em;
  }
}
.single-page .blk- h4 {
  font-size: 1.2em;
}
@media screen and (max-width: 767px) {
  .single-page .blk- h4 {
    font-size: 1em;
  }
}
@media screen and (max-width: 991px) {
  .single-page .authors .inner {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 16px;
    border-radius: 0 0 30px 30px;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  .single-page .authors .inner {
    border-radius: 0 0 16px 16px;
  }
}
.single-page .author a {
  color: #000;
}
.single-page .author .title {
  margin-bottom: 20px;
}
.single-page .author p {
  font-size: 14px;
  line-height: 22px;
}
.single-page .author h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin: 16px 0px;
}
.single-page .author .image {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 5px solid var(--container-border);
}
.single-page .author .image img {
  height: 100%;
  width: auto;
}
.single-page .author ul {
  font-size: 14px;
  line-height: 22px;
}
.single-page .author.mini .image {
  margin-left: 0;
  margin-right: 0;
  width: 48px;
  height: 48px;
  max-height: 48px;
  min-height: 48px;
  max-width: 48px;
  min-width: 48px;
  border: 3px solid var(--container-border);
}
@media screen and (max-width: 425px) {
  .single-page .author.mini .image {
    width: 32px;
    height: 32px;
    max-height: 32px;
    min-height: 32px;
    max-width: 32px;
    min-width: 32px;
  }
}
.single-page .author.mini .bywho {
  line-height: 1.2em;
}
.single-page .author.mini .bywho b {
  display: block;
  font-size: 16px;
}
.single-page .author.mini .bywho span {
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
}
.single-page .author.mini .bywho em,
.single-page .author.mini .bywho i,
.single-page .author.mini .bywho span {
  color: #787878;
}
.single-page .author.mini .bywho i::before {
  font-size: 12px;
  margin-right: 4px;
}
.single-page .author.mini .bywho div:last-child span {
  text-transform: capitalize;
}
@media screen and (max-width: 425px) {
  .single-page .author.mini .bywho {
    line-height: 1.3em;
  }
  .single-page .author.mini .bywho div:first-child span {
    opacity: 0.7;
  }
  .single-page .author.mini .bywho div:first-child b {
    display: block;
  }
}
.single-page .table-content {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .single-page .table-content {
    margin-bottom: 20px;
  }
}
.single-page .table-content h3 {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 0px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .single-page .table-content h3 {
    border-left: 0 !important;
    padding: 0 !important;
  }
}
.single-page .table-content h3 a {
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0px;
  left: 0;
}
.single-page .table-content h3 a::before {
  position: absolute;
  right: 0;
  font-size: 20px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
@media screen and (min-width: 991px) {
  .single-page .table-content h3 a {
    display: none;
  }
}
.single-page .table-content h3 a[aria-expanded=true]::before {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.single-page .table-content .inner {
  border-radius: 30px;
  padding: 24px;
  background-color: #f9f9f9;
  border: 1px solid var(--container-border);
}
@media screen and (min-width: 992px) {
  .single-page .table-content .inner {
    border-radius: 0 30px 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .single-page .table-content .inner {
    padding: 16px 16px;
    border-radius: 16px;
  }
}
@media screen and (min-width: 991px) {
  .single-page .table-content .collapse {
    display: block;
  }
}
.single-page .table-content ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 0 16px;
  margin: 0;
  list-style: decimal;
}
.single-page .table-content ol li {
  font-size: 16px;
  line-height: 21px;
}
.single-page .social-share div {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  row-gap: 0;
}
@media screen and (max-width: 767px) {
  .single-page .social-share div {
    line-height: 0;
    gap: 14px;
  }
}
@media screen and (max-width: 424px) {
  .single-page .social-share div {
    line-height: 30px;
    gap: 14px;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.single-page .social-share .social-links {
  margin: 0;
  padding: 0;
  gap: 8px;
}
.single-page .social-share .social-links li a {
  display: block;
  text-indent: 50px;
  width: 31px;
  height: 31px;
  overflow: hidden;
  position: relative;
}
.single-page .social-share .social-links li a::before {
  position: absolute;
  left: -49px;
  font-size: 29px;
  top: 2px;
  color: #d5d5d5;
}
.single-page .social-share .social-links li a:hover::before {
  color: #000;
}
.single-page .social-share .inner {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  gap: 10px;
  width: auto;
  row-gap: 0;
  padding: 10px 10px 10px 16px;
}
@media screen and (max-width: 991px) {
  .single-page .social-share .inner {
    width: 100%;
    border-radius: 16px;
  }
}
.single-page .social-share span {
  line-height: 1.5em;
  font-weight: 700;
}
.single-page .social-share .borders {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 24px 0;
}
@media screen and (max-width: 425px) {
  .single-page .social-share .borders {
    padding: 16px 0;
  }
}
.single-page .social-share .borders div {
  opacity: 0.7;
}
.single-page p img {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .blog.license-plate-design .table-content h3 {
    padding: 0 30px 0 0 !important;
  }
}
.blog.license-plate-design #tableContent ol {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
  display: block;
}
.blog.license-plate-design #tableContent ol li {
  margin-bottom: 6px;
}
@media screen and (max-width: 991px) {
  .blog.license-plate-design #tableContent ol {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}
@media screen and (max-width: 767px) {
  .blog.license-plate-design #tableContent ol {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    padding-left: 24px;
  }
}
@media screen and (max-width: 575px) {
  .blog.license-plate-design #tableContent ol {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
.blog.license-plate-design .s-map a {
  cursor: pointer;
}
.blog.license-plate-design .s-map {
  background-color: #f7f7f7;
  border-color: #dee2e6;
  padding: 40px;
  border-radius: 30px;
}
.blog.license-plate-design .s-map span.icon {
  font-size: 14px;
  line-height: 135%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  color: #76808a;
}
@media screen and (max-width: 575px) {
  .blog.license-plate-design .s-map {
    padding: 24px;
  }
}
