html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body {
  background-color: var(--black);
}

html::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsla(0, 0%, 100%, 0.25),
    inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

html::-webkit-scrollbar-track {
  background: var(--black);
}

html::-webkit-scrollbar-corner {
  background: var(--yellow);
}

/* Modal */
.modal-form.active {
  display: flex;
}

.dropdown.active .select-btn i {
  transform: rotate(-180deg);
}

.dropdown.active .content {
  display: block;
}

.modal-form {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
  transition: 3s;
  position: fixed;
  transform: scale(1);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.modal-form .modal-bg-form {
  cursor: pointer;
  background-color: rgba(10, 10, 10, 0.86);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-form .modal-container {
  position: relative;
  width: 551px;
  height: auto;
  top: 20%;
  box-shadow: none;
  border: none;
  margin: 0 auto;
  min-height: 551px;
  background: linear-gradient(
        to left,
        #808080 0,
        #808080 33.3%,
        #2e2e2e 64.3%,
        #2e2e2e 66.6%,
        #343434 66.6%,
        #343434
      )
      top no-repeat,
    linear-gradient(
        to right,
        #808080 0,
        #808080 33.3%,
        #2e2e2e 64.3%,
        #2e2e2e 66.6%,
        #343434 66.6%,
        #343434
      )
      bottom no-repeat,
    linear-gradient(
        to top,
        #808080 0,
        #808080 33.3%,
        #2e2e2e 64.3%,
        #2e2e2e 66.6%,
        #343434 66.6%,
        #343434
      )
      left no-repeat,
    linear-gradient(
        to bottom,
        #808080 0,
        #808080 33.3%,
        #2e2e2e 64.3%,
        #2e2e2e 66.6%,
        #343434 66.6%,
        #343434
      )
      right no-repeat;
  background-size: 100% 1px, 100% 1px, 1px 100%, 1px 100%;
}

.modal-form .modal-container .modal-rows {
  color: var(--yellow);
}

.box-main-form .bg-img {
  position: absolute;
  width: 25%;
}

.box-main-form .header-form {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  align-items: center;
}

.box-main-form .header-form .txt-center {
  text-align: center;
  padding-left: 3%;
}

.box-main-form .header-form .txt-center > img {
  width: 40%;
  height: auto;
}

.box-main-form .header-form .txt-left,
.box-main-form .header-form .txt-right,
.container-notify .box-btn-notify .btn-close-notify {
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
}

.box-main-form .header-form .txt-right {
  background: transparent;
  color: var(--yellow);
  margin: 12px;
}

.box-main-form form {
  padding: 15% 9%;
}

.box-main-form form .title-form {
  margin-bottom: 32px;
}

.box-main-form form .title-form h3 {
  text-align: center;
  font-weight: 300;
  font-size: 14px;
}

.box-main-form form .form-group {
  padding: 10px 8px;
  font-size: 14px;
}

.box-main-form form .form-group label.title {
  display: block;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
}

.box-main-form form .form-group label span {
  font-size: 10px;
  color: red;
}

.box-main-form form .form-group .form-control {
  padding: 4% 0;
  color: var(--white);
  width: 100%;
  font-size: 14px;
  text-indent: 10px;
  background-color: var(--black);
  outline: 0;
  border: 1px solid var(--yellow);
}

label.error {
  color: red;
  font-size: 14px;
}

.box-main-form form .form-group {
  padding: 8px;
  font-size: 14px;
}

.box-main-form .footer-form {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
}

.box-main-form .footer-form > img {
  width: 25%;
}

.select-btn i {
  font-size: 14px;
  transition: transform 0.3s linear;
  color: var(--yellow);
}

.price {
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.content {
  position: absolute;
  width: calc(100% - 16px);
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  border: 1px solid var(--yellow);
  margin: 0 auto;
  background-color: #000;
}

.content .search,
.dropdown.form-group {
  position: relative;
}

.search i {
  top: 50%;
  left: 15px;
  color: var(--yellow);
  font-size: 20px;
  pointer-events: none;
  transform: translateY(-50%);
  position: absolute;
}

.box-main-form form .form-group input,
.options li,
.select-btn {
  height: 32px;
}

.search input {
  color: var(--white);
  background-color: var(--black);
  width: 100%;
  outline: 0;
  font-size: 14px;
  padding: 0 20px 0 43px;
  border: 1px solid var(--yellow);
}

.search input::placeholder {
  color: var(--white);
  opacity: 1; /* Firefox */
}

.search input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--white);
}

.search input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--white);
}

