<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --theme-color: #bdd239;
  --theme-color2: #012313;
  --theme-color3: #7a9a00;
  --text-color: #ededed;
  --white-color: #fff;
  --title-color: #000;
  --body-color: #444;
  --title-font: "Epilogue", sans-serif;
  --body-font: "Epilogue", sans-serif;
  --subtitle-font: "Epilogue", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --flaticon: "Flaticon";
  --ripple-ani-duration: 5s;
}

/*------------------- 1.2. Mixin -------------------*/
/*------------------- 1.3. Function -------------------*/
/*------------------- 1.4. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]) {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  border-top: 1px solid var(--border-color);
  padding: 9px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

p a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin: 0 0 15px 0;
  color: var(--body-color);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

/* Large devices */
@media (max-width: 1199px) {
  h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 22px;
  }
}
/* Medium devices */
@media (max-width: 992px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
}
/* Extra small devices */
@media (max-width: 576px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
}
/*------------------- 1.5. Extend -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container {
    --bs-gutter-x: .75rem;
    max-width: calc(1220px + var(--bs-gutter-x) * 2);
  }
}

.container-style1 {
  max-width: 1320px;
  margin: 0 auto;
}

/*------------------- 2.2. Grid -------------------*/
/*------------------- 2.3. Input -------------------*/

/* Firefox */

/* Extra small devices */
/*------------------- 2.4. Slick Slider -------------------*/

/* Extra large devices */
/* Medium Large devices */
/* Medium devices */
/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  height: 100%;
  transition: all ease 0.8s;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 25px;
  padding-top: 40px;
  display: inline-block;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 36px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle i {
  color: #000;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #ffffff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -1000px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper .vs-menu-area:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  max-height: 150px;
  background-color: var(--theme-color);
  opacity: 0.1;
  z-index: -1;
}

.vs-mobile-menu {
  overflow-y: scroll;
  max-height: 58vh;
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.vs-mobile-menu::-webkit-scrollbar {
  display: none;
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  list-style-type: none;
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 17px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: #000000;
}
.vs-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}
.vs-mobile-menu ul li a:hover {
  color: var(--theme-color);
}
.vs-mobile-menu &gt; ul {
  padding: 0 40px;
  margin-top: 10px;
}
.vs-mobile-menu &gt; ul &gt; li:last-child {
  border-bottom: none;
}

.vs-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 50%;
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .vs-mobile-menu &gt; ul {
    padding: 0 20px;
  }
}

/*------------------- 2.6. Date &amp; Time Picker -------------------*/

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
/*------------------- 3.2. Buttons -------------------*/
.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 9696;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #000;
  background-color: var(--theme-color);
  font-size: 20px;
  /* Extra large devices */
  /* Medium devices */
}
@media (max-width: 1500px) {
  .scrollToTop {
    right: 15px;
  }
}
@media (max-width: 992px) {
  .scrollToTop {
    right: 15px;
  }
}
.scrollToTop:hover {
  color: #000;
}

.btn-style1 {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 60px;
  height: 60px;
  border-radius: 50px;
  background: var(--theme-color);
  display: inline-block;
  padding: 0 42px;
  cursor: pointer;
  border: 0;
}
.btn-style1:hover {
  background-color: var(--theme-color2);
  color: #fff;
  border-color: transparent;
}

/*------------------- 3.3. Titles -------------------*/

/* Extra small devices */
/*------------------- 3.4. Common -------------------*/

/* Large devices */
/*------------------- 3.6. Font -------------------*/

/* Large devices */
/*------------------- 3.7. Background -------------------*/

/* Medium Large devices */
/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

/*------------------- 3.9. Overlay -------------------*/

/*------------------- 3.10. Animation -------------------*/
/*------------------- 3.11. Flaticon -------------------*/
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff2") format("woff2"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.wp-block-archives a:not(:hover) {
  color: inherit;
}

/*------------------- 4.2. Header  -------------------*/
.header-layout1 {
  position: relative;
  z-index: 9999;
}

.main-menu {
  margin-left: 85px;
}
.main-menu a {
  display: block;
  position: relative;
  font-family: var(--body-font);
  font-weight: 500;
  color: #000000;
  font-size: 16px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu a {
    font-size: 14px;
  }
}
.main-menu a:hover {
  color: var(--theme-color);
}
.main-menu a:hover::before {
  background-color: var(--theme-color);
}
.main-menu &gt; ul &gt; li {
  margin: 0 15px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .main-menu &gt; ul &gt; li {
    margin: 0 10px;
  }
}
.main-menu ul {
  margin: 0;
  padding: 0;
  border: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}

.menu-style1 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .menu-style1 {
    display: none !important;
  }
}

.menu-style1 &gt; ul &gt; li &gt; a {
  position: relative;
  padding: 29px 0 26px 20px;
}
.menu-style1 &gt; ul &gt; li &gt; a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -11px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--theme-color);
  border-radius: 50px;
  transition: all ease 0.8s;
}

.header-main {
  background-color: #fff;
  border-bottom: 1px solid #000000;
  padding: 10px 0;
}

.vs-menu-toggle {
  margin-right: 15px;
  /* Large devices */
}
.vs-menu-toggle i {
  color: #000;
}
@media (max-width: 1199px) {
  .vs-menu-toggle {
    display: inline-block !important;
  }
}

.btn-style1.v2 {
  height: 54px;
  line-height: 54px;
  padding: 0 39px;
  background-color: #000000;
  margin-top: 10px;
}
.btn-style1.v2:hover {
  background-color: var(--theme-color);
  color: #000;
}

/*------------------- 4.3. Footer  -------------------*/

.widget-about-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .widget-about-content {
    margin-bottom: 50px;
  }
}
.widget-about-content p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

/* Small devices */
@media (max-width: 767px) {
  .logo-box {
    margin-bottom: 50px;
  }
}

.copyright-wrap {
  padding: 48px 0 45px;
  background-color: #000000;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .copyright-wrap {
    padding-top: 20px;
  }
}
.copyright-wrap p {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.copyright-wrap p a {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.6px;
  text-decoration-line: underline;
  margin-left: 5px;
}
.copyright-wrap p a:hover {
  color: #D3FF24 !important;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  /* Medium devices */
  /* Small devices */
}
@media (max-width: 992px) {
  .footer-links {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .footer-links {
    margin-top: 40px;
  }
}
.footer-links li {
  position: relative;
  padding-right: 32px;
  margin-right: 32px;
}
.footer-links li:last-child {
  padding-left: 0;
  margin-right: 0;
  padding-right: 0;
}
.footer-links li:last-child::before {
  display: none;
}
.footer-links li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 21px;
  background: #878787;
  margin-top: -2px;
}
.footer-links li a {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
.footer-links li a:hover {
  color: var(--theme-color);
}

.footer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Medium devices */
  /* Small devices */
}
@media (max-width: 992px) {
  .footer-box {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-box {
    flex-direction: column;
  }
}

.footer-layout2 {
  position: relative;
}

.widget-area-two {
  padding: 110px 0 45px;
  background-color: #ffffff;
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}
@media (max-width: 992px) {
  .widget-area-two {
    padding-top: 75px;
  }
}
@media (max-width: 767px) {
  .widget-area-two {
    padding-bottom: 20px;
  }
}
@media (max-width: 416px) {
  .widget-area-two {
    padding: 75px 0 42px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .widget-logo {
    margin-bottom: 50px;
  }
}
/* Extra small devices */

/*------------------- 4.4. Breadcumb  -------------------*/

/*------------------- 4.5. Popup Search  -------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose:hover {
  color: var(--body-color) !important;
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
  /* Large devices */
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--theme-color);
  background-color: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
}
.popup-search-box form input::-moz-placeholder {
  color: #fff;
}
.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}
.popup-search-box form input:-ms-input-placeholder {
  color: #fff;
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  right: 12px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  transform: scale(1.1);
}

/*------------------- 4.6. Popup Side Menu  -------------------*/
/*------------------- 4.7. Pagination  -------------------*/
/*------------------- 4.8. Blog  -------------------*/

.blog-content {
  padding: 38px 34px 31px;
  border: 1px solid #cbcbcb;
  border-top: 0;
  background: #fff;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content {
    padding: 38px 20px 31px;
  }
}

ul {
  list-style: none;
}

/*------------------- 4.9. Comments  -------------------*/
/*------------------- 4.10. Hero Area  -------------------*/
.banner-style1 {
  position: relative;
  background-color: var(--theme-color2);
}
.banner-style1::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1022.196px;
  height: 552.232px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .banner-style1::before {
    display: none;
  }
}
.banner-style1 .hero-box {
  display: flex;
  /* Small devices */
}
@media (max-width: 767px) {
  .banner-style1 .hero-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-content {
  padding: 141px 0 77px;
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}
@media (max-width: 992px) {
  .hero-content {
    padding: 100px 0 77px;
  }
}
@media (max-width: 767px) {
  .hero-content {
    padding: 100px 0;
  }
}
@media (max-width: 416px) {
  .hero-content {
    padding: 60px 0;
  }
}
.hero-content .title {
  position: relative;
  color: var(--theme-color);
  font-size: 110px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  z-index: 99;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}
@media (max-width: 1199px) {
  .hero-content .title {
    font-size: 82px;
  }
}
@media (max-width: 767px) {
  .hero-content .title {
    font-size: 59px;
  }
}
@media (max-width: 576px) {
  .hero-content .title {
    line-height: 70px;
  }
}
@media (max-width: 416px) {
  .hero-content .title {
    font-size: 49px;
    line-height: 50px;
    margin-bottom: 32px;
  }
}

.hero-info {
  max-width: 476px;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 416px) {
  .hero-info {
    padding-left: 0;
  }
}
.hero-info p {
  position: relative;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 37px;
  z-index: 999;
  margin-left: 2px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .hero-info p {
    font-size: 18px;
    line-height: 30px;
  }
}

/*------------------- 4.11. About  -------------------*/

/* Medium Large devices */
/*------------------- 4.12. Services  -------------------*/

/*==============================================
12. BRANDS
==============================================*/

/*------------------- 4.13. Team  -------------------*/

/*------------------- 4.14. Form Style  -------------------*/

/*------------------- 4.15. Testimonial  -------------------*/

/* Extra small devices */
/*------------------- 4.16. Skill Area  -------------------*/

/*------------------- 4.17. Brand  -------------------*/

/*------------------- 4.18. Accordion  -------------------*/

/* Small devices */
/*------------------- 4.19. Project  -------------------*/

/*------------------- 4.20. Features  -------------------*/

/*------------------- 4.21. Contact  -------------------*/

/*------------------- 4.22. Shop  -------------------*/
/*------------------- 4.23. Simple Sections -------------------*/
/*------------------- 4.24. Event -------------------*/
/*------------------- 4.25. Marquee -------------------*/

/* Medium devices */
/*------------------- 4.26. Error 404 -------------------*/

/*------------------- 4.27. Newsletter -------------------*/

/*------------------- 4.28. Pricing -------------------*/

/* Medium devices */

/*------------------- 4.29. Clients -------------------*/

/*------------------- 4.30. History -------------------*/

/*------------------- 4.31. Map -------------------*/

/*------------------- 4.32. Progress -------------------*/

/*------------------- 4.33. Counter -------------------*/

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/

/*-- Padding Top And Bottom --*/

/*-- Padding Top --*/

/*-- Padding Bottom --*/

/*-- Padding Left --*/

/*-- Padding Right --*/

/* Medium devices */
/* Small devices */
/*-- margin Left And Right --*/

/*-- margin Top And Bottom --*/

/*-- margin Top --*/

/*-- margin Bottom --*/

/*-- margin Left --*/

/*-- margin Right --*/

/* Medium devices */
.blog-content ul {
  list-style-type: disclosure-closed;
}
.blog-content table {
  display: inline-block;
vertical-align: top;
max-width: 100%;
overflow-x: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch
}

.blog-content table td {
  border: 1px solid #000;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}</pre></body></html>