@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Lato/Lato-Bold.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Lato/Lato-Medium.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Lato/Lato-Regular.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Lato/Lato-Light.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/Lato/Lato-Thin.woff") format("woff");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Oswald/Oswald-Light.woff") format("woff");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Oswald/Oswald-Regular.woff") format("woff");
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Oswald/Oswald-SemiBold.woff") format("woff");
}
body {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #000;
  overflow-x: hidden;
  background: #fff;
}
body a {
  color: #000;
  text-decoration: none;
  transition: 0.1s ease-in-out;
}
body a:hover {
  text-decoration: none;
  color: #DA291C;
}

main {
  padding: 80px 0;
}

.oswald-text {
  font-family: "Oswald";
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: normal;
  margin-bottom: 40px;
  font-size: 40px;
}

.scroll-auto {
  scroll-behavior: auto;
}

.container {
  max-width: 1240px !important;
  padding: 0;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
  padding-top: 20px;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .site-logo img {
  width: auto;
}
header .site-menu {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
header .site-menu .a-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #EEEEEE;
  border-radius: 100%;
  font-size: 18px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0);
}
header .site-menu .a-social:hover {
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
header .site-menu .a-search {
  display: none;
}
header .site-menu .form-site {
  display: flex;
  align-items: center;
  position: relative;
}
header .site-menu .form-site input {
  padding: 10px 38px 10px 15px;
  width: 370px;
  height: 38px;
  background: #F8F8F8;
  border-radius: 30px;
  border: 1px solid #F8F8F8;
  z-index: 2;
}
header .site-menu .form-site input::-moz-placeholder {
  color: #777;
}
header .site-menu .form-site input:-ms-input-placeholder {
  color: #777;
}
header .site-menu .form-site input::placeholder {
  color: #777;
}
header .site-menu .form-site input:focus {
  border-color: #DA291C;
  box-shadow: 0 0 8px rgba(218, 41, 28, 0.6);
}
header .site-menu .form-site button {
  position: absolute;
  right: 0;
  width: 38px;
  height: 38px;
  color: #DA291C;
  background: none;
  color: none;
  padding: 0;
  border: none;
  outline: none;
  z-index: 2;
}
header.is-sticky {
  padding: 10px 0;
  box-shadow: 0 0px 6px 0 rgba(0, 0, 0, 0.4);
}

footer {
  background: #DA291C;
  padding: 20px 0;
  color: #fff;
  font-size: 16px;
}
footer p {
  margin-bottom: 0;
}

#siteMenu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  width: 480px;
}
#siteMenu .menu-top {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #E0E0E0;
  height: 100px;
}
#siteMenu .menu-top .close {
  font-family: "Oswald";
  font-weight: 300;
  font-size: 18px;
}
#siteMenu .menu-top .close svg {
  margin-left: 10px;
  transition: 0.1s ease-in-out;
}
#siteMenu .menu-top .close svg circle, #siteMenu .menu-top .close svg path {
  transition: 0.1s ease-in-out;
}
#siteMenu .menu-top .close:hover svg circle {
  fill: #DA291C;
}
#siteMenu .menu-top .close:hover svg path {
  fill: #FFF;
}
#siteMenu .ul-menu-site {
  margin: 0;
  padding: 0;
  list-style: none;
  height: calc(100% - 100px);
  overflow-y: auto;
}
#siteMenu .ul-menu-site li {
  padding: 0 30px;
  position: relative;
}
#siteMenu .ul-menu-site .span-collapse {
  position: absolute;
  right: 30px;
  cursor: pointer;
  z-index: 1;
  top: 32px;
  font-size: 20px;
  color: #DA291C;
}
#siteMenu .ul-menu-site a {
  padding: 30px 0;
  display: flex;
  border-bottom: 1px solid #E0E0E0;
  font-family: "Oswald";
  font-weight: 400;
  font-size: 18px;
  align-items: center;
  line-height: normal;
  position: relative;
}
#siteMenu .ul-menu-site a span {
  position: absolute;
  right: 0;
  cursor: pointer;
  z-index: 1;
}
#siteMenu .ul-menu-site a img, #siteMenu .ul-menu-site a svg {
  width: 24px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
#siteMenu .ul-menu-site .collapse-menu {
  display: none;
}
#siteMenu .ul-menu-site .collapse-menu li {
  padding: 0;
}
#siteMenu .ul-menu-site .collapse-menu a {
  padding: 10px 0;
}

.siteMenuOpen {
  overflow: hidden;
  padding-right: 17px;
}

