@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
  }
}
body {
  color: #1f1f1f;
  font-size: 16px;
}
a,
p,
span,
label,
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
section,
option {
  font-size: inherit;
}
img,
iframe {
  max-width: 100%;
}
img {
  height: auto;
}
h1 {
  font-size: 28px;
}
h2 {
  font-size: 26px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
.position-fixed {
  position: fixed;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.vc-header .vc-top {
  background: -webkit-linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: -moz-linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: -o-linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
}
.vc-header .vc-top__row {
  align-items: center;
}
.vc-header .vc-top__right {
  justify-content: flex-end;
}
.vc-header .vc-top__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vc-header .vc-top__nav li {
  display: inline-block;
  font-size: 14px;
  color: #fff;
}
.vc-header .vc-top__nav li a,
.vc-header .vc-top__nav li span {
  font-size: 16px;
  color: #a26f29;
}
.vc-header .vc-top__nav li a:hover,
.vc-header .vc-top__nav li span:hover {
  color: #fff;
}
.vc-header .vc-top__nav li + li {
  padding-left: 15px;
  margin-left: 10px;
  position: relative;
}
.vc-header .vc-top__nav li + li:before {
  content: "";
  position: absolute;
  left: 0;
  height: 10px;
  width: 1px;
  top: 50%;
  background-color: #a26f29;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media only screen and (max-width: 1200px) {
  .vc-header {
    height: 120px;
  }
  .vc-header .vc-top {
    padding: 8px 0;
    height: auto;
  }
  .vc-header__logo {
    top: 60px;
  }
  .vc-header__nav-btn {
    top: 70px;
  }
  .vc-header__nav-btn.active {
    top: 12px;
  }
  .vc-header.sticky {
    height: 70px;
  }
  .vc-header.sticky .vc-top {
    display: none;
  }
  .vc-header.sticky .vc-header__logo {
    top: 5px;
  }
  .vc-header.sticky ~ .vc-header__nav-btn {
    top: 18px;
  }
  .vc-header__nav {
    background-color: #d0a33e;
  }
  .vc-header__nav > ul {
    margin: 0;
  }
  .vc-header__nav-logo {
    display: block;
    padding: 10px 15px;
    width: 100%;
  }
  .vc-header__nav-logo img {
    max-height: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .vc-header {
    height: 110px;
  }
  .vc-header .vc-top__right {
    justify-content: center;
  }
  .vc-header__logo {
    top: 45px;
  }
  .vc-header__nav-btn {
    top: 55px;
  }
}
.wp-block-page-heading {
  margin-bottom: 3rem;
}
.wp-block-page-heading .is-style-bordered {
  padding-bottom: 15px;
  background: url(../img/line.jpg) left bottom no-repeat;
}
.wp-block-page-heading .has-text-align-center {
  text-align: center;
  background-position-x: center;
}
.btn-vote {
  text-transform: uppercase;
  font-size: 17px;
  display: inline-block;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  padding: 5px 20px;
  border: 1px solid #a26f29;
  background-color: #a26f29;
  transition: color .25s,background-color .25s;
}
.btn-vote:hover,
.btn-vote.voted {
  background-color: #17469e;
  border-color: #f3dc92;
  color: #f3dc92;
}
.btn-vote.voted {
  cursor: context-menu;
}
.blog .site-main,
.single .site-main {
  padding: 50px 0;
}
.blog-image,
.single-image {
  overflow: hidden;
}
.blog-image img,
.single-image img {
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.blog-image:hover img,
.single-image:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.blog-list,
.single-list {
  row-gap: 50px;
}
.blog-title,
.single-title {
  color: #1f1f1f;
  font-weight: bold;
  font-size: 18px;
  margin-top: 16px;
}
@media only screen and (max-width: 480px) {
  .blog-title,
  .single-title {
    margin-top: 5px;
    font-size: inherit;
  }
}
.site-has-sidebar .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 80px;
}
.site-sidebar .award-summary {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
.site-sidebar .award-info {
  padding: 15px 0;
  margin: 0;
  list-style: none;
}
.site-sidebar .award-info li {
  padding: 5px 15px;
}
.site-sidebar .award-info li.award-cat {
  margin: 8px 0;
  padding: 15px;
}
.site-sidebar .award-info li:last-child {
  text-align: center;
  margin-top: 10px;
}
.site-sidebar .award-avatar {
  text-align: center;
}
.site-sidebar .award-avatar img {
  border-radius: 8px 8px 0 0;
}
.site-sidebar .award-name {
  color: #0e1e34;
  font-weight: bold;
  text-transform: uppercase;
}
.site-sidebar .award-position {
  color: #828282;
  font-size: 14px;
  font-weight: 500;
}
.site-sidebar .award-cat {
  background-color: #f1f1f1;
}
.site-sidebar .award-cat span {
  font-weight: bold;
  font-size: 16px;
}
.site-sidebar .award-count {
  color: #d0a33e;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}
.site-sidebar .award-count:before {
  content: "\2605";
  display: inline-block;
  font-size: 18px;
  margin-right: 5px;
  background: -webkit-linear-gradient(
    to bottom,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: -moz-linear-gradient(
    to bottom,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: -o-linear-gradient(
    to bottom,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: linear-gradient(
    to bottom,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 1366px) {
  .site-has-sidebar .container {
    column-gap: 50px;
  }
}
@media only screen and (max-width: 990px) {
  .site-has-sidebar .container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
  }
  .site-sidebar .award-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 30px;
  }
  .site-sidebar .award-info {
    position: relative;
    padding-bottom: 20px;
    padding-top: 0;
  }
  .site-sidebar .award-info li:last-child {
    position: absolute;
    bottom: 10px;
    right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .site-sidebar .award-summary {
    grid-template-columns: repeat(1, 1fr);
  }
  .site-sidebar .award-info {
    padding: 15px 0;
  }
  .site-sidebar .award-info li:last-child {
    position: initial;
  }
}
.single .post-title {
  text-align: center;
  margin-bottom: 30px;
}
.single .post-content {
  font-size: 16px;
}
.single .post-content h1 {
  margin-bottom: 15px;
}
.single .post-content h2 {
  margin-bottom: 15px;
}
.single .post-content h3 {
  margin-bottom: 15px;
}
.single .post-content h4 {
  margin-bottom: 15px;
}
.single .post-content h5 {
  margin-bottom: 15px;
}
.single .post-content h6 {
  margin-bottom: 15px;
}
.single .post-content p {
  margin-bottom: 15px;
  font-size: inherit;
}
@media only screen and (max-width: 480px) {
  .single .post-content {
    text-align: justify;
  }
}
.wp-block-form {
  max-width: 650px;
  margin: 60px auto;
  background-color: #fff;
  padding: 30px 60px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.wp-block-form__heading {
  text-align: center;
  margin-bottom: 40px;
}
.wp-block-form__heading h3 {
  font-size: 28px;
  padding-bottom: 16px;
  background: url(../img/line.jpg) bottom center no-repeat;
}
.wp-block-form__wrap .form-message p {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #f5c6cb;
  border-radius: 0.25rem;
  color: #721c24;
  background-color: #f8d7da;
}
.wp-block-form__wrap .form-message p.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.wp-block-form__wrap .form-message p.info {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.wp-block-form__wrap .form-message.success p {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.wp-block-form__wrap .form-group {
  margin-bottom: 20px;
}
.wp-block-form__wrap .form-group > div {
  position: relative;
}
.wp-block-form__wrap .form-link {
  text-align: right;
  margin-top: 10px;
  display: block;
  color: #1f1f1f;
}
.wp-block-form__wrap .form-link:hover {
  color: #d0a33e;
}
.wp-block-form__wrap .form-note {
  margin-top: 10px;
  text-align: center;
}
.wp-block-form__wrap .form-note a {
  font-size: 18px;
  text-transform: uppercase;
  color: #17469e;
}
.wp-block-form__wrap .form-note a:hover {
  color: #d0a33e;
}
.wp-block-form__wrap label {
  display: block;
  font-weight: bold;
  margin-left: 15px;
  margin-bottom: 5px;
}
.wp-block-form__wrap label.error {
  color: #f00;
  font-size: 13px;
  font-weight: normal;
  margin-top: 5px;
}
.wp-block-form__wrap input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #bdbdbd;
  padding: 20px;
}
.wp-block-form__wrap button {
  display: block;
  max-width: 250px;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1.4;
  color: #17469e;
  padding: 8px 20px;
  padding-right: 50px;
  background: url(../img/arrow.png) #fff right 10px center no-repeat;
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 40px;
}
.wp-block-form__wrap button:hover,
.wp-block-form__wrap button:focus {
  background-color: #17469e;
  color: #fff;
}
@media only screen and (max-width: 480px) {
  .wp-block-form {
    padding: 15px;
  }
  .wp-block-form__heading {
    margin-bottom: 20px;
  }
  .wp-block-form__heading h3 {
    font-size: 24px;
  }
  .wp-block-form__wrap label {
    margin-left: 8px;
  }
  .wp-block-form__wrap input {
    padding: 12px;
  }
  .wp-block-form__wrap .form-note {
    font-size: 14px;
  }
  .wp-block-form__wrap .form-note a {
    font-size: 16px;
  }
}
.wp-block-awards .wp-block-page-heading {
  color: #f3dc92;
}
.wp-block-awards .wp-block-page-heading h2 {
  font-size: 32px;
}
.wp-block-awards .wp-block-page-heading.align-center {
  text-align: center;
}
.wp-block-awards .wp-block-page-heading.align-center h2 {
  background-position-x: center;
}
.wp-block-awards .wp-block-page-heading.align-right {
  text-align: right;
}
.wp-block-awards .wp-block-page-heading.align-right h2 {
  background-position-x: right;
}
.wp-block-awards__tabs {
  background-color: #17469e;
  padding-top: 50px;
  padding-bottom: 25px;
}
.wp-block-awards__tabs .slick-track {
  min-width: 100%;
  margin-left: 0;
}
.wp-block-awards__tabs .adw-slide {
  cursor: pointer;
  position: relative;
  max-width: 240px;
  border-radius: 22px;
  padding: 3px;
}
.wp-block-awards__tabs .adw-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 22px;
  opacity: 0;
  background: -webkit-linear-gradient(
    to bottom,
    #a26f29 0%,
    #f5e482 23.44%,
    #d0a33e 69.79%,
    #f5e482 100%
  );
  background: -moz-linear-gradient(
    to bottom,
    #a26f29 0%,
    #f5e482 23.44%,
    #d0a33e 69.79%,
    #f5e482 100%
  );
  background: -o-linear-gradient(
    to bottom,
    #a26f29 0%,
    #f5e482 23.44%,
    #d0a33e 69.79%,
    #f5e482 100%
  );
  background: linear-gradient(
    to bottom,
    #a26f29 0%,
    #f5e482 23.44%,
    #d0a33e 69.79%,
    #f5e482 100%
  );
}
.wp-block-awards__tabs .adw-slide:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -35px;
  width: 100%;
  height: 52px;
  z-index: -2;
  background: url(../img/arrow-down.png) center no-repeat;
  opacity: 0;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.wp-block-awards__tabs .adw-slide img {
  border-radius: inherit;
}
.wp-block-awards__tabs .adw-slide .adw-summary {
  position: absolute;
  left: 1px;
  top: 1px;
  height: calc(100% - 3px);
  width: calc(100% - 3px);
  background-color: rgba(208, 163, 62, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: inherit;
}
.wp-block-awards__tabs .adw-slide .adw-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 1rem;
  text-align: center;
}
.wp-block-awards__tabs .adw-slide .adw-count {
  display: block;
  width: 150px;
  padding: 5px;
  margin-top: 15px;
  text-align: center;
  background: -webkit-linear-gradient(
    to right,
    rgba(0, 55, 124, 0) 6.97%,
    #00377c 33.6%,
    #2952a0 51.7%,
    #00377c 73.3%,
    rgba(41, 82, 160, 0) 93.4%
  );
  background: -moz-linear-gradient(
    to right,
    rgba(0, 55, 124, 0) 6.97%,
    #00377c 33.6%,
    #2952a0 51.7%,
    #00377c 73.3%,
    rgba(41, 82, 160, 0) 93.4%
  );
  background: -o-linear-gradient(
    to right,
    rgba(0, 55, 124, 0) 6.97%,
    #00377c 33.6%,
    #2952a0 51.7%,
    #00377c 73.3%,
    rgba(41, 82, 160, 0) 93.4%
  );
  background: linear-gradient(
    to right,
    rgba(0, 55, 124, 0) 6.97%,
    #00377c 33.6%,
    #2952a0 51.7%,
    #00377c 73.3%,
    rgba(41, 82, 160, 0) 93.4%
  );
  position: relative;
}
.wp-block-awards__tabs .adw-slide .adw-count:before {
  content: "\2605";
  display: inline-block;
  font-size: 18px;
  margin-right: 5px;
  background: -webkit-linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: -moz-linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: -o-linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  background: linear-gradient(
    to right,
    #a26f29 1.95%,
    #f5e482 24.56%,
    #d0a33e 69.28%,
    #f5e482 98.43%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wp-block-awards__tabs .slick-slide {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.wp-block-awards__tabs .slick-slide.slick-current .adw-slide:after,
.wp-block-awards__tabs .slick-slide:hover .adw-slide:after {
  opacity: 1;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.wp-block-awards__tabs .slick-slide.slick-current .adw-slide:before {
  opacity: 1;
}
.wp-block-awards__list {
  position: relative;
  padding: 50px 0;
  z-index: 1;
  background: -webkit-linear-gradient(
    to bottom,
    #a26f29 6.56%,
    #d0a33e 41.06%,
    #f5e482 61.9%,
    #d0a33e 80.12%,
    #d0a33e 99%
  );
  background: -moz-linear-gradient(
    to bottom,
    #a26f29 6.56%,
    #d0a33e 41.06%,
    #f5e482 61.9%,
    #d0a33e 80.12%,
    #d0a33e 99%
  );
  background: -o-linear-gradient(
    to bottom,
    #a26f29 6.56%,
    #d0a33e 41.06%,
    #f5e482 61.9%,
    #d0a33e 80.12%,
    #d0a33e 99%
  );
  background: linear-gradient(
    to bottom,
    #a26f29 6.56%,
    #d0a33e 41.06%,
    #f5e482 61.9%,
    #d0a33e 80.12%,
    #d0a33e 99%
  );
}
.wp-block-awards__list .wp-block-page-heading {
  margin-bottom: 70px;
}
.wp-block-awards__list .row {
  row-gap: 130px;
}
.wp-block-awards__list:after {
  content: "";
  right: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/pattern.png) right bottom no-repeat;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.wp-block-awards .award-avatar {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.wp-block-awards .award-avatar img {
  border-radius: inherit;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.wp-block-awards .award-avatar:hover img {
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.wp-block-awards .award-info {
  padding: 20px 10px;
  padding-bottom: 0;
  margin: 0;
  list-style: none;
  color: #fff;
}
.wp-block-awards .award-info li:nth-child(n + 3) {
  margin-top: 15px;
}
.wp-block-awards .award-name {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: inherit;
}
.wp-block-awards .award-position {
  font-size: 15px;
}
.wp-block-awards .award-cat {
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 2;*/
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
  display: -webkit-box;
  -webkit-line-clamp: 1;
          line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wp-block-awards .award-cat span {
  font-weight: bold;
  font-size: 16px;
}
.wp-block-awards .award-button {
  margin-left: 10px;
  margin-top: 15px;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .wp-block-awards .award-name {
    font-size: 15px;
  }
  .wp-block-awards .award-position {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1366px) {
  .wp-block-awards__tabs .adw-slide {
    max-width: 200px;
  }
  .wp-block-awards__tabs .adw-slide:after {
    background-size: 80px;
  }
  .wp-block-awards__tabs .adw-slide .adw-count {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .wp-block-awards__tabs .slick-track {
    display: flex;
  }
  .wp-block-awards__tabs .slick-slide:nth-child(n + 2) {
    padding-left: 15px;
  }
  .wp-block-awards__tabs .adw-slide:after {
    background-size: 60px;
  }
  .wp-block-awards__tabs .adw-slide .adw-title {
    font-size: 16px;
  }
  .wp-block-awards__tabs .adw-slide .adw-count {
    padding: 5px;
  }
}
@media only screen and (max-width: 990px) {
  .wp-block-awards__tabs .slick-track {
    display: flex;
  }
  .wp-block-awards__tabs .adw-slide .adw-count {
    padding: 3px;
  }
  .wp-block-awards__list .row {
    row-gap: 50px;
  }
  .wp-block-awards .award-item {
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
  }
  .wp-block-awards .award-info {
    padding: 0;
    margin-top: 15px;
  }
  .wp-block-awards .award-info li:nth-child(n + 2) {
    margin-top: 8px;
  }
  .wp-block-awards .award-vote {
    font-size: 15px;
  }
  .wp-block-awards .award-button {
    margin-left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .wp-block-awards .wp-block-page-heading h2 {
    font-size: 28px;
  }
  .wp-block-awards__tabs .slick-slide {
    padding-bottom: 20px;
  }
  .wp-block-awards__tabs .adw-slide:after {
    background-size: 40px;
  }
  .wp-block-awards__tabs .adw-slide .adw-title {
    font-size: 15px;
  }
  .wp-block-awards__tabs .adw-slide .adw-count {
    padding: 2px;
  }
}
.blur-image-color {
  position: absolute;
  top: 0;
  width: 100%;
}
.blur-image-color .blur-cover {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-animation: fadeInOut 9s infinite 2.5s;
  animation: fadeInOut 9s infinite 2.5s;
}
.blur-image-color .blur-cover.blur4 {
  left: 23.63vh;
}
.wp-block-vote-button {
  margin: 30px 0;
  text-align: center;
}
.wp-block-vote-button a {
  background-color: #17469e;
  border-color: #f3dc92;
  color: #f3dc92;
  padding: 10px 15px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 0 0 #a26f29;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}
.wp-block-vote-button a:hover,
.wp-block-vote-button a:focus {
  background-color: #d0a33e;
  color: #fff;
}
.vc-footer__info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.vc-footer__info ul li {
  font-size: 14px;
  background: url(../img/arrow-right.png) left top 3px no-repeat;
  padding-left: 15px;
}
.vc-footer__info ul li + li {
  margin-top: 10px;
}
.vc-footer__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 25px;
}
.vc-footer__menu ul {
  list-style: none;
  padding: 0;
}
.vc-footer__menu ul li a {
  font-size: 14px;
  color: #fff;
}
.vc-footer__menu ul li a:hover,
.vc-footer__menu ul li a:focus {
  color: #f3dc92;
}
.vc-footer__menu ul li + li {
  margin-top: 8px;
}
@media only screen and (max-width: 1366px) {
  .vc-footer__info ul li {
    background-size: 6px;
    background-position-y: 6px;
    padding-left: 10px;
  }
  .vc-footer__menu {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
  .vc-footer__menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
.el-loader,
.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  background: url(../img/loader.gif) rgba(255, 255, 255, 0.9) center no-repeat;
  background-size: 70px;
}
.loading {
  position: fixed;
  z-index: 9999;
}
.vc-contact__sticky-item img {
  width: auto;
}
.vc-contact-btn--inner img {
  max-width: 25px;
  border-radius: 0;
}
.vc-back-to-top {
  position: fixed;
}
.wp-block-awards .award-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (min-width: 992px) {
  .wp-block-awards ul.award-info {
    /* height: 153px; */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

}
.wp-block-awards .award-cat {
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* LynkNeo fix google with goole as required 2022/10/12 START */
.wp_google_login {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
/* LynkNeo fix google with goole as required 2022/10/12 END */

/* LynkNeo add 2022/10/13 START */
.wp-block-awards .award-avatar {
  position: relative;
  padding-top: calc(415*100%/315);
}
.wp-block-awards .award-avatar img {
  height: 100%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: transform 0.25s;
  z-index: 0;
  position: absolute;
}
.wp-block-awards .award-avatar:hover img {
  transform: scale(1.03) translate(-50%, -50%);
}
.award-info li {
	font-size: 15px;
}
/* LynkNeo add 2022/10/13 END */