.content .options {
  max-height: 144px;
  margin: 10px 0;
  overflow-y: auto;
  padding-right: 7px;
  cursor: pointer;
}

.content .options::-webkit-scrollbar {
  width: 10px;
}

.content .options::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.content .options::-webkit-scrollbar-thumb {
  background: #ffcb05;
  border-radius: 10px;
}

.content .options::-webkit-scrollbar-thumb:hover {
  background: #ffcb05;
}

.box-main-form form .form-group .form-control::placeholder {
  color: var(--white);
  opacity: 1; /* Firefox */
}

.box-main-form form .form-group .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--white);
}

.box-main-form form .form-group .form-control::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--white);
}

.options li {
  color: var(--white);
  padding: 0 13px;
  font-size: 14px;
}

.select-btn {
  color: var(--white);
  cursor: pointer;
  line-height: 20%;
  font-size: 14px;
  padding: 1% 10px;
  border: 1px solid var(--yellow);
  justify-content: space-between;
}

.select-btn i {
  line-height: 20px;
  font-size: 25px;
  transition: transform 0.3s linear;
  color: var(--yellow);
}

.box-main-form form .all-group .btn-submit {
  width: calc(100% - 16px);
  height: 40px;
  color: var(--black);
  font-size: 16px;
  text-align: center;
  background-color: var(--yellow);
  margin: 12px 8px;
  cursor: pointer;
  font-weight: 700;
}

/* Modal */
/* box */
.notify-box {
  width: 100%;
  height: auto;
}

#error,
#success,
.scrollToTop,
div.disclaimer {
  display: none;
}

.container-notify {
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
}

.container-notify .box-btn-notify {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.box-main-form .header-form .txt-left,
.box-main-form .header-form .txt-right,
.container-notify .box-btn-notify .btn-close-notify {
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
}
#success .box-icons {
  border: 5px solid green;
  color: green;
}

.container-notify .box-content {
  text-align: center;
}

.container-notify .box-content h1 {
  padding-top: 10px;
  font-size: 20px;
  color: var(--text-color-b);
}

.container-notify .box-content p {
  padding-top: 10px;
  font-size: 16px;
}

#error .box-icons {
  border: 5px solid red;
  color: red;
}

.container-notify .box-icons {
  width: 130px;
  height: 130px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  margin: 0 auto;
}

.container-notify .box-content {
  text-align: center;
}

.container-notify .box-content h1 {
  padding-top: 10px;
  font-size: 20px;
  color: var(--text-color-b);
}

.container-notify .box-content p {
  padding-top: 10px;
  font-size: 16px;
}

/* box */

.nav .menu > li {
  display: inherit;
}

.connect-list,
.connect-list-2,
.connect-list-3 {
  position: fixed;
  right: 0;
  z-index: 999;
  cursor: pointer;
}
.connect-list {
  top: 40%;
}

.connect-list-2 {
  top: 48%;
}
.connect-list-3 {
  top: 56%;
}
.connect-list .connect-item,
.connect-list-2 .connect-item,
.connect-list-3 .connect-item {
  border-bottom: 41px solid #ae8a00;
  border-left: 17px solid transparent;
  height: 41px;
  width: 65px;
  display: flex;
  margin-bottom: 23px;
}

.connect-list .connect-item:hover,
.connect-list-2 .connect-item:hover,
.connect-list-3 .connect-item:hover {
  border-bottom: 41px solid var(--yellow);
}
.connect-list .connect-item:hover {
  width: 150px;
}
.connect-list-2 .connect-item:hover {
  width: 110px;
}
.connect-list-3 .connect-item:hover {
  width: 150px;
}

.connect-list .connect-item p,
.connect-list-2 .connect-item p,
.connect-list-3 .connect-item p {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  line-height: 41px;
  text-transform: uppercase;
  display: none;
  padding-left: 10px;
}

.connect-list .connect-item:hover p,
.connect-list-2 .connect-item:hover p,
.connect-list-3 .connect-item:hover p {
  display: block;
}

.connect-list .connect-item img,
.connect-list-2 .connect-item img,
.connect-list-3 .connect-item img {
  width: 43px;
  height: 39px;
  padding: 1px 3px;
  object-fit: cover;
}

/* Header Start */
.header {
  height: 40px;
  background-color: var(--yellow);
  display: flex;
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 0;
}

@media (min-width: 1024px) {
  .scrolldown .header {
    top: -60px;
  }

  .scrollup .header {
    top: 0;
  }

  .scrolldown .text-run {
    top: 0;
  }

  .scrollup .text-run {
    top: 40px;
  }

  /* Header Sticky */
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
}

.logo-link {
  min-width: 216px;
  text-align: center;
  line-height: 60px;
}

.logo-link img {
  max-width: 52%;
  height: auto;
}

img.images-header {
  width: 109px;
  height: 40px;
  float: left;
}

img.point-black {
  width: 109px;
  height: 40px;
  float: right;
  transform: rotate(180deg);
}

ul.nav-left {
  padding-right: 30px;
}
ul.nav-right {
  padding-left: 20px;
}
ul {
  width: 100%;
  text-align: center;
}
.menu-right .items-menu {
  padding-right: 50px;
}

.menu-right {
  margin-left: -7%;
}

.menu-left {
  margin-right: -5%;
}

.menu-left .items-menu {
  padding-left: 50px;
}

ul > li.items-menu {
  list-style: none;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  height: 40px;
}
ul > li > a.links-menu {
  line-height: 40px;
  cursor: pointer;
  color: var(--black);
  font-size: 14px;
}
ul > li.items-menu {
  position: relative;
}
ul > li.items-menu:hover .sub_menu {
  opacity: 1 !important;
  visibility: visible !important;
}
ul > li.items-menu .sub_menu {
  position: absolute;
  width: 200px;
  height: 160px;
  top: 100%;
  left: -15%;
  opacity: 0;
  visibility: hidden;
  background-color: #ffcb05;
  z-index: 111;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
ul > li.items-menu .sub_menu .items-sub-menu {
  height: 40px;
  text-align: start;
  display: block;
  padding-left: 29px;
}
ul > li.items-menu .sub_menu .items-sub-menu:hover {
  border-bottom: 2px solid #000;
}
ul > li.items-menu .sub_menu .items-sub-menu:last-child:hover {
  border-bottom: 0px solid #000;
  border-radius: 8px;
}

ul > li.items-menu .sub_menu .link-sub-menu {
  line-height: 40px;
  font-size: 14px;
  color: #000;
  font-weight: 100;
  text-transform: none;
}

ul > li.items-menu .sub_menu .link-sub-menu:hover {
  font-weight: 600 !important;
}

.mySlides {
  position: relative;
}

.text-slides {
  top: 33%;
  right: 12%;
  position: absolute;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: end;
  letter-spacing: 2px;
    font-style: italic;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  li.html_topbar_right,
  li.html_top_right_text {
    display: none;
  }
}

li.html_nav_position_text_top {
  position: absolute;
  left: 0;
}
li.html_nav_position_text {
  position: absolute;
  right: 0;
}
/* Header End */
/* Main Start */
/* Word Animation Start */
.text-run {
  width: 100%;
  height: 40px;
  border-bottom: 2px solid #ffcb05;
  background-color: var(--black);
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 100;
}
.text-run ul {
  height: 100%;
  list-style: none;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-around;
  align-items: center;
  white-space: nowrap;
  width: 200%;
  margin: 0;
  padding: 0;
  animation: marqueeLeft 25s linear infinite;
}
.text-run ul li {
  color: #ffcb05;
  font-size: 14px;
  text-transform: uppercase;
}
@keyframes marqueeLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% + 100vw));
    -moz-transform: translateX(calc(-100% + 100vw));
    -ms-transform: translateX(calc(-100% + 100vw));
    -o-transform: translateX(calc(-100% + 100vw));
    transform: translateX(calc(-100% + 100vw));
  }
}
@-webkit-keyframes marqueeLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-100% + 100vw));
    -moz-transform: translateX(calc(-100% + 100vw));
    -ms-transform: translateX(calc(-100% + 100vw));
    -o-transform: translateX(calc(-100% + 100vw));
    transform: translateX(calc(-100% + 100vw));
  }
}
/* Word Animation End */
/* Slider Start */
/* Slideshow container */
.slideshow-container {
  width: 100%;
  background-color: var(--black);
  position: relative;
  margin: auto;
  height: auto;
  padding-top: 80px;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 20px;
  background-color: #ae8a00;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.div-dot {
  position: absolute;
  width: 100%;
  bottom: 30px;
}

.dot.active {
  background-color: var(--yellow);
  height: 15px;
  width: 15px;
}

/* Fading animation */
/* .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.9;
  }
  to {
    opacity: 1;
  }
} */
/* Slider End */
/* Section Content-1 Start */
.content-1 {
  width: 100%;
  min-height: 648px;
  background-image: url(../../shared/imgs/index/gif.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -3px;
  position: relative;
}

.content-1 .txt-top {
  letter-spacing: 2px;
  width: 100%;
  position: absolute;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: #fff;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 106px;
}
.content-1 .txt-bottom {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 58px;
  justify-content: center;
}
.content-1 .txt-bottom li {
  color: #ffcb05;
  display: flex;
  max-width: 200px;
  margin-left: 111px;
}
.content-1 .txt-bottom li:nth-child(1) {
  margin-left: 0px;
}
.content-1 .txt-bottom li img {
  max-width: 25px;
  max-height: 25px;
}
.content-1 .txt-bottom li p {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 17px;
  line-height: 25px;
}
/* Section Content-1 End */
/* Section Content-2 Start */
.list-product {
  min-height: 606px;
  display: flex;
  width: 100%;
  margin-top: 15px;
}
.list-product .items-block {
  width: 25%;
  position: relative;
  cursor: pointer;
}
.list-product .items-block img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
.list-product .items-block .items-text {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-product .items-block .items-text h2 {
  color: #fff;
  font-size: 24px;
  text-align: center;
}
.list-product .items-block .items-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffcb05;
  z-index: 3;
  display: none;
  -webkit-animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.list-product .items-block:hover .items-shadow {
  display: block;
}
.list-product .items-block .items-shadow .content-items {
  padding-left: 41px;
  padding-right: 35px;
}
.list-product .items-block .items-shadow .content-items .text-top {
  font-size: 28px;
  line-height: 33.6px;
  color: #000;
  padding-top: 78px;
  text-transform: uppercase;
}
.list-product .items-block .items-shadow .content-items .text-left {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 20px;
  padding-top: 47px;
}
.list-product .items-block .items-shadow .content-items .text-bottom {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 65px;
  left: 41px;
  width: 100%;
  right: 35px;
}
.list-product
  .items-block
  .items-shadow
  .content-items
  .text-bottom
  .underline {
  background: #000;
  height: 2px;
  width: 30%;
}

.list-product
  .items-block
  .items-shadow
  .content-items
  .text-bottom
  .view-more
  > a {
  color: #000;
}
.list-product
  .items-block
  .items-shadow
  .content-items
  .text-bottom
  .view-more {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  width: 50%;
  text-align: center;
  text-decoration: none;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.list-figure {
  display: flex;
  min-height: 195px;
  background-color: var(--black);
  padding: 100px 0;
  justify-content: center;
}

.list-figure-items {
  position: relative;
}

.list-figure-items .list-figure-img-1 {
  position: absolute;
  z-index: 1;
  max-width: 100.2%;
}

.list-figure-items .list-figure-img-2 {
  width: 449px;
  opacity: 0.5;
  height: 195px;
  left: 0;
}

.list-figure-items .text-figure {
  position: absolute;
  z-index: 1;
  bottom: 40%;
  left: 14%;
  text-align: center;
}

.list-figure-items .text-figure p {
  color: var(--white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-width: 75%;
  font-size: 12px;
  display: none;
}
.list-figure-items .text-figure h3 {
  color: var(--yellow);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-width: 80%;
  font-size: 18px;
  line-height: 37px;
}
/* Section Content-2 End */
/* Section Content-3 Start */
.bg-video {
  max-width: 100%;
  height: 600px;
  background-color: #000;
  font-size: 0;
  padding-bottom: 60px;
}
.bg-video iframe {
  width: 100%;
  height: 500px;
}
/* Section Content-3 End */
/* Footer Start */
.footer-main {
  font-size: 0;
  clear: both;
}
.footer-main .footer-top {
  position: relative;
  height: 40px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer-main .footer-top .footer-top-logo {
  max-width: 215px;
}
.footer-main .footer-top .footer-top-logo > img {
  width: 100%;
  height: 100%;
}
.footer-main .footer-top .footer-top-left {
  width: 180px;
  height: 43px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.footer-main .footer-top .footer-top-left > img {
  width: 100%;
  height: 100%;
}
.footer-main .footer-top .footer-top-right {
  width: 180px;
  height: 43px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.footer-main .footer-top .footer-top-right img {
  width: 100%;
  height: 100%;
}
.footer-main .footer-bottom {
  height: auto;
  background-color: #ffcb05;
  position: relative;
}
.footer-main .footer-bottom .footer-bottom-left {
  max-width: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 133px;
}
.footer-main .footer-bottom .footer-bottom-left > img {
  width: 100%;
  height: 100%; 
}
.footer-main .footer-bottom .footer-bottom-right {
  max-width: 160px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  height: 133px;
}
.footer-main .footer-bottom .footer-bottom-right > img {
  width: 100%;
  height: 100%;
}
.footer-bottom-center {
  display: flex;
  justify-content: center;
  width: calc(100% - 380px);
  margin: 0 auto;
  padding-top: 20px;
}

.footer-bottom-center .bottom-left {
 margin: 0 auto;
}

.footer-bottom-center .bottom-left p {
  text-align: start;
  letter-spacing: 1px;
  line-height: 20px;
}

.footer-bottom-center .bottom-center p {
  line-height: 20px;
  letter-spacing: 1px;
}

.footer-bottom-center p,
.footer-bottom-center a {
  font-size: 13px;
  color: #000;
  letter-spacing: 1px;
}
.footer-bottom-center .bottom-left .text-left {
  font-size: 400;
  line-height: 20px;
}
.footer-bottom-center .bottom-center .list-icons {
  text-align: center;
  margin-top: 5px;
}
.footer-bottom-center .bottom-center .list-icons a {
  margin: 0 5px;
}
.footer-bottom-center .bottom-left .list-icons a > img {
  width: 25px;
  height: 20px;
}
.footer-bottom-center .bottom-center,
.footer-bottom-center .bottom-left,
.footer-bottom-center .bottom-right {
  width: 33%;
}



.footer-bottom-center .bottom-center .copyright {
  margin-top: 5px;
  text-align: center;
  font-size: 10px;
  padding-bottom: 15px;
}

.bottom-right .list-info {
  margin-right: 5px;
}

.bottom-right .list-info a:first-child {
  margin-top: 10px;
}
.bottom-right .list-info a:nth-child(2) {
  margin-top: 5px;
}
.bottom-right .list-info a {
  display: block;
  color: #000;
  text-align: end;
}

.bottom-right .list-menu-footer {
  list-style: none;
  margin: 0;
  text-align: end;
  padding-left: 94px;
}
.bottom-right .list-menu-footer .items-footer {
  display: inline-block;
  padding-top: 5px;
}

.bottom-right .list-menu-footer .items-footer .links-items {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  padding: 0px 4px;
}
.bottom-right .list-menu-footer .items-footer .links-items::after {
  content: "|";
  font-weight: 400;
  font-size: 12px;
  left: 0;
  color: var(--black);
  display: inline-block;
  padding-left: 10px;
}

@media (max-width: 480px) {
  /* Modal */
  .modal-form .modal-container {
    top: 27% !important;
    width: 350px !important;
    min-height: 350px !important;
  }

  .content .options {
    max-height: 120px !important;
  }

  .box-main-form .header-form .txt-right {
    margin: 0 !important;
  }
  /* Modal */
}