/*!
Theme Name: Custom theme
Author: NamHuy
Author URI: ....
Description: A custom website theme for Vietnamese Brands.
Version: 0.0.1
License: GNU General Public License v2 or later
License URI: MIT
Text Domain: ...
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* reset
--------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Jolly+Lodger&family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
:root {
  --color-blue: #565fa3;
  --color-red: #f86f53;
  --color-yellowbold: #c18500;
  --color-yellow: #d8af54;
  --color-gray: #222;
  --font-title: 'Jolly Lodger', cursive;
  --font-text: 'Open Sans', sans-serif;
  --background-rgba: linear-gradient(90.07deg, #c18500 -0.48%, #d8af54 100.22%);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html {
  font-size: 20px;
  font-family: var(--font-text);
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 100vh;
}

a {
  text-decoration: none !important;
}

img,
a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

p {
  line-height: 1.5;
}

button, img, input, select {
  outline: none !important;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.clear {
  clear: both;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.5)), to(transparent));
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@media screen and (device-aspect-ratio: 2 / 3) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"] {
    font-size: 16px;
  }
}
/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"] {
    font-size: 16px;
  }
}
/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="tel"], input[type="url"] {
    font-size: 16px;
  }
}
/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="tel"], input[type="url"] {
    font-size: 16px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 75%;
  }
}
/* Navigation
--------------------------------------------- */
.pages {
  text-align: center;
}
.pages ul {
  border: 0 !important;
  margin-top: 30px !important;
}
.pages ul li {
  display: inline-block;
  margin: 0px 2.5px !important;
  border: 0 !important;
}
.pages ul li a {
  display: block;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid #ddd;
  color: #fff;
}
.pages ul li a:hover {
  border: 1px solid var(--color-yellow) !important;
  background-color: var(--color-yellow) !important;
  color: white;
}
.pages ul .active a {
  border: 1px solid var(--color-yellow);
  background: var(--color-yellow) !important;
  color: white;
}

/* general
--------------------------------------------- */
.breadcrumbs, .breadcrumb {
  text-align: left;
  padding: 25px 0px 25px 0px;
  position: relative;
  z-index: 8;
}
.breadcrumbs p, .breadcrumb p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}
.breadcrumbs p a, .breadcrumb p a {
  padding-right: 5px;
  color: #fff;
}
.breadcrumbs p a:hover, .breadcrumb p a:hover {
  color: var(--color-yellow);
}
.breadcrumbs p .separator, .breadcrumb p .separator {
  padding-right: 5px;
}
.breadcrumbs p .last, .breadcrumb p .last {
  color: var(--color-yellow);
}
.breadcrumbs .woocommerce-breadcrumb, .breadcrumb .woocommerce-breadcrumb {
  margin: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-yellow);
  font-weight: bold;
}
.breadcrumbs .woocommerce-breadcrumb a, .breadcrumb .woocommerce-breadcrumb a {
  font-weight: 400;
}

.page-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 450px;
  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;
  position: relative;
}
.page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.5);
}
.page-banner .title {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .page-banner {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .page-banner {
    height: 150px;
  }
}
.site-main {
  padding: 30px 0px;
}
.site-main .page-header {
  margin-bottom: 20px;
}
.site-main .page-header .page-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.site-main .page-header .page-title span {
  color: var(--color-yellow);
}

.btn-custom {
  height: 43px;
  line-height: 43px;
  background: rgba(255, 255, 255, 0.4);
  min-width: 181px;
  font-size: 20px;
  padding-left: 25px;
  color: #fff;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 21.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-custom:hover {
  background: #B59748;
  color: #fff;
}
.btn-custom span {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: block;
  background: #B59748;
  text-align: center;
  line-height: 35px;
}

.mb-30 {
  margin-bottom: 30px;
}

.page-defure {
  overflow: hidden;
}

/* Posts and pages
--------------------------------------------- */
.the_content {
  text-align: justify;
  line-height: 1.5;
  color: #000;
  font-size: 16px;
  font-family: var(--font-content);
}
.the_content h1, .the_content h2, .the_content h3, .the_content h4, .the_content h5, .the_content h6{
	margin-bottom:1rem;
}
.the_content img {
  width: 100%;
}
.the_content p {
  color: #000;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.the_content p:last-child {
  margin-bottom: 0;
}
.the_content p a {
  color: var(--color-blue);
}
.the_content ul {
  list-style: disc;
  padding-left: 18px;
  padding-bottom: 5px;
}
.the_content ul li {
  color: #000;
  line-height: 1.5;
  margin-bottom: 10px;
}
.the_content ul li a {
  color: #ff5912;
}
.the_content ol {
  list-style: decimal;
  padding-left: 18px;
  padding-bottom: 5px;
}
.the_content ol li {
  color: #000;
  line-height: 1.5;
  margin-bottom: 10px;
}
.the_content ol li a {
  color: #ff5912;
}
.the_content blockquote {
  margin-top: 50px;
  margin-bottom: 1rem;
  max-width: 70%;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.4);
  padding: 10px;
}
.the_content blockquote:before {
  color: #C1A044;
  text-align: justify;
  font-family: Oleo Script;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: 90px;
  content: '"';
  padding-right: 10px;
  position: relative;
  top: -20px;
}
.the_content blockquote p {
  margin: 0 !important;
}
.the_content code {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  font-size: .85rem;
  color: #e83e8c;
  line-height: 1.5;
}
.the_content table > tbody > tr > td, .the_content table > tbody > tr > th, .the_content table > tfoot > tr > td, .the_content table > tfoot > tr > th, .the_content table > thead > tr > td, .the_content table > thead > tr > th {
  border: 1px solid #ddd;
  padding: 7px 10px;
  line-height: 1.5;
}
.the_content iframe {
  margin: auto;
}
.the_content .syntaxhighlighter {
  padding: 10px 0;
}