.backdrop-site {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.form-box .select2 {
  width: 100% !important;
}
.form-box .select2 .select2-selection {
  border: 1px solid #fff;
  border-radius: 4px;
  height: 46px;
  transition: 0.15s ease-in-out;
}
.form-box .select2 .select2-selection[aria-expanded=true] {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(198, 0, 36, 0.6);
  border-color: #C60024;
}
.form-box .select2 .select2-selection .select2-selection__rendered {
  padding: 0 15px;
  line-height: 46px;
}
.form-box .select2 .select2-selection .select2-selection__arrow {
  height: auto;
  right: 15px;
  bottom: 50%;
  width: auto;
  transform: translateY(50%);
  top: unset;
}
.form-box.form-job .select2 .select2-selection .select2-selection__rendered {
  background: url("/images/job_cate.svg") top 13px left 15px no-repeat;
  padding-left: 35px;
}
.form-box.form-city .select2 .select2-selection .select2-selection__rendered {
  background: url("/images/map-pin.svg") top 13px left 15px no-repeat;
  padding-left: 35px;
}
.form-box.form-visa .select2 .select2-selection .select2-selection__rendered {
  background: url("/images/book.svg") top 13px left 15px no-repeat;
  padding-left: 35px;
}

.select2-search__field {
  outline: none !important;
}

.select2-results__option--highlighted {
  background-color: #C60024 !important;
}
.select2-results__option--highlighted img {
  filter: sepia(1) brightness(10);
}

.img-select2 {
  width: 16px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
}

.label_error {
  margin-top: 10px;
  color: #DA291C;
}

.pagination {
  margin-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  justify-content: center;
}
.pagination b {
  display: none;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 6px;
  border: none;
  background: #eeeeee;
  color: #535353;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
}
.pagination a[href]:hover {
  border-color: #C60024;
  color: #C60024;
}
.pagination .current {
  color: #fff;
  font-weight: 700;
  background-color: #C60024;
  border: none;
}
@media (max-width: 960px) {
  .pagination {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .pagination a {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

.star-rating {
  --percent: calc(var(--rating) / 5 * 100%);
  font: normal normal normal 14px/1 FontAwesome;
  position: relative;
  display: flex;
  align-items: center;
}
.star-rating::before {
  content: "\f005\f005\f005\f005\f005";
  background: linear-gradient(90deg, #ffa500 var(--percent), #999 var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.toggle-menu-side-bar {
  display: none;
}
@media (max-width: 960px) {
  .toggle-menu-side-bar {
    display: block;
    font-size: 26px;
    color: #C60024;
    width: 82px;
  }
}

#load {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}

.lds-spinner {
  color: #C60024;
  display: block;
  margin: auto;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #C60024;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#msgModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  line-height: normal;
}
#msgModal .msgmodal-content {
  background: #FFFFFF;
  box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  max-width: 540px;
  padding: 50px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  width: auto;
  position: relative;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
#msgModal .close {
  color: white;
  float: right;
  font-size: 36px;
  font-weight: bold;
}
#msgModal h5 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
#msgModal .close:focus,
#msgModal .close:hover {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
#msgModal .msgmodal-header {
  padding: 2px 10px 2px 16px;
  background-color: #116bb3;
  line-height: 36px;
  color: white;
}
#msgModal .msgmodal-body {
  text-align: center;
}
#msgModal .msgmodal-body .bt-modals {
  background-color: #d2b86e;
  margin-right: 10px;
  font-size: 20px;
  color: #ffffff;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
}
#msgModal .msgmodal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
#msgModal .title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  color: #C60024;
  margin-top: 35px;
}
#msgModal svg {
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}
#msgModal .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
#msgModal .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}
#msgModal .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
#msgModal .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dashCheck 0.9s 0.35s ease-in-out forwards;
  animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

.alert_modal {
  display: none;
  position: fixed;
  width: 100%;
  top: 2%;
  z-index: 1060;
}
.alert_modal .alert_body {
  background: #fff;
  width: 390px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #ddd;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  font-size: 16px;
  margin-top: 5%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.24);
  -webkit-animation: shake-lr 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: shake-lr 0.7s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}
