/*--------------------------------------------------------------
>>> Animation
--------------------------------------------------------------*/
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
  }
  70% {
    -webkit-box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
  }
  70% {
    -webkit-box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(15rem, -50%, 0);
            transform: translate3d(15rem, -50%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(15rem, -50%, 0);
            transform: translate3d(15rem, -50%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes bounce-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes bounce-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes shine {
  100% {
    left: 50%;
  }
}

@keyframes shine {
  100% {
    left: 50%;
  }
}

@-webkit-keyframes fade_move_left {
  0% {
    -webkit-transform: translate(0.1875rem, 0) rotate(180deg);
            transform: translate(0.1875rem, 0) rotate(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-0.3125rem, 0) rotate(180deg);
            transform: translate(-0.3125rem, 0) rotate(180deg);
    opacity: 0;
  }
}

@keyframes fade_move_left {
  0% {
    -webkit-transform: translate(0.1875rem, 0) rotate(180deg);
            transform: translate(0.1875rem, 0) rotate(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-0.3125rem, 0) rotate(180deg);
            transform: translate(-0.3125rem, 0) rotate(180deg);
    opacity: 0;
  }
}

@-webkit-keyframes fade_move_right {
  0% {
    -webkit-transform: translate(-0.3125rem, 0);
            transform: translate(-0.3125rem, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0.1875rem, 0);
            transform: translate(0.1875rem, 0);
    opacity: 0;
  }
}

@keyframes fade_move_right {
  0% {
    -webkit-transform: translate(-0.3125rem, 0);
            transform: translate(-0.3125rem, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0.1875rem, 0);
            transform: translate(0.1875rem, 0);
    opacity: 0;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* Banner */
.banner_effect-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 4.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.banner_effect1 .banner_effect-blocks {
  max-width: 85rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner_effect1 .banner-content {
  top: 2rem;
  color: #004125;
  text-transform: uppercase;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 71.875rem;
  font-weight: 700;
}

.banner_effect1 .banner-content strong {
  display: block;
  color: #109648;
}

.banner_effect1 .banner_effect-block,
.banner_effect1 .banner_effect-block img {
  width: 18.75rem;
}

.banner_effect-block:nth-child(2) {
  position: relative;
  top: -4rem;
}

.banner_effect-title-navs {
  position: absolute;
  width: 100%;
  bottom: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #109648;
  font-size: 3rem;
  font-weight: 700;
  max-width: 54rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-line {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 11.75rem;
}

.nav-line svg {
  position: relative;
  bottom: -.5rem;
  overflow: hidden;
  width: 100%;
}

.banner_img {
  position: absolute;
  top: 0;
  right: -5rem;
  width: calc(100% - 22.75rem);
  z-index: -1;
}

.banner_effect2 .banner-content {
  color: #5fb14b;
  text-transform: uppercase;
  font-weight: 700;
  bottom: 1rem;
  font-size: 2.75rem;
}

.banner_effect2 .banner-content strong {
  display: block;
}

.banner_effect2 .banner_effect-blocks {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  bottom: 0;
}

.banner_effect2 .banner_effect-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  font-size: 1.125rem;
  position: absolute;
}

.banner_effect2 .banner_effect-block strong {
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.banner_effect-block__content {
  position: absolute;
  width: 18rem;
}

.banner_effect2 .banner_effect-block:nth-child(1) {
  right: calc(14.5*1.041666666vw);
  bottom: 0;
}

.banner_effect2 .banner_effect-block:nth-child(2) {
  left: calc(36.5*1.041666666vw);
  top: -28rem;
}

.banner_effect2 .banner_effect-block:nth-child(3) {
  left: calc(24*1.041666666vw);
  top: -38rem;
}

.banner_effect2 .banner_effect-block:nth-child(1) .banner_effect-block__icon {
  width: 23.5rem;
}

.banner_effect-block:nth-child(1) .banner_effect-block__content {
  left: calc(100% + 1.5rem);
  bottom: 4.5rem;
}

.banner_effect2 .banner_effect-block:nth-child(2) .banner_effect-block__icon {
  width: 17.5rem;
  height: 17.5rem;
  background: #63b14a;
  border-radius: 50%;
  padding: .75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.banner_effect2 .banner_effect-block:nth-child(2) .banner_effect-block__icon img {
  position: relative;
  left: -.315rem;
  top: -.3125rem;
}

.banner_effect-block:nth-child(2) .banner_effect-block__content {
  right: calc(100% + 1.5rem);
  bottom: 4.5rem;
  text-align: right;
}

.banner_effect2 .banner_effect-block:nth-child(3) .banner_effect-block__icon {
  width: 13.75rem;
  height: 13.75rem;
  background: #63b14a;
  border-radius: 50%;
  padding: .5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.banner_effect2 .banner_effect-block:nth-child(3) .banner_effect-block__icon img {
  position: relative;
  right: -.25rem;
}

.banner_effect-block:nth-child(3) .banner_effect-block__content {
  right: calc(100% + 1.5rem);
  bottom: 4.5rem;
  text-align: right;
}

.banner-line svg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(68.5*1.031666666vw);
  height: 37rem;
}

section {
  position: relative;
}

.banner-content {
  position: absolute;
  bottom: 7.75rem;
  left: 4.875rem;
  color: #fff;
  font-size: 3.25rem;
}

.banner .banner__image img {
  max-height: 39.875rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner .owl-theme .owl-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner .owl-theme .owl-dots .owl-dot:not(:last-child) {
  margin-right: .5rem;
}

.banner .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: thin solid #fff;
  width: .75rem;
  height: .75rem;
}

.banner .owl-theme .owl-dots .owl-dot.active span,
.banner .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.banner .owl-theme .owl-dots .owl-dot.active span:before,
.banner .owl-theme .owl-dots .owl-dot:hover span:before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: thin solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
}

.banner-video-btn {
  width: 5rem;
  height: 5rem;
  margin-right: .75rem;
  border-radius: 50%;
  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: .25rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}

.banner-video-btn:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.banner-video-btn svg {
  width: 2.5rem;
  fill: #fff;
  -webkit-transform: translateX(0.125rem);
          transform: translateX(0.125rem);
}


/* Image */
.images {
  background: #044026;
  padding: 5.875rem 0;
}

.images-inner {
  position: relative;
}

.images .section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
  position: absolute;
  top: 0.25em;
}

.icircle.abs-icon {
  height: 14.75rem;
  width: 7.875rem;
  left: 0;
  top: 0;
  z-index: 0;
}

.hcircle.abs-icon {
  height: auto;
  width: 21.625rem;
  right: 0;
  bottom: -.75rem;
  z-index: 0;
}

.tsdots.abs-icon {
  height: 21.5rem;
  width: 12.5rem;
  opacity: .7;
  right: 0;
  bottom: -10.75rem;
  z-index: 1;
}

.sdots.abs-icon {
  height: auto;
  width: 3.125rem;
  right: 0;
  top: 0;
  z-index: 0;
}

.sdots.abs-icon {
  right: auto;
  left: -6rem;
  -webkit-filter: brightness(3);
          filter: brightness(3);
  top: -3rem;
}

.image-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.gpoint {
  position: absolute;
  width: 3rem;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.images .owl-theme .owl-dots {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.images .owl-theme .owl-dots .owl-dot:not(:last-child) {
  margin-right: .5rem;
}

.images .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: thin solid #fff;
  width: .75rem;
  height: .75rem;
}

.images .owl-theme .owl-dots .owl-dot.active span,
.images .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.images .owl-theme .owl-dots .owl-dot.active span:before,
.images .owl-theme .owl-dots .owl-dot:hover span:before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: thin solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
}

.image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-box__content-wrap {
  margin: 0 2.5rem 0 0;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 21.375rem;
  bottom: -2rem;
  padding-right: 1.25rem;
}

.ellip-bg {
  width: 21.125rem;
  height: 21.125rem;
  border-radius: 50%;
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(rgba(45, 146, 90, 0.25)), to(rgba(4, 64, 38, 0.25)));
  background: linear-gradient(-90deg, rgba(45, 146, 90, 0.25) 0%, rgba(4, 64, 38, 0.25) 100%);
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  -webkit-box-shadow: 2rem 2rem #044026;
          box-shadow: 2rem 2rem #044026;
}

.ellip-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/Oval.svg);
  right: 0;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.image-box__subtitle::before {
  content: "";
  position: absolute;
  width: calc(100% + 4rem + (100vw - 78.875rem)/2);
  height: 0.0625rem;
  right: 0.375rem;
  top: -1.125rem;
  background: url(../images/Lineimg.svg);
  background-repeat: repeat-x;
}

.image-box__subtitle:after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.0625rem;
  right: -1.625rem;
  top: -1.125rem;
  background: url(../images/Lineimg.svg);
  background-repeat: repeat-x;
  z-index: -2;
}

.image-box__content {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}

.image-box__subtitle {
  color: #fff;
  font-size: .875rem;
  margin: 2.5rem 0 0;
  position: relative;
}

.images .owl-carousel .owl-stage {
  padding-left: 0 !important;
}

.owl-item:not(.active) .image-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: revert;
          flex-direction: revert;
}

.owl-item:not(.active) .image-box__content-wrap {
  opacity: 0;
}

.images .images-carousel .owl-stage-outer {
  width: calc(71.875rem + (100vw - 71.875rem)/2);
  overflow: visible;
}

.images .owl-theme .owl-nav {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#images .owl-nav .owl-prev {
  display: none;
}

.images .owl-nav .next-nav {
  position: absolute;
  right: -.75rem;
  width: 4rem;
  height: 4rem;
  border: thin solid #fff;
  border-radius: 50%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.images .owl-nav .next-nav img {
  -webkit-filter: brightness(6);
          filter: brightness(6);
}

.image-box__img img {
  height: 29.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* News */
.news {
  padding: 1.25rem 0 3rem;
  background: #F1F3F4;
}

.news-inner {
  position: relative;
}

.news__nav {
  margin: 1.5rem 0 1.75rem;
  display:flex;
  justify-content: flex-start;
  gap:1rem;
}

.news__nav button {
  font-size: .75rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
   border-radius:1.5rem;
    border:.125rem solid var(--color--primary);
    color:var(--color--primary);
    font-weight: 500;
    padding:.75rem 1.5rem;
    text-align:center;
}

.news__nav button.active,
.news__nav button:hover{
  color: #fff;
  background:var(--gradient--primary);
    border-color:#fff;
    background-size:cover;
}


.news .carousel-counter {
  font-size: 1.125rem;
  position: absolute;
  top: .65rem;
  right: 9rem;
}

.carousel--style1 .owl-dots {
  display: none;
}

.article__title {
  font-size: .875rem;
  line-height: 1.4;
}

.article__title a {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.article-box {
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: .3125rem;
  overflow: hidden;
  border: thin solid #A5A5A5;
}

.article-box > * {
  position: relative;
  z-index: 2;
}

.article-box:before {
  content: '';
  width: calc(100% - .125rem);
  height: calc(100% - .1875rem);
  border-radius: .3125rem;
  /* border: thin solid #A5A5A5; */
  position: absolute;
  left: calc(50% + .0065rem);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.article__info {
  padding: .75rem 1.125rem 1.25rem;
  z-index: 33;
}
.article_meta__left
{
  display:flex;
}
.article_view 
{
  margin-left:1.5rem;
  display: flex;
  align-items: center;
}
.article_view img,
.article_date img {
  width: 1.25rem !important;
  vertical-align: middle;
  margin-right: .35rem;
  position: static !important;
  -webkit-transform: none !important;
  transform: none !important;
}
#news .article_date img
{
  display:none;
}
.article_meta {
  position: relative;
  margin-bottom: .25rem;
  font-size: .875rem;
}
.article-item .article_meta
{
  display:flex;
  justify-content:space-between;
}
.article-item .article_meta .article_view img
{
  height:1rem !important;
}
.article-item .article_meta .article_view
{
  margin-right:0;
  padding-right:0;
}
.expert {
  font-size: .875rem;
  line-height: 1.4;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.news-viewall {
  /* display: none; */
    margin:1.5rem 0 0;
    position:relative;
    left:50%;
    transform:translateX(-50%);
}

.article__image img {
  height: 11.375rem;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/11;
  object-fit: cover;
  width: 100%;
  height:auto;
  /* max-width: calc(100% - 3px); */
  /* position: relative; */
  top: 2px;
  left: 2px;
  object-position: center 80%;
}

.carousel--style1.owl-theme .owl-nav {
  position: absolute;
  top: -7.425rem;
  right: 0;
  margin: 0;
}

.carousel--style1.owl-theme .owl-nav button {
  margin: 0 .5rem;
}

.carousel--style1.owl-theme .owl-nav button:last-child {
  margin-right: 0;
}

.carousel--style1 .nav-btn {
  width: 3.375rem;
  height: 3.375rem;
  background: #449350;
  padding: .75rem;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  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;
}

.carousel--style1 .nav-btn img {
  width: 1.5rem;
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.carousel--style1.owl-theme .owl-nav .disabled {
  opacity: 1;
}

.carousel--style1 .disabled .nav-btn {
  background: transparent;
  border: thin solid #449350;
}

.carousel--style1 .disabled .nav-btn img {
  -webkit-filter: none;
          filter: none;
}

.carousel--style1 .nav-btn.prev-nav {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.carousel--style1.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.carousel--style1 .owl-nav > :not(.disabled):hover img {
  -webkit-animation: bounce-arrow .5s ease-in-out;
          animation: bounce-arrow .5s ease-in-out;
}

.tsdots.abs-icon {
  height: 21.25rem;
  width: 12.5rem;
  opacity: .7;
  right: 0;
  top: -10.625rem;
  z-index: -1;
}
.solution .tsdots.abs-icon
{
    bottom:-10.625rem;
    top:unset;
}
.tsdots.abs-icon img {
  height: 100%;
  width: 100%;
}
.news-list
{
    display:flex;
    flex-wrap:wrap;
    gap:1.5rem;
}
.news-list .news__item
{
    width:calc((100% - 2*1.5rem)/3);
    position: relative;
}
.recruitment
{
    padding:4rem 0;
}
.recruitment-inner
{
    display:flex;
    padding-right:50%;
}
.recruitment_image
{
    display:grid;
    position:absolute;
    right:0;
    width:50%;
    top:0;
}
.recruitment .section-title
{
    display:block;
    font-size:2.5rem;
    font-weight:600;
    text-transform: uppercase;
}
.recruitment_content
{
    padding:0;
    text-align:justify;
    line-height:1.5;
    margin-bottom:2rem;
}
.recruitment_content .btn
{
    margin-top:1rem;
}


.home-price {
  display: block;
  padding: 50px 0;
  background-color: #eaeaea;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%
}
.page-template-thong-tin-thi-truong .news
{
    background-image:url(../images/article1-65f97eda6fc6e.png);
    background-size:45vw;
    background-position:right top;
    background-repeat:no-repeat;
    padding: 3rem 0;
}
.pricelist .section-title,
.page-template-thong-tin-thi-truong .section-title,
.page-template-cau-chuyen-thanh-cong .section-title{
  color: #095333;
  font-size: 2.5rem;
  font-weight: 600;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}
.pricelist .section-title{
    text-align:center;
}
.page-template-thong-tin-thi-truong .news .section_content
{
    padding-right:45%;
}
.section_content
{
     font-size:1rem;
    line-height:1.5;
    text-align: justify;
}
.page-template-thong-tin-thi-truong .news-list .news__item
{
    width:100%;
}
body .banner .owl-theme .owl-dots
{
    bottom:1rem;
}
.page-template-thong-tin-thi-truong .news-carousel
{
    margin-top:3rem;
}
.page-template-thong-tin-thi-truong .carousel--style1.owl-theme .owl-nav
{
    top:-5rem;
}
.page-template-thong-tin-thi-truong .news .carousel--style1 .disabled .nav-btn
{
    background:#ededed;
}

@media (max-width: 575.98px) {
  .home-price {
    padding: 2rem 0
  }
}
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
}
.home-price.light .tabs-price .nav-link:before {
  background: white
}

.home-price .home-price-title .left {
  text-align: left !important
}

@media (max-width: 575.98px) {
  .home-price .home-price-title {
    margin-bottom: 25px !important
  }
}

.home-price .tabs-price {
  border-bottom: none;
  flex-direction: row
}

@media (min-width: 576px) {
  .home-price .tabs-price {
    justify-content: flex-end;
    row-gap: 10px
  }
}

@media (max-width: 575.98px) {
  .home-price .tabs-price {
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px
  }

  .home-price .tabs-price .nav-item {
    flex-grow: 1;
    flex-basis: 45%
  }
}

.home-price .tabs-price .nav-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border-radius: 35px;
  background: #3EA446;
  position: relative
}

@media (min-width: 576px) {
  .home-price .tabs-price .nav-link {
    margin: 0 5px;
    padding: 15px;
    min-width: 195px
  }
}

@media (max-width: 575.98px) {
  .home-price .tabs-price .nav-link {
    padding: 10px 15px
  }
}

.home-price .tabs-price .nav-link span {
  text-align: center !important;
  position: relative;
  text-transform: uppercase;
  color: #3EA446;
  font-weight: bold;
  font-size: .75rem;
  line-height: 1.25rem;
  width: 100%
}

@media (max-width: 575.98px) {
  .home-price .tabs-price .nav-link span {
    font-size: .625rem
  }
}

.home-price .tabs-price .nav-link:before {
  content: '';
  background: #fff;
  width: calc(100% - 2px) !important;
  height: calc(100% - 2px) !important;
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 35px
}

@media (max-width: 575.98px) {
  .home-price .tabs-price .nav-link:before {
    background: white
  }
}

.home-price .tabs-price .nav-link:hover,
.home-price .tabs-price .nav-link.active {
  background: #3EA446;
  color: white
}

.home-price .tabs-price .nav-link:hover:before,
.home-price .tabs-price .nav-link.active:before {
  content: '';
  background: transparent
}

.home-price .tabs-price .nav-link:hover span,
.home-price .tabs-price .nav-link.active span {
  color: white
}

.home-price .tab-content {
  margin-top: 1.5rem;
  padding: 1rem 1rem 1.5rem 1rem;
  border-radius: 20px;
  background-color: white;
  display: none;
}
.home-price .tab-content.active
{
    display:block;
}
@media (min-width: 576px) {
  .home-price .tab-content {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1)
  }
}

@media (max-width: 575.98px) {
  .home-price .tab-content {
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #EAEAEA
  }
}

.home-price .table-wrapper {
  margin-top: 15px;
  height: 400px;
  overflow: auto;
  overflow-y: auto;
  max-height: 100%;
  min-height: 100px;
  padding-right: 10px
}

@media (max-width: 575.98px) {
  .home-price .table-wrapper {
    margin-top: 10px;
    padding-right: 0
  }
}

.home-price .table-wrapper::-webkit-scrollbar {
  width: 5px;
  height: 5px
}

.home-price .table-wrapper::-webkit-scrollbar-track {
  background: none;
  border-radius: 10rem
}

.home-price .table-wrapper::-webkit-scrollbar-thumb {
  background: #12492F;
  border-radius: 10rem
}

.home-price .table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #12492F
}

.home-price .table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.home-price .table thead tr {
  border: 0
}

.home-price .table thead tr th {
  overflow: hidden;
  position: relative;
  border: 0
}

.home-price .table thead tr th:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25)
}

@media (min-width: 576px) {
  .home-price .table thead tr th:nth-child(1) {
    border-top-left-radius: .5rem;
    padding-left: 15px
  }
}

@media (max-width: 575.98px) {
  .home-price .table thead tr th:nth-child(2) {
    border-top-left-radius: 5px
  }
}

@media (min-width: 576px) {
  .home-price .table thead tr th:last-child {
    border-top-right-radius: .5rem
  }
}

@media (max-width: 575.98px) {
  .home-price .table thead tr th:last-child {
    border-top-right-radius: 5px
  }
}

@media (max-width: 575.98px) {
  .home-price .table thead tr th {
    padding: 10px 5px !important;
    width: 20%;
    font-size: .625rem
  }

  .home-price .table thead tr th span {
    font-size: .5rem
  }
}

.home-price .table thead tr.main-head th {
  background-color: #066836
}

@media (max-width: 575.98px) {
  .home-price .table thead tr.main-head th:first-child {
    display: none
  }
}

.home-price .table thead tr.sub-head th {
  background-color: #066836;
  color: white;
  font-size: .6vw;
  border-radius: 0;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 5px !important;
  width: 50em;
}

.home-price .table thead tr.sub-head th:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25)
}

.home-price .table thead tr.sub-head th:last-child {
  border-top-right-radius: 0 !important
}

@media (max-width: 575.98px) {
  .home-price .table thead tr.sub-head th {
    font-size: .55rem
  }
}

.home-price .table thead th {
  vertical-align: middle;
  padding: 8px 5px
}

.home-price .table thead th h5,
.home-price .table thead th .h5 {
  text-transform: uppercase;
  /* font-weight: bold; */
  color: white;
  line-height: 1.2;
  font-size: .625rem;
  margin: .25rem 0;
}

@media (max-width: 575.98px) {

  .home-price .table thead th h5,
  .home-price .table thead th .h5 {
    line-height: 1.35
  }
}

.home-price .table thead th span {
  display: block;
  font-size: .5rem;
  color: white
}

@media (max-width: 575.98px) {
  .home-price .table tbody tr span {
    font-size: .7rem
  }
}

.home-price .table tbody tr.region {
  background-color: #f6f6f6
}

.home-price .table tbody tr.region * {
  font-weight: bold;
}

.home-price .table tbody td {
  vertical-align: middle;
  padding: .55rem .375rem;
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  font-size: .65vw;
  white-space: nowrap;
}
.home-price .table tbody td:first-child {
  border-left: 1px solid #efefef;
}
.home-price .table tbody td:last-child {
  border-right: 0
}

.home-price .table tbody td span {
  font-size: inherit
}

.home-price .table tbody td i {
  margin-right: .125rem;
  font-size: .5vw;
  color: #ffb000
}

.home-price .table tbody td [class*='-price-up'] {
  color: #3EA446
}

.home-price .table tbody td [class*='-price-down'] {
  color: red
}

@media (max-width: 575.98px) {
  .home-price .table tbody td {
    font-size: .72rem
  }

  .home-price .table tbody td [class*='-price-'] {
    font-size: .5rem
  }
}

.home-price .btn {
  margin-top: 1.5rem
}

@media (max-width: 575.98px) {
  .home-price .btn {
    margin-top: 30px
  }
}

.home-price.details {
  padding: 0;
  background: white
}

.home-price.details .table-wrapper {
  height: auto;
  /* overflow: unset; */
  /* overflow-y: unset; */
  max-height: 100vh;
  min-height: unset;
  padding: 0;
}

@media (max-width: 575.98px) {
  .home-price.details .table-wrapper {
    height: 80vh;
    overflow: auto;
    border: 1px solid #EAEAEA;
    border-radius: .5rem
  }

  .home-price.details .table-wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px
  }

  .home-price.details .table-wrapper::-webkit-scrollbar-track {
    background: none;
    border-radius: 10rem
  }

  .home-price.details .table-wrapper::-webkit-scrollbar-thumb {
    background: #12492F;
    border-radius: 10rem
  }

  .home-price.details .table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #12492F
  }
}

.home-price.details .table-wrapper .table>tbody {
  border: 1px solid #EAEAEA;
}

.home-price.details .table-wrapper .table>tbody tr:last-child td {
  border-bottom: 0
}

.pricelist
{
     padding: 1rem 0 3rem;
}

.pricelist_content
{
     text-align:center;
    line-height:1.5;
    margin-bottom: 0;
}
.icon.price-down
{
    width:.55rem;
    background-image:url('../images/price-down.svg');
    height: .55rem;
}
.icon.price-up
{
    width:.55rem;
    background-image:url('../images/price-up.svg');
    height: .55rem;
}
.icon.price
{
    width:.55rem;
    background-image:url('../images/price.svg');
    height: .55rem;
}
.form-select {
  display: block;
  
  padding: .375rem 2.25rem .375rem .75rem;
  -moz-padding-start: calc(.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: .375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}
.form-select {
    font-size: 0.875em !important;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
    border: 0;
    padding: .625rem 1rem;
    border-radius: .625em;
}
.form-select {
    padding: .625rem 2.125rem .625rem 1rem;
    border-radius: 1.625em;
    text-overflow: ellipsis;
    overflow-x: hidden;
    border: 1px solid #EAEAEA;
}
.filter-block .form-select {
    background-color: transparent;
    color: #333;
    margin-bottom: 0;
    min-width: 12rem;
}
.filter-block {
    display: flex;
    color: #555;
}
.price-list-filter
{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.tabs-price
{
    display:flex;
    list-style:none;
    gap:1rem;
    
}

.filter-block .tabs-price {
  border: 0;
  margin-left: 1rem;
  margin: 0;
}
.page-template-bang-gia .pricelist-news .section-title-wrapper .section-title
{
    font-size:1rem;
    text-transform: uppercase;
    font-weight: 500;
    color: #555;
    font-size: 1.25rem;
    text-align: left;
    padding-right: 0;
}
.page-template-bang-gia .pricelist-news
{
    margin:2rem 0 3rem;
}
@media (max-width: 575.98px) {
.filter-block .tabs-price {
    /* display: none; */
    gap: .5rem;
    padding: 0;
    justify-content: space-between;
    width: 100%;
  }
}

.filter-block .tabs-price .nav-link {
  border: 1px solid #EAEAEA;
  border-radius: 2rem;
  color: #555;
  font-size: .875rem;
  padding:.5rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;

  height: 100%;
  box-sizing: border-box;
}

.filter-block .tabs-price .nav-link:hover,
.filter-block .tabs-price .nav-link.active {
  color: #3EA446;
  border-color: #3EA446
}
.home-price .title
{
    text-transform: uppercase;
    font-weight: bold;
    color: #555;
   font-size:1.25rem;
}
.home-price .title h5
{
    margin:2rem 0 1rem;
}
.pricelist-section .home-price .title h5
{
    margin:.5rem 0 1.5rem;
}
.pricelist-section .home-price
{
    padding:0;
    background:transparent;
}
.pricelist-section
{
    padding:3rem 0;
    background-image:url(../images/price-light.jpg);
    background-size: cover;
    background-position:center;
    background-repeat:no-repeat;
}
.pricelist-section .btn
{
    position:relative;
    margin:1.5rem 0 0;
    left:50%;
    transform:translateX(-50%);
}
.pricelist-section .section-title
{
    font-size:1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
}
.pricelist-section .header
{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.story
{
    padding:3rem 0;
}
.story .section_content
{
    padding:0 20%;
}
.story .section-title
{
    text-align:center;
}
.story__item .article__image img
{
    object-position:top;
    aspect-ratio: 120 / 63;
}
.story__item .article__title
{
    font-size:1.125rem;
    margin:0
}
.story-tab .story__item .article__title
{
    font-size:1.25rem;
    text-transform:uppercase;
    font-weight:700;
}
.story__item .expert
{
    line-height:1.5;
    text-align: justify;
}
.story .section_content .btn
{
    position:relative;
    left:50%;
    transform:translateX(-50%);
}
.story-carousel
{
    margin-top:2rem;
}
.story-title
{
    padding:3rem 0;
}
.story-title .section-title
{
    text-align:center;
}
.story-title .section_content
{
    padding:0 10%;
}
.story-tab
{
    background:#eaeaea;
    padding:3rem 0;
}
.story-tabs {
  margin: 0rem 0 1.75rem;
  display:flex;
  justify-content:center;
  gap:1rem;
}

.story-tabs a {
  font-size: .75rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
   border-radius:1.5rem;
    border:.125rem solid var(--color--primary);
    color:var(--color--primary);
    font-weight: 500;
    padding:.75rem 1.5rem;
    text-align:center;
}

.story-tabs a.active,
.story-tabs a:hover{
  color: #fff;
  background:var(--gradient--primary);
    border-color:#fff;
    background-size:cover;
}

.story-list
{
    display:flex;
    flex-wrap:wrap;
    gap:1.5rem;
}
.story-list .story__item
{
    width:calc((100% - 2*1.5rem)/3);
    position: relative;
   
}
.story-list .story__item .article-box
{
     background:#066836;
}
.story-list .story__item .article-box *
{
    color:#fff;
}
.tab-content 
{
   display:none;
}
.tab-content.active
{
    display: block;
}
.floatThead-container
{
    /* top:-.875rem !important; */
    z-index:2 !important;
}
@media screen and (max-width: 1023px) {
  /* Animation */
  @-webkit-keyframes slideInRight {
    from {
      -webkit-transform: translate3d(15rem, 0, 0);
              transform: translate3d(15rem, 0, 0);
      visibility: visible;
      opacity: 0;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  @keyframes slideInRight {
    from {
      -webkit-transform: translate3d(15rem, 0, 0);
              transform: translate3d(15rem, 0, 0);
      visibility: visible;
      opacity: 0;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  /* Banner */
  .banner-content {
    font-size: 1.857rem;
    left: 1.28rem;
    bottom: 2.428rem;
    line-height: 1.2;
  }
  .banner .owl-theme .owl-dots {
    bottom: 1.5rem;
    left: 1.28rem;
  }
  .banner_video,
  .banner_video img,
  .banner_video .video-fullscreen {
    min-height: 15rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-video-btn {
    width: 3rem;
    height: 3rem;
    z-index: 2;
    border-width: .125rem;
    top: 1rem;
    -webkit-transform: none;
            transform: none;
    left: auto;
    right: 1rem;
  }
  .banner-video-btn svg {
    width: 1.75rem;
  }
  .banner .owl-theme .owl-dots .owl-dot span {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
 
  /* Testimonial */
  .testimonial {
    padding: 3.14rem 0;
  }
  .testimonial .section-title {
    left: auto;
    width: 100%;
    top: 20rem;
  }
  .testimonial .owl-item.tes-active,
  .testimonial .owl-item.active,
  .testimonial .owl-item {
    width: calc(100vw*.896) !important;
  }
  .testimonial-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .testimonial-item.active .testimonial-image,
  .testimonial-item .testimonial-image {
    margin: 0 auto 5rem;
    width: 18.42rem;
    height: 18.42rem;
  }
  .testimonial__button {
    text-align: center;
  }
  .testimonial .owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: 9rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .testimonial .owl-theme .owl-nav .owl-prev {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .testimonial .owl-theme .owl-nav button {
    margin: 0;
  }
  .testimonial .owl-theme .owl-nav button:hover,
  .testimonial .owl-theme .owl-nav button:focus {
    background: transparent;
  }
    body .banner .owl-theme .owl-dots
    {
        bottom:-1.875rem;
    }
  .pricelist-section .header
    {
        flex-wrap:wrap;
    }
    .pricelist-section .section-title
    {
        margin-bottom:1rem;
    }
    .pricelist .section-title, .page-template-thong-tin-thi-truong .section-title, .page-template-cau-chuyen-thanh-cong .section-title
    {
        font-size:1.75rem;
    }
    .story .section_content,
    .page-template-thong-tin-thi-truong .news .section_content
    {
        padding:0;
    }
    .news-carousel.carousel--style1 .owl-dots,
    .story-carousel.carousel--style1 .owl-dots
    {
        display:block;
    }
    .pricelist-section
    {
        padding-top:1rem;
        background-size: 100%;
        background-position: top center;
    }
    .page-template-thong-tin-thi-truong .news
    {
        padding-top:8rem
    }
    .page-template-thong-tin-thi-truong .story .section-title
    {
        font-size:1.65rem;
        white-space:nowrap;
    }
    .price-list-filter
    {
        gap:1rem;
    }
    .pricelist-wrap  .filter-block
    {
        flex-wrap:wrap;
        gap:1rem;
       
    }
    .pricelist-wrap .col-6 
    {
        width:100%;
        flex: none;
    }
    .pricelist-wrap
    {
        position:relative;
    }
    .pricelist-wrap .sort-block
    {
        position:absolute;
        top:0;
        right:0;
    }
    .filter-block .tabs-price .nav-link
    {
        padding: .625rem 1.25rem .625rem 1.25rem;
    }
    .filter-block .form-select
    {
        min-width:11rem;
    }
    .story-title
    {
        padding-top:0;
        padding-bottom: 2rem;
    }
    .story-title .section_content
    {
        padding:0;
    }
    .story-title .section-title
    {
        font-size:2rem;
        padding: 0 10%;
    }
    .story-tab
    {
        background:#fff;
        padding-top: 0;
    }
    .story-tabs
    {
        flex-wrap:wrap;
        gap:.5rem;
    }
    .story-list .story__item
    {
        width: calc((100% - 0 * 1.5rem) / 1);
    }
    .recruitment-inner
    {
        padding:0;
        flex-wrap: wrap;
    }
    .recruitment_image
    {
        position:static;
        width:100%;
    }
    .recruitment_content-wrap
    {
        order:2;
    }
    .recruitment
    {
        padding:0;
    }
    .recruitment .section-title
    {
        font-size:2rem;
    }
    .news .news__nav
    {
        gap:.5rem;
    }
    .news .news__nav button
    {
        padding-left:1rem;
        padding-right:1rem;
    }
    .news-list .news__item
    {
        width: 100%;
    }
    .page-template-bang-gia .pricelist-news
    {
        margin:2rem 0;
    }
    .page-template-bang-gia .pricelist-news .article__info
    {
        padding:.5rem;
        padding-top:1rem;
    }
}

@media screen and (min-width: 1600px) {
  .banner-line svg {
    width: calc(67.75*1.041666666vw);
    height: calc(100% - 0rem);
    -webkit-transform: translateY(-1.625rem);
            transform: translateY(-1.625rem);
  }
  .ellipse {
    left: calc(.75*1.041666666vw);
  }
}

@media screen and (min-width: 1920px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 3.5rem);
    -webkit-transform: translateY(-3.75rem);
            transform: translateY(-3.75rem);
  }
  .ellipse {
    left: calc(4.25*1.041666666vw);
    width: calc(49.8*1.04758666666vw);
  }
  .images .images-carousel .owl-stage-outer {
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (min-width: 2048px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 9.75rem);
    -webkit-transform: translateY(-7.125rem);
            transform: translateY(-7.125rem);
  }
  .ellipse {
    left: calc(6.125*1.041666666vw);
    width: calc(47.8*1.04758666666vw);
  }
}

@media screen and (min-width: 2280px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 10.125*1.041666666vw);
    -webkit-transform: translateY(calc(-6.5*1.041666666vw));
            transform: translateY(calc(-6.5*1.041666666vw));
  }
  .ellipse {
    left: calc(8*1.041666666vw);
    width: calc(45.8*1.04758666666vw);
  }
}

@media screen and (min-width: 2800px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 12.5*1.041666666vw);
    -webkit-transform: translateY(calc(-7.5*1.041666666vw));
            transform: translateY(calc(-7.5*1.041666666vw));
  }
}

@media screen and (min-width: 3072px) {
  .banner-line svg {
    width: calc(69.125*1.021666666vw);
    height: 70.25rem;
    -webkit-transform: translateY(-18.5rem);
            transform: translateY(-18.5rem);
  }
  .ellipse {
    left: calc(19.2*1.041666666vw);
    width: calc(32.8*1.04758666666vw);
  }
}

/* Fix for touch device */
@media only screen and (max-width: 1366px) and (min-width: 768px) {
  .touch .food-export {
    background-size: 100%;
  }
}
/*# sourceMappingURL=tpxk.css.map */