/* Header
--------------------------------------------- */
.icon-menu {
  position: fixed;
  z-index: 99;
  top: 40px;
  right: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.icon-menu .active {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding: 15px 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.icon-menu .js-menu {
  -webkit-transition: all .3s;
  transition: all .3s;
}
.icon-menu img {
  max-width: 100px;
}
.icon-menu ul {
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-menu ul li {
  display: block;
	position:relative;
}
.icon-menu li:hover .sub-menu {
  display: block;
}
.icon-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 88;
  display: none;
	padding:0;
}
.icon-menu li .sub-menu li {
  line-height: 1;
}
.icon-menu li .sub-menu li:last-child a {
  border: 0;
}
.icon-menu li .sub-menu li a:after {
  display: none;
}
.icon-menu ul li a {
  padding: 10px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
	font-size:18px;
	font-weight:bold;
	text-transform:uppercase;
	color:#fff;
}
.icon-menu ul li a img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
}
.icon-menu ul li a:hover {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.53%, rgba(2, 2, 2, 0.5)), color-stop(98.95%, rgba(255, 255, 255, 0.5)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.5) 0.53%, rgba(255, 255, 255, 0.5) 98.95%);
}
.icon-menu ul .current-lang {
  display: none;
}

.section-menu {
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  font-family: var(--font-title);
  display: none;
}
.section-menu .images img {
  max-width: 100%;
}
.section-menu .menu {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 550px;
  margin-left: 160px;
}
.section-menu ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.section-menu ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.section-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 7.5px;
  color: #fff;
}
.section-menu ul li a:hover {
  color: var(--color-yellow);
}
.section-menu ul li a span {
  display: block;
  margin-right: 50px;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.53%, rgba(2, 2, 2, 0.2)), color-stop(98.95%, rgba(255, 255, 255, 0.1)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.2) 0.53%, rgba(255, 255, 255, 0.1) 98.95%);
  padding: 30px;
  border-radius: 50%;
}
.section-menu ul li a span img {
  width: 60px;
  height: 60px;
  display: block;
  -webkit-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

.solica {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
}
.solica li {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.53%, rgba(2, 2, 2, 0.2)), color-stop(98.95%, rgba(255, 255, 255, 0.1)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.2) 0.53%, rgba(255, 255, 255, 0.1) 98.95%);
  border-radius: 50%;
  padding: 12px;
  margin: 5px 0px;
}
.solica li:hover {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.53%, rgba(2, 2, 2, 0.5)), color-stop(98.95%, rgba(255, 255, 255, 0.4)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.5) 0.53%, rgba(255, 255, 255, 0.4) 98.95%);
}
.solica li a {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  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;
  background: -webkit-gradient(linear, left top, right top, from(#c6a54a), color-stop(50%, #ffca39), to(#c6a54a));
  background: linear-gradient(90deg, #c6a54a 0%, #ffca39 50%, #c6a54a 100%);
}

/* Home
--------------------------------------------- */
.site-home {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-home .meteor-1 {
  position: absolute;
  top: 215px;
  left: 60%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.1s linear infinite;
          animation: meteor 6.1s linear infinite;
}
.site-home .meteor-1:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-2 {
  position: absolute;
  top: 299px;
  left: 20%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 9.4s linear infinite;
          animation: meteor 9.4s linear infinite;
}
.site-home .meteor-2:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-3 {
  position: absolute;
  top: 267px;
  left: 20%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.6s linear infinite;
          animation: meteor 6.6s linear infinite;
}
.site-home .meteor-3:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-4 {
  position: absolute;
  top: 75px;
  left: 10%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7.4s linear infinite;
          animation: meteor 7.4s linear infinite;
}
.site-home .meteor-4:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-5 {
  position: absolute;
  top: 216px;
  left: 98%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 9.4s linear infinite;
          animation: meteor 9.4s linear infinite;
}
.site-home .meteor-5:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-6 {
  position: absolute;
  top: 51px;
  left: 34%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.1s linear infinite;
          animation: meteor 6.1s linear infinite;
}
.site-home .meteor-6:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-7 {
  position: absolute;
  top: 261px;
  left: 94%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.9s linear infinite;
          animation: meteor 6.9s linear infinite;
}
.site-home .meteor-7:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-8 {
  position: absolute;
  top: 131px;
  left: 88%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7s linear infinite;
          animation: meteor 7s linear infinite;
}
.site-home .meteor-8:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-9 {
  position: absolute;
  top: 64px;
  left: 83%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7.2s linear infinite;
          animation: meteor 7.2s linear infinite;
}
.site-home .meteor-9:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-10 {
  position: absolute;
  top: 129px;
  left: 68%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 8.9s linear infinite;
          animation: meteor 8.9s linear infinite;
}
.site-home .meteor-10:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-11 {
  position: absolute;
  top: 197px;
  left: 63%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 9.7s linear infinite;
          animation: meteor 9.7s linear infinite;
}
.site-home .meteor-11:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-12 {
  position: absolute;
  top: 113px;
  left: 89%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7.4s linear infinite;
          animation: meteor 7.4s linear infinite;
}
.site-home .meteor-12:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-13 {
  position: absolute;
  top: 108px;
  left: 17%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7.5s linear infinite;
          animation: meteor 7.5s linear infinite;
}
.site-home .meteor-13:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-14 {
  position: absolute;
  top: 52px;
  left: 66%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 3.4s linear infinite;
          animation: meteor 3.4s linear infinite;
}
.site-home .meteor-14:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-15 {
  position: absolute;
  top: 230px;
  left: 90%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 8.2s linear infinite;
          animation: meteor 8.2s linear infinite;
}
.site-home .meteor-15:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-16 {
  position: absolute;
  top: 100px;
  left: 41%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6s linear infinite;
          animation: meteor 6s linear infinite;
}
.site-home .meteor-16:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-17 {
  position: absolute;
  top: 214px;
  left: 20%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7.9s linear infinite;
          animation: meteor 7.9s linear infinite;
}
.site-home .meteor-17:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-18 {
  position: absolute;
  top: 231px;
  left: 78%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 5.7s linear infinite;
          animation: meteor 5.7s linear infinite;
}
.site-home .meteor-18:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-19 {
  position: absolute;
  top: 175px;
  left: 45%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 9.3s linear infinite;
          animation: meteor 9.3s linear infinite;
}
.site-home .meteor-19:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-20 {
  position: absolute;
  top: 92px;
  left: 64%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 7.7s linear infinite;
          animation: meteor 7.7s linear infinite;
}
.site-home .meteor-20:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-21 {
  position: absolute;
  top: 225px;
  left: 21%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 5.8s linear infinite;
          animation: meteor 5.8s linear infinite;
}
.site-home .meteor-21:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-22 {
  position: absolute;
  top: 163px;
  left: 88%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.1s linear infinite;
          animation: meteor 6.1s linear infinite;
}
.site-home .meteor-22:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-23 {
  position: absolute;
  top: 103px;
  left: 44%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 5.3s linear infinite;
          animation: meteor 5.3s linear infinite;
}
.site-home .meteor-23:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-24 {
  position: absolute;
  top: 181px;
  left: 98%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 8.7s linear infinite;
          animation: meteor 8.7s linear infinite;
}
.site-home .meteor-24:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-25 {
  position: absolute;
  top: 183px;
  left: 69%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 3.4s linear infinite;
          animation: meteor 3.4s linear infinite;
}
.site-home .meteor-25:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-26 {
  position: absolute;
  top: 123px;
  left: 99%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.3s linear infinite;
          animation: meteor 6.3s linear infinite;
}
.site-home .meteor-26:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-27 {
  position: absolute;
  top: 102px;
  left: 21%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 5.7s linear infinite;
          animation: meteor 5.7s linear infinite;
}
.site-home .meteor-27:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-28 {
  position: absolute;
  top: 96px;
  left: 28%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 4.8s linear infinite;
          animation: meteor 4.8s linear infinite;
}
.site-home .meteor-28:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-29 {
  position: absolute;
  top: 182px;
  left: 49%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6.8s linear infinite;
          animation: meteor 6.8s linear infinite;
}
.site-home .meteor-29:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}
.site-home .meteor-30 {
  position: absolute;
  top: 170px;
  left: 73%;
  width: 300px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  -webkit-animation: meteor 6s linear infinite;
          animation: meteor 6s linear infinite;
}
.site-home .meteor-30:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 15px 3px #fff;
          box-shadow: 0 0 15px 3px #fff;
}

@-webkit-keyframes meteor {
  0% {
    opacity: 1;
    margin-top: -300px;
    margin-right: -300px;
  }
  12% {
    opacity: 0;
  }
  15% {
    margin-top: 300px;
    margin-left: -600px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes meteor {
  0% {
    opacity: 1;
    margin-top: -300px;
    margin-right: -300px;
  }
  12% {
    opacity: 0;
  }
  15% {
    margin-top: 300px;
    margin-left: -600px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.utilities-wrap {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.history {
  display: none;
}

.utilities-list {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-30%);
  transform: translateY(-50%) translateX(-30%);
  z-index: 8;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.utilities-spin {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 555;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.utilities-list-item {
  width: 100%;
  height: 100%;
}

.utilities-list-item ul {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  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;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.utilities-circle {
  position: relative;
  width: 70vmin;
  height: 100vmin;
  border-radius: 100%;
  z-index: 2;
}

.utilities-list-item ul li {
  width: 210px;
  height: 50vmin;
  list-style: none;
  position: absolute;
  top: 0;
  margin: 0 0 0 -35%;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  left: 46.5%;
}
@media screen and (min-width: 1200px) {
  .utilities-list-item ul li:first-child {
    top: 15px;
  }
  .utilities-list-item ul li:last-child {
    top: -33px;
  }
  .utilities-list-item ul li:nth-child(4) {
    top: -15px;
  }
}

.utilities-list-item.active ul li {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

.icon-utilitis-wrap {
  position: relative;
}

.utilities-list-item ul li a {
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.icon-utilitis {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 30px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  /* border-left: 4px solid #7e7e80;
  border-right: 4px solid #7e7e80; */
}

.utilities-list-item ul li img {
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  width: 50px;
  transition: all 400ms ease;
}

.ulilities-bg img {
  max-height: 100vh;
}

.ulilities-bg img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ulilities-content {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 8;
  width: calc(100% - 70vmin);
  height: 100vmin;
  padding: 0px 15px;
  /* text-align: center;
  -webkit-animation: fadeInUp 0.6s linear 1s forwards;
  animation: fadeInUp 0.6s linear 1s forwards;
  opacity: 0; */
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes utilitiesContent {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes utilitiesContent {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.utilitie-image-item {
  -webkit-animation: fadeInRight 700ms ease 1;
  animation: fadeInRight 700ms ease 1;
}

.decription-for-utilitie-p {
  -webkit-animation: fadeInRight 700ms ease 1;
  animation: fadeInRight 700ms ease 1;
}

/* .decription-for-utilities {
	-webkit-animation: utilitiesContent 700ms ease 1;
	animation: utilitiesContent 700ms ease 1;
} */
.utiliti-content-wrap {
  display: none;
}

.utiliti-content-active {
  display: block;
}

.decription-for-utilities-wrap {
  color: #000;
}

.decription-for-utilities-wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 24px;
}

.decription-for-utilities-wrap h3 {
  color: #000;
  font-size: 25px;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.utilities-wrap .decription-for-utilitie-p {
  font-size: 20px;
  line-height: 1.4;
  font-weight: normal;
}

.utilities-wrap .decription-for-utilitie-p p:last-child {
  margin-bottom: 0;
}

.utilities-wrap .decription-for-utilitie-p p:not(:last-child) {
  display: block;
  margin-bottom: 30px;
}

.icon-utilitis .icon-inner {
  font-size: 16px;
  color: #7e7e80;
  margin-bottom: -20px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 275px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.utilities-list-item ul li a.active .icon-utilitis {
  border-left-color: #545454;
  border-right-color: #545454;
}

.utilities-list-item ul li a.active .icon-utilitis .icon-inner {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: -55px;
}

.utilities-list-item ul {
  position: relative;
}

.icon-utilitis .icon-inner {
  position: relative;
}

.utilities-list ul li .icon-utilitis span {
  padding-left: 25px;
  position: absolute;
  top: 50%;
  left: 150px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.utilities-list-item ul li .active .icon-inner .img img {
  width: 80px;
  height: 80px;
}

.utilities-list-item ul li .active .icon-utilitis span {
  padding-left: 35px;
  letter-spacing: 1.5px;
}

.utilities-list-item ul:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  z-index: 2;
  border-radius: 9999px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.utilities-list-item ul:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 150vw;
  height: 150vw;
  z-index: 1;
  border-radius: 9999px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.utilities-list-item ul li {
  z-index: 3;
}

.utilities-list-item ul li {
  /* background: rgb(153 204 0 / 10%); */
}

.utilities-list-item ul li .line-item-middle-before,
.utilities-list-item ul li .line-item-middle-after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  left: 50%;
  margin-left: -2px;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}

.utilities-list-item ul li a .icon-utilitis:after {
  content: "";
  position: absolute;
  top: -103px;
  left: 50%;
  margin-left: -7px;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  opacity: 0;
}

.utilities-list-item ul li a.active .icon-utilitis:after {
  opacity: 1;
}

.utilities-list-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  display: block;
  width: calc(100% + 180px);
  height: calc(70% + 190px);
  z-index: 1;
  border-radius: 9999px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  opacity: 0.2;
}

.utilities-section-info {
  position: absolute;
  z-index: 4;
  left: 47%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-25%);
  transform: translateY(-50%) translateX(-25%);
}
.utilities-section-info img {
  max-width: 250px;
}
.utilities-section-info .img {
  position: relative;
}
.utilities-section-info .img .img2 {
  position: absolute;
  top: 50%;
  left: -21%;
  width: 140%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.utilities-section-info .img1 {
  -webkit-animation: spin 4s linear infinite;
          animation: spin 4s linear infinite;
}

.utilities-section-title {
  font-size: 64px;
  font-weight: bold;
  color: #df011c;
}

.utilities-section-sub-title {
  font-size: 40px;
  color: #7e7e80;
}

.ulilities-bg,
.ulilities-bg img {
  height: 100%;
}

.utilities-wrap {
  height: 100%;
}

.utilitie-image-item {
  max-width: 500px;
  margin-bottom: 50px;
}

.utilitie-image-item-ratio {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  position: relative;
}

.utilitie-image-item-ratio-inner {
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.utilitie-image-item-ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: 2;
}

.utilitie-image-item-ratio:after {
  content: "";
  position: absolute;
  top: 8px;
  left: -8px;
  bottom: -8px;
  right: 8px;
  border: 1px solid #DF011C;
}

.utilities-list ul li .img:hover {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.53%, rgba(2, 2, 2, 0.5)), color-stop(98.95%, rgba(255, 255, 255, 0.5)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.5) 0.53%, rgba(255, 255, 255, 0.5) 98.95%);
}

@media (max-width: 1440px) {
  .utilities-section-title {
    font-size: 40px;
  }

  .utilities-section-sub-title {
    font-size: 25px;
  }

  .icon-utilitis .icon-inner {
    font-size: 16px;
    margin-bottom: -10px;
  }

  .utilities-list-item ul li a.active .icon-utilitis .icon-inner {
    margin-bottom: -25px;
  }

  .ulilities-content {
    padding: 0px 15px;
  }

  .utilitie-image-item {
    max-width: 400px;
    margin-bottom: 30px;
  }

  .utilities-wrap .decription-for-utilitie-p p:not(:last-child) {
    margin-bottom: 20px;
  }

  .utilities-wrap .decription-for-utilitie-p {
    font-size: 18px;
  }
}
.utilities-list-item ul li .line-item-middle-before,
.utilities-list-item ul li .line-item-middle-after {
  pointer-events: none;
}

.utilities-list .utilities-list-item {
  font-family: var(--font-title);
}
.utilities-list ul li a {
  -webkit-transition: all .3s;
  transition: all .3s;
}
.utilities-list ul li .active .img {
  padding: 30px;
}
.utilities-list ul li .img {
  background: -webkit-gradient(linear, right top, left top, color-stop(0.53%, rgba(2, 2, 2, 0.2)), color-stop(98.95%, rgba(255, 255, 255, 0.1)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.2) 0.53%, rgba(255, 255, 255, 0.1) 98.95%);
  border-radius: 50%;
  padding: 20px;
}
.utilities-list ul li .img img {
  -webkit-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

.custom-width {
  max-width: 772px;
  width: 100%;
}

.customflex {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  overflow-y: hidden;
}
.customflex::-webkit-scrollbar-track {
  border-radius: 30px;
}
.customflex::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
  height: 20px;
  border-radius: 30px;
}
.customflex::-webkit-scrollbar-thumb {
  background-color: var(--color-yellow);
}

.h-title {
  font-family: var(--font-title);
}

.custom-content .images {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 50%;
}
.custom-content .images img {
  position: absolute;
  top: 0%;
  left: 0%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.custom-content img {
  border-radius: 10px;
}
.custom-content h3 a {
  display: block;
  color: #B59748;
  font-size: 300%;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 20px 0px 5px 0px;
}
.custom-content p {
  color: #FFF;
  text-align: justify;
  font-family: Open Sans;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 30px;
}

.title-main .heading {
  display: block;
  color: #B59748;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px 0px 5px 0px;
}
.title-main p {
  color: #FFF;
  text-align: justify;
  font-family: Open Sans;
  font-size: 100%;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 30px;
}

.ratio {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 50%;
}
.ratio img {
  position: absolute;
  top: 0%;
  left: 0%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.site-gallery .ratio {
  margin-bottom: 20px;
  padding-bottom: 60%;
}
.site-gallery .row-custom {
  margin: 0px -10px;
}
.site-gallery .row-custom .col-custom {
  padding: 0px 10px;
}
.site-gallery .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-gallery .nav li a {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 0;
  line-height: 38px;
  text-align: center;
  margin: 0px 5px;
}
.site-gallery .nav li a:hover {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}
.site-gallery .nav li .active {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}

.items-news {
  margin-bottom: 15px;
}
.items-news:hover h3 a {
  color: var(--color-yellow);
}
.items-news .ratio {
  padding-bottom: 60%;
}
.items-news h3 a {
  display: block;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.items-news ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0px;
}
.items-news ul li {
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.items-news ul li svg {
  width: 15px;
  margin-right: 5px;
}

.site-news .title-main {
  margin-bottom: 20px;
}
.site-news .title-main p {
  margin-bottom: 20px;
}
.site-news .items-news {
  padding-bottom: 15px;
  border-bottom: 1px solid #555;
}
.site-news .items-news:last-child {
  border-bottom: 0;
}
.site-news .items-news ul {
  font-size: 80%;
}
.site-news .items-news p {
  font-size: 80%;
  margin-bottom: 0;
}

.site-contact iframe {
  width: 100%;
  border-radius: 20px;
  height: 370px;
}
.site-contact ul {
  margin-top: 50px;
}
.site-contact ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-contact ul li svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  max-width: 15px;
  height: 15px;
}
.site-contact ul li span {
  padding-left: 10px;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mobile-custom {
  display: none;
}

/* Footer
--------------------------------------------- */
/* Footer
--------------------------------------------- */
.page-services {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services-custom::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.services-custom::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.services-custom::-webkit-scrollbar-thumb {
  background-color: #666;
}
.services-custom .row-custom {
  margin: 0px -10px;
}
.services-custom .col-custom {
  padding: 0px 10px;
}
.services-custom .col-custom:first-child .items-services {
  margin-top: 0;
}
.services-custom .col-custom:nth-child(2) .items-services {
  margin-top: 0;
}

.widget img {
  width: 100%;
}

.items-services {
  margin-top: 30px;
}
.items-services:hover h3 a {
  color: #fff;
}
.items-services .images {
  padding-bottom: 45%;
}
.items-services .images span {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.items-services h3 a {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-yellow);
  font-family: var(--font-title);
  display: block;
  margin-top: 10px;
}

.site-page {
  width: 100%;
  height: 100%;
}
.site-page .page-single-content {
  background-color: #fff;
  padding: 30px;
  height: calc(100vh - 110px);
}
.site-page .page-single-content .services-single-content{
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 20px;
}
.site-page .page-single-content .services-single-content::-webkit-scrollbar-track {
  border-radius: 30px;
}
.site-page .page-single-content .services-single-content::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
  max-height: 50%;
  height: 50%;
  border-radius: 30px;
}
.site-page .page-single-content .services-single-content::-webkit-scrollbar-thumb {
  background-color: var(--color-yellow);
}
.site-page .page-single-content .services-single-content::-webkit-scrollbar-track {
  max-height: 50%;
  height: 50%;
}

@media screen and (min-width: 1200px) {
  .sidebar-services {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .sidebar-services {
    padding-bottom: 30px;
  }
}
.sidebar-services ul {
  list-style: disc;
  display: block;
  padding-left: 15px;
}
.sidebar-services ul li a {
  color: #8B8B8B;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  display: block;
  padding: 0;
}
.sidebar-services ul li a:hover {
  color: #000;
  font-weight: bold;
}
.sidebar-services ul li .active {
  color: var(--color-yellow);
  font-weight: bold;
}

.services-single-content .items {
  margin-bottom: 30px;
}
.services-single-content .items:last-child {
  margin-bottom: 0;
}
.services-single-content .items:nth-child(2n+2) .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.services-single-content img {
  min-height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-single-content .title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-yellow);
  margin-bottom: 30px;
  position: relative;
}
.services-single-content .title:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--color-yellow);
}
.services-single-content .the_content strong {
  font-size: 20px;
}
.services-single-content .the_content p {
  font-size: 16px;
  margin-bottom: 1rem;
}
.services-single-content .the_content p:last-child {
  margin-bottom: 0;
}

.z-index-custom {
  position: relative;
  z-index: 5;
}

.relative {
  position: relative;
}
.relative .bg-services {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 45%;
}
.relative .bg-services svg {
  width: 100%;
}

.page-single-about {
  position: relative;
}
.page-single-about .download {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 5;
  font-size: 16px;
  color: #fff;
  background-color: #FBB03B;
  border-radius: 30px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-single-about .download span {
  border-radius: 50%;
  padding: 5px;
  margin-right: 10px;
  background-color: #fff;
}
.page-single-about .sidebar-services ul li a:hover {
  font-weight: 400 !important;
}

.single-about {
  position: relative;
}
.single-about .img {
      position: absolute;
    bottom: 0;
    right: 75px;
    max-width: 370px;
    margin-bottom: 0;
}
.single-about .img img {
  width: 100%;
  display: block;
}
.single-about strong {
  font-size: 100% !important;
}
.single-about h2 {
  color: #B59748;
  font-family: var(--font-title);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}

.single-about .content{
	background: #FBB03B;
    padding: 40px 50px;
    width: 75%;
    padding-right: 200px;
    text-align: left;
}
.single-about .content p{
	color: #000;

font-family: "Open Sans";
font-size: 16px;
font-style: italic;
font-weight: 400;
line-height: 22px;
}
.single-about .content .content_1{
	border-radius: 29px;
background: rgba(255, 255, 255, 0.40);

color: #000;

text-align: justify;
font-family: "Open Sans";
font-size: 16px;
font-style: normal;
font-weight: 700;
	padding:20px 30px;
line-height: 22px; 
}
.single-about h3 {
  border-radius: 26px;
    font-family: Open Sans;
    font-size: 25px;
    font-style: normal;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    max-width: 100%;
    margin: 70px auto;
    color: #FBB03B;
  position:relative;
}
.single-about h3:before {
    color: #FBB03B;
    text-align: justify;
    font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    content: ',,';
    position: absolute;
    top: -80px;
    left: 0;
    transform: rotate(180deg);
}
.single-about h3:after {
    color: #FBB03B;
    text-align: justify;
    font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
    font-size: 96px;
    font-style: normal;
    font-weight: 400;
    content: ',,';
    position: absolute;
    bottom: -70px;
    right: 0;
}
.single-about ul{
  margin-bottom: 2rem;
}
.single-about h4 {
  background: url(../svg/bg-content.svg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #000;
  font-family: Open Sans;
  font-size: 16px;
  text-align: left;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
  padding: 20px 315px 20px 40px;
}
.single-about blockquote {
  position: relative;
  z-index: 5;
}

.items-user {
  text-align: center;
  margin-bottom: 30px;
}
.items-user img {
  max-width: 220px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.items-user p {
  margin-bottom: 0;
  font-size: 16px;
  color: #8B8B8B;
}
.items-user h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin: 5px 0px;
}

.slick-gallery2 .items {
  position: relative;
}
.slick-gallery2 .items .content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 50px 30px 20px 65px;
  text-align: left;
  max-width: 700px;
  background: -webkit-gradient(linear, right top, left top, color-stop(42.26%, rgba(2, 2, 2, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(270deg, rgba(2, 2, 2, 0.6) 42.26%, rgba(0, 0, 0, 0) 100%);
}
.slick-gallery2 .items .content h3 {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}
.slick-gallery2 .items .content h3:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #fff;
}
.slick-gallery2 .items .content p {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0;
}
.slick-gallery2 .items .img {
  position: relative;
  overflow: hidden;
  padding-bottom: 64%;
  border-radius: 10px;
}
.slick-gallery2 .items .img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slick-gallery2 .slick-dots {
  bottom: -30px;
}
.slick-gallery2 .slick-dots li button:before {
  color: #d9d9d9;
  font-size: 10px;
}
.slick-gallery2 .slick-dots .slick-active button:before {
  color: var(--color-yellow);
}

.page-single-gallery {
  background: transparent;
  background-color: transparent !important;
  overflow: inherit !important;
}

.page-archive-custom{
  padding-bottom: 30px !important;
  overflow: auto;
}
.site-page .page-single-content{
	padding-bottom:10px !important;
  overflow: auto;
}
.page-archive-custom::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.page-archive-custom::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.page-archive-custom::-webkit-scrollbar-thumb {
  background-color: #666;
}

.site-page .page-single-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.site-page .page-single-content::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.site-page .page-single-content::-webkit-scrollbar-thumb {
  background-color: #666;
}
.page-archive-custom .title {
  margin-bottom: 30px;
}
.page-archive-custom .title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-archive-custom .title h2 svg {
  width: 80px;
}
.page-archive-custom .title h2 svg path {
  fill: #fff;
}
.page-archive-custom .title h2 span {
  margin-left: 15px;
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: var(--color-yellow);
  padding-bottom: 15px;
  position: relative;
}
.page-archive-custom .title h2 span:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85px;
  height: 2px;
  background: #C1A044;
}
.page-archive-custom .items:hover h3 a {
  color: var(--color-yellow);
}
.page-archive-custom .items .ratio {
  padding-bottom: 69%;
}
.page-archive-custom .items ul {
  margin: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-archive-custom .items ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #000;
  margin-right: 20px;
}
.page-archive-custom .items ul li svg {
  width: 20px;
  margin-right: 10px;
  fill: #333;
}
.page-archive-custom .items ul li svg path {
  fill: #333;
}
.page-archive-custom .items h3 a {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.page-archive-custom .items p {
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 0;
  color: #000;
  font-weight: 400;
}
.page-archive-custom .items-news {
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.page-archive-custom .items-news:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.page-archive-custom .items-news:hover h3 a {
  color: var(--color-yellow);
}
.page-archive-custom .items-news h3 a {
  font-size: 18px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page-archive-custom .items-news p {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page-archive-custom svg {
  width: 20px;
  margin-right: 10px;
  fill: #333;
}
.page-archive-custom svg path {
  fill: #333;
}
.page-archive-custom .pages li a {
  border-width: 2px;
  border-color: #808080;
  border-radius: 50%;
  padding: 0;
  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;
  width: 40px;
  height: 40px;
  color: #808080;
  font-weight: bold;
}
.page-archive-custom .pages .active a {
  color: #fff;
  border-color: var(--color-yellow);
}

.row-custom {
  margin: 0px -10px;
}
.row-custom .col-custom {
  padding: 0px 10px;
}

.sidebar-news {
  padding-right: 30px;
}
.sidebar-news .heading {
  color: #030303;
  text-align: justify;
  font-family: Open Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.sidebar-news .items {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9e9e9;
}
.sidebar-news .items:hover h3 a {
  color: var(--color-yellow);
}
.sidebar-news .items .ratio {
  padding-bottom: 80%;
}
.sidebar-news .items h3 a {
  display: block;
  color: #212121;
  text-align: left;
  font-family: Open Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.single-news-custom .title {
  margin-bottom: 35px;
}
.single-news-custom .title h1 {
  color: #B59748;
  text-align: left;
  font-family: Open Sans;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.single-news-custom .title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-news-custom .title ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10px;
  color: #828282;
  font-family: Montserrat;
}
.single-news-custom .title ul li:last-child {
  padding-left: 30px;
}
.single-news-custom .title ul li svg {
  width: 20px;
  margin-right: 5px;
}

.nav-custom{
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-custom .icon{
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 0;
  line-height: 38px;
  text-align: center;
  margin: 0px 5px;
  cursor: pointer;
}
.nav-custom .icon:hover{
  border-color: var(--color-yellow);
  background: var(--color-yellow);
  color: #fff;
}