.alert_modal .alert_body svg:not(:root) {
  width: 30px;
}
.alert_modal .alert_body p {
  margin: 20px 0;
}
.alert_modal .alert_body p a {
  width: auto;
  background: none;
  color: #333;
  height: auto;
  transition: 0.3s all ease-in-out;
}
.alert_modal .alert_body p a:hover {
  color: #faaf40;
}
.alert_modal .alert_body a {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faaf40;
  color: #fff;
  font-weight: 700;
  width: 60px;
  margin: auto;
  border-radius: 5px;
  height: 30px;
}
.alert_modal .path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.alert_modal .path.circle {
  -webkit-animation: dash 0.9s ease-in-out;
  animation: dash 0.9s ease-in-out;
}
.alert_modal .path.line {
  stroke-dashoffset: 1000;
  -webkit-animation: dash 0.9s 0.35s ease-in-out forwards;
  animation: dash 0.9s 0.35s ease-in-out forwards;
}
.alert_modal .path.check {
  stroke-dashoffset: -100;
  -webkit-animation: dashCheck 0.9s 0.35s ease-in-out forwards;
  animation: dashCheck 0.9s 0.35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@keyframes dashCheck {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}
@-webkit-keyframes shake-lr {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-2.5deg);
  }
  30%, 50%, 70% {
    transform: rotate(2.5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes shake-lr {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-2.5deg);
  }
  30%, 50%, 70% {
    transform: rotate(2.5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
  border-color: #ddd !important;
}

.alert_error {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: rgb(0, 0, 0);
  padding: 20px;
  color: #fff;
  z-index: 1;
  border-radius: 5px;
  display: none;
  z-index: 9999;
}
@media (max-width: 960px) {
  .alert_error {
    width: calc(100% - 40px);
    max-width: 100%;
    text-align: center;
    padding: 15px;
  }
}

:root {
  --mm-color-background: #fff !important;
  --mm-color-text: #3C3C3B !important;
  --mm-color-button: #3C3C3B !important;
  --mm-color-border: #EEEEEE !important;
  --mm-color-text-dimmed: #C60024 !important;
}

.mm-menu a {
  font-size: 16px;
}

.change-quantity .a_btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: none;
  outline: none;
  padding: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.change-quantity .a_btn svg {
  transition: 0.1s ease-in-out;
}
.change-quantity .a_btn:hover {
  border-color: #002864;
  box-shadow: 0 0 8px rgba(0, 40, 100, 0.6);
}
.change-quantity .a_btn:hover svg {
  fill: #faaf40;
}
.change-quantity input {
  width: 60px !important;
  height: 40px !important;
  background: #f3f3f3;
  text-align: center;
  font-weight: 600 !important;
  padding: 5px !important;
}

.shimmer {
  color: grey;
  display: inline-block;
  -webkit-mask: linear-gradient(-60deg, #000 30%, rgba(0, 0, 0, 0.3333333333), #000 70%) right/300% 100%;
  background-repeat: no-repeat;
  -webkit-animation: shimmer 2.5s infinite;
          animation: shimmer 2.5s infinite;
  font-size: 50px;
  max-width: 200px;
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-mask-position: left;
  }
}

@keyframes shimmer {
  100% {
    -webkit-mask-position: left;
  }
}
.scrollToTop {
  display: none;
  color: #fff;
  font-size: 14px;
  padding-top: 12px;
  text-align: center;
  position: fixed;
  bottom: -60px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #DA291C;
  box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.08);
  background-size: auto;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  transition: all 0.8s ease;
}
.scrollToTop.active {
  bottom: 100px;
}
@media (max-width: 769px) {
  .scrollToTop {
    right: 10px;
    width: 40px;
    height: 40px;
    padding-top: 10px;
  }
  .scrollToTop.active {
    padding-top: 8px;
    bottom: 10px;
  }
}

.circle-tel {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #9A0000;
  border: 6px solid rgba(154, 0, 0, 0.72);
  z-index: 10;
}
.circle-tel::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid rgba(190, 32, 47, 0.56);
  background: rgba(154, 0, 0, 0.5);
  border-radius: 100%;
  -webkit-animation: shake-bottom-detail 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
          animation: shake-bottom-detail 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}
@media (max-width: 960px) {
  .circle-tel {
    width: 40px;
    height: 40px;
    left: 10px;
    bottom: 10px;
  }
  .circle-tel::before {
    width: 50px;
    height: 50px;
  }
  .circle-tel svg {
    width: 26px;
    height: auto;
  }
}

.shake-bottom {
  -webkit-animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
          animation: shake-bottom 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite both;
}

@-webkit-keyframes shake-bottom {
  0%, 100% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

@keyframes shake-bottom {
  0%, 100% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes shake-bottom-detail {
  0%, 100% {
    box-shadow: 0 0 0px 6px rgba(154, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0px 2px rgba(154, 0, 0, 0.5);
  }
}
@keyframes shake-bottom-detail {
  0%, 100% {
    box-shadow: 0 0 0px 6px rgba(154, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0px 2px rgba(154, 0, 0, 0.5);
  }
}
@-webkit-keyframes loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.loading {
  color: transparent;
  background: linear-gradient(100deg, #eceff1 30%, #f6f7f8 50%, #eceff1 70%);
  background-size: 400%;
  -webkit-animation: loading 1.2s ease-in-out infinite;
          animation: loading 1.2s ease-in-out infinite;
}

@media (max-width: 960px) {
  .container {
    padding: 0 10px !important;
    max-width: 100% !important;
  }
  .siteMenuOpen {
    padding-right: 0;
  }
  header .header-container {
    position: relative;
  }
  header .site-menu .form-site-container {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100%;
  }
  header .site-menu .form-site input {
    width: 100%;
  }
  header .site-menu .a-search {
    display: flex;
  }
  .oswald-text {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #siteMenu {
    width: 300px;
  }
  #siteMenu .menu-top {
    padding: 10px;
    height: 60px;
  }
  #siteMenu .menu-top span {
    display: none;
  }
  #siteMenu .ul-menu-site {
    height: calc(100% - 60px);
  }
  #siteMenu .ul-menu-site li {
    padding: 0 10px;
  }
  #siteMenu .ul-menu-site a {
    padding: 15px 0;
    align-items: flex-start;
    padding-right: 20px;
  }
  #siteMenu .ul-menu-site .span-collapse {
    right: 10px;
    top: 18px;
  }
  main {
    padding: 30px 0;
  }
  header .site-menu {
    grid-gap: 15px;
  }
  header .site-menu .a-social {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */