@charset "UTF-8";
/*---------------------------
 CSS Index  
****************************

01. Variables
02. Typography
03. Spacing
04. Reset
05. Forms
06. Shortcode
07. Common
08. Animations
09. Text Animation
10. Sal
11. Header
12. Nav
13. Mobilemenu
14. One Page
15. Notification
16. Blog
17. Sidebar
18. Blog Details
19. Button
20. Backtotop
21. Cursor
22. Accordion
23. Section Title
24. Banner
25. About
26. Service
27. Contact Form
28. Wallet
29. Contact
30. Author
31. Collection
32. Footer
33. Copyright
34. Portfolio
35. Product Details
36. Swicher
37. Social Share
38. Modal
39. Activity
40. Privacy
41. Masonryitem
42. Breadcrumb
43. Slick
44. Countdown
45. Coming Soon
46. Uploadmodal
47. Upload Variants
48. Upcoming Projects
49. Ranking
50. Notfound
51. White Version
----------------------------*/
/* Default  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

:root {
  --color-primary: none;
  --color-primary-alta: #212e48;
  --color-green: #3BC049;
  --color-gray: #f6f6f6;
  --color-gray-2: #f5f8fa;
  --color-subtitle: #f9004d;
  --background-color-1: #24243557;
  --background-color-2: #13131d;
  --background-color-3: #151521;
  --background-color-4: #242435;
  --gradient-one: linear-gradient(to right bottom, #2899d8, #00a3ff);
  --color-heading: #ffffff;
  --color-body: #4d5057;
  --color-section-splitter:#acacac;
  --color-dark:rgb(29, 29, 29);
  --color-light-heading: #181c32;
  --color-light-body: #65676b;
  --color-border-white: #00000024;
  --color-midgray: #878787;
  --color-light: #E4E6EA;
  --color-lighter: #CED0D4;
  --color-lightest: #F0F2F5;
  --color-border: #ffffff14;
  --color-white: #ffffff;
  --color-white-75: rgba(255, 255, 255, 0.75);
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.4s;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto", sans-serif;
  --font-size-b1: 14px;
  --font-size-b2: 18px;
  --font-size-b3: 22px;
  --line-height-b1: 1.50;
  --line-height-b2: 1.6;
  --line-height-b3: 1.7;
  --h1: 36px;
  --h2: 36px;
  --h3: 32px;
  --h4: 26px;
  --h5: 22px;
  --h6: 20px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Figtree', sans-serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  background: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rebeccapurple;
  opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: 'Figtree', sans-serif;
  line-height: 1.4074;
  color: #4d5057;
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 1.19;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.23;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 1.14;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}

.bg-color-tertiary h1,
.bg-color-tertiary h2,
.bg-color-tertiary h3,
.bg-color-tertiary h4,
.bg-color-tertiary h5,
.bg-color-tertiary h6,
.bg-color-tertiary .h1,
.bg-color-tertiary .h2,
.bg-color-tertiary .h3,
.bg-color-tertiary .h4,
.bg-color-tertiary .h5,
.bg-color-tertiary .h6 {
  color: #fff;
}
.bg-color-tertiary p {
  color: #6c7279;
}
.bg-color-tertiary a {
  color: #6c7279;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
.h1 {
    font-size: 38px;
  }

  h2,
.h2 {
    font-size: 32px;
  }

  h3,
.h3 {
    font-size: 28px;
  }

  h4,
.h4 {
    font-size: 24px;
  }

  h5,
.h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
.h1 {
  font-size: 26px !important;
  }

  h2,
.h2 {
    font-size: 26px !important;
  }

  h3,
.h3 {
    font-size: 24px;
  }

  h4,
.h4 {
    font-size: 20px;
  }

  h5,
.h5 {
    font-size: 16px;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-bold);
}

h4,
.h4,
h5,
.h5 {
  font-weight: var(--s-bold);
}

h6,
.h6 {
  font-weight: var(--s-bold);
}

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: calc((1.26 - 1)* 1.2vw + 1rem);
    line-height: 1.6em;
  }
}
@media only screen and (max-width: 767px) and (orientation: portrait) {
  p {
    font-size: calc((var(--body-font-size-value) - 1) * calc(.012 * min(100vh, 900px)) + 1rem);
  }
  .panel p {
    font-size: calc((var(--body-font-size-value) - 1) * calc(.012 * min(100vh, 900px)) + 1rem) !important;
  }

}
p.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
p.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}
p.has-large-font-size {
  line-height: 1.5;
  font-size: 36px;
}
p.has-medium-font-size {
  font-size: 24px;
  line-height: 36px;
}
p.has-small-font-size {
  font-size: 13px;
}
p.has-very-light-gray-color {
  color: var(--color-white);
}
p.has-background {
  padding: 20px 30px;
}
p.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
p.b2 {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
}
p.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}
p:last-child {
  margin-bottom: 0;
}

.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}

.b2 {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
}

.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}

.b4 {
  font-size: var(--font-size-b4);
  line-height: var(--line-height-b4);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}

table a,
table a:link,
table a:visited {
  text-decoration: none;
}

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
  color: var(--color-heading);
}

var {
  font-family: "Poppins", sans-serif;
}

/*---------------------------
	List Style 
---------------------------*/
ul,
ol {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}

ul.liststyle.bullet li {
  font-size: 18px;
  line-height: 30px;
  color: var(--color-body);
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  ul.liststyle.bullet li {
    padding-left: 19px;
  }
}
ul.liststyle.bullet li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--color-body);
  left: 0;
  top: 10px;
}
ul.liststyle.bullet li + li {
  margin-top: 8px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;

}
ul li a {
  text-decoration: none;

}

ul ul {
  margin-bottom: 0;
}

ol {
  margin-bottom: 30px;
}
ol li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  color: var(--color-body);
  margin-top: 10px;
  margin-bottom: 10px;
}
ol li a {
  color: var(--color-heading);
  text-decoration: none;
}
ol li a:hover {
  color: var(--color-primary);
}
ol ul {
  padding-left: 30px;
}

/*=========================
    Section Separation 
==========================*/
.slick-dotted {
  margin-bottom: 0;
}

.mb_dec--25 {
  margin-bottom: -25px;
}

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

.m--0 {
  margin: 0;
}

.rn-section-gap {
  padding: 100px 0;
}

.rn-section-gap-superior {
  padding: 50px 0;
}

.rn-section-gap-image-panel {
  padding: 100px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  .rn-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rn-section-gap {
    padding: 80px 0;
  }
}

.rn-section-gapBottom {
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-section-gapBottom {
    padding-bottom: 80px;
  }
}

.rn-section-gapTop {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-section-gapTop {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-section-gapTop {
    padding-top: 80px;
  }
}

.pl--0 {
  padding-left: 0 !important;
}

.pr--0 {
  padding-right: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

.mr--0 {
  margin-right: 0 !important;
}

.ml--0 {
  margin-left: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.ptb--5 {
  padding: 5px 0 !important;
}

.plr--5 {
  padding: 0 5px !important;
}

.pt--5 {
  padding-top: 5px !important;
}

.pb--5 {
  padding-bottom: 5px !important;
}

.pl--5 {
  padding-left: 5px !important;
}

.pr--5 {
  padding-right: 5px !important;
}

.mt--5 {
  margin-top: 5px !important;
}

.mb--5 {
  margin-bottom: 5px !important;
}

.mr--5 {
  margin-right: 5px !important;
}

.ml--5 {
  margin-left: 5px !important;
}

.ptb--10 {
  padding: 10px 0 !important;
}

.plr--10 {
  padding: 0 10px !important;
}

.pt--10 {
  padding-top: 10px !important;
}

.pb--10 {
  padding-bottom: 10px !important;
}

.pl--10 {
  padding-left: 10px !important;
}

.pr--10 {
  padding-right: 10px !important;
}

.mt--10 {
  margin-top: 10px !important;
}

.mb--10 {
  margin-bottom: 10px !important;
}

.mr--10 {
  margin-right: 10px !important;
}

.ml--10 {
  margin-left: 10px !important;
}

.ptb--15 {
  padding: 15px 0 !important;
}

.plr--15 {
  padding: 0 15px !important;
}

.pt--15 {
  padding-top: 15px !important;
}

.pb--15 {
  padding-bottom: 15px !important;
}

.pl--15 {
  padding-left: 15px !important;
}

.pr--15 {
  padding-right: 15px !important;
}

.mt--15 {
  margin-top: 15px !important;
}

.mb--15 {
  margin-bottom: 15px !important;
}

.mr--15 {
  margin-right: 15px !important;
}

.ml--15 {
  margin-left: 15px !important;
}

.ptb--20 {
  padding: 20px 0 !important;
}

.plr--20 {
  padding: 0 20px !important;
}

.pt--20 {
  padding-top: 20px !important;
}

.pb--20 {
  padding-bottom: 20px !important;
}

.pl--20 {
  padding-left: 20px !important;
}

.pr--20 {
  padding-right: 20px !important;
}

.mt--20 {
  margin-top: 20px !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}

.mr--20 {
  margin-right: 20px !important;
}

.ml--20 {
  margin-left: 20px !important;
}

.ptb--25 {
  padding: 25px 0 !important;
}

.plr--25 {
  padding: 0 25px !important;
}

.pt--25 {
  padding-top: 25px !important;
}

.pb--25 {
  padding-bottom: 25px !important;
}

.pl--25 {
  padding-left: 25px !important;
}

.pr--25 {
  padding-right: 25px !important;
}

.mt--25 {
  margin-top: 25px !important;
}

.mb--25 {
  margin-bottom: 25px !important;
}

.mr--25 {
  margin-right: 25px !important;
}

.ml--25 {
  margin-left: 25px !important;
}

.ptb--30 {
  padding: 30px 0 !important;
}

.plr--30 {
  padding: 0 30px !important;
}

.pt--30 {
  padding-top: 30px !important;
}

.pb--30 {
  padding-bottom: 30px !important;
}

.pl--30 {
  padding-left: 30px !important;
}

.pr--30 {
  padding-right: 30px !important;
}

.mt--30 {
  margin-top: 30px !important;
}

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

.mr--30 {
  margin-right: 30px !important;
}

.ml--30 {
  margin-left: 30px !important;
}

.ptb--35 {
  padding: 35px 0 !important;
}

.plr--35 {
  padding: 0 35px !important;
}

.pt--35 {
  padding-top: 35px !important;
}

.pb--35 {
  padding-bottom: 35px !important;
}

.pl--35 {
  padding-left: 35px !important;
}

.pr--35 {
  padding-right: 35px !important;
}

.mt--35 {
  margin-top: 35px !important;
}

.mb--35 {
  margin-bottom: 35px !important;
}

.mr--35 {
  margin-right: 35px !important;
}

.ml--35 {
  margin-left: 35px !important;
}

.ptb--40 {
  padding: 40px 0 !important;
}

.plr--40 {
  padding: 0 40px !important;
}

.pt--40 {
  padding-top: 40px !important;
}

.pb--40 {
  padding-bottom: 40px !important;
}

.pl--40 {
  padding-left: 40px !important;
}

.pr--40 {
  padding-right: 40px !important;
}

.mt--40 {
  margin-top: 40px !important;
}

.mb--40 {
  margin-bottom: 40px !important;
}

.mr--40 {
  margin-right: 40px !important;
}

.ml--40 {
  margin-left: 40px !important;
}

.ptb--45 {
  padding: 45px 0 !important;
}

.plr--45 {
  padding: 0 45px !important;
}

.pt--45 {
  padding-top: 45px !important;
}

.pb--45 {
  padding-bottom: 45px !important;
}

.pl--45 {
  padding-left: 45px !important;
}

.pr--45 {
  padding-right: 45px !important;
}

.mt--45 {
  margin-top: 45px !important;
}

.mb--45 {
  margin-bottom: 45px !important;
}

.mr--45 {
  margin-right: 45px !important;
}

.ml--45 {
  margin-left: 45px !important;
}

.ptb--50 {
  padding: 50px 0 !important;
}

.plr--50 {
  padding: 0 50px !important;
}

.pt--50 {
  padding-top: 50px !important;
}

.pb--50 {
  padding-bottom: 50px !important;
}

.pl--50 {
  padding-left: 50px !important;
}

.pr--50 {
  padding-right: 50px !important;
}

.mt--50 {
  margin-top: 50px !important;
}

.mb--50 {
  margin-bottom: 50px !important;
}

.mr--50 {
  margin-right: 50px !important;
}

.ml--50 {
  margin-left: 50px !important;
}

.ptb--55 {
  padding: 55px 0 !important;
}

.plr--55 {
  padding: 0 55px !important;
}

.pt--55 {
  padding-top: 55px !important;
}

.pb--55 {
  padding-bottom: 55px !important;
}

.pl--55 {
  padding-left: 55px !important;
}

.pr--55 {
  padding-right: 55px !important;
}

.mt--55 {
  margin-top: 55px !important;
}

.mb--55 {
  margin-bottom: 55px !important;
}

.mr--55 {
  margin-right: 55px !important;
}

.ml--55 {
  margin-left: 55px !important;
}

.ptb--60 {
  padding: 60px 0 !important;
}

.plr--60 {
  padding: 0 60px !important;
}

.pt--60 {
  padding-top: 60px !important;
}

.pb--60 {
  padding-bottom: 60px !important;
}

.pl--60 {
  padding-left: 60px !important;
}

.pr--60 {
  padding-right: 60px !important;
}

.mt--60 {
  margin-top: 60px !important;
}

.mb--60 {
  margin-bottom: 60px !important;
}

.mr--60 {
  margin-right: 60px !important;
}

.ml--60 {
  margin-left: 60px !important;
}

.ptb--65 {
  padding: 65px 0 !important;
}

.plr--65 {
  padding: 0 65px !important;
}

.pt--65 {
  padding-top: 65px !important;
}

.pb--65 {
  padding-bottom: 65px !important;
}

.pl--65 {
  padding-left: 65px !important;
}

.pr--65 {
  padding-right: 65px !important;
}

.mt--65 {
  margin-top: 65px !important;
}

.mb--65 {
  margin-bottom: 65px !important;
}

.mr--65 {
  margin-right: 65px !important;
}

.ml--65 {
  margin-left: 65px !important;
}

.ptb--70 {
  padding: 70px 0 !important;
}

.plr--70 {
  padding: 0 70px !important;
}

.pt--70 {
  padding-top: 70px !important;
}

.pb--70 {
  padding-bottom: 70px !important;
}

.pl--70 {
  padding-left: 70px !important;
}

.pr--70 {
  padding-right: 70px !important;
}

.mt--70 {
  margin-top: 70px !important;
}

.mb--70 {
  margin-bottom: 70px !important;
}

.mr--70 {
  margin-right: 70px !important;
}

.ml--70 {
  margin-left: 70px !important;
}

.ptb--75 {
  padding: 75px 0 !important;
}

.plr--75 {
  padding: 0 75px !important;
}

.pt--75 {
  padding-top: 75px !important;
}

.pb--75 {
  padding-bottom: 75px !important;
}

.pl--75 {
  padding-left: 75px !important;
}

.pr--75 {
  padding-right: 75px !important;
}

.mt--75 {
  margin-top: 75px !important;
}

.mb--75 {
  margin-bottom: 75px !important;
}

.mr--75 {
  margin-right: 75px !important;
}

.ml--75 {
  margin-left: 75px !important;
}

.ptb--80 {
  padding: 80px 0 !important;
}

.plr--80 {
  padding: 0 80px !important;
}

.pt--80 {
  padding-top: 80px !important;
}

.pb--80 {
  padding-bottom: 80px !important;
}

.pl--80 {
  padding-left: 80px !important;
}

.pr--80 {
  padding-right: 80px !important;
}

.mt--80 {
  margin-top: 80px !important;
}

.mb--80 {
  margin-bottom: 80px !important;
}

.mr--80 {
  margin-right: 80px !important;
}

.ml--80 {
  margin-left: 80px !important;
}

.ptb--85 {
  padding: 85px 0 !important;
}

.plr--85 {
  padding: 0 85px !important;
}

.pt--85 {
  padding-top: 85px !important;
}

.pb--85 {
  padding-bottom: 85px !important;
}

.pl--85 {
  padding-left: 85px !important;
}

.pr--85 {
  padding-right: 85px !important;
}

.mt--85 {
  margin-top: 85px !important;
}

.mb--85 {
  margin-bottom: 85px !important;
}

.mr--85 {
  margin-right: 85px !important;
}

.ml--85 {
  margin-left: 85px !important;
}

.ptb--90 {
  padding: 90px 0 !important;
}

.plr--90 {
  padding: 0 90px !important;
}

.pt--90 {
  padding-top: 90px !important;
}

.pb--90 {
  padding-bottom: 90px !important;
}

.pl--90 {
  padding-left: 90px !important;
}

.pr--90 {
  padding-right: 90px !important;
}

.mt--90 {
  margin-top: 90px !important;
}

.mb--90 {
  margin-bottom: 90px !important;
}

.mr--90 {
  margin-right: 90px !important;
}

.ml--90 {
  margin-left: 90px !important;
}

.ptb--95 {
  padding: 95px 0 !important;
}

.plr--95 {
  padding: 0 95px !important;
}

.pt--95 {
  padding-top: 95px !important;
}

.pb--95 {
  padding-bottom: 95px !important;
}

.pl--95 {
  padding-left: 95px !important;
}

.pr--95 {
  padding-right: 95px !important;
}

.mt--95 {
  margin-top: 95px !important;
}

.mb--95 {
  margin-bottom: 95px !important;
}

.mr--95 {
  margin-right: 95px !important;
}

.ml--95 {
  margin-left: 95px !important;
}

.ptb--100 {
  padding: 100px 0 !important;
}

.plr--100 {
  padding: 0 100px !important;
}

.pt--100 {
  padding-top: 100px !important;
}

.pb--100 {
  padding-bottom: 100px !important;
}

.pl--100 {
  padding-left: 100px !important;
}

.pr--100 {
  padding-right: 100px !important;
}

.mt--100 {
  margin-top: 100px !important;
}

.mb--100 {
  margin-bottom: 100px !important;
}

.mr--100 {
  margin-right: 100px !important;
}

.ml--100 {
  margin-left: 100px !important;
}

.ptb--105 {
  padding: 105px 0 !important;
}

.plr--105 {
  padding: 0 105px !important;
}

.pt--105 {
  padding-top: 105px !important;
}

.pb--105 {
  padding-bottom: 105px !important;
}

.pl--105 {
  padding-left: 105px !important;
}

.pr--105 {
  padding-right: 105px !important;
}

.mt--105 {
  margin-top: 105px !important;
}

.mb--105 {
  margin-bottom: 105px !important;
}

.mr--105 {
  margin-right: 105px !important;
}

.ml--105 {
  margin-left: 105px !important;
}

.ptb--110 {
  padding: 110px 0 !important;
}

.plr--110 {
  padding: 0 110px !important;
}

.pt--110 {
  padding-top: 110px !important;
}

.pb--110 {
  padding-bottom: 110px !important;
}

.pl--110 {
  padding-left: 110px !important;
}

.pr--110 {
  padding-right: 110px !important;
}

.mt--110 {
  margin-top: 110px !important;
}

.mb--110 {
  margin-bottom: 110px !important;
}

.mr--110 {
  margin-right: 110px !important;
}

.ml--110 {
  margin-left: 110px !important;
}

.ptb--115 {
  padding: 115px 0 !important;
}

.plr--115 {
  padding: 0 115px !important;
}

.pt--115 {
  padding-top: 115px !important;
}

.pb--115 {
  padding-bottom: 115px !important;
}

.pl--115 {
  padding-left: 115px !important;
}

.pr--115 {
  padding-right: 115px !important;
}

.mt--115 {
  margin-top: 115px !important;
}

.mb--115 {
  margin-bottom: 115px !important;
}

.mr--115 {
  margin-right: 115px !important;
}

.ml--115 {
  margin-left: 115px !important;
}

.ptb--120 {
  padding: 120px 0 !important;
}

.plr--120 {
  padding: 0 120px !important;
}

.pt--120 {
  padding-top: 120px !important;
}

.pb--120 {
  padding-bottom: 120px !important;
}

.pl--120 {
  padding-left: 120px !important;
}

.pr--120 {
  padding-right: 120px !important;
}

.mt--120 {
  margin-top: 120px !important;
}

.mb--120 {
  margin-bottom: 120px !important;
}

.mr--120 {
  margin-right: 120px !important;
}

.ml--120 {
  margin-left: 120px !important;
}

.ptb--125 {
  padding: 125px 0 !important;
}

.plr--125 {
  padding: 0 125px !important;
}

.pt--125 {
  padding-top: 125px !important;
}

.pb--125 {
  padding-bottom: 125px !important;
}

.pl--125 {
  padding-left: 125px !important;
}

.pr--125 {
  padding-right: 125px !important;
}

.mt--125 {
  margin-top: 125px !important;
}

.mb--125 {
  margin-bottom: 125px !important;
}

.mr--125 {
  margin-right: 125px !important;
}

.ml--125 {
  margin-left: 125px !important;
}

.ptb--130 {
  padding: 130px 0 !important;
}

.plr--130 {
  padding: 0 130px !important;
}

.pt--130 {
  padding-top: 130px !important;
}

.pb--130 {
  padding-bottom: 130px !important;
}

.pl--130 {
  padding-left: 130px !important;
}

.pr--130 {
  padding-right: 130px !important;
}

.mt--130 {
  margin-top: 130px !important;
}

.mb--130 {
  margin-bottom: 130px !important;
}

.mr--130 {
  margin-right: 130px !important;
}

.ml--130 {
  margin-left: 130px !important;
}

.ptb--135 {
  padding: 135px 0 !important;
}

.plr--135 {
  padding: 0 135px !important;
}

.pt--135 {
  padding-top: 135px !important;
}

.pb--135 {
  padding-bottom: 135px !important;
}

.pl--135 {
  padding-left: 135px !important;
}

.pr--135 {
  padding-right: 135px !important;
}

.mt--135 {
  margin-top: 135px !important;
}

.mb--135 {
  margin-bottom: 135px !important;
}

.mr--135 {
  margin-right: 135px !important;
}

.ml--135 {
  margin-left: 135px !important;
}

.ptb--140 {
  padding: 140px 0 !important;
}

.plr--140 {
  padding: 0 140px !important;
}

.pt--140 {
  padding-top: 140px !important;
}

.pb--140 {
  padding-bottom: 140px !important;
}

.pl--140 {
  padding-left: 140px !important;
}

.pr--140 {
  padding-right: 140px !important;
}

.mt--140 {
  margin-top: 140px !important;
}

.mb--140 {
  margin-bottom: 140px !important;
}

.mr--140 {
  margin-right: 140px !important;
}

.ml--140 {
  margin-left: 140px !important;
}

.ptb--145 {
  padding: 145px 0 !important;
}

.plr--145 {
  padding: 0 145px !important;
}

.pt--145 {
  padding-top: 145px !important;
}

.pb--145 {
  padding-bottom: 145px !important;
}

.pl--145 {
  padding-left: 145px !important;
}

.pr--145 {
  padding-right: 145px !important;
}

.mt--145 {
  margin-top: 145px !important;
}

.mb--145 {
  margin-bottom: 145px !important;
}

.mr--145 {
  margin-right: 145px !important;
}

.ml--145 {
  margin-left: 145px !important;
}

.ptb--150 {
  padding: 150px 0 !important;
}

.plr--150 {
  padding: 0 150px !important;
}

.pt--150 {
  padding-top: 150px !important;
}

.pb--150 {
  padding-bottom: 150px !important;
}

.pl--150 {
  padding-left: 150px !important;
}

.pr--150 {
  padding-right: 150px !important;
}

.mt--150 {
  margin-top: 150px !important;
}

.mb--150 {
  margin-bottom: 150px !important;
}

.mr--150 {
  margin-right: 150px !important;
}

.ml--150 {
  margin-left: 150px !important;
}

.ptb--155 {
  padding: 155px 0 !important;
}

.plr--155 {
  padding: 0 155px !important;
}

.pt--155 {
  padding-top: 155px !important;
}

.pb--155 {
  padding-bottom: 155px !important;
}

.pl--155 {
  padding-left: 155px !important;
}

.pr--155 {
  padding-right: 155px !important;
}

.mt--155 {
  margin-top: 155px !important;
}

.mb--155 {
  margin-bottom: 155px !important;
}

.mr--155 {
  margin-right: 155px !important;
}

.ml--155 {
  margin-left: 155px !important;
}

.ptb--160 {
  padding: 160px 0 !important;
}

.plr--160 {
  padding: 0 160px !important;
}

.pt--160 {
  padding-top: 160px !important;
}

.pb--160 {
  padding-bottom: 160px !important;
}

.pl--160 {
  padding-left: 160px !important;
}

.pr--160 {
  padding-right: 160px !important;
}

.mt--160 {
  margin-top: 160px !important;
}

.mb--160 {
  margin-bottom: 160px !important;
}

.mr--160 {
  margin-right: 160px !important;
}

.ml--160 {
  margin-left: 160px !important;
}

.ptb--165 {
  padding: 165px 0 !important;
}

.plr--165 {
  padding: 0 165px !important;
}

.pt--165 {
  padding-top: 165px !important;
}

.pb--165 {
  padding-bottom: 165px !important;
}

.pl--165 {
  padding-left: 165px !important;
}

.pr--165 {
  padding-right: 165px !important;
}

.mt--165 {
  margin-top: 165px !important;
}

.mb--165 {
  margin-bottom: 165px !important;
}

.mr--165 {
  margin-right: 165px !important;
}

.ml--165 {
  margin-left: 165px !important;
}

.ptb--170 {
  padding: 170px 0 !important;
}

.plr--170 {
  padding: 0 170px !important;
}

.pt--170 {
  padding-top: 170px !important;
}

.pb--170 {
  padding-bottom: 170px !important;
}

.pl--170 {
  padding-left: 170px !important;
}

.pr--170 {
  padding-right: 170px !important;
}

.mt--170 {
  margin-top: 170px !important;
}

.mb--170 {
  margin-bottom: 170px !important;
}

.mr--170 {
  margin-right: 170px !important;
}

.ml--170 {
  margin-left: 170px !important;
}

.ptb--175 {
  padding: 175px 0 !important;
}

.plr--175 {
  padding: 0 175px !important;
}

.pt--175 {
  padding-top: 175px !important;
}

.pb--175 {
  padding-bottom: 175px !important;
}

.pl--175 {
  padding-left: 175px !important;
}

.pr--175 {
  padding-right: 175px !important;
}

.mt--175 {
  margin-top: 175px !important;
}

.mb--175 {
  margin-bottom: 175px !important;
}

.mr--175 {
  margin-right: 175px !important;
}

.ml--175 {
  margin-left: 175px !important;
}

.ptb--180 {
  padding: 180px 0 !important;
}

.plr--180 {
  padding: 0 180px !important;
}

.pt--180 {
  padding-top: 180px !important;
}

.pb--180 {
  padding-bottom: 180px !important;
}

.pl--180 {
  padding-left: 180px !important;
}

.pr--180 {
  padding-right: 180px !important;
}

.mt--180 {
  margin-top: 180px !important;
}

.mb--180 {
  margin-bottom: 180px !important;
}

.mr--180 {
  margin-right: 180px !important;
}

.ml--180 {
  margin-left: 180px !important;
}

.ptb--185 {
  padding: 185px 0 !important;
}

.plr--185 {
  padding: 0 185px !important;
}

.pt--185 {
  padding-top: 185px !important;
}

.pb--185 {
  padding-bottom: 185px !important;
}

.pl--185 {
  padding-left: 185px !important;
}

.pr--185 {
  padding-right: 185px !important;
}

.mt--185 {
  margin-top: 185px !important;
}

.mb--185 {
  margin-bottom: 185px !important;
}

.mr--185 {
  margin-right: 185px !important;
}

.ml--185 {
  margin-left: 185px !important;
}

.ptb--190 {
  padding: 190px 0 !important;
}

.plr--190 {
  padding: 0 190px !important;
}

.pt--190 {
  padding-top: 190px !important;
}

.pb--190 {
  padding-bottom: 190px !important;
}

.pl--190 {
  padding-left: 190px !important;
}

.pr--190 {
  padding-right: 190px !important;
}

.mt--190 {
  margin-top: 190px !important;
}

.mb--190 {
  margin-bottom: 190px !important;
}

.mr--190 {
  margin-right: 190px !important;
}

.ml--190 {
  margin-left: 190px !important;
}

.ptb--195 {
  padding: 195px 0 !important;
}

.plr--195 {
  padding: 0 195px !important;
}

.pt--195 {
  padding-top: 195px !important;
}

.pb--195 {
  padding-bottom: 195px !important;
}

.pl--195 {
  padding-left: 195px !important;
}

.pr--195 {
  padding-right: 195px !important;
}

.mt--195 {
  margin-top: 195px !important;
}

.mb--195 {
  margin-bottom: 195px !important;
}

.mr--195 {
  margin-right: 195px !important;
}

.ml--195 {
  margin-left: 195px !important;
}

.ptb--200 {
  padding: 200px 0 !important;
}

.plr--200 {
  padding: 0 200px !important;
}

.pt--200 {
  padding-top: 200px !important;
}

.pb--200 {
  padding-bottom: 200px !important;
}

.pl--200 {
  padding-left: 200px !important;
}

.pr--200 {
  padding-right: 200px !important;
}

.mt--200 {
  margin-top: 200px !important;
}

.mb--200 {
  margin-bottom: 200px !important;
}

.mr--200 {
  margin-right: 200px !important;
}

.ml--200 {
  margin-left: 200px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .ptb_lp--5 {
    padding: 5px 0;
  }

  .plr_lp--5 {
    padding: 0 5px;
  }

  .pt_lp--5 {
    padding-top: 5px;
  }

  .pb_lp--5 {
    padding-bottom: 5px;
  }

  .pl_lp--5 {
    padding-left: 5px;
  }

  .pr_lp--5 {
    padding-right: 5px;
  }

  .mt_lp--5 {
    margin-top: 5px;
  }

  .mb_lp--5 {
    margin-bottom: 5px;
  }

  .ptb_lp--10 {
    padding: 10px 0;
  }

  .plr_lp--10 {
    padding: 0 10px;
  }

  .pt_lp--10 {
    padding-top: 10px;
  }

  .pb_lp--10 {
    padding-bottom: 10px;
  }

  .pl_lp--10 {
    padding-left: 10px;
  }

  .pr_lp--10 {
    padding-right: 10px;
  }

  .mt_lp--10 {
    margin-top: 10px;
  }

  .mb_lp--10 {
    margin-bottom: 10px;
  }

  .ptb_lp--15 {
    padding: 15px 0;
  }

  .plr_lp--15 {
    padding: 0 15px;
  }

  .pt_lp--15 {
    padding-top: 15px;
  }

  .pb_lp--15 {
    padding-bottom: 15px;
  }

  .pl_lp--15 {
    padding-left: 15px;
  }

  .pr_lp--15 {
    padding-right: 15px;
  }

  .mt_lp--15 {
    margin-top: 15px;
  }

  .mb_lp--15 {
    margin-bottom: 15px;
  }

  .ptb_lp--20 {
    padding: 20px 0;
  }

  .plr_lp--20 {
    padding: 0 20px;
  }

  .pt_lp--20 {
    padding-top: 20px;
  }

  .pb_lp--20 {
    padding-bottom: 20px;
  }

  .pl_lp--20 {
    padding-left: 20px;
  }

  .pr_lp--20 {
    padding-right: 20px;
  }

  .mt_lp--20 {
    margin-top: 20px;
  }

  .mb_lp--20 {
    margin-bottom: 20px;
  }

  .ptb_lp--25 {
    padding: 25px 0;
  }

  .plr_lp--25 {
    padding: 0 25px;
  }

  .pt_lp--25 {
    padding-top: 25px;
  }

  .pb_lp--25 {
    padding-bottom: 25px;
  }

  .pl_lp--25 {
    padding-left: 25px;
  }

  .pr_lp--25 {
    padding-right: 25px;
  }

  .mt_lp--25 {
    margin-top: 25px;
  }

  .mb_lp--25 {
    margin-bottom: 25px;
  }

  .ptb_lp--30 {
    padding: 30px 0;
  }

  .plr_lp--30 {
    padding: 0 30px;
  }

  .pt_lp--30 {
    padding-top: 30px;
  }

  .pb_lp--30 {
    padding-bottom: 30px;
  }

  .pl_lp--30 {
    padding-left: 30px;
  }

  .pr_lp--30 {
    padding-right: 30px;
  }

  .mt_lp--30 {
    margin-top: 30px;
  }

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

  .ptb_lp--35 {
    padding: 35px 0;
  }

  .plr_lp--35 {
    padding: 0 35px;
  }

  .pt_lp--35 {
    padding-top: 35px;
  }

  .pb_lp--35 {
    padding-bottom: 35px;
  }

  .pl_lp--35 {
    padding-left: 35px;
  }

  .pr_lp--35 {
    padding-right: 35px;
  }

  .mt_lp--35 {
    margin-top: 35px;
  }

  .mb_lp--35 {
    margin-bottom: 35px;
  }

  .ptb_lp--40 {
    padding: 40px 0;
  }

  .plr_lp--40 {
    padding: 0 40px;
  }

  .pt_lp--40 {
    padding-top: 40px;
  }

  .pb_lp--40 {
    padding-bottom: 40px;
  }

  .pl_lp--40 {
    padding-left: 40px;
  }

  .pr_lp--40 {
    padding-right: 40px;
  }

  .mt_lp--40 {
    margin-top: 40px;
  }

  .mb_lp--40 {
    margin-bottom: 40px;
  }

  .ptb_lp--45 {
    padding: 45px 0;
  }

  .plr_lp--45 {
    padding: 0 45px;
  }

  .pt_lp--45 {
    padding-top: 45px;
  }

  .pb_lp--45 {
    padding-bottom: 45px;
  }

  .pl_lp--45 {
    padding-left: 45px;
  }

  .pr_lp--45 {
    padding-right: 45px;
  }

  .mt_lp--45 {
    margin-top: 45px;
  }

  .mb_lp--45 {
    margin-bottom: 45px;
  }

  .ptb_lp--50 {
    padding: 50px 0;
  }

  .plr_lp--50 {
    padding: 0 50px;
  }

  .pt_lp--50 {
    padding-top: 50px;
  }

  .pb_lp--50 {
    padding-bottom: 50px;
  }

  .pl_lp--50 {
    padding-left: 50px;
  }

  .pr_lp--50 {
    padding-right: 50px;
  }

  .mt_lp--50 {
    margin-top: 50px;
  }

  .mb_lp--50 {
    margin-bottom: 50px;
  }

  .ptb_lp--55 {
    padding: 55px 0;
  }

  .plr_lp--55 {
    padding: 0 55px;
  }

  .pt_lp--55 {
    padding-top: 55px;
  }

  .pb_lp--55 {
    padding-bottom: 55px;
  }

  .pl_lp--55 {
    padding-left: 55px;
  }

  .pr_lp--55 {
    padding-right: 55px;
  }

  .mt_lp--55 {
    margin-top: 55px;
  }

  .mb_lp--55 {
    margin-bottom: 55px;
  }

  .ptb_lp--60 {
    padding: 60px 0;
  }

  .plr_lp--60 {
    padding: 0 60px;
  }

  .pt_lp--60 {
    padding-top: 60px;
  }

  .pb_lp--60 {
    padding-bottom: 60px;
  }

  .pl_lp--60 {
    padding-left: 60px;
  }

  .pr_lp--60 {
    padding-right: 60px;
  }

  .mt_lp--60 {
    margin-top: 60px;
  }

  .mb_lp--60 {
    margin-bottom: 60px;
  }

  .ptb_lp--65 {
    padding: 65px 0;
  }

  .plr_lp--65 {
    padding: 0 65px;
  }

  .pt_lp--65 {
    padding-top: 65px;
  }

  .pb_lp--65 {
    padding-bottom: 65px;
  }

  .pl_lp--65 {
    padding-left: 65px;
  }

  .pr_lp--65 {
    padding-right: 65px;
  }

  .mt_lp--65 {
    margin-top: 65px;
  }

  .mb_lp--65 {
    margin-bottom: 65px;
  }

  .ptb_lp--70 {
    padding: 70px 0;
  }

  .plr_lp--70 {
    padding: 0 70px;
  }

  .pt_lp--70 {
    padding-top: 70px;
  }

  .pb_lp--70 {
    padding-bottom: 70px;
  }

  .pl_lp--70 {
    padding-left: 70px;
  }

  .pr_lp--70 {
    padding-right: 70px;
  }

  .mt_lp--70 {
    margin-top: 70px;
  }

  .mb_lp--70 {
    margin-bottom: 70px;
  }

  .ptb_lp--75 {
    padding: 75px 0;
  }

  .plr_lp--75 {
    padding: 0 75px;
  }

  .pt_lp--75 {
    padding-top: 75px;
  }

  .pb_lp--75 {
    padding-bottom: 75px;
  }

  .pl_lp--75 {
    padding-left: 75px;
  }

  .pr_lp--75 {
    padding-right: 75px;
  }

  .mt_lp--75 {
    margin-top: 75px;
  }

  .mb_lp--75 {
    margin-bottom: 75px;
  }

  .ptb_lp--80 {
    padding: 80px 0;
  }

  .plr_lp--80 {
    padding: 0 80px;
  }

  .pt_lp--80 {
    padding-top: 80px;
  }

  .pb_lp--80 {
    padding-bottom: 80px;
  }

  .pl_lp--80 {
    padding-left: 80px;
  }

  .pr_lp--80 {
    padding-right: 80px;
  }

  .mt_lp--80 {
    margin-top: 80px;
  }

  .mb_lp--80 {
    margin-bottom: 80px;
  }

  .ptb_lp--85 {
    padding: 85px 0;
  }

  .plr_lp--85 {
    padding: 0 85px;
  }

  .pt_lp--85 {
    padding-top: 85px;
  }

  .pb_lp--85 {
    padding-bottom: 85px;
  }

  .pl_lp--85 {
    padding-left: 85px;
  }

  .pr_lp--85 {
    padding-right: 85px;
  }

  .mt_lp--85 {
    margin-top: 85px;
  }

  .mb_lp--85 {
    margin-bottom: 85px;
  }

  .ptb_lp--90 {
    padding: 90px 0;
  }

  .plr_lp--90 {
    padding: 0 90px;
  }

  .pt_lp--90 {
    padding-top: 90px;
  }

  .pb_lp--90 {
    padding-bottom: 90px;
  }

  .pl_lp--90 {
    padding-left: 90px;
  }

  .pr_lp--90 {
    padding-right: 90px;
  }

  .mt_lp--90 {
    margin-top: 90px;
  }

  .mb_lp--90 {
    margin-bottom: 90px;
  }

  .ptb_lp--95 {
    padding: 95px 0;
  }

  .plr_lp--95 {
    padding: 0 95px;
  }

  .pt_lp--95 {
    padding-top: 95px;
  }

  .pb_lp--95 {
    padding-bottom: 95px;
  }

  .pl_lp--95 {
    padding-left: 95px;
  }

  .pr_lp--95 {
    padding-right: 95px;
  }

  .mt_lp--95 {
    margin-top: 95px;
  }

  .mb_lp--95 {
    margin-bottom: 95px;
  }

  .ptb_lp--100 {
    padding: 100px 0;
  }

  .plr_lp--100 {
    padding: 0 100px;
  }

  .pt_lp--100 {
    padding-top: 100px;
  }

  .pb_lp--100 {
    padding-bottom: 100px;
  }

  .pl_lp--100 {
    padding-left: 100px;
  }

  .pr_lp--100 {
    padding-right: 100px;
  }

  .mt_lp--100 {
    margin-top: 100px;
  }

  .mb_lp--100 {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ptb_lg--5 {
    padding: 5px 0 !important;
  }

  .plr_lg--5 {
    padding: 0 5px !important;
  }

  .pt_lg--5 {
    padding-top: 5px !important;
  }

  .pb_lg--5 {
    padding-bottom: 5px !important;
  }

  .pl_lg--5 {
    padding-left: 5px !important;
  }

  .pr_lg--5 {
    padding-right: 5px !important;
  }

  .mt_lg--5 {
    margin-top: 5px !important;
  }

  .mb_lg--5 {
    margin-bottom: 5px !important;
  }

  .ml_lg--5 {
    margin-left: 5px !important;
  }

  .ptb_lg--10 {
    padding: 10px 0 !important;
  }

  .plr_lg--10 {
    padding: 0 10px !important;
  }

  .pt_lg--10 {
    padding-top: 10px !important;
  }

  .pb_lg--10 {
    padding-bottom: 10px !important;
  }

  .pl_lg--10 {
    padding-left: 10px !important;
  }

  .pr_lg--10 {
    padding-right: 10px !important;
  }

  .mt_lg--10 {
    margin-top: 10px !important;
  }

  .mb_lg--10 {
    margin-bottom: 10px !important;
  }

  .ml_lg--10 {
    margin-left: 10px !important;
  }

  .ptb_lg--15 {
    padding: 15px 0 !important;
  }

  .plr_lg--15 {
    padding: 0 15px !important;
  }

  .pt_lg--15 {
    padding-top: 15px !important;
  }

  .pb_lg--15 {
    padding-bottom: 15px !important;
  }

  .pl_lg--15 {
    padding-left: 15px !important;
  }

  .pr_lg--15 {
    padding-right: 15px !important;
  }

  .mt_lg--15 {
    margin-top: 15px !important;
  }

  .mb_lg--15 {
    margin-bottom: 15px !important;
  }

  .ml_lg--15 {
    margin-left: 15px !important;
  }

  .ptb_lg--20 {
    padding: 20px 0 !important;
  }

  .plr_lg--20 {
    padding: 0 20px !important;
  }

  .pt_lg--20 {
    padding-top: 20px !important;
  }

  .pb_lg--20 {
    padding-bottom: 20px !important;
  }

  .pl_lg--20 {
    padding-left: 20px !important;
  }

  .pr_lg--20 {
    padding-right: 20px !important;
  }

  .mt_lg--20 {
    margin-top: 20px !important;
  }

  .mb_lg--20 {
    margin-bottom: 20px !important;
  }

  .ml_lg--20 {
    margin-left: 20px !important;
  }

  .ptb_lg--25 {
    padding: 25px 0 !important;
  }

  .plr_lg--25 {
    padding: 0 25px !important;
  }

  .pt_lg--25 {
    padding-top: 25px !important;
  }

  .pb_lg--25 {
    padding-bottom: 25px !important;
  }

  .pl_lg--25 {
    padding-left: 25px !important;
  }

  .pr_lg--25 {
    padding-right: 25px !important;
  }

  .mt_lg--25 {
    margin-top: 25px !important;
  }

  .mb_lg--25 {
    margin-bottom: 25px !important;
  }

  .ml_lg--25 {
    margin-left: 25px !important;
  }

  .ptb_lg--30 {
    padding: 30px 0 !important;
  }

  .plr_lg--30 {
    padding: 0 30px !important;
  }

  .pt_lg--30 {
    padding-top: 30px !important;
  }

  .pb_lg--30 {
    padding-bottom: 30px !important;
  }

  .pl_lg--30 {
    padding-left: 30px !important;
  }

  .pr_lg--30 {
    padding-right: 30px !important;
  }

  .mt_lg--30 {
    margin-top: 30px !important;
  }

  .mb_lg--30 {
    margin-bottom: 30px !important;
  }

  .ml_lg--30 {
    margin-left: 30px !important;
  }

  .ptb_lg--35 {
    padding: 35px 0 !important;
  }

  .plr_lg--35 {
    padding: 0 35px !important;
  }

  .pt_lg--35 {
    padding-top: 35px !important;
  }

  .pb_lg--35 {
    padding-bottom: 35px !important;
  }

  .pl_lg--35 {
    padding-left: 35px !important;
  }

  .pr_lg--35 {
    padding-right: 35px !important;
  }

  .mt_lg--35 {
    margin-top: 35px !important;
  }

  .mb_lg--35 {
    margin-bottom: 35px !important;
  }

  .ml_lg--35 {
    margin-left: 35px !important;
  }

  .ptb_lg--40 {
    padding: 40px 0 !important;
  }

  .plr_lg--40 {
    padding: 0 40px !important;
  }

  .pt_lg--40 {
    padding-top: 40px !important;
  }

  .pb_lg--40 {
    padding-bottom: 40px !important;
  }

  .pl_lg--40 {
    padding-left: 40px !important;
  }

  .pr_lg--40 {
    padding-right: 40px !important;
  }

  .mt_lg--40 {
    margin-top: 40px !important;
  }

  .mb_lg--40 {
    margin-bottom: 40px !important;
  }

  .ml_lg--40 {
    margin-left: 40px !important;
  }

  .ptb_lg--45 {
    padding: 45px 0 !important;
  }

  .plr_lg--45 {
    padding: 0 45px !important;
  }

  .pt_lg--45 {
    padding-top: 45px !important;
  }

  .pb_lg--45 {
    padding-bottom: 45px !important;
  }

  .pl_lg--45 {
    padding-left: 45px !important;
  }

  .pr_lg--45 {
    padding-right: 45px !important;
  }

  .mt_lg--45 {
    margin-top: 45px !important;
  }

  .mb_lg--45 {
    margin-bottom: 45px !important;
  }

  .ml_lg--45 {
    margin-left: 45px !important;
  }

  .ptb_lg--50 {
    padding: 50px 0 !important;
  }

  .plr_lg--50 {
    padding: 0 50px !important;
  }

  .pt_lg--50 {
    padding-top: 50px !important;
  }

  .pb_lg--50 {
    padding-bottom: 50px !important;
  }

  .pl_lg--50 {
    padding-left: 50px !important;
  }

  .pr_lg--50 {
    padding-right: 50px !important;
  }

  .mt_lg--50 {
    margin-top: 50px !important;
  }

  .mb_lg--50 {
    margin-bottom: 50px !important;
  }

  .ml_lg--50 {
    margin-left: 50px !important;
  }

  .ptb_lg--55 {
    padding: 55px 0 !important;
  }

  .plr_lg--55 {
    padding: 0 55px !important;
  }

  .pt_lg--55 {
    padding-top: 55px !important;
  }

  .pb_lg--55 {
    padding-bottom: 55px !important;
  }

  .pl_lg--55 {
    padding-left: 55px !important;
  }

  .pr_lg--55 {
    padding-right: 55px !important;
  }

  .mt_lg--55 {
    margin-top: 55px !important;
  }

  .mb_lg--55 {
    margin-bottom: 55px !important;
  }

  .ml_lg--55 {
    margin-left: 55px !important;
  }

  .ptb_lg--60 {
    padding: 60px 0 !important;
  }

  .plr_lg--60 {
    padding: 0 60px !important;
  }

  .pt_lg--60 {
    padding-top: 60px !important;
  }

  .pb_lg--60 {
    padding-bottom: 60px !important;
  }

  .pl_lg--60 {
    padding-left: 60px !important;
  }

  .pr_lg--60 {
    padding-right: 60px !important;
  }

  .mt_lg--60 {
    margin-top: 60px !important;
  }

  .mb_lg--60 {
    margin-bottom: 60px !important;
  }

  .ml_lg--60 {
    margin-left: 60px !important;
  }

  .ptb_lg--65 {
    padding: 65px 0 !important;
  }

  .plr_lg--65 {
    padding: 0 65px !important;
  }

  .pt_lg--65 {
    padding-top: 65px !important;
  }

  .pb_lg--65 {
    padding-bottom: 65px !important;
  }

  .pl_lg--65 {
    padding-left: 65px !important;
  }

  .pr_lg--65 {
    padding-right: 65px !important;
  }

  .mt_lg--65 {
    margin-top: 65px !important;
  }

  .mb_lg--65 {
    margin-bottom: 65px !important;
  }

  .ml_lg--65 {
    margin-left: 65px !important;
  }

  .ptb_lg--70 {
    padding: 70px 0 !important;
  }

  .plr_lg--70 {
    padding: 0 70px !important;
  }

  .pt_lg--70 {
    padding-top: 70px !important;
  }

  .pb_lg--70 {
    padding-bottom: 70px !important;
  }

  .pl_lg--70 {
    padding-left: 70px !important;
  }

  .pr_lg--70 {
    padding-right: 70px !important;
  }

  .mt_lg--70 {
    margin-top: 70px !important;
  }

  .mb_lg--70 {
    margin-bottom: 70px !important;
  }

  .ml_lg--70 {
    margin-left: 70px !important;
  }

  .ptb_lg--75 {
    padding: 75px 0 !important;
  }

  .plr_lg--75 {
    padding: 0 75px !important;
  }

  .pt_lg--75 {
    padding-top: 75px !important;
  }

  .pb_lg--75 {
    padding-bottom: 75px !important;
  }

  .pl_lg--75 {
    padding-left: 75px !important;
  }

  .pr_lg--75 {
    padding-right: 75px !important;
  }

  .mt_lg--75 {
    margin-top: 75px !important;
  }

  .mb_lg--75 {
    margin-bottom: 75px !important;
  }

  .ml_lg--75 {
    margin-left: 75px !important;
  }

  .ptb_lg--80 {
    padding: 80px 0 !important;
  }

  .plr_lg--80 {
    padding: 0 80px !important;
  }

  .pt_lg--80 {
    padding-top: 80px !important;
  }

  .pb_lg--80 {
    padding-bottom: 80px !important;
  }

  .pl_lg--80 {
    padding-left: 80px !important;
  }

  .pr_lg--80 {
    padding-right: 80px !important;
  }

  .mt_lg--80 {
    margin-top: 80px !important;
  }

  .mb_lg--80 {
    margin-bottom: 80px !important;
  }

  .ml_lg--80 {
    margin-left: 80px !important;
  }

  .ptb_lg--85 {
    padding: 85px 0 !important;
  }

  .plr_lg--85 {
    padding: 0 85px !important;
  }

  .pt_lg--85 {
    padding-top: 85px !important;
  }

  .pb_lg--85 {
    padding-bottom: 85px !important;
  }

  .pl_lg--85 {
    padding-left: 85px !important;
  }

  .pr_lg--85 {
    padding-right: 85px !important;
  }

  .mt_lg--85 {
    margin-top: 85px !important;
  }

  .mb_lg--85 {
    margin-bottom: 85px !important;
  }

  .ml_lg--85 {
    margin-left: 85px !important;
  }

  .ptb_lg--90 {
    padding: 90px 0 !important;
  }

  .plr_lg--90 {
    padding: 0 90px !important;
  }

  .pt_lg--90 {
    padding-top: 90px !important;
  }

  .pb_lg--90 {
    padding-bottom: 90px !important;
  }

  .pl_lg--90 {
    padding-left: 90px !important;
  }

  .pr_lg--90 {
    padding-right: 90px !important;
  }

  .mt_lg--90 {
    margin-top: 90px !important;
  }

  .mb_lg--90 {
    margin-bottom: 90px !important;
  }

  .ml_lg--90 {
    margin-left: 90px !important;
  }

  .ptb_lg--95 {
    padding: 95px 0 !important;
  }

  .plr_lg--95 {
    padding: 0 95px !important;
  }

  .pt_lg--95 {
    padding-top: 95px !important;
  }

  .pb_lg--95 {
    padding-bottom: 95px !important;
  }

  .pl_lg--95 {
    padding-left: 95px !important;
  }

  .pr_lg--95 {
    padding-right: 95px !important;
  }

  .mt_lg--95 {
    margin-top: 95px !important;
  }

  .mb_lg--95 {
    margin-bottom: 95px !important;
  }

  .ml_lg--95 {
    margin-left: 95px !important;
  }

  .ptb_lg--100 {
    padding: 100px 0 !important;
  }

  .plr_lg--100 {
    padding: 0 100px !important;
  }

  .pt_lg--100 {
    padding-top: 100px !important;
  }

  .pb_lg--100 {
    padding-bottom: 100px !important;
  }

  .pl_lg--100 {
    padding-left: 100px !important;
  }

  .pr_lg--100 {
    padding-right: 100px !important;
  }

  .mt_lg--100 {
    margin-top: 100px !important;
  }

  .mb_lg--100 {
    margin-bottom: 100px !important;
  }

  .ml_lg--100 {
    margin-left: 100px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb_md--0 {
    padding: 0 !important;
  }

  .pl_md--0 {
    padding-left: 0 !important;
  }

  .pr_md--0 {
    padding-right: 0 !important;
  }

  .pt_md--0 {
    padding-top: 0 !important;
  }

  .pb_md--0 {
    padding-bottom: 0 !important;
  }

  .mr_md--0 {
    margin-right: 0 !important;
  }

  .ml_md--0 {
    margin-left: 0 !important;
  }

  .mt_md--0 {
    margin-top: 0 !important;
  }

  .mb_md--0 {
    margin-bottom: 0 !important;
  }

  .ptb_md--250 {
    padding: 250px 0 !important;
  }

  .ptb_md--5 {
    padding: 5px 0 !important;
  }

  .plr_md--5 {
    padding: 0 5px !important;
  }

  .pt_md--5 {
    padding-top: 5px !important;
  }

  .pb_md--5 {
    padding-bottom: 5px !important;
  }

  .pl_md--5 {
    padding-left: 5px !important;
  }

  .pr_md--5 {
    padding-right: 5px !important;
  }

  .mt_md--5 {
    margin-top: 5px !important;
  }

  .mb_md--5 {
    margin-bottom: 5px !important;
  }

  .ptb_md--10 {
    padding: 10px 0 !important;
  }

  .plr_md--10 {
    padding: 0 10px !important;
  }

  .pt_md--10 {
    padding-top: 10px !important;
  }

  .pb_md--10 {
    padding-bottom: 10px !important;
  }

  .pl_md--10 {
    padding-left: 10px !important;
  }

  .pr_md--10 {
    padding-right: 10px !important;
  }

  .mt_md--10 {
    margin-top: 10px !important;
  }

  .mb_md--10 {
    margin-bottom: 10px !important;
  }

  .ptb_md--15 {
    padding: 15px 0 !important;
  }

  .plr_md--15 {
    padding: 0 15px !important;
  }

  .pt_md--15 {
    padding-top: 15px !important;
  }

  .pb_md--15 {
    padding-bottom: 15px !important;
  }

  .pl_md--15 {
    padding-left: 15px !important;
  }

  .pr_md--15 {
    padding-right: 15px !important;
  }

  .mt_md--15 {
    margin-top: 15px !important;
  }

  .mb_md--15 {
    margin-bottom: 15px !important;
  }

  .ptb_md--20 {
    padding: 20px 0 !important;
  }

  .plr_md--20 {
    padding: 0 20px !important;
  }

  .pt_md--20 {
    padding-top: 20px !important;
  }

  .pb_md--20 {
    padding-bottom: 20px !important;
  }

  .pl_md--20 {
    padding-left: 20px !important;
  }

  .pr_md--20 {
    padding-right: 20px !important;
  }

  .mt_md--20 {
    margin-top: 20px !important;
  }

  .mb_md--20 {
    margin-bottom: 20px !important;
  }

  .ptb_md--25 {
    padding: 25px 0 !important;
  }

  .plr_md--25 {
    padding: 0 25px !important;
  }

  .pt_md--25 {
    padding-top: 25px !important;
  }

  .pb_md--25 {
    padding-bottom: 25px !important;
  }

  .pl_md--25 {
    padding-left: 25px !important;
  }

  .pr_md--25 {
    padding-right: 25px !important;
  }

  .mt_md--25 {
    margin-top: 25px !important;
  }

  .mb_md--25 {
    margin-bottom: 25px !important;
  }

  .ptb_md--30 {
    padding: 30px 0 !important;
  }

  .plr_md--30 {
    padding: 0 30px !important;
  }

  .pt_md--30 {
    padding-top: 30px !important;
  }

  .pb_md--30 {
    padding-bottom: 30px !important;
  }

  .pl_md--30 {
    padding-left: 30px !important;
  }

  .pr_md--30 {
    padding-right: 30px !important;
  }

  .mt_md--30 {
    margin-top: 30px !important;
  }

  .mb_md--30 {
    margin-bottom: 30px !important;
  }

  .ptb_md--35 {
    padding: 35px 0 !important;
  }

  .plr_md--35 {
    padding: 0 35px !important;
  }

  .pt_md--35 {
    padding-top: 35px !important;
  }

  .pb_md--35 {
    padding-bottom: 35px !important;
  }

  .pl_md--35 {
    padding-left: 35px !important;
  }

  .pr_md--35 {
    padding-right: 35px !important;
  }

  .mt_md--35 {
    margin-top: 35px !important;
  }

  .mb_md--35 {
    margin-bottom: 35px !important;
  }

  .ptb_md--40 {
    padding: 40px 0 !important;
  }

  .plr_md--40 {
    padding: 0 40px !important;
  }

  .pt_md--40 {
    padding-top: 40px !important;
  }

  .pb_md--40 {
    padding-bottom: 40px !important;
  }

  .pl_md--40 {
    padding-left: 40px !important;
  }

  .pr_md--40 {
    padding-right: 40px !important;
  }

  .mt_md--40 {
    margin-top: 40px !important;
  }

  .mb_md--40 {
    margin-bottom: 40px !important;
  }

  .ptb_md--45 {
    padding: 45px 0 !important;
  }

  .plr_md--45 {
    padding: 0 45px !important;
  }

  .pt_md--45 {
    padding-top: 45px !important;
  }

  .pb_md--45 {
    padding-bottom: 45px !important;
  }

  .pl_md--45 {
    padding-left: 45px !important;
  }

  .pr_md--45 {
    padding-right: 45px !important;
  }

  .mt_md--45 {
    margin-top: 45px !important;
  }

  .mb_md--45 {
    margin-bottom: 45px !important;
  }

  .ptb_md--50 {
    padding: 50px 0 !important;
  }

  .plr_md--50 {
    padding: 0 50px !important;
  }

  .pt_md--50 {
    padding-top: 50px !important;
  }

  .pb_md--50 {
    padding-bottom: 50px !important;
  }

  .pl_md--50 {
    padding-left: 50px !important;
  }

  .pr_md--50 {
    padding-right: 50px !important;
  }

  .mt_md--50 {
    margin-top: 50px !important;
  }

  .mb_md--50 {
    margin-bottom: 50px !important;
  }

  .ptb_md--55 {
    padding: 55px 0 !important;
  }

  .plr_md--55 {
    padding: 0 55px !important;
  }

  .pt_md--55 {
    padding-top: 55px !important;
  }

  .pb_md--55 {
    padding-bottom: 55px !important;
  }

  .pl_md--55 {
    padding-left: 55px !important;
  }

  .pr_md--55 {
    padding-right: 55px !important;
  }

  .mt_md--55 {
    margin-top: 55px !important;
  }

  .mb_md--55 {
    margin-bottom: 55px !important;
  }

  .ptb_md--60 {
    padding: 60px 0 !important;
  }

  .plr_md--60 {
    padding: 0 60px !important;
  }

  .pt_md--60 {
    padding-top: 60px !important;
  }

  .pb_md--60 {
    padding-bottom: 60px !important;
  }

  .pl_md--60 {
    padding-left: 60px !important;
  }

  .pr_md--60 {
    padding-right: 60px !important;
  }

  .mt_md--60 {
    margin-top: 60px !important;
  }

  .mb_md--60 {
    margin-bottom: 60px !important;
  }

  .ptb_md--65 {
    padding: 65px 0 !important;
  }

  .plr_md--65 {
    padding: 0 65px !important;
  }

  .pt_md--65 {
    padding-top: 65px !important;
  }

  .pb_md--65 {
    padding-bottom: 65px !important;
  }

  .pl_md--65 {
    padding-left: 65px !important;
  }

  .pr_md--65 {
    padding-right: 65px !important;
  }

  .mt_md--65 {
    margin-top: 65px !important;
  }

  .mb_md--65 {
    margin-bottom: 65px !important;
  }

  .ptb_md--70 {
    padding: 70px 0 !important;
  }

  .plr_md--70 {
    padding: 0 70px !important;
  }

  .pt_md--70 {
    padding-top: 70px !important;
  }

  .pb_md--70 {
    padding-bottom: 70px !important;
  }

  .pl_md--70 {
    padding-left: 70px !important;
  }

  .pr_md--70 {
    padding-right: 70px !important;
  }

  .mt_md--70 {
    margin-top: 70px !important;
  }

  .mb_md--70 {
    margin-bottom: 70px !important;
  }

  .ptb_md--75 {
    padding: 75px 0 !important;
  }

  .plr_md--75 {
    padding: 0 75px !important;
  }

  .pt_md--75 {
    padding-top: 75px !important;
  }

  .pb_md--75 {
    padding-bottom: 75px !important;
  }

  .pl_md--75 {
    padding-left: 75px !important;
  }

  .pr_md--75 {
    padding-right: 75px !important;
  }

  .mt_md--75 {
    margin-top: 75px !important;
  }

  .mb_md--75 {
    margin-bottom: 75px !important;
  }

  .ptb_md--80 {
    padding: 80px 0 !important;
  }

  .plr_md--80 {
    padding: 0 80px !important;
  }

  .pt_md--80 {
    padding-top: 80px !important;
  }

  .pb_md--80 {
    padding-bottom: 80px !important;
  }

  .pl_md--80 {
    padding-left: 80px !important;
  }

  .pr_md--80 {
    padding-right: 80px !important;
  }

  .mt_md--80 {
    margin-top: 80px !important;
  }

  .mb_md--80 {
    margin-bottom: 80px !important;
  }

  .ptb_md--85 {
    padding: 85px 0 !important;
  }

  .plr_md--85 {
    padding: 0 85px !important;
  }

  .pt_md--85 {
    padding-top: 85px !important;
  }

  .pb_md--85 {
    padding-bottom: 85px !important;
  }

  .pl_md--85 {
    padding-left: 85px !important;
  }

  .pr_md--85 {
    padding-right: 85px !important;
  }

  .mt_md--85 {
    margin-top: 85px !important;
  }

  .mb_md--85 {
    margin-bottom: 85px !important;
  }

  .ptb_md--90 {
    padding: 90px 0 !important;
  }

  .plr_md--90 {
    padding: 0 90px !important;
  }

  .pt_md--90 {
    padding-top: 90px !important;
  }

  .pb_md--90 {
    padding-bottom: 90px !important;
  }

  .pl_md--90 {
    padding-left: 90px !important;
  }

  .pr_md--90 {
    padding-right: 90px !important;
  }

  .mt_md--90 {
    margin-top: 90px !important;
  }

  .mb_md--90 {
    margin-bottom: 90px !important;
  }

  .ptb_md--95 {
    padding: 95px 0 !important;
  }

  .plr_md--95 {
    padding: 0 95px !important;
  }

  .pt_md--95 {
    padding-top: 95px !important;
  }

  .pb_md--95 {
    padding-bottom: 95px !important;
  }

  .pl_md--95 {
    padding-left: 95px !important;
  }

  .pr_md--95 {
    padding-right: 95px !important;
  }

  .mt_md--95 {
    margin-top: 95px !important;
  }

  .mb_md--95 {
    margin-bottom: 95px !important;
  }

  .ptb_md--100 {
    padding: 100px 0 !important;
  }

  .plr_md--100 {
    padding: 0 100px !important;
  }

  .pt_md--100 {
    padding-top: 100px !important;
  }

  .pb_md--100 {
    padding-bottom: 100px !important;
  }

  .pl_md--100 {
    padding-left: 100px !important;
  }

  .pr_md--100 {
    padding-right: 100px !important;
  }

  .mt_md--100 {
    margin-top: 100px !important;
  }

  .mb_md--100 {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .ptb_sm--250 {
    padding: 250px 0 !important;
  }

  .ptb_sm--0 {
    padding: 0 !important;
  }

  .pl_sm--0 {
    padding-left: 0 !important;
  }

  .pr_sm--0 {
    padding-right: 0 !important;
  }

  .pt_sm--0 {
    padding-top: 0 !important;
  }

  .pb_sm--0 {
    padding-bottom: 0 !important;
  }

  .mr_sm--0 {
    margin-right: 0 !important;
  }

  .ml_sm--0 {
    margin-left: 0 !important;
  }

  .mt_sm--0 {
    margin-top: 0 !important;
  }

  .mb_sm--0 {
    margin-bottom: 0 !important;
  }

  .pt_sm--150 {
    padding-top: 150px !important;
  }

  .pb_sm--110 {
    padding-bottom: 110px !important;
  }

  .ptb_sm--5 {
    padding: 5px 0 !important;
  }

  .plr_sm--5 {
    padding: 0 5px !important;
  }

  .pt_sm--5 {
    padding-top: 5px !important;
  }

  .pb_sm--5 {
    padding-bottom: 5px !important;
  }

  .pl_sm--5 {
    padding-left: 5px !important;
  }

  .pr_sm--5 {
    padding-right: 5px !important;
  }

  .mt_sm--5 {
    margin-top: 5px !important;
  }

  .ml_sm--5 {
    margin-left: 5px !important;
  }

  .mr_sm--5 {
    margin-right: 5px !important;
  }

  .mb_sm--5 {
    margin-bottom: 5px !important;
  }

  .ptb_sm--10 {
    padding: 10px 0 !important;
  }

  .plr_sm--10 {
    padding: 0 10px !important;
  }

  .pt_sm--10 {
    padding-top: 10px !important;
  }

  .pb_sm--10 {
    padding-bottom: 10px !important;
  }

  .pl_sm--10 {
    padding-left: 10px !important;
  }

  .pr_sm--10 {
    padding-right: 10px !important;
  }

  .mt_sm--10 {
    margin-top: 10px !important;
  }

  .ml_sm--10 {
    margin-left: 10px !important;
  }

  .mr_sm--10 {
    margin-right: 10px !important;
  }

  .mb_sm--10 {
    margin-bottom: 10px !important;
  }

  .ptb_sm--15 {
    padding: 15px 0 !important;
  }

  .plr_sm--15 {
    padding: 0 15px !important;
  }

  .pt_sm--15 {
    padding-top: 15px !important;
  }

  .pb_sm--15 {
    padding-bottom: 15px !important;
  }

  .pl_sm--15 {
    padding-left: 15px !important;
  }

  .pr_sm--15 {
    padding-right: 15px !important;
  }

  .mt_sm--15 {
    margin-top: 15px !important;
  }

  .ml_sm--15 {
    margin-left: 15px !important;
  }

  .mr_sm--15 {
    margin-right: 15px !important;
  }

  .mb_sm--15 {
    margin-bottom: 15px !important;
  }

  .ptb_sm--20 {
    padding: 20px 0 !important;
  }

  .plr_sm--20 {
    padding: 0 20px !important;
  }

  .pt_sm--20 {
    padding-top: 20px !important;
  }

  .pb_sm--20 {
    padding-bottom: 20px !important;
  }

  .pl_sm--20 {
    padding-left: 20px !important;
  }

  .pr_sm--20 {
    padding-right: 20px !important;
  }

  .mt_sm--20 {
    margin-top: 20px !important;
  }

  .ml_sm--20 {
    margin-left: 20px !important;
  }

  .mr_sm--20 {
    margin-right: 20px !important;
  }

  .mb_sm--20 {
    margin-bottom: 20px !important;
  }

  .ptb_sm--25 {
    padding: 25px 0 !important;
  }

  .plr_sm--25 {
    padding: 0 25px !important;
  }

  .pt_sm--25 {
    padding-top: 25px !important;
  }

  .pb_sm--25 {
    padding-bottom: 25px !important;
  }

  .pl_sm--25 {
    padding-left: 25px !important;
  }

  .pr_sm--25 {
    padding-right: 25px !important;
  }

  .mt_sm--25 {
    margin-top: 25px !important;
  }

  .ml_sm--25 {
    margin-left: 25px !important;
  }

  .mr_sm--25 {
    margin-right: 25px !important;
  }

  .mb_sm--25 {
    margin-bottom: 25px !important;
  }

  .ptb_sm--30 {
    padding: 30px 0 !important;
  }

  .plr_sm--30 {
    padding: 0 30px !important;
  }

  .pt_sm--30 {
    padding-top: 30px !important;
  }

  .pb_sm--30 {
    padding-bottom: 30px !important;
  }

  .pl_sm--30 {
    padding-left: 30px !important;
  }

  .pr_sm--30 {
    padding-right: 30px !important;
  }

  .mt_sm--30 {
    margin-top: 30px !important;
  }

  .ml_sm--30 {
    margin-left: 30px !important;
  }

  .mr_sm--30 {
    margin-right: 30px !important;
  }

  .mb_sm--30 {
    margin-bottom: 30px !important;
  }

  .ptb_sm--35 {
    padding: 35px 0 !important;
  }

  .plr_sm--35 {
    padding: 0 35px !important;
  }

  .pt_sm--35 {
    padding-top: 35px !important;
  }

  .pb_sm--35 {
    padding-bottom: 35px !important;
  }

  .pl_sm--35 {
    padding-left: 35px !important;
  }

  .pr_sm--35 {
    padding-right: 35px !important;
  }

  .mt_sm--35 {
    margin-top: 35px !important;
  }

  .ml_sm--35 {
    margin-left: 35px !important;
  }

  .mr_sm--35 {
    margin-right: 35px !important;
  }

  .mb_sm--35 {
    margin-bottom: 35px !important;
  }

  .ptb_sm--40 {
    padding: 40px 0 !important;
  }

  .plr_sm--40 {
    padding: 0 40px !important;
  }

  .pt_sm--40 {
    padding-top: 40px !important;
  }

  .pb_sm--40 {
    padding-bottom: 40px !important;
  }

  .pl_sm--40 {
    padding-left: 40px !important;
  }

  .pr_sm--40 {
    padding-right: 40px !important;
  }

  .mt_sm--40 {
    margin-top: 40px !important;
  }

  .ml_sm--40 {
    margin-left: 40px !important;
  }

  .mr_sm--40 {
    margin-right: 40px !important;
  }

  .mb_sm--40 {
    margin-bottom: 40px !important;
  }

  .ptb_sm--45 {
    padding: 45px 0 !important;
  }

  .plr_sm--45 {
    padding: 0 45px !important;
  }

  .pt_sm--45 {
    padding-top: 45px !important;
  }

  .pb_sm--45 {
    padding-bottom: 45px !important;
  }

  .pl_sm--45 {
    padding-left: 45px !important;
  }

  .pr_sm--45 {
    padding-right: 45px !important;
  }

  .mt_sm--45 {
    margin-top: 45px !important;
  }

  .ml_sm--45 {
    margin-left: 45px !important;
  }

  .mr_sm--45 {
    margin-right: 45px !important;
  }

  .mb_sm--45 {
    margin-bottom: 45px !important;
  }

  .ptb_sm--50 {
    padding: 50px 0 !important;
  }

  .plr_sm--50 {
    padding: 0 50px !important;
  }

  .pt_sm--50 {
    padding-top: 50px !important;
  }

  .pb_sm--50 {
    padding-bottom: 50px !important;
  }

  .pl_sm--50 {
    padding-left: 50px !important;
  }

  .pr_sm--50 {
    padding-right: 50px !important;
  }

  .mt_sm--50 {
    margin-top: 50px !important;
  }

  .ml_sm--50 {
    margin-left: 50px !important;
  }

  .mr_sm--50 {
    margin-right: 50px !important;
  }

  .mb_sm--50 {
    margin-bottom: 50px !important;
  }

  .ptb_sm--55 {
    padding: 55px 0 !important;
  }

  .plr_sm--55 {
    padding: 0 55px !important;
  }

  .pt_sm--55 {
    padding-top: 55px !important;
  }

  .pb_sm--55 {
    padding-bottom: 55px !important;
  }

  .pl_sm--55 {
    padding-left: 55px !important;
  }

  .pr_sm--55 {
    padding-right: 55px !important;
  }

  .mt_sm--55 {
    margin-top: 55px !important;
  }

  .ml_sm--55 {
    margin-left: 55px !important;
  }

  .mr_sm--55 {
    margin-right: 55px !important;
  }

  .mb_sm--55 {
    margin-bottom: 55px !important;
  }

  .ptb_sm--60 {
    padding: 60px 0 !important;
  }

  .plr_sm--60 {
    padding: 0 60px !important;
  }

  .pt_sm--60 {
    padding-top: 60px !important;
  }

  .pb_sm--60 {
    padding-bottom: 60px !important;
  }

  .pl_sm--60 {
    padding-left: 60px !important;
  }

  .pr_sm--60 {
    padding-right: 60px !important;
  }

  .mt_sm--60 {
    margin-top: 60px !important;
  }

  .ml_sm--60 {
    margin-left: 60px !important;
  }

  .mr_sm--60 {
    margin-right: 60px !important;
  }

  .mb_sm--60 {
    margin-bottom: 60px !important;
  }

  .ptb_sm--65 {
    padding: 65px 0 !important;
  }

  .plr_sm--65 {
    padding: 0 65px !important;
  }

  .pt_sm--65 {
    padding-top: 65px !important;
  }

  .pb_sm--65 {
    padding-bottom: 65px !important;
  }

  .pl_sm--65 {
    padding-left: 65px !important;
  }

  .pr_sm--65 {
    padding-right: 65px !important;
  }

  .mt_sm--65 {
    margin-top: 65px !important;
  }

  .ml_sm--65 {
    margin-left: 65px !important;
  }

  .mr_sm--65 {
    margin-right: 65px !important;
  }

  .mb_sm--65 {
    margin-bottom: 65px !important;
  }

  .ptb_sm--70 {
    padding: 70px 0 !important;
  }

  .plr_sm--70 {
    padding: 0 70px !important;
  }

  .pt_sm--70 {
    padding-top: 70px !important;
  }

  .pb_sm--70 {
    padding-bottom: 70px !important;
  }

  .pl_sm--70 {
    padding-left: 70px !important;
  }

  .pr_sm--70 {
    padding-right: 70px !important;
  }

  .mt_sm--70 {
    margin-top: 70px !important;
  }

  .ml_sm--70 {
    margin-left: 70px !important;
  }

  .mr_sm--70 {
    margin-right: 70px !important;
  }

  .mb_sm--70 {
    margin-bottom: 70px !important;
  }

  .ptb_sm--75 {
    padding: 75px 0 !important;
  }

  .plr_sm--75 {
    padding: 0 75px !important;
  }

  .pt_sm--75 {
    padding-top: 75px !important;
  }

  .pb_sm--75 {
    padding-bottom: 75px !important;
  }

  .pl_sm--75 {
    padding-left: 75px !important;
  }

  .pr_sm--75 {
    padding-right: 75px !important;
  }

  .mt_sm--75 {
    margin-top: 75px !important;
  }

  .ml_sm--75 {
    margin-left: 75px !important;
  }

  .mr_sm--75 {
    margin-right: 75px !important;
  }

  .mb_sm--75 {
    margin-bottom: 75px !important;
  }

  .ptb_sm--80 {
    padding: 80px 0 !important;
  }

  .plr_sm--80 {
    padding: 0 80px !important;
  }

  .pt_sm--80 {
    padding-top: 80px !important;
  }

  .pb_sm--80 {
    padding-bottom: 80px !important;
  }

  .pl_sm--80 {
    padding-left: 80px !important;
  }

  .pr_sm--80 {
    padding-right: 80px !important;
  }

  .mt_sm--80 {
    margin-top: 80px !important;
  }

  .ml_sm--80 {
    margin-left: 80px !important;
  }

  .mr_sm--80 {
    margin-right: 80px !important;
  }

  .mb_sm--80 {
    margin-bottom: 80px !important;
  }

  .ptb_sm--85 {
    padding: 85px 0 !important;
  }

  .plr_sm--85 {
    padding: 0 85px !important;
  }

  .pt_sm--85 {
    padding-top: 85px !important;
  }

  .pb_sm--85 {
    padding-bottom: 85px !important;
  }

  .pl_sm--85 {
    padding-left: 85px !important;
  }

  .pr_sm--85 {
    padding-right: 85px !important;
  }

  .mt_sm--85 {
    margin-top: 85px !important;
  }

  .ml_sm--85 {
    margin-left: 85px !important;
  }

  .mr_sm--85 {
    margin-right: 85px !important;
  }

  .mb_sm--85 {
    margin-bottom: 85px !important;
  }

  .ptb_sm--90 {
    padding: 90px 0 !important;
  }

  .plr_sm--90 {
    padding: 0 90px !important;
  }

  .pt_sm--90 {
    padding-top: 90px !important;
  }

  .pb_sm--90 {
    padding-bottom: 90px !important;
  }

  .pl_sm--90 {
    padding-left: 90px !important;
  }

  .pr_sm--90 {
    padding-right: 90px !important;
  }

  .mt_sm--90 {
    margin-top: 90px !important;
  }

  .ml_sm--90 {
    margin-left: 90px !important;
  }

  .mr_sm--90 {
    margin-right: 90px !important;
  }

  .mb_sm--90 {
    margin-bottom: 90px !important;
  }

  .ptb_sm--95 {
    padding: 95px 0 !important;
  }

  .plr_sm--95 {
    padding: 0 95px !important;
  }

  .pt_sm--95 {
    padding-top: 95px !important;
  }

  .pb_sm--95 {
    padding-bottom: 95px !important;
  }

  .pl_sm--95 {
    padding-left: 95px !important;
  }

  .pr_sm--95 {
    padding-right: 95px !important;
  }

  .mt_sm--95 {
    margin-top: 95px !important;
  }

  .ml_sm--95 {
    margin-left: 95px !important;
  }

  .mr_sm--95 {
    margin-right: 95px !important;
  }

  .mb_sm--95 {
    margin-bottom: 95px !important;
  }

  .ptb_sm--100 {
    padding: 100px 0 !important;
  }

  .plr_sm--100 {
    padding: 0 100px !important;
  }

  .pt_sm--100 {
    padding-top: 100px !important;
  }

  .pb_sm--100 {
    padding-bottom: 100px !important;
  }

  .pl_sm--100 {
    padding-left: 100px !important;
  }

  .pr_sm--100 {
    padding-right: 100px !important;
  }

  .mt_sm--100 {
    margin-top: 100px !important;
  }

  .ml_sm--100 {
    margin-left: 100px !important;
  }

  .mr_sm--100 {
    margin-right: 100px !important;
  }

  .mb_sm--100 {
    margin-bottom: 100px !important;
  }

  .pl_sm--0 {
    padding-left: 0;
  }

  .pr_sm--0 {
    padding-right: 0;
  }

  .pt_sm--0 {
    padding-top: 0;
  }

  .pb_sm--0 {
    padding-bottom: 0;
  }

  .mr_sm--0 {
    margin-right: 0;
  }

  .ml_sm--0 {
    margin-left: 0;
  }

  .mt_sm--0 {
    margin-top: 0;
  }

  .mb_sm--0 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .ptb_mobile--5 {
    padding: 5px 0 !important;
  }

  .plr_mobile--5 {
    padding: 0 5px !important;
  }

  .pt_mobile--5 {
    padding-top: 5px !important;
  }

  .pb_mobile--5 {
    padding-bottom: 5px !important;
  }

  .pl_mobile--5 {
    padding-left: 5px !important;
  }

  .pr_mobile--5 {
    padding-right: 5px !important;
  }

  .mt_mobile--5 {
    margin-top: 5px !important;
  }

  .mb_mobile--5 {
    margin-bottom: 5px !important;
  }

  .ptb_mobile--10 {
    padding: 10px 0 !important;
  }

  .plr_mobile--10 {
    padding: 0 10px !important;
  }

  .pt_mobile--10 {
    padding-top: 10px !important;
  }

  .pb_mobile--10 {
    padding-bottom: 10px !important;
  }

  .pl_mobile--10 {
    padding-left: 10px !important;
  }

  .pr_mobile--10 {
    padding-right: 10px !important;
  }

  .mt_mobile--10 {
    margin-top: 10px !important;
  }

  .mb_mobile--10 {
    margin-bottom: 10px !important;
  }

  .ptb_mobile--15 {
    padding: 15px 0 !important;
  }

  .plr_mobile--15 {
    padding: 0 15px !important;
  }

  .pt_mobile--15 {
    padding-top: 15px !important;
  }

  .pb_mobile--15 {
    padding-bottom: 15px !important;
  }

  .pl_mobile--15 {
    padding-left: 15px !important;
  }

  .pr_mobile--15 {
    padding-right: 15px !important;
  }

  .mt_mobile--15 {
    margin-top: 15px !important;
  }

  .mb_mobile--15 {
    margin-bottom: 15px !important;
  }

  .ptb_mobile--20 {
    padding: 20px 0 !important;
  }

  .plr_mobile--20 {
    padding: 0 20px !important;
  }

  .pt_mobile--20 {
    padding-top: 20px !important;
  }

  .pb_mobile--20 {
    padding-bottom: 20px !important;
  }

  .pl_mobile--20 {
    padding-left: 20px !important;
  }

  .pr_mobile--20 {
    padding-right: 20px !important;
  }

  .mt_mobile--20 {
    margin-top: 20px !important;
  }

  .mb_mobile--20 {
    margin-bottom: 20px !important;
  }

  .ptb_mobile--25 {
    padding: 25px 0 !important;
  }

  .plr_mobile--25 {
    padding: 0 25px !important;
  }

  .pt_mobile--25 {
    padding-top: 25px !important;
  }

  .pb_mobile--25 {
    padding-bottom: 25px !important;
  }

  .pl_mobile--25 {
    padding-left: 25px !important;
  }

  .pr_mobile--25 {
    padding-right: 25px !important;
  }

  .mt_mobile--25 {
    margin-top: 25px !important;
  }

  .mb_mobile--25 {
    margin-bottom: 25px !important;
  }

  .ptb_mobile--30 {
    padding: 30px 0 !important;
  }

  .plr_mobile--30 {
    padding: 0 30px !important;
  }

  .pt_mobile--30 {
    padding-top: 30px !important;
  }

  .pb_mobile--30 {
    padding-bottom: 30px !important;
  }

  .pl_mobile--30 {
    padding-left: 30px !important;
  }

  .pr_mobile--30 {
    padding-right: 30px !important;
  }

  .mt_mobile--30 {
    margin-top: 30px !important;
  }

  .mb_mobile--30 {
    margin-bottom: 30px !important;
  }

  .ptb_mobile--35 {
    padding: 35px 0 !important;
  }

  .plr_mobile--35 {
    padding: 0 35px !important;
  }

  .pt_mobile--35 {
    padding-top: 35px !important;
  }

  .pb_mobile--35 {
    padding-bottom: 35px !important;
  }

  .pl_mobile--35 {
    padding-left: 35px !important;
  }

  .pr_mobile--35 {
    padding-right: 35px !important;
  }

  .mt_mobile--35 {
    margin-top: 35px !important;
  }

  .mb_mobile--35 {
    margin-bottom: 35px !important;
  }

  .ptb_mobile--40 {
    padding: 40px 0 !important;
  }

  .plr_mobile--40 {
    padding: 0 40px !important;
  }

  .pt_mobile--40 {
    padding-top: 40px !important;
  }

  .pb_mobile--40 {
    padding-bottom: 40px !important;
  }

  .pl_mobile--40 {
    padding-left: 40px !important;
  }

  .pr_mobile--40 {
    padding-right: 40px !important;
  }

  .mt_mobile--40 {
    margin-top: 40px !important;
  }

  .mb_mobile--40 {
    margin-bottom: 40px !important;
  }

  .ptb_mobile--45 {
    padding: 45px 0 !important;
  }

  .plr_mobile--45 {
    padding: 0 45px !important;
  }

  .pt_mobile--45 {
    padding-top: 45px !important;
  }

  .pb_mobile--45 {
    padding-bottom: 45px !important;
  }

  .pl_mobile--45 {
    padding-left: 45px !important;
  }

  .pr_mobile--45 {
    padding-right: 45px !important;
  }

  .mt_mobile--45 {
    margin-top: 45px !important;
  }

  .mb_mobile--45 {
    margin-bottom: 45px !important;
  }

  .ptb_mobile--50 {
    padding: 50px 0 !important;
  }

  .plr_mobile--50 {
    padding: 0 50px !important;
  }

  .pt_mobile--50 {
    padding-top: 50px !important;
  }

  .pb_mobile--50 {
    padding-bottom: 50px !important;
  }

  .pl_mobile--50 {
    padding-left: 50px !important;
  }

  .pr_mobile--50 {
    padding-right: 50px !important;
  }

  .mt_mobile--50 {
    margin-top: 50px !important;
  }

  .mb_mobile--50 {
    margin-bottom: 50px !important;
  }

  .ptb_mobile--55 {
    padding: 55px 0 !important;
  }

  .plr_mobile--55 {
    padding: 0 55px !important;
  }

  .pt_mobile--55 {
    padding-top: 55px !important;
  }

  .pb_mobile--55 {
    padding-bottom: 55px !important;
  }

  .pl_mobile--55 {
    padding-left: 55px !important;
  }

  .pr_mobile--55 {
    padding-right: 55px !important;
  }

  .mt_mobile--55 {
    margin-top: 55px !important;
  }

  .mb_mobile--55 {
    margin-bottom: 55px !important;
  }

  .ptb_mobile--60 {
    padding: 60px 0 !important;
  }

  .plr_mobile--60 {
    padding: 0 60px !important;
  }

  .pt_mobile--60 {
    padding-top: 60px !important;
  }

  .pb_mobile--60 {
    padding-bottom: 60px !important;
  }

  .pl_mobile--60 {
    padding-left: 60px !important;
  }

  .pr_mobile--60 {
    padding-right: 60px !important;
  }

  .mt_mobile--60 {
    margin-top: 60px !important;
  }

  .mb_mobile--60 {
    margin-bottom: 60px !important;
  }

  .ptb_mobile--65 {
    padding: 65px 0 !important;
  }

  .plr_mobile--65 {
    padding: 0 65px !important;
  }

  .pt_mobile--65 {
    padding-top: 65px !important;
  }

  .pb_mobile--65 {
    padding-bottom: 65px !important;
  }

  .pl_mobile--65 {
    padding-left: 65px !important;
  }

  .pr_mobile--65 {
    padding-right: 65px !important;
  }

  .mt_mobile--65 {
    margin-top: 65px !important;
  }

  .mb_mobile--65 {
    margin-bottom: 65px !important;
  }

  .ptb_mobile--70 {
    padding: 70px 0 !important;
  }

  .plr_mobile--70 {
    padding: 0 70px !important;
  }

  .pt_mobile--70 {
    padding-top: 70px !important;
  }

  .pb_mobile--70 {
    padding-bottom: 70px !important;
  }

  .pl_mobile--70 {
    padding-left: 70px !important;
  }

  .pr_mobile--70 {
    padding-right: 70px !important;
  }

  .mt_mobile--70 {
    margin-top: 70px !important;
  }

  .mb_mobile--70 {
    margin-bottom: 70px !important;
  }

  .ptb_mobile--75 {
    padding: 75px 0 !important;
  }

  .plr_mobile--75 {
    padding: 0 75px !important;
  }

  .pt_mobile--75 {
    padding-top: 75px !important;
  }

  .pb_mobile--75 {
    padding-bottom: 75px !important;
  }

  .pl_mobile--75 {
    padding-left: 75px !important;
  }

  .pr_mobile--75 {
    padding-right: 75px !important;
  }

  .mt_mobile--75 {
    margin-top: 75px !important;
  }

  .mb_mobile--75 {
    margin-bottom: 75px !important;
  }

  .ptb_mobile--80 {
    padding: 80px 0 !important;
  }

  .plr_mobile--80 {
    padding: 0 80px !important;
  }

  .pt_mobile--80 {
    padding-top: 80px !important;
  }

  .pb_mobile--80 {
    padding-bottom: 80px !important;
  }

  .pl_mobile--80 {
    padding-left: 80px !important;
  }

  .pr_mobile--80 {
    padding-right: 80px !important;
  }

  .mt_mobile--80 {
    margin-top: 80px !important;
  }

  .mb_mobile--80 {
    margin-bottom: 80px !important;
  }

  .ptb_mobile--85 {
    padding: 85px 0 !important;
  }

  .plr_mobile--85 {
    padding: 0 85px !important;
  }

  .pt_mobile--85 {
    padding-top: 85px !important;
  }

  .pb_mobile--85 {
    padding-bottom: 85px !important;
  }

  .pl_mobile--85 {
    padding-left: 85px !important;
  }

  .pr_mobile--85 {
    padding-right: 85px !important;
  }

  .mt_mobile--85 {
    margin-top: 85px !important;
  }

  .mb_mobile--85 {
    margin-bottom: 85px !important;
  }

  .ptb_mobile--90 {
    padding: 90px 0 !important;
  }

  .plr_mobile--90 {
    padding: 0 90px !important;
  }

  .pt_mobile--90 {
    padding-top: 90px !important;
  }

  .pb_mobile--90 {
    padding-bottom: 90px !important;
  }

  .pl_mobile--90 {
    padding-left: 90px !important;
  }

  .pr_mobile--90 {
    padding-right: 90px !important;
  }

  .mt_mobile--90 {
    margin-top: 90px !important;
  }

  .mb_mobile--90 {
    margin-bottom: 90px !important;
  }

  .ptb_mobile--95 {
    padding: 95px 0 !important;
  }

  .plr_mobile--95 {
    padding: 0 95px !important;
  }

  .pt_mobile--95 {
    padding-top: 95px !important;
  }

  .pb_mobile--95 {
    padding-bottom: 95px !important;
  }

  .pl_mobile--95 {
    padding-left: 95px !important;
  }

  .pr_mobile--95 {
    padding-right: 95px !important;
  }

  .mt_mobile--95 {
    margin-top: 95px !important;
  }

  .mb_mobile--95 {
    margin-bottom: 95px !important;
  }

  .ptb_mobile--100 {
    padding: 100px 0 !important;
  }

  .plr_mobile--100 {
    padding: 0 100px !important;
  }

  .pt_mobile--100 {
    padding-top: 100px !important;
  }

  .pb_mobile--100 {
    padding-bottom: 100px !important;
  }

  .pl_mobile--100 {
    padding-left: 100px !important;
  }

  .pr_mobile--100 {
    padding-right: 100px !important;
  }

  .mt_mobile--100 {
    margin-top: 100px !important;
  }

  .mb_mobile--100 {
    margin-bottom: 100px !important;
  }
}
.slick-gutter-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.mt-dec-30 {
  margin-top: -30px !important;
}

.mt_dec--30 {
  margin-top: -30px !important;
}

.mt-dec-100 {
  margin-top: -100px !important;
}

@media only screen and (max-width: 479px) {
  .small-margin-pricing {
    margin-bottom: 25px !important;
  }
}

@media only screen and (max-width: 479px) {
  .contact-input {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb_dec--35 {
    margin-bottom: -50px;
  }
}

@media only screen and (max-width: 767px) {
  .mb_dec--35 {
    margin-bottom: -75px;
  }
}
@media only screen and (max-width: 575px) {
  .mb_dec--35 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .mt-contact-sm {
    margin-top: 30px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-pb {
    padding-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-input {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-input {
    padding-bottom: 30px;
  }
}

.pb_xl--130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1199px) {
  .pb_xl--130 {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1199px) {
  .mt_experience {
    margin-top: -10px;
  }
}

.mt_dec--120 {
  margin-top: -120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plr_md--0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

address {
  margin: 0 0 24px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

mark {
  background: var(--color-primary);
  color: #ffffff;
}

code,
kbd,
pre,
samp {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}

kbd,
ins {
  color: #ffffff;
}

pre {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}

small {
  font-size: smaller;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin-top: 0;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

dt {
  font-weight: bold;
  color: var(--color-heading);
}

menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,
li > ol {
  margin: 0;
}

ol ul {
  margin-bottom: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid var(--color-border);
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

caption,
th,
td {
  font-weight: normal;
}

th {
  font-weight: 500;
  text-transform: uppercase;
}

td,
.wp-block-calendar tfoot td {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

del {
  color: #333;
}

ins {
  background: rgba(255, 47, 47, 0.4);
  text-decoration: none;
}

hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
  color: #4d5057;
  opacity: 1;
}

table a,
table a:link,
table a:visited {
  text-decoration: underline;
}

dt {
  font-weight: bold;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

caption {
  caption-side: top;
}

kbd {
  background: var(--heading-color);
}

dfn,
cite,
em {
  font-style: italic;
}

/* BlockQuote  */
blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote {
  font-size: var(--font-size-b1);
  font-style: italic;
  font-weight: var(--p-light);
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite,
blockquote small {
  font-size: var(--font-size-b3);
  font-weight: normal;
}

blockquote strong,
blockquote b {
  font-weight: 700;
}

/* ========= Forms Styles ========= */
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}
input:focus, input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
  /* -- Placeholder -- */
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type=text].p-holder__active, .input-active input[type=text], input[type=text].input-active,
input[type=password].p-holder__active,
.input-active input[type=password],
input[type=password].input-active,
input[type=email].p-holder__active,
.input-active input[type=email],
input[type=email].input-active,
input[type=number].p-holder__active,
.input-active input[type=number],
input[type=number].input-active,
input[type=tel].p-holder__active,
.input-active input[type=tel],
input[type=tel].input-active,
textarea.p-holder__active,
textarea.input-active {
  border-color: var(--color-primary);
  /* -- Placeholder -- */
}
input[type=text].p-holder__active::placeholder, .input-active input[type=text]::placeholder, input[type=text].input-active::placeholder,
input[type=password].p-holder__active::placeholder,
.input-active input[type=password]::placeholder,
input[type=password].input-active::placeholder,
input[type=email].p-holder__active::placeholder,
.input-active input[type=email]::placeholder,
input[type=email].input-active::placeholder,
input[type=number].p-holder__active::placeholder,
.input-active input[type=number]::placeholder,
input[type=number].input-active::placeholder,
input[type=tel].p-holder__active::placeholder,
.input-active input[type=tel]::placeholder,
input[type=tel].input-active::placeholder,
textarea.p-holder__active::placeholder,
textarea.input-active::placeholder {
  color: var(--color-primary);
  /* Firefox */
  opacity: 1;
}
input[type=text].p-holder__active:-ms-input-placeholder, .input-active input[type=text]:-ms-input-placeholder, input[type=text].input-active:-ms-input-placeholder,
input[type=password].p-holder__active:-ms-input-placeholder,
.input-active input[type=password]:-ms-input-placeholder,
input[type=password].input-active:-ms-input-placeholder,
input[type=email].p-holder__active:-ms-input-placeholder,
.input-active input[type=email]:-ms-input-placeholder,
input[type=email].input-active:-ms-input-placeholder,
input[type=number].p-holder__active:-ms-input-placeholder,
.input-active input[type=number]:-ms-input-placeholder,
input[type=number].input-active:-ms-input-placeholder,
input[type=tel].p-holder__active:-ms-input-placeholder,
.input-active input[type=tel]:-ms-input-placeholder,
input[type=tel].input-active:-ms-input-placeholder,
textarea.p-holder__active:-ms-input-placeholder,
textarea.input-active:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-primary);
}
input[type=text].p-holder__active::-ms-input-placeholder, .input-active input[type=text]::-ms-input-placeholder, input[type=text].input-active::-ms-input-placeholder,
input[type=password].p-holder__active::-ms-input-placeholder,
.input-active input[type=password]::-ms-input-placeholder,
input[type=password].input-active::-ms-input-placeholder,
input[type=email].p-holder__active::-ms-input-placeholder,
.input-active input[type=email]::-ms-input-placeholder,
input[type=email].input-active::-ms-input-placeholder,
input[type=number].p-holder__active::-ms-input-placeholder,
.input-active input[type=number]::-ms-input-placeholder,
input[type=number].input-active::-ms-input-placeholder,
input[type=tel].p-holder__active::-ms-input-placeholder,
.input-active input[type=tel]::-ms-input-placeholder,
input[type=tel].input-active::-ms-input-placeholder,
textarea.p-holder__active::-ms-input-placeholder,
textarea.input-active::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color-primary);
}
input[type=text].p-holder__error, .input-error input[type=text], input[type=text].input-error,
input[type=password].p-holder__error,
.input-error input[type=password],
input[type=password].input-error,
input[type=email].p-holder__error,
.input-error input[type=email],
input[type=email].input-error,
input[type=number].p-holder__error,
.input-error input[type=number],
input[type=number].input-error,
input[type=tel].p-holder__error,
.input-error input[type=tel],
input[type=tel].input-error,
textarea.p-holder__error,
textarea.input-error {
  border-color: #f4282d;
  /* -- Placeholder -- */
}
input[type=text].p-holder__error::placeholder, .input-error input[type=text]::placeholder, input[type=text].input-error::placeholder,
input[type=password].p-holder__error::placeholder,
.input-error input[type=password]::placeholder,
input[type=password].input-error::placeholder,
input[type=email].p-holder__error::placeholder,
.input-error input[type=email]::placeholder,
input[type=email].input-error::placeholder,
input[type=number].p-holder__error::placeholder,
.input-error input[type=number]::placeholder,
input[type=number].input-error::placeholder,
input[type=tel].p-holder__error::placeholder,
.input-error input[type=tel]::placeholder,
input[type=tel].input-error::placeholder,
textarea.p-holder__error::placeholder,
textarea.input-error::placeholder {
  color: #f4282d;
  /* Firefox */
  opacity: 1;
}
input[type=text].p-holder__error:-ms-input-placeholder, .input-error input[type=text]:-ms-input-placeholder, input[type=text].input-error:-ms-input-placeholder,
input[type=password].p-holder__error:-ms-input-placeholder,
.input-error input[type=password]:-ms-input-placeholder,
input[type=password].input-error:-ms-input-placeholder,
input[type=email].p-holder__error:-ms-input-placeholder,
.input-error input[type=email]:-ms-input-placeholder,
input[type=email].input-error:-ms-input-placeholder,
input[type=number].p-holder__error:-ms-input-placeholder,
.input-error input[type=number]:-ms-input-placeholder,
input[type=number].input-error:-ms-input-placeholder,
input[type=tel].p-holder__error:-ms-input-placeholder,
.input-error input[type=tel]:-ms-input-placeholder,
input[type=tel].input-error:-ms-input-placeholder,
textarea.p-holder__error:-ms-input-placeholder,
textarea.input-error:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #f4282d;
}
input[type=text].p-holder__error::-ms-input-placeholder, .input-error input[type=text]::-ms-input-placeholder, input[type=text].input-error::-ms-input-placeholder,
input[type=password].p-holder__error::-ms-input-placeholder,
.input-error input[type=password]::-ms-input-placeholder,
input[type=password].input-error::-ms-input-placeholder,
input[type=email].p-holder__error::-ms-input-placeholder,
.input-error input[type=email]::-ms-input-placeholder,
input[type=email].input-error::-ms-input-placeholder,
input[type=number].p-holder__error::-ms-input-placeholder,
.input-error input[type=number]::-ms-input-placeholder,
input[type=number].input-error::-ms-input-placeholder,
input[type=tel].p-holder__error::-ms-input-placeholder,
.input-error input[type=tel]::-ms-input-placeholder,
input[type=tel].input-error::-ms-input-placeholder,
textarea.p-holder__error::-ms-input-placeholder,
textarea.input-error::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #f4282d;
}
input[type=text].p-holder__error:focus, .input-error input[type=text]:focus, input[type=text].input-error:focus,
input[type=password].p-holder__error:focus,
.input-error input[type=password]:focus,
input[type=password].input-error:focus,
input[type=email].p-holder__error:focus,
.input-error input[type=email]:focus,
input[type=email].input-error:focus,
input[type=number].p-holder__error:focus,
.input-error input[type=number]:focus,
input[type=number].input-error:focus,
input[type=tel].p-holder__error:focus,
.input-error input[type=tel]:focus,
input[type=tel].input-error:focus,
textarea.p-holder__error:focus,
textarea.input-error:focus {
  border-color: #f4282d;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
  position: absolute;
}
input[type=checkbox] ~ label,
input[type=radio] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type=checkbox] ~ label::before,
input[type=radio] ~ label::before {
  content: " ";
  position: absolute;
  top: 1 px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: var(--color-body);
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type=checkbox] ~ label::after,
input[type=radio] ~ label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type=checkbox]:checked ~ label::after,
input[type=radio]:checked ~ label::after {
  opacity: 1;
}

input:checked ~ .rn-check-box-label::before {
  background: var(--color-primary) !important;
}

input[type=radio] ~ label::before {
  border-radius: 50%;
}
input[type=radio] ~ label::after {
  width: 8px;
  height: 8px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
}

input[type=submit] {
  width: auto;
  padding: 0 30px;
  border-radius: 500px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}
input[type=submit]:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-5px);
}

/*==============================
 *  Utilities
=================================*/
/* 
font-family: 'Red Hat Display', sans-serif;
*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.fix {
  overflow: hidden;
}

.slick-gutter-15 {
  margin: -30px -15px;
}
.slick-gutter-15 .slick-slide {
  padding: 30px 15px;
}

iframe {
  width: 100%;
}

/*===============================
    Background Color 
=================================*/
.bg-color-primary {
  background: var(--color-primary);
}

.bg-color-secondary {
  background: var(--color-secondary);
}

.bg-color-tertiary {
  background: var(--color-tertiary);
}

.bg-color-gray {
  background: var(--color-gray);
}

.bg-color-white {
  background: #FFFFFF;
}

.bg-color-black {
  background: #1A1A1A;
}

.bg-color-extra03 {
  background: var(--color-extra03);
}

/*===========================
Background Image 
=============================*/
/* Height and width */
.fullscreen {
  min-height: 980px;
  width: 100%;
}

/*===================
Custom Row
======================*/
.row--0 {
  margin-left: 0px;
  margin-right: 0px;
}
.row--0 > [class*=col] {
  padding-left: 0px;
  padding-right: 0px;
}

.row--5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row--5 > [class*=col] {
  padding-left: 5px;
  padding-right: 5px;
}

.row--10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row--10 > [class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}

.row--20 {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--20 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--20 > [class*=col], .row--20 > [class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 > [class*=col], .row--20 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 > [class*=col], .row--20 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 > [class*=col], .row--20 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--20 > [class*=col], .row--20 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--25 {
  margin-left: -25px;
  margin-right: -25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--25 > [class*=col], .row--25 > [class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 > [class*=col], .row--25 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--30 > [class*=col], .row--30 > [class*=col-] {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 > [class*=col], .row--30 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--45 {
  margin-left: -45px;
  margin-right: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--45 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--45 > [class*=col], .row--45 > [class*=col-] {
  padding-left: 45px;
  padding-right: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 > [class*=col], .row--45 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 > [class*=col], .row--45 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 > [class*=col], .row--45 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--45 > [class*=col], .row--45 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--40 {
  margin-left: -40px;
  margin-right: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--40 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--40 > [class*=col], .row--40 > [class*=col-] {
  padding-left: 40px;
  padding-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 > [class*=col], .row--40 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 > [class*=col], .row--40 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 > [class*=col], .row--40 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--40 > [class*=col], .row--40 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--60 {
  margin-left: -60px;
  margin-right: -60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--60 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--60 > [class*=col], .row--60 > [class*=col-] {
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 > [class*=col], .row--60 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 > [class*=col], .row--60 > [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 > [class*=col], .row--60 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--60 > [class*=col], .row--60 > [class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/
[data-overlay],
[data-black-overlay],
[data-white-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] > div,
[data-overlay] > *,
[data-black-overlay] > div,
[data-black-overlay] > *,
[data-white-overlay] > div,
[data-white-overlay] > * {
  position: relative;
  z-index: 2;
}

[data-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

[data-overlay]:before {
  background: var(--color-primary);
}

[data-black-overlay]:before {
  background-color: #000000;
}

[data-white-overlay]:before {
  background-color: #ffffff;
}

[data-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before,
[data-black-overlay="6"]:before,
[data-white-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
  opacity: 1;
}

/*------------------------------
    Scroll Up 
--------------------------------*/
#scrollUp {
  width: 70px;
  height: 80px;
  right: 100px;
  bottom: 60px;
  text-align: center;
  z-index: 9811 !important;
  text-decoration: none;
  background: #fff;
  line-height: 80px;
  color: #757589;
  font-size: 15px;
  font-weight: 400;
  transition: var(--transition);
  display: inline-block;
  background: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #scrollUp {
    right: 20px;
    bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #scrollUp {
    right: 20px;
    bottom: 40px;
  }
}
#scrollUp::before {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 2, 72, 0.1);
  content: "";
  position: absolute;
  z-index: -1;
  transform-style: preserve-3d;
  transform: rotateY(-10deg);
  filter: blur(50px);
}
#scrollUp::after {
  background: #ffffff;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-style: preserve-3d;
  transform: rotateY(-10deg);
}
@media only screen and (max-width: 767px) {
  #scrollUp {
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 60px;
    line-height: 60px;
  }
}
#scrollUp span.text {
  position: relative;
  display: inline-block;
  margin-top: 7px;
}
@media only screen and (max-width: 767px) {
  #scrollUp span.text {
    margin-top: 3px;
  }
}
#scrollUp span.text::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent var(--color-primary) transparent;
  position: absolute;
  content: "";
  left: 50%;
  top: 21%;
  transform: translateX(-50%);
}
#scrollUp:hover span.text {
  color: var(--color-primary);
}

/*--------------------
    Contact Form 
----------------------*/
.form-message {
  margin-bottom: 0;
  text-align: center;
}
.form-message.error {
  margin-top: 20px;
  color: #f80707;
}
.form-message.success {
  margin-top: 20px;
  color: #0d8d2d;
}

body {
  scroll-behavior: auto;
}

/*------------------------
    Header Sticky 
--------------------------*/

@media only screen and (max-width: 767px) {
  .row-reverce-sm {
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 767px) {
  .row-reverce-not {
    flex-direction: column;
  }
}

a.over-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.social-share-style-1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-share-style-1 ul li {
  margin-right: 10px;
}
.social-share-style-1 ul li a {
  padding: 15px;
  background: var(--color-primary-alta);
}

@media only screen and (min-width: 1400px) {
  .col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 30%;
  }
}

p {
  color: var(--color-body);
}

a {
  transition: var(--transition);
}
a:hover {
  color: var(--color-primary);
}

.bg-color--3 {
  background: var(--background-color-3);
}

.bg-color--2 {
  background: var(--background-color-2);
}

.bg-color--1 {
  background: var(--background-color-1);
}

.g-6,
.gx-6 {
  --bs-gutter-x: 6rem;
}

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

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

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

.color-red {
  color: red !important;
}

.color-blue {
  color: blue !important;
}

.color-green {
  color: #3BC049 !important;
}

.color-yellow {
  color: yellow !important;
}

.color-pink {
  color: pink !important;
}

.color-purple {
  color: purple !important;
}

.color-maroon {
  color: maroon !important;
}

nav.pagination-wrapper {
  display: flex;
  justify-content: center;
}
nav.pagination-wrapper .pagination {
  margin-top: 60px;
  margin-bottom: 0;
  transition: var(--transition);
  background: var(--background-color-1);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
nav.pagination-wrapper .pagination li {
  margin: 0;
}
nav.pagination-wrapper .pagination li a {
  background: var(--background-color-1);
  border: none;
  color: var(--color-white);
  padding: 12px 20px;
  margin: 6px;
  border-radius: 6px !important;
}
@media only screen and (max-width: 767px) {
  nav.pagination-wrapper .pagination li a {
    padding: 12px 14px;
  }
}
nav.pagination-wrapper .pagination li a:hover, nav.pagination-wrapper .pagination li a.active {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
nav.pagination-wrapper .pagination li a:focus {
  background: var(--color-primary);
  border: none;
  box-shadow: none;
}

.grid-metro-item-20 {
  width: 25%;
  padding: 0 15px;
  margin-top: 30px;
}

.grid-metro5 {
  margin: 0 -15px;
}

.up-plus {
  position: relative;
}
.up-plus::after {
  position: absolute;
  content: "\e9b1";
  font-family: "feather" !important;
  top: -9px;
  color: var(--color-primary);
}

.shortby-default {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 575px) {
  .shortby-default {
    justify-content: flex-start;
  }
}
.shortby-default .filter-leble {
  padding-right: 20px;
  display: inline-block;
}

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@keyframes customOne {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
}
@keyframes liveAuction {
  0% {
    background: var(--color-white);
  }
  100% {
    background: var(--color-danger);
  }
}
.cd-intro {
  margin: 4em auto;
}

@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 5em auto;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    margin: 6em auto;
  }
}
.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-headline {
    font-size: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .cd-headline {
    font-size: 26px;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip span {
  display: inline-block;
  padding: 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: middle;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/**
 * Settings
 */
/**
  * Easings
  */
/**
  * Core
  */
[data-sal] {
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-delay: var(--sal-delay, 0s);
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
  transition-duration: 2s;
}

[data-sal][data-sal-delay="50"] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
  * Animations
  */
[data-sal|=fade] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
  opacity: 1;
}

[data-sal|=slide] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=slide-up] {
  transform: translateY(20%);
}

[data-sal=slide-down] {
  transform: translateY(-20%);
}

[data-sal=slide-left] {
  transform: translateX(20%);
}

[data-sal=slide-right] {
  transform: translateX(-20%);
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
  opacity: 1;
  transform: none;
}

[data-sal|=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=zoom-in] {
  transform: scale(0.5);
}

[data-sal=zoom-out] {
  transform: scale(1.1);
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
  opacity: 1;
  transform: none;
}

[data-sal|=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-sal=flip-left] {
  transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
  transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
  transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
  transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
  transform: none;
}

/* Header  */
/*------------------------
    Header Sticky 
--------------------------*/
.logo-custom-css .logo-dark {
  display: none;
}

.header_admin {
  display: none;
}

.rn-slider-area.fullscreen-slide {
  top: -50px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .rn-slider-area.fullscreen-slide {
    top: -105px;
  }
}

.lg-product-share .profile-share .more-author-text {
  font-size: 18px;
}

.rn-slider-area.fullscreen-slide .rn-slick-dot-style .slick-dots {
  bottom: 50px;
}
.rn-slider-area .btn {
  border-radius: 5px;
}

.slide.slide-style-2 {
  padding-top: 250px;
  padding-bottom: 250px;
}
.slide.slide-style-2 h1 {
  font-size: 80px;
  letter-spacing: 2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide.slide-style-2 h1 {
    font-size: 60px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .slide.slide-style-2 h1 {
    font-size: 40px;
    letter-spacing: 1px;
  }
}

.haeder-default .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 479px) {
  .haeder-default .header-inner {
    padding: 18px;
  }
}
.haeder-default .header-left {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-basis: 50%;
}
@media only screen and (max-width: 479px) {
  .haeder-default .header-left {
    justify-content: left;
    flex-basis: 100%;
  }
}
.haeder-default .header-right {
  justify-content: flex-end;
  display: flex;
  flex-basis: 50%;
  align-items: center;
  margin: 0 -5px;
}
@media only screen and (max-width: 479px) {
  .haeder-default .header-right {
    justify-content: right;
    flex-basis: 100%;
  }
}
.haeder-default .header-right .setting-option {
  margin: 0 5px;
}
@media only screen and (max-width: 479px) {
  .haeder-default .header-right .setting-option {
    margin: 0 2px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .haeder-default .header-right .setting-option .icon-box a#connectbtn {
    padding: 10px 11px;
    font-size: 12px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 1199px) {
  .haeder-default .header-right .setting-option .icon-box a#connectbtn {
    padding: 10px 11px;
    font-size: 12px;
    border-radius: 6px;
  }
}
@media only screen and (max-width: 479px) {
  .haeder-default .header-right .setting-option .icon-box a#connectbtn {
    padding: 8px 11px;
    font-size: 12px;
    border-radius: 6px;
  }
}
.haeder-default .header-right ul {
  margin: 0;
}
.haeder-default .menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  margin-top: 5px;
  margin-left: -10px;
}
.haeder-default .menu-list li {
  margin: 0;
}
.haeder-default .menu-list li a {
  transition: var(--transition);
  margin-left: 10px;
  color: #6d6d80;
}

haeder-default .header-right .main.menu li a {
  transition: var(--transition);
}

@media (max-width: 768px) {
  .mainmenu li a {
      color: #4d5057; /* Text color remains white on mobile */
  }
}
.search-form-wrapper {
  position: relative;
}
.search-form-wrapper .form-control,
.search-form-wrapper input {
  background: transparent;
  border-color: var(--color-border);
  font-size: 15px;
  border-radius: 10px;
  padding: 0 15px;
  color: var(--color-body);
  outline: none;
  box-shadow: none;
  transition: 0.4s;
  padding-right: 35px;
}
.search-form-wrapper .form-control:focus,
.search-form-wrapper input:focus {
  border-color: var(--color-primary);
}
.search-form-wrapper .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
}
.search-form-wrapper .search-icon button {
  border: 0 none;
  padding: 0;
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.left-header-style .logo-area a img {
  max-width: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-search-mobile.form-group {
    position: absolute;
    top: 100%;
    background: var(--background-color-4);
    width: 100%;
    right: 0;
    margin-bottom: 0;
    padding: 20px;
    z-index: 3;
  }

  .large-mobile-blog-search {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .large-mobile-blog-search.active {
    opacity: 1;
    visibility: visible;
  }

  .rn-search-mobile.form-group input {
    width: 100%;
    background: var(--color-primary-alta);
    padding-right: 52px;
    color: var(--color-body);
  }

  button.search-button {
    position: absolute;
  }

  .mobile-search-wrapper {
    position: static;
  }

  button.search-button {
    position: absolute;
    width: 52px;
    background: transparent;
    right: 19px;
    border: 0 none;
    top: 50%;
    transform: translateY(-50%);
    height: 47px;
  }

  .search-mobile-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    border-radius: 100%;
    display: inline-block;
    min-width: 40px;
  }
  .search-mobile-icon button {
    border: 0 none;
  }
  .search-mobile-icon button i {
    font-weight: 400;
    font-size: 16px;
  }
  .search-mobile-icon.open button i::before {
    content: "\ea02";
  }
}
@media only screen and (max-width: 767px) {
  .rn-search-mobile.form-group {
    position: absolute;
    top: 100%;
    background: var(--background-color-4);
    width: 100%;
    right: 0;
    margin-bottom: 0;
    padding: 20px;
    z-index: 3;
  }

  .large-mobile-blog-search {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .large-mobile-blog-search.active {
    opacity: 1;
    visibility: visible;
  }

  .rn-search-mobile.form-group input {
    width: 100%;
    background: var(--color-primary-alta);
    padding-right: 52px;
    color: var(--color-body);
  }

  button.search-button {
    position: absolute;
  }

  .mobile-search-wrapper {
    position: static;
  }

  button.search-button {
    position: absolute;
    width: 52px;
    background: transparent;
    right: 19px;
    border: 0 none;
    top: 50%;
    transform: translateY(-50%);
    height: 47px;
  }

  .search-mobile-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    border-radius: 100%;
    display: inline-block;
    min-width: 40px;
  }
  .search-mobile-icon button {
    border: 0 none;
  }
  .search-mobile-icon button i {
    font-weight: 400;
    font-size: 16px;
  }
  .search-mobile-icon.open button i::before {
    content: "\ea02";
  }
}
.top-seller-slick-activation.slick-gutter-15 {
  margin: 0;
  margin-top: 15px;
  margin-right: -15px;
  margin-left: -15px;
}

.slider-activation-banner-3 button.slick-arrow {
  z-index: 100;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}
.slider-activation-banner-3 button.slick-arrow:hover {
  background: var(--color-primary);
  border: 2px solid transparent;
}
.slider-activation-banner-3 button.slick-arrow.slick-prev {
  left: 100px;
}
.slider-activation-banner-3 button.slick-arrow.slick-prev::before {
  content: "\e92f";
  font-family: "feather" !important;
}
.slider-activation-banner-3 button.slick-arrow.slick-next {
  right: 100px;
}
.slider-activation-banner-3 button.slick-arrow.slick-next::before {
  content: "\e930";
  font-family: "feather" !important;
}

/*------------------------
    Mainmenu Nav  
-------------------------*/
.mainmenu-nav .mainmenu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.mainmenu-nav .mainmenu li {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.mainmenu-nav .mainmenu li a {
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin: 0 0px;
  border-radius: 3px;
  transition: var(--transition);
}


.mainmenu-nav .mainmenu li .submenu {
  min-width: 230px;
  height: auto;
  position: absolute;
  top: 90%;
  left: -25px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  padding: 12px 0;
  transition: 0.3s;
  border-radius: 0 0 10px 10px;
  border-left: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  backdrop-filter: blur(10px); /* Apply the blur effect */
  -webkit-backdrop-filter: blur(10px); /* Apply the blur effect for Safari */
}
.mainmenu-nav .mainmenu li .submenu li a {
  font-weight: 500;
  padding: 4px 14px;
  font-size: 16px;
  display: block;
  color: #acacac;
  color: var(--color-body);
  margin: 0 10px;
  border-radius: 4px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@keyframes arrowMove {
  0% {
    left: -15px;
    opacity: 0;
  }
  50% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -15px;
    opacity: 0;
  }
}
.mainmenu-nav .mainmenu li .submenu li a svg,
.mainmenu-nav .mainmenu li .submenu li a i {
  stroke-width: 2px;
  width: 22px;
  height: auto;
  background: transparent;
  padding: 2px;
  border-radius: 2px;
  transition: 0.3s;
  position: relative;
  opacity: 0;
  margin: 0 -3px;
  left: -10px; /* Initial position */
}

.mainmenu-nav .mainmenu li .submenu li a:hover {
  color: var(--color-primary);
  background: #06060665;
}

.mainmenu-nav .mainmenu li .submenu li a:hover svg,
.mainmenu-nav .mainmenu li .submenu li a:hover i {
  opacity: 1;
  left: 0;
  animation: arrowMove 1.5s infinite; /* Apply the animation */
}
.mainmenu-nav .mainmenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.mainmenu-nav .mainmenu li.with-megamenu {
  position: static;
  transition: var(--transition);
}
.mainmenu-nav .mainmenu li.with-megamenu:hover .rn-megamenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu {
  position: absolute;
  transition: 0.3s;
  top: 90%;
  width: 100%;
  left: 50%;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper {
  border-radius: 0 0 10px 10px;
  background-color: var(--background-color-2);
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  border-left: 1px solid #ffffff14;
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item {
  padding: 22px 22px;
  height: 100%;
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  font-weight: 500;
  padding: 4px 14px;
  font-size: 16px;
  display: block;
  color: #acacac;
  color: var(--color-body);
  margin: 0 10px;
  border-radius: 4px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg,
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i {
  stroke-width: 2px;
  width: 22px;
  height: auto;
  background: transparent;
  padding: 2px;
  border-radius: 2px;
  color: var(--color-body);
  transition: var(--transition);
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover {
  color: var(--color-primary);
  background: #060606b3;
}
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover svg,
.mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover i {
  color: var(--color-white);
}
.mainmenu-nav .mainmenu li.has-dropdown > a, .mainmenu-nav .mainmenu li.with-megamenu > a {
  position: relative;
}
.mainmenu-nav .mainmenu li.has-dropdown > a::after, .mainmenu-nav .mainmenu li.with-megamenu > a::after {
  content: "\e92e";
  position: absolute;
  top: 50%;
  font-family: "feather" !important;
  right: -7px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .mainmenu-nav .mainmenu li.has-dropdown > a::after, .mainmenu-nav .mainmenu li.with-megamenu > a::after {
    right: -11px;
  }
}

.rn-header.header--fixed.position-absolute {
  background: #00000042;
  backdrop-filter: blur(1px);
}
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper {
  background: #00000042;
}
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  color: #c7c7cf;
}
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg,
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i {
  color: #c7c7cf;
}
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu {
  background: #00000042 !important;
}
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a {
  color: #c7c7cf;
}
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a svg,
.rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.nav-item .submenu li a i {
  color: #c7c7cf;
}
.rn-header.header--fixed.sticky {
  background: #00000070;
  backdrop-filter: blur(15px);
}
.rn-header.header--fixed.sticky .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper {
  background: var(--background-color-2);
}
.rn-header.header--fixed.sticky .mainmenu-nav .mainmenu li.nav-item .submenu {
  background: var(--background-color-2) !important;
}

span.rn-badge-card {
  margin-left: 7px;
  padding: 1px 7px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: var(--color-white);
}
span.rn-badge-card::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(95deg, #000000 15%, #0074b9 45%, #0400ff 75%, #2a1b95) 95%/200% 100%;
  z-index: -1;
  border-radius: 100px;
  opacity: 0.5;
}

.live-expo {
  position: relative;
}
.live-expo::before {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  border-radius: 100%;
  opacity: 1;
  animation: customOne 1s infinite;
}
.live-expo::after {
  width: 16px;
  height: 16px;
  border: 4px solid var(--color-primary);
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  border-radius: 100%;
  opacity: 1;
  animation: customOne 1.2s infinite;
}

/*------------------------------
    Popup Menu Styles  
--------------------------------*/
.logo-thumbnail a {
  display: block;
}
.logo-thumbnail img {
  max-height: 35px;
  object-fit: cover;
}

.hamberger button.hamberger-button {
  padding: 5px;
  margin: 0;
  border: 0 none;
  font-size: 21px;
  display: flex;
  margin-top: 0px;
  color: var(--color-body);
  margin-right: 0px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
}

.with-megamenu .nav-link.its_new,
.has-dropdown .nav-link.its_new {
  position: relative;
}
.with-megamenu .nav-link.its_new.open,
.has-dropdown .nav-link.its_new.open {
  position: relative;
}
.with-megamenu .nav-link.its_new.open::after,
.has-dropdown .nav-link.its_new.open::after {
  content: "\e931";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "feather" !important;
}
.with-megamenu .nav-link.its_new::after,
.has-dropdown .nav-link.its_new::after {
  content: "\e92e";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "feather" !important;
}

.popup-mobile-menu {
  z-index: 9999;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.popup-mobile-menu .inner {
  width: 220px;
  z-index: 999;
  position: absolute;
  background-color: #fff;
  height: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  right: -150px;
  transition: all 0.5s ease-out;
}
.popup-mobile-menu .inner .header-top {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.popup-mobile-menu .inner .header-top .logo a img {
  max-height: 36px;
}
.popup-mobile-menu .inner .header-top .close-menu .close-button {
  border: 0 none;
  color: #4d5057;
  width: 40px;
  height: 40px;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.popup-mobile-menu.active {
  visibility: visible;
  opacity: 1;
}
.popup-mobile-menu.active .inner {
  opacity: 1;
  right: 0;
  overflow-y: auto;
}
.popup-mobile-menu .mainmenu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 15px 20px;
}
.popup-mobile-menu .mainmenu li {
  margin: 0;
}
.popup-mobile-menu .mainmenu li a {
  padding: 8px 0;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #4d5057 !important;
  display: flex;
  justify-content: space-between;
}
.popup-mobile-menu .mainmenu li a svg {
  width: 19px;
  height: auto;
}
.popup-mobile-menu .mainmenu li a.active {
  color: var(--color-primary) !important;
}
.popup-mobile-menu .mainmenu li + li {
  border-top: 1px solid var(--color-border);
}
.popup-mobile-menu .mainmenu .has-dropdown .submenu {
  padding: 0;
  max-width: 100%;
  list-style: none;
  padding-left: 14px;
  display: none;
}
.popup-mobile-menu .mainmenu .has-dropdown .submenu li a {
  font-size: 15px;
}
.popup-mobile-menu .mainmenu .has-dropdown .submenu li a.active {
  color: var(--color-primary) !important;
}
.popup-mobile-menu .mainmenu .rn-megamenu {
  padding: 0;
  max-width: 100%;
  list-style: none;
  padding-left: 14px;
  display: none;
}
.popup-mobile-menu .mainmenu .mega-menu-item {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 0;
}
.popup-mobile-menu .mainmenu .mega-menu-item li a {
  font-size: 15px;
}
.popup-mobile-menu .mainmenu .mega-menu-item li:last-child {
  border-bottom: 1px solid var(--color-border);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .popup-mobile-menu .mainmenu .single-mega-item {
    width: 100%;
  }
}
.popup-mobile-menu .mainmenu .single-mega-item:last-child .mega-menu-item li:last-child {
  border-bottom-color: transparent;
}

/*--------------------------
    One Page Style Area  width: 1170px; margin-left: 320px;
---------------------------*/
.rn-Capso-mid-wrapper {
  padding-left: 320px;
  padding-right: 420px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rn-Capso-mid-wrapper {
    padding-left: 320px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rn-Capso-mid-wrapper {
    padding-left: 320px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-Capso-mid-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-Capso-mid-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*--------------------------
    Header Left Sidebar
----------------------------*/
.left-header-style {
  color: white;
  position: fixed;
  left: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
  min-height: 100vh;
  top: 0px;
  width: 290px;
  z-index: 1;
  transform: translateX(0px);
  background: var(--background-color-1);
  padding: 50px 40px 40px;
  transition: all 0.3s ease-in-out 0s;
  flex-direction: column;
  justify-content: space-between;
}
.left-header-style .logo-area {
  margin-bottom: 50px;
}
.left-header-style .mainmenu-nav {
  margin-top: 0;
}
.left-header-style .mainmenu-nav .mainmenu {
  margin-top: 30px;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.left-header-style .mainmenu-nav .mainmenu li a {
  display: flex;
  padding: 10px 0;
  margin: 0;
  position: relative;
  align-items: center;
  transition: var(--transition);
}
.left-header-style .mainmenu-nav .mainmenu li a::after {
  position: absolute;
  content: "";
  right: 0;
  width: 2px;
  height: 50%;
  background: var(--color-primary);
  top: 43%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);
}
.left-header-style .mainmenu-nav .mainmenu li a svg {
  margin-right: 15px;
  padding: 7px;
  background: var(--color-primary-alta);
  border-radius: 4px;
  color: var(--color-white);
  width: 29px;
  height: auto;
  transition: var(--transition);
}
.left-header-style .mainmenu-nav .mainmenu li a.active, .left-header-style .mainmenu-nav .mainmenu li a:hover, .left-header-style .mainmenu-nav .mainmenu li a:focus {
  color: var(--color-primary);
}
.left-header-style .mainmenu-nav .mainmenu li a.active svg, .left-header-style .mainmenu-nav .mainmenu li a:hover svg, .left-header-style .mainmenu-nav .mainmenu li a:focus svg {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}
.left-header-style .mainmenu-nav .mainmenu li a.active::after, .left-header-style .mainmenu-nav .mainmenu li a:hover::after, .left-header-style .mainmenu-nav .mainmenu li a:focus::after {
  opacity: 1;
}
.left-header-style .authore-profile {
  text-align: center;
  padding: 18px;
  background: var(--background-color-1);
  border-radius: 5px;
}
.left-header-style .authore-profile .thumbnail {
  margin-top: -50px;
  margin-bottom: 8px;
  position: relative;
}
.left-header-style .authore-profile .thumbnail::after {
  position: absolute;
  right: 57px;
  content: "";
  top: 70%;
  background: #31a24c;
  height: 12px;
  width: 12px;
  z-index: 5;
  border-radius: 50%;
}
.left-header-style .authore-profile .thumbnail img {
  border-radius: 50%;
  max-width: 66px;
  border: 3px solid var(--color-border);
}
.left-header-style .authore-profile .au-content p.name {
  margin-bottom: 4px;
  color: var(--color-light);
  font-weight: 500;
}
.left-header-style .authore-profile .au-content p.blc {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.left-header-style .authore-profile .au-content p.blc span.value {
  color: var(--color-primary);
}
.left-header-style .sidebar-nav-wrapper {
  min-height: 500px;
}
.left-header-style::-webkit-scrollbar {
  width: 5px;
  background: var(--color-primary-alta);
}
.left-header-style::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

.rn-top-bar-area {
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-top-bar-area {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .rn-top-bar-area {
    justify-content: center;
  }
}
@media only screen and (max-width: 575px) {
  .rn-top-bar-area .input-group {
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
.rn-top-bar-area .input-group input {
  background: #3a3a5157;
  color: var(--color-light);
  border-radius: 5px 0 0 5px;
  max-width: 220px;
  font-size: 14px;
}
.rn-top-bar-area .input-group input:focus {
  box-shadow: none;
}
.rn-top-bar-area .input-group .input-group-append button.btn {
  border-radius: 0 5px 5px 0;
}
.rn-top-bar-area .input-group .input-group-append button.btn svg {
  width: 18px;
}
.rn-top-bar-area .contact-area {
  display: flex;
  align-items: center;
  margin: -5px;
}
@media only screen and (max-width: 767px) {
  .rn-top-bar-area .contact-area {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .rn-top-bar-area .contact-area {
    justify-content: center;
  }
}
.rn-top-bar-area .setting-option {
  margin: 5px;
  height: auto;
}
.rn-top-bar-area .setting-option .icon-box > a,
.rn-top-bar-area .setting-option .icon-box > button {
  background: var(--color-primary-alta);
  border-radius: 5px;
  transition: var(--transition);
  border: 0 none;
  width: 40px;
  display: inline-block;
  height: 40px;
  line-height: 43px;
  text-align: center;
  margin: 0;
}
.rn-top-bar-area .setting-option .icon-box > a.btn,
.rn-top-bar-area .setting-option .icon-box > button.btn {
  padding: 0 20px;
  width: auto;
}
.rn-top-bar-area .setting-option .icon-box > a i,
.rn-top-bar-area .setting-option .icon-box > button i {
  color: var(--color-heading);
}
.rn-top-bar-area .setting-option .icon-box > a img,
.rn-top-bar-area .setting-option .icon-box > button img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.rn-top-bar-area .setting-option .icon-box > a:hover,
.rn-top-bar-area .setting-option .icon-box > button:hover {
  background: var(--color-primary);
}
.rn-top-bar-area .my_switcher {
  background: var(--color-primary-alta);
  border: 0 none;
  border-radius: 5px;
}
.rn-top-bar-area .my_switcher ul li a {
  background: transparent;
}
.rn-top-bar-area .my_switcher ul li a img {
  filter: brightness(1);
}

/*---------------------------
    Notification Area  
-----------------------------*/
.header-right-fixed {
  position: fixed;
  right: 0;
  height: 100vh;
  min-height: 100vh;
  top: 0;
  width: 390px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-right-fixed {
    position: static;
    right: 0;
    height: auto;
    min-height: auto;
    top: 0;
    width: auto;
    padding-left: 320px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right-fixed {
    position: static;
    right: 0;
    height: auto;
    min-height: auto;
    top: 0;
    width: auto;
    padding-left: 320px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-right-fixed {
    position: static;
    right: 0;
    height: auto;
    min-height: auto;
    top: 0;
    width: auto;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-right-fixed {
    position: static;
    right: 0;
    height: auto;
    min-height: auto;
    top: 0;
    width: auto;
    padding: 0 10px;
  }
}

.right-fix-notice {
  color: white;
  z-index: 1;
  transform: translateX(0px);
  background: var(--background-color-1);
  padding: 30px 25px;
  transition: all 0.3s ease-in-out 0s;
  flex-direction: column;
  border-radius: 0 0 0 5px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 55vh;
  min-height: 55vh;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .right-fix-notice {
    position: static;
  }
}
.right-fix-notice.creators {
  height: 45vh;
  min-height: 45vh;
  top: 58vh;
  border-radius: 5px 0 0 0;
}
.right-fix-notice .h--100 {
  position: sticky;
  top: -30px;
  height: auto;
  z-index: 105;
}
.right-fix-notice .notice-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: -30px;
  height: 70px;
  background: var(--color-primary-alta);
  padding: 0px 30px;
  margin-left: -30px;
  margin-right: -30px;
  height: 60px;
}
@media only screen and (max-width: 479px) {
  .right-fix-notice .notice-heading {
    padding: 0 10px;
  }
}
.right-fix-notice .notice-heading h4 {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
}
.right-fix-notice .notice-heading .nice-select {
  padding: 3px 22px 0px 16px;
  margin-right: 0;
  background: var(--color-primary);
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  padding-right: 25px;
}
.right-fix-notice .notice-heading .nice-select .list {
  min-width: 100%;
  right: 0;
  left: auto;
}
.right-fix-notice .notice-heading .nice-select::after {
  top: 55%;
  margin-top: -7px;
  height: 7px;
  width: 7px;
  right: 15px;
}
.right-fix-notice::-webkit-scrollbar {
  width: 5px;
  background: var(--color-primary-alta);
}
.right-fix-notice::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0;
}

.single-notice {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
}
.single-notice .thumbnail {
  margin-right: 15px;
}
.single-notice .thumbnail a img {
  border-radius: 50%;
  border: 3px solid var(--color-primary-alta);
  transition: var(--transition);
  max-width: 50px;
}
.single-notice:hover .thumbnail a img {
  border-color: var(--color-primary) !important;
}
.single-notice .content-wrapper a .title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
  transition: var(--transition);
}
.single-notice .content-wrapper a:hover .title {
  color: var(--color-primary);
}
.single-notice .content-wrapper p {
  margin-bottom: 4px;
  font-size: 16px;
}
.single-notice .content-wrapper .notice-time {
  margin-bottom: 10px;
}
.single-notice .content-wrapper .notice-time span {
  margin-right: 15px;
  color: var(--color-body);
}
.single-notice .content-wrapper a.btn {
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
}

.rn-notification-wrapper.creators .top-seller-inner-one {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #00a3ff24;
  padding: 15px 0;
}
.rn-notification-wrapper.creators .top-seller-inner-one:hover .thumbnail img {
  border: 3px solid var(--color-primary);
}
.rn-notification-wrapper.creators .top-seller-inner-one .thumbnail img {
  max-width: 50px;
  transition: var(--transition);
}
.rn-notification-wrapper.creators .top-seller-inner-one .top-seller-content a h6 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 4px;
}
.rn-notification-wrapper.creators .top-seller-inner-one .top-seller-content span.count-number {
  color: var(--color-body);
}
.rn-notification-wrapper.creators .top-seller-inner-one a.btn {
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 400;
}

/*---------------------------
    Main Header Styles 
----------------------------*/
.rn-header {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out; /* Smooth transition for sliding effect */
  transform: translateY(0); /* Start with the header visible */
}



.rn-header .logo-thumbnail {
  padding-right: 32px;
  position: relative;
  margin-right: 17px;
}
@media only screen and (max-width: 479px) {
  .rn-header .logo-thumbnail {
    padding-right: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 479px) {
  .rn-header .logo-thumbnail::after {
    display: none;
  }
}
.rn-header.header--sticky {
  position: sticky !important;
  top: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 6px 4px rgba(92, 92, 92, .1);
}
.rn-header.sticky {
  background-color: #151521;
  position: sticky !important;
  top: 0;
  display: block;
  box-shadow: 0 6px 4px rgba(92, 92, 92, .1);
}
.rn-header.rn-header-four.header--fixed.sticky {
  top: 0;
}
.rn-header.header--transparent {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  z-index: 999;
  border-bottom: 1px solid #ffffff14;
}

/* Blog  */
/*---------------------------
Blog style
----------------------------*/
.rn-blog {
  text-align: left;
  padding: 18px;
  position: relative;
  border-radius: 7px;
  background: var(--background-color-1);
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 1;
  height: 100%;
  transition: 0.5s all ease-in-out;
}
.rn-blog::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 20px;
  top: 0;
  left: 0;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  z-index: -1;
}
.rn-blog .inner .thumbnail a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}
.rn-blog .inner .thumbnail a img {
  width: 100%;
  transition: var(--transition);
  height: auto;
  object-fit: cover;
  transition: var(--transition);
}
.rn-blog .inner .content {
  padding-top: 18px;
}
.rn-blog .inner .content .category-info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
.rn-blog .inner .content .category-info .category-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.rn-blog .inner .content .category-info .category-list a {
  color: var(--color-primary);
  font-weight: 500;
  font-family: "feather" !important;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
.rn-blog .inner .content .category-info .meta span {
  color: var(--color-lightn);
  font-weight: 500;
  font-family: "feather" !important;
  font-size: 13px;
}
.rn-blog .inner .content .category-info .meta span i {
  margin-right: 2px;
  font-size: 13px;
  transition: var(--transition);
}
.rn-blog .inner .content .title {
  margin: 0;
}
.rn-blog .inner .content .title a {
  transition: var(--transition);
  color: var(--color-lightn);
  font-weight: 600;
  font-size: 23px;
  line-height: 34px;
  display: inline-block;
}
.rn-blog .inner .content .title a i {
  font-size: 0;
  position: relative;
  top: 10px;
  transition: var(--transition);
  opacity: 0;
}
.rn-blog:hover::before {
  opacity: 0;
}
.rn-blog:hover .thumbnail a img {
  transform: scale(1.05);
}
.rn-blog:hover .inner .content .title:hover a i {
  color: var(--color-primary);
  top: 3px;
  opacity: 1;
  font-size: 23px;
}

.rn-blog.single-column {
  height: auto;
  margin-bottom: 30px;
}
.rn-blog.single-column::before {
  display: none;
}

.pagination.single-column-blog {
  margin-top: 10px !important;
}

.blog-search {
  position: relative;
}
.blog-search input {
  height: 60px;
  padding: 0 20px;
  color: var(--color-body);
  padding-right: 80px;
}
.blog-search .search-button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0 none;
  background: var(--color-primary-alta);
  height: 47px;
  padding: 0 20px;
  border-radius: 6px;
  text-align: center;
  font-size: 20px;
}
.blog-search .search-button i {
  color: var(--color-white);
  font-weight: 400;
}

.rbt-single-widget {
  border-radius: 6px;
  padding: 20px 20px;
  border: 1px solid var(--color-border);
  padding-top: 0;
  background: var(--background-color-1);
}
.rbt-single-widget:first-child {
  margin-top: 0 !important;
}
.rbt-single-widget input,
.rbt-single-widget select {
  border: var(--border-width) solid var(--color-border);
}
.rbt-single-widget.widget_search {
  padding: 0;
  border: 0 none;
}
.rbt-single-widget.widget_search .title {
  margin: 0;
}
.rbt-single-widget p {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-body);
}
.rbt-single-widget .title {
  line-height: 26px;
  position: relative;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-primary-alta);
  margin: -1px -21px 0;
  padding: 14px 24px;
  border-radius: 6px 6px 0 0;
}
.rbt-single-widget .title a {
  color: var(--color-primary);
}
.rbt-single-widget .title a.rsswidget img {
  height: 13px;
  margin-right: 3px;
}
.rbt-single-widget .title img {
  vertical-align: 0px;
}
.rbt-single-widget ul {
  padding-left: 0;
  margin-bottom: -10px;
  list-style: none;
  padding-right: 0;
}
.rbt-single-widget ul ul {
  margin-bottom: 0;
}
.rbt-single-widget ul li {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-body);
}
.rbt-single-widget ul li a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: var(--color-heading);
  display: initial;
}
.rbt-single-widget ul li a:hover {
  color: var(--color-primary);
}
.rbt-single-widget.widget_categories ul li a {
  display: flex;
  justify-content: space-between;
}
.rbt-single-widget.widget_recent_comments ul li, .rbt-single-widget.widget_recent_entries ul li, .rbt-single-widget.widget_archive ul li, .rbt-single-widget.widget_categories ul li, .rbt-single-widget.widget_meta ul li, .rbt-single-widget.widget_pages ul li, .rbt-single-widget.widget_nav_menu ul li {
  position: relative;
  padding-top: 15px;
  padding-bottom: 0px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-body);
}
.rbt-single-widget.widget_recent_comments ul li a, .rbt-single-widget.widget_recent_entries ul li a, .rbt-single-widget.widget_archive ul li a, .rbt-single-widget.widget_categories ul li a, .rbt-single-widget.widget_meta ul li a, .rbt-single-widget.widget_pages ul li a, .rbt-single-widget.widget_nav_menu ul li a {
  color: var(--color-body);
  transition: 0.4s;
}
.rbt-single-widget.widget_recent_comments ul li a:hover, .rbt-single-widget.widget_recent_entries ul li a:hover, .rbt-single-widget.widget_archive ul li a:hover, .rbt-single-widget.widget_categories ul li a:hover, .rbt-single-widget.widget_meta ul li a:hover, .rbt-single-widget.widget_pages ul li a:hover, .rbt-single-widget.widget_nav_menu ul li a:hover {
  color: var(--color-primary) !important;
}
.rbt-single-widget.widget_recent_comments ul li span, .rbt-single-widget.widget_recent_entries ul li span, .rbt-single-widget.widget_archive ul li span, .rbt-single-widget.widget_categories ul li span, .rbt-single-widget.widget_meta ul li span, .rbt-single-widget.widget_pages ul li span, .rbt-single-widget.widget_nav_menu ul li span {
  transition: 0.4s;
  color: var(--color-body);
}
.rbt-single-widget.widget_recent_comments ul li:hover a span, .rbt-single-widget.widget_recent_entries ul li:hover a span, .rbt-single-widget.widget_archive ul li:hover a span, .rbt-single-widget.widget_categories ul li:hover a span, .rbt-single-widget.widget_meta ul li:hover a span, .rbt-single-widget.widget_pages ul li:hover a span, .rbt-single-widget.widget_nav_menu ul li:hover a span {
  color: var(--color-primary);
}
.rbt-single-widget.widget_recent_comments ul li + li, .rbt-single-widget.widget_recent_entries ul li + li, .rbt-single-widget.widget_archive ul li + li, .rbt-single-widget.widget_categories ul li + li, .rbt-single-widget.widget_meta ul li + li, .rbt-single-widget.widget_pages ul li + li, .rbt-single-widget.widget_nav_menu ul li + li {
  border-top: 1px solid var(--color-border);
}
.rbt-single-widget.widget_recent_comments > ul > li, .rbt-single-widget.widget_recent_entries > ul > li, .rbt-single-widget.widget_archive > ul > li, .rbt-single-widget.widget_categories > ul > li, .rbt-single-widget.widget_meta > ul > li, .rbt-single-widget.widget_pages > ul > li {
  margin-top: 0;
  margin-bottom: 0;
}
.rbt-single-widget.widget_recent_comments > ul > li:first-child, .rbt-single-widget.widget_recent_entries > ul > li:first-child, .rbt-single-widget.widget_archive > ul > li:first-child, .rbt-single-widget.widget_categories > ul > li:first-child, .rbt-single-widget.widget_meta > ul > li:first-child, .rbt-single-widget.widget_pages > ul > li:first-child {
  margin-top: 0;
}
.rbt-single-widget.widget_recent_comments > ul > li:last-child, .rbt-single-widget.widget_recent_entries > ul > li:last-child, .rbt-single-widget.widget_archive > ul > li:last-child, .rbt-single-widget.widget_categories > ul > li:last-child, .rbt-single-widget.widget_meta > ul > li:last-child, .rbt-single-widget.widget_pages > ul > li:last-child {
  margin-bottom: 10px;
}
.rbt-single-widget.widget_recent_entries .inner a {
  color: var(--color-white);
  margin-bottom: 4px;
}
.rbt-single-widget.widget_recent_entries .inner span {
  color: var(--color-body);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.alignwide {
  margin-left: -220px;
  margin-right: -220px;
  max-width: 1400px;
  width: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .alignwide {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .alignwide {
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .alignwide {
    margin-left: 0;
    margin-right: 0;
  }
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.tagcloud,
.wp-block-tag-cloud {
  margin: -3px;
  padding-left: 0;
}
.tagcloud a,
.wp-block-tag-cloud a {
  background: transparent;
  display: inline-block;
  height: 40px;
  color: var(--color-body);
  font-size: 16px !important;
  line-height: 35px;
  text-decoration: none;
  margin: 3px;
  border: 2px solid var(--color-border);
  transition: 0.4s;
  padding: 0 20px;
  border-radius: 100px;
}
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  background: var(--color-primary);
  color: #ffffff !important;
  border-color: var(--color-primary) !important;
}

.right-post-details {
  height: 100%;
}
.right-post-details .widge-wrapper {
  position: sticky;
  z-index: 10;
}

.rn-blog-details-default .blog-content-top {
  margin-bottom: 30px;
}
.rn-blog-details-default .date {
  display: inline-block;
  margin-bottom: 10px;
}
.rn-blog-details-default .bd-thumbnail img {
  border-radius: 6px;
}

.rn-comment-form .section-title span.subtitle {
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 18px;
  font-size: 16px;
  border-radius: 4px;
  margin-bottom: 12px;
}

iframe {
  border-radius: 10px;
}

.rnform-group {
  margin-bottom: 20px;
}
.rnform-group input {
  border: 2px solid var(--color-border);
  border-radius: 4px;
  height: 50px;
  font-size: 16px;
}

.rn-comment-form .inner .rnform-group textarea {
  min-height: 193px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  resize: none;
  padding: 15px;
  font-size: 16px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list .comment {
  padding: 0;
  margin: 0;
}
.comment-list .comment.byuser .single-comment {
  background-color: var(--color-primary-alta) !important;
  border: 1px solid var(--color-border) !important;
}
.comment-list .comment .single-comment {
  padding: 40px 40px;
  margin-bottom: 40px;
  border-radius: 4px;
  background-color: var(--background-color-1);
  border: 1px solid var(--color-border);
}
@media only screen and (max-width: 767px) {
  .comment-list .comment .single-comment {
    padding: 30px 20px;
  }
}
.comment-list .comment .comment-img {
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 18px;
}
.comment-list .comment .comment-img .comment-avatar {
  margin-right: 20px;
  border-radius: 3px;
}
.comment-list .comment .comment-img .commenter {
  color: var(--color-heading);
  display: block;
  text-decoration: none;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}
.comment-list .comment .comment-img .time-spent {
  font-size: 13px;
  color: var(--color-body);
  font-weight: 400;
}
.comment-list .comment .comment-text {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.comment-list .comment .comment-text p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
.comment-list .comment .reply-edit {
  display: flex;
  font-weight: 500;
  margin-top: 15px;
}
.comment-list .comment .reply-edit .reply a.comment-reply-link {
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 16px;
}
.comment-list .comment .reply-edit .reply a.comment-reply-link i {
  padding-right: 4px;
}
.comment-list ul.children {
  list-style: none;
  padding-left: 80px;
}
@media only screen and (max-width: 767px) {
  .comment-list ul.children {
    padding-left: 0px;
  }
}
.comment-list ul.children .comment {
  position: relative;
}
.comment-list ul.children .comment::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  border-left: 1px solid var(--color-border);
  left: -45px;
}
@media only screen and (max-width: 767px) {
  .comment-list ul.children .comment::before {
    display: none;
  }
}
.comment-list ul.children .comment .single-comment {
  position: relative;
}
.comment-list ul.children .comment .single-comment::before {
  content: "";
  position: absolute;
  top: 50%;
  border-top: 1px solid #212e48;
  left: -45px;
  width: 45px;
}
@media only screen and (max-width: 767px) {
  .comment-list ul.children .comment .single-comment::before {
    display: none;
  }
}

/* Elements  */
/*--------------------------
    Button Styles 
----------------------------*/
.button-group {
  margin: -5px;
}
.button-group a {
  margin: 5px;
}
a.btn,
button.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  font-size: 16px;
  border: none;
  color: #4d5057;
  padding: 10px 16px;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  letter-spacing: 0.5px;
  width: auto;
  box-shadow: none;
  outline: none;
}

a.btn.btn-primary,
button.btn.btn-primary {
  background: #4d5057;
  color: #fff;
}

a.btn.btn-primary:hover,
button.btn.btn-primary:hover {
  background-color: #3BC049; /* Adjusted hover background color */
  color: #4d5057; /* Ensure text color remains readable */
}

a.btn.btn-primary-green{
  background: #3BC049;
  color: #fff;
}

a.btn.btn-primary-green:hover {
  background-color: #4d5057 ; /* Adjusted hover background color */
  color: #3BC049; /* Ensure text color remains readable */
}

a.btn:focus,
button.btn:focus {
  border: none;
  box-shadow: none;
}

a.btn:active,
button.btn:active {
  color: #4d5057;
}

a.btn.btn-small,
button.btn.btn-small {
  padding: 6px 14px;
}

a.btn.btn-large,
button.btn.btn-large {
  padding: 1em 1.67em;
  border-radius: 100px;
  min-width: 160px;
}

a.btn.btn-medium,
button.btn.btn-medium {
  padding: 1em 1em;
  border-radius: 100px;
  min-width: 100px;
}


.btn-transparent {
  color: var(--color-body);
  transition: 0.4s;
  align-items: center;
  font-weight: 500;
  display: inline-block;
}
.btn-transparent svg {
  width: 18px;
  height: 17px;
}
.btn-transparent:hover {
  color: var(--color-primary) !important;
}

.btn-primary-border {
  background: transparent;
  border: 2px solid var(--color-primary);
  padding: 10px 20px;
}
.btn-primary-border:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none !important;
}

/*-------------------------------------
 Filter Button Style 
-------------------------------*/
.discover-filter-button {
  padding: 10px 20px;
}
.discover-filter-button.btn.btn-primary:hover {
  background: var(--color-primary);
}
.discover-filter-button.btn.btn-primary.open {
  background: var(--color-primary-alta);
}
.discover-filter-button.btn.btn-primary.open:hover {
  background: var(--color-primary-alta);
}
.discover-filter-button i {
  padding-left: 5px;
}
.discover-filter-button.open i::before {
  content: "\ea02";
}

/*-------------------------
    Price Filter  
--------------------------*/
.content-shopby {
  margin-top: 32px;
}

.price--output input {
  border: 0 none;
}

.price--output span {
  color: #333;
  font-size: 14px;
}

.price--filter {
  display: inline-block;
}

.price--output {
  display: inline-block;
}

.ui-widget-content {
  background: var(--color-primary-alta) none repeat scroll 0 0;
  border: 0 none;
  color: var(--color-primary);
}

.ui-slider-range.ui-widget-header.ui-corner-all {
  background: var(--color-primary) none repeat scroll 0 0;
}

.ui-slider-horizontal {
  height: 4px;
}

.ui-slider .ui-slider-handle {
  border-radius: 100%;
  cursor: default;
  height: 10px;
  position: absolute;
  touch-action: none;
  width: 10px;
  z-index: 2;
  outline: none;
  cursor: pointer;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -3px;
  margin-left: -3px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background: var(--color-primary) none repeat scroll 0 0;
  border: 0 none;
  color: var(--color-primary);
}

.ui-slider-range.ui-widget-header.ui-corner-all {
  background: var(--color-primary) none repeat scroll 0 0;
}

.ui-slider-horizontal {
  margin-bottom: 8px;
  margin-top: 15px;
}

.price__output--wrap {
  display: flex;
  align-items: center;
}
.price__output--wrap .price--output {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.price__output--wrap .price--output span {
  color: var(--color-body);
  font-size: 12px;
  display: inline-block;
  letter-spacing: 0.5px;
}
.price__output--wrap .price--output input {
  border: 0 none;
  flex-grow: 1;
  font-size: 12px;
  font-weight: 400;
  width: 100px;
  letter-spacing: 0.5px;
}
.price__output--wrap .price--filter {
  display: inline-block;
  margin-top: -2px;
}
.price__output--wrap .price--filter a.btn {
  padding: 2px 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  line-height: 16px;
}

/*-------------------------
    Back To Top  
---------------------------*/
@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
.paginacontainer {
  height: 3000px;
}

.rn-progress-parent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #0d0d12;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent.rn-backto-top-active {
  opacity: 1;
  bottom: 12.5%;
  visibility: visible;
  transform: translateY(0);
}
@media only screen and (max-width: 991px) { .rn-progress-parent.rn-backto-top-active { 
  bottom: 15%;
  right: 20px;
} }
.rn-progress-parent::after {
  position: absolute;
  font-family: "feather" !important;
  content: "\e914";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #3BC049;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent:hover::after {
  color: #3BC049;
}
.rn-progress-parent::before {
  position: absolute;
  font-family: "feather" !important;
  content: "\e914";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: #3BC049;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent:hover::before {
  opacity: 1;
}
.rn-progress-parent svg path {
  fill: none;
}
.rn-progress-parent svg.rn-back-circle path {
  stroke: #3BC049;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.button-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cursor {
  display: none;
}

@media (any-pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    z-index: 9;
  }

  .cursor__inner {
    fill: var(--cursor-fill);
    stroke: var(--cursor-stroke);
    stroke-width: var(--cursor-stroke-width);
  }

  .credits {
    padding-left: 25vw;
  }
}
/*---------------------------------------------------*/
/*	09) SHANE CURSOR
/*---------------------------------------------------*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #4d535e;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -30px;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background-color: #4d535e;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #4d535e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.main-wrapper[data-magic-cursor=hide] .mouse-cursor {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1111;
}

.accordion-style-one .section-title-accordion h3 {
  font-size: 40px;
  color: var(--color-lightn);
}
.accordion-style-one .accordion .accordion-item {
  margin-bottom: 30px;
}
.accordion-style-one .accordion .accordion-item .accordion-header {
  font-size: 32px;
  color: var(--color-lightn);
  margin-bottom: 0;
}
.accordion-style-one .accordion .accordion-item .accordion-header a {
  font-size: 22px;
  transition: var(--transition);
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button {
  padding: 34px 30px;
  position: relative;
  width: 100%;
  z-index: 1;
  display: block;
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button .inner p {
  font-size: 16px;
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  background: linear-gradient(145deg, #1e2024, #23272b);
  z-index: -1;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button::before {
  position: absolute;
  content: "\e92e";
  top: 10px;
  font-family: "feather" !important;
  font-weight: 200;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button[aria-expanded=true]::before {
  content: "\e931";
  transition: var(--transition);
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button[aria-expanded=true]::after {
  border-radius: 8px 8px 0px 0px;
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button.two::before {
  content: "\e9b1";
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button.two[aria-expanded=true]::before {
  content: "\e996";
}
.accordion-style-one .accordion .accordion-item .accordion-header a.accordion-button.two[aria-expanded=true]::after {
  border-radius: 8px 8px 0px 0px;
}
.accordion-style-one .accordion .accordion-item .accordion-body .inner {
  padding: 20px;
  background: #1e2024;
  border-radius: 0 0px 8px 8px;
}
.accordion-style-one .accordion .accordion-item .accordion-body .inner p {
  font-size: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .accordion {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .accordion {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .accordion {
    margin-top: 40px;
  }
}
.accordion .accordion-item {
  background: var(--background-color-1);
  margin-bottom: 10px;
  border-radius: 5px;
  border: 0 none;
}
.accordion .accordion-item .accordion-header button {
  box-shadow: none;
  background: var(--background-color-1);
  color: var(--color-white);
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-header button {
    font-size: 16px;
    padding: 0 10px;
  }
}
.accordion .accordion-item .accordion-header button i {
  color: var(--color-white);
  font-size: 18px;
  transition: var(--transition);
}
.accordion .accordion-item .accordion-header button::after {
  color: var(--color-body);
  display: none;
}
.accordion .accordion-item .accordion-header button[aria-expanded=false] i {
  transform: rotate(180deg);
}
.accordion .accordion-item .accordion-header button[aria-expanded=true] {
  color: var(--color-primary);
}
.accordion .accordion-item .accordion-header button[aria-expanded=true] i {
  color: var(--color-primary);
}
.accordion .accordion-item .accordion-body {
  font-size: 16px;
}

.rn-typography-area .wp-block-quote {
  padding: 40px 137px;
  position: relative;
  background: transparent;
  color: var(--color-heading);
  z-index: 1;
  border: 0;
  text-align: center;
  margin: 0;
  padding-top: 50px;
}
.table-area tbody td {
  border: 1px solid var(--color-tertiary);
  padding: 7px 10px;
  color: var(--color-dark-alt);
  color: var(--color-body);
}
.table-area tbody td strong {
  color: var(--color-lightn);
  font-weight: 500;
}
.table-area .section-title h2.title {
  font-size: 40px;
}

.hr-area .section-title h2.title {
  font-size: 24px;
  margin-top: -10px;
  margin-bottom: 5px;
}
.hr-area hr {
  background-size: 4px 4px;
  height: 1px;
  margin: 0 0 24px;
  border: 0;
  border-top: 1px solid #121214;
}

.hr-dots-area .section-title .title {
  font-size: 40px;
  margin-bottom: 10px;
}
.hr-dots-area .wp-block-separator.is-style-dots::before {
  content: "···";
  padding-left: 21px;
  color: #121214;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 21px;
  font-family: "feather" !important;
}
.hr-dots-area .wp-block-separator.is-style-dots {
  background: 0 0;
  border: none;
  text-align: center;
  max-width: none;
  line-height: 1;
  height: auto;
}

.column-galary .section-title .title {
  font-size: 40px;
}

.blocks-gallery-grid {
  display: flex;
  padding: 0;
  margin: 0 -10px;
  list-style: none;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.blocks-gallery-grid .blocks-gallery-item {
  flex-basis: 50%;
  padding: 0 10px;
}
.blocks-gallery-grid .blocks-gallery-item figure {
  overflow: hidden;
  border-radius: 8px;
}
.blocks-gallery-grid .blocks-gallery-item figure img {
  border-radius: 8px;
  transition: var(--transition);
}
.blocks-gallery-grid .blocks-gallery-item figure img:hover {
  transform: scale(1.1);
}

.three-column-gallery .section-title .title {
  font-size: 40px;
}
.three-column-gallery .columns-3 .blocks-gallery-item {
  padding: 0 10px;
  flex-basis: 33.33%;
}

.large .title {
  font-size: 40px !important;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  margin-left: -105px;
  margin-right: -105px;
  max-width: 1400px;
  width: auto;
}
.alignwide .radius-4 {
  border-radius: 8px;
}

figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-dark-alt);
  letter-spacing: 0.5px;
}

/*-------------------------
    Section Title  
--------------------------*/
.live-portfolio-title {
  position: relative;
}

/*-------------------------
 Banner Styles  
----------------------------*/
.with-particles {
  position: relative;
  z-index: 1;
}

.height-950 {
  height: 950px;
}

#particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.border-radious-none {
  border-radius: 0 !important;
}

.game-banner-short-slick-wrapper .slick-dots {
  bottom: 50px !important;
}
.game-banner-short-slick-wrapper .slider-style-7 .product-share-wrapper .profile-share a img {
  max-width: 40px;
  border: 2px solid var(--color-border);
}
.game-banner-short-slick-wrapper .slider-style-7 .rn-banner-wrapper .item-description button {
  border-radius: 5px;
}
.game-banner-short-slick-wrapper .slider-style-7 .rn-banner-wrapper .item-description {
  padding: 25px;
  background: #9999992e;
  border-radius: 5px;
  backdrop-filter: blur(15px);
}

.banner-read-thumb {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
.banner-read-thumb h4 {
  margin-bottom: 10px;
}
.banner-read-thumb span {
  color: var(--color-body);
}

/* for slick slider */
.slider.slick-dotted {
  max-width: 100%;
  margin: 0 auto 0;
}

.slider .slick-dots {
  bottom: -45px;
  display: none !important;
}

.slider .slick-dots li button:before {
  color: #fff;
  content: "•";
  background: #fff;
  border-radius: 50%;
  font-size: 10px;
  line-height: 12px;
  width: 10px;
  height: 10px;
}

.slick-dots .animated-dot {
  background-image: url("https://img.icons8.com/plasticine/100/000000/play.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 14px;
  width: 16px;
}

/*--------------------------
    Banner Style 1 
---------------------------*/
.slider-one h2.title {
  font-size: 60px;
  font-weight: 400;
}
@media only screen and (max-width: 1199px) {
  .slider-one h2.title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-one h2.title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-one h2.title {
    font-size: 30px;
  }
}
.slider-one .slide-disc {
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  .slider-one .slider-thumbnail {
    display: flex;
    justify-content: center;
  }
}
.slider-one .slider-thumbnail img {
  height: auto;
  width: 100%;
}
.slider-one .slider-thumbnail2 img {
  height: auto;
  width: 100%;
}

.slider-one .button-group {
  margin: -7px;
}
.slider-one .button-group a.btn {
  margin: 7px;
}

/*--------------------------
    Banner Style 2 
---------------------------*/
.slider-style-2 .single-slide {
  padding: 0 15px;
  position: relative;
  margin-bottom: 0;
}
.slider-style-2 .single-slide .inner {
  position: relative;
  padding: 15px;
  background: var(--background-color-1);
  border-radius: 7px;
}
.slider-style-2 .single-slide .thumbnail {
  overflow: hidden;
  border-radius: 7px;
}
.slider-style-2 .single-slide .thumbnail a {
  display: block;
  position: relative;
}
.slider-style-2 .single-slide .thumbnail a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, transparent, black);
  height: 50%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.slider-style-2 .single-slide .thumbnail img {
  border-radius: 7px;
  transition: 0.7s;
}
.slider-style-2 .single-slide .banner-read-thumb {
  z-index: 3;
}
.slider-style-2 .single-slide .banner-read-thumb h4 {
  transition: var(--transition);
  color: var(--color-white);
}
.slider-style-2 .single-slide:hover .thumbnail img {
  transform: scale(1.1);
}

/*--------------------------
    Banner Style Three  
---------------------------*/
.slider-style-3 .wrapper {
  background: var(--background-color-1);
  padding: 15px;
  border-radius: 5px;
  position: relative;
}
.slider-style-3 .wrapper .slider {
  margin: 0;
  padding: 0;
}
.slider-style-3 .wrapper .slider .slider-thumbnail {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.slider-style-3 .wrapper .slider .slider-thumbnail a {
  display: block;
  position: relative;
}
.slider-style-3 .wrapper .slider .slider-thumbnail a img {
  transition: 0.4s;
}
.slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper {
  position: absolute;
  left: 50px;
  z-index: 2;
  text-align: left;
  bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper {
    left: 30px;
    bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper {
    left: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper {
    left: 20px;
    bottom: 20px;
  }
}
.slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper h5 {
  font-size: 30px;
  margin-bottom: -10px;
}
@media only screen and (max-width: 767px) {
  .slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper h5 {
    font-size: 24px;
  }
}
.slider-style-3 .wrapper .slider .slider-thumbnail .read-wrapper span {
  font-size: 14px;
  color: var(--color-primary);
  display: inline-block;
  margin-top: 20px;
}
.slider-style-3 .wrapper .slider:hover .slider-thumbnail a img {
  transform: scale(1.1);
}
.slider-style-3 .wrapper .slider ul.slick-dots {
  display: inline-block !important;
  bottom: 20px;
  position: absolute;
  z-index: 2;
  right: 20px;
  width: auto;
}
.slider-style-3 .slide-small-wrapper {
  position: relative;
  background: var(--background-color-1);
  padding: 15px;
  border-radius: 5px;
}
.slider-style-3 .slide-small-wrapper .thumbnail {
  overflow: hidden;
  border-radius: 5px;
}
.slider-style-3 .slide-small-wrapper .thumbnail img {
  border-radius: 5px;
  transition: 0.5s;
}
.slider-style-3 .slide-small-wrapper .read-wrapper {
  position: absolute;
  bottom: 31px;
  left: 36px;
  z-index: 2;
}
.slider-style-3 .slide-small-wrapper .read-wrapper .title {
  margin-bottom: 7px;
}
.slider-style-3 .slide-small-wrapper .read-wrapper span {
  color: var(--color-primary);
}
.slider-style-3 .slide-small-wrapper:hover .thumbnail img {
  transform: scale(1.1);
}

.thumbnail-overlay > a {
  display: block;
  position: relative;
}
.thumbnail-overlay > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, transparent, black);
  height: 50%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.thumbnail-overlay > a img {
  transition: 0.4s;
}

/*-------------------------
    Slider Style Four  
---------------------------*/
.banner-style-4 .sldier-content .title {
  color: var(--color-white);
  font-size: 70px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-style-4 .sldier-content .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-style-4 .sldier-content .title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-style-4 .sldier-content .title {
    font-size: 30px;
  }
}
.banner-style-4 .sldier-content p.banner-disc-one {
  font-size: 18px;
  padding-right: 30px;
  color: var(--color-body);
}
.banner-style-4 .sldier-content .button-group {
  margin: -7px;
}
.banner-style-4 .sldier-content .button-group a.btn {
  margin: 7px;
}
.banner-style-4 .slider {
  background: var(--background-color-1);
  padding: 15px;
  border-radius: 5px;
  position: relative;
}
.banner-style-4 .slider .slider-thumbnail {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.banner-style-4 .slider .slider-thumbnail a {
  display: block;
}
.banner-style-4 .slider .slider-thumbnail a img {
  transition: 0.3s;
}
.banner-style-4 .slider .slider-thumbnail .read-wrapper {
  position: absolute;
  left: 0;
  z-index: 2;
  text-align: left;
  bottom: 0;
  height: auto;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .banner-style-4 .slider .slider-thumbnail .read-wrapper {
    padding: 44px 30px;
  }
}
.banner-style-4 .slider .slider-thumbnail .read-wrapper h5 {
  font-size: 30px;
  margin-bottom: -10px;
  color: var(--color-white);
}
.banner-style-4 .slider .slider-thumbnail .read-wrapper span {
  font-size: 14px;
  color: var(--color-primary);
  display: inline-block;
  margin-top: 15px;
}
.banner-style-4 .slider:hover .slider-thumbnail a img {
  transform: scale(1.1);
}
.banner-style-4 .slider ul.slick-dots {
  display: inline-block !important;
  bottom: 44px;
  position: absolute;
  z-index: 2;
  right: 30px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .banner-style-4 .slider ul.slick-dots {
    bottom: 28px;
    right: auto;
    left: 41px;
  }
}

/*-------------------------
    Slider Style 5  
---------------------------*/
.slider-style-5 .banner-left-content .title {
  color: var(--color-heading);
  margin-bottom: 15px;
}
.slider-style-5 .banner-left-content p.banner-disc-one {
  color: var(--color-body);
}
.slider-style-5 .banner-left-content .button-group {
  margin: -7px;
}
.slider-style-5 .banner-left-content .button-group a.btn {
  margin: 7px;
}

/*--------------------------
    Banner Style 6  
---------------------------*/
.slider-style-6 {
  padding: 15px;
  background: var(--background-color-2);
  border-radius: 5px;
}
.slider-style-6.wide-wrapper {
  margin: 0 -110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .slider-style-6.wide-wrapper {
    margin: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-style-6.wide-wrapper {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-6.wide-wrapper {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .slider-style-6.wide-wrapper {
    margin: 0;
  }
}
.slider-style-6 .slide {
  position: relative;
  z-index: 1;
  min-height: 476px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .slider-style-6 .slide {
    min-height: auto;
    padding: 50px 0;
  }
}
.slider-style-6 .slide .banner-read-thumb-lg {
  padding: 20px 50px;
}
@media only screen and (max-width: 767px) {
  .slider-style-6 .slide .banner-read-thumb-lg {
    padding: 20px 30px;
  }
}
.slider-style-6 .slide .banner-read-thumb-lg h4 {
  margin-bottom: 15px;
  font-size: 50px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-6 .slide .banner-read-thumb-lg h4 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-style-6 .slide .banner-read-thumb-lg h4 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .slider-style-6 .slide .banner-read-thumb-lg h4 {
    font-size: 26px;
  }
}
.slider-style-6 .slide .banner-read-thumb-lg p {
  max-width: 60%;
  margin-bottom: 30px;
  color: var(--color-body);
}
@media only screen and (max-width: 1199px) {
  .slider-style-6 .slide .banner-read-thumb-lg p {
    max-width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-6 .slide .banner-read-thumb-lg p {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .slider-style-6 .slide .banner-read-thumb-lg p {
    max-width: 100%;
    font-size: 18px;
    margin-bottom: 19px;
  }
}
@media only screen and (max-width: 479px) {
  .slider-style-6 .slide .banner-read-thumb-lg p {
    max-width: 100%;
  }
}
.slider-style-6.slick-arrow-between button.slide-arrow.prev-arrow {
  left: 0px !important;
}
.slider-style-6.slick-arrow-between button.slide-arrow.next-arrow {
  right: 0px !important;
}

/*--------------------------
    Banner Style 7 
---------------------------*/
.slider-style-7 {
  height: auto;
  border-radius: 8px;
  padding: 90px 0;
  overflow-y: hidden;
}
.slider-style-7 .rn-banner-wrapper {
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .slider-style-7 .rn-banner-wrapper {
    margin: 0;
    padding: 0 5px;
  }
}
.slider-style-7 .rn-banner-wrapper .item-description p {
  margin-bottom: 30px;
  color: var(--color-body);
}
.slider-style-7 .rn-banner-wrapper .item-description .product-share-wrapper {
  margin-top: 0;
  flex-wrap: wrap;
}
.slider-style-7 .rn-banner-wrapper .item-description .product-share-wrapper .profile-share a.more-author-text {
  color: #acacac;
}
@media only screen and (max-width: 575px) {
  .slider-style-7 .rn-banner-wrapper .item-description .product-share-wrapper .countdown {
    margin-top: 10px;
  }
}
.slider-style-7 .rn-banner-wrapper h2.title {
  font-size: 40px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-style-7 .rn-banner-wrapper h2.title {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-7 .rn-banner-wrapper h2.title {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-style-7 .rn-banner-wrapper h2.title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.slider-style-7 .rn-banner-wrapper h2.title span {
  color: var(--color-primary);
}
.slider-style-7 .rn-banner-wrapper .img-thumb-award {
  text-align: right;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-style-7 .rn-banner-wrapper .img-thumb-award {
    text-align: left;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-7 .rn-banner-wrapper .img-thumb-award {
    text-align: left;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-style-7 .rn-banner-wrapper .img-thumb-award {
    text-align: left;
    margin-bottom: 15px;
  }
}
.slider-style-7 .rn-banner-wrapper .img-thumb-award img {
  max-width: 130px;
}

/*----------------------
 Common Styles 
------------------------*/
.title-badge {
  color: var(--color-primary);
  font-size: 16px;
  width: auto;
  border: 1px solid var(--color-border);
  height: 47px;
  display: inline-block;
  padding: 0 26px;
  border-radius: 500px;
  min-width: 95px;
  text-align: center;
  margin: 5px;
  line-height: 45px;
  margin-bottom: 15px;
}

/*-----------------------
 common slider-nav 
--------------------------*/
.slider .previous-slide,
.slider .next-slide {
  height: 18px;
  width: 18px;
  position: absolute;
  top: auto;
  bottom: -45px;
  left: auto;
  right: auto;
  cursor: pointer;
  z-index: 2;
}

.slider .previous-slide {
  background: url("https://img.icons8.com/office/16/000000/back.png") no-repeat;
  background-size: contain;
  display: none !important;
}

.slider .next-slide {
  background: url("https://img.icons8.com/office/16/000000/forward.png") no-repeat;
  background-size: contain;
  background-position: right;
  display: none !important;
}

@mediaonly screen and (min-width: 992px) and (max-width: 1199px) {
  .property-wrapper-flex {
    flex-wrap: wrap;
  }
}
@mediaonly screen and (min-width: 768px) and (max-width: 991px) {
  .property-wrapper-flex {
    flex-wrap: wrap;
  }
}
@mediaonly screen and (max-width: 767px) {
  .property-wrapper-flex {
    flex-wrap: wrap;
  }
}
@mediaonly screen and (min-width: 992px) and (max-width: 1199px) {
  .property-wrapper-flex .rn-pd-sm-property-wrapper {
    margin-top: 30px;
    flex-basis: 100%;
    margin-left: 0 !important;
  }
}
@mediaonly screen and (min-width: 768px) and (max-width: 991px) {
  .property-wrapper-flex .rn-pd-sm-property-wrapper {
    margin-top: 30px;
    flex-basis: 100%;
    margin-left: 0 !important;
  }
}
@mediaonly screen and (max-width: 767px) {
  .property-wrapper-flex .rn-pd-sm-property-wrapper {
    margin-top: 30px;
    flex-basis: 100%;
    margin-left: 0 !important;
  }
}

.place-bet-area.into-banner {
  backdrop-filter: blur(15px);
}
@media only screen and (max-width: 575px) {
  .place-bet-area.into-banner {
    padding: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .place-bet-area.into-banner .rn-bet-create {
    transform: none;
  }
}
@media only screen and (max-width: 575px) {
  .place-bet-area.into-banner .rn-bet-create .top-seller-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media only screen and (max-width: 575px) {
  .place-bet-area.into-banner .rn-bet-create .top-seller-wrapper .top-seller-content {
    text-align: left;
    margin-left: 0;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .place-bet-area.into-banner .rn-bet-create .bid-list {
    text-align: left;
  }
}

.padding-controler-slide-product {
  padding-top: 30px !important;
  padding-bottom: 100px !important;
}

.fullscreen_image-banner {
  height: 800px !important;
  width: 100%;
}

.home-sticky-pin {
  background: #141415;
}

.rn-about-title-wrapper h3 {
  line-height: 45px;
  margin-bottom: 0;
}

.rn-about-wrapper {
  padding: 25px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}

.counter-container {
  justify-content: center;
  display: flex;
}

.dry-ice-machinery-title {
  color:white !important; 
  position: relative; 
  z-index: 1;
}

.dry-ice-machinery-p {
  color:white; 
  width: 600px;
  position: relative; 
  z-index: 1;
}
.results-container-p {
  width: 600px;
  position: relative; 
  z-index: 1;
}
.results-img {
  margin-top: 20px;
}

.dry-ice-capso-p {
      margin-bottom: 1rem 0;
      color: #4d5057;
}

.product-page-underline {
  color: var(--color-green);
 
}

.production-counter-section-container-blasting {
  margin-bottom: 3rem;
  padding: 5rem 0;
}

.counter-custom-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)* -1);
}

.production-counter-container {
  width: 80%;
  display: flex;
  margin: 1.5vw 0;
}

.blasting-counter-container {
  width: 100%;
  margin: 1.5vw 0;
}

.blasting-counter-section-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)* -1);
}

@media only screen and (max-width:992px) {

  .production-counter-container {
    justify-content: center;
    display: flex;
    width: 100%;
  }

  .production-counter-section-container {
    width: 100%;
  }
  .blasting-counter-container {
    justify-content: center;
    display: flex;
  }
}

@media only screen and (max-width: 768px) 
{
  .production-counter-section-container {
    flex-direction: column;
  }
  .single-counter-up {
    margin: 20px;
  }
}


.single-counter-up {
  border-radius: 5px;

}
.counter-section-container {
  width: 80%;
}

@media only screen and (max-width:992px) {

  .counter-container {
    justify-content: none;
    display: flex;
  }

  .counter-section-container {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) 
{
  .counter-section-container {
    flex-direction: column;
  }
}

.single-counter-up .counter {
  font-size: 30px;
  color: var(--color-primary);
  line-height: 56px;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px ) {
  .single-counter-up .counter {
    font-size: 25px;
  }
}


.single-counter-up .counter span {
  display: inline-block;
}
.single-counter-up .botton-title {
  font-size: 18px;
  color: var(--color-light);
}
@media only screen and (max-width: 479px) {
  .single-counter-up .botton-title {
    font-size: 14px;
  }
}

.wETH {
  position: relative;
  display: inline-block;
}
.wETH::after {
  position: absolute;
  content: "wETH";
  right: -48%;
  bottom: 3px;
  color: #b7111175;
  font-size: 18px;
}

.call-to-action-wrapper {
  padding: 80px 50px;
  text-align: center;
}
.call-to-action-wrapper h3 {
  margin-bottom: 15px;
  font-size: 45px;
  line-height: 60px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-to-action-wrapper h3 {
    font-size: 26px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .call-to-action-wrapper h3 {
    font-size: 26px;
    line-height: 35px;
  }
}
.call-to-action-wrapper p {
  margin-top: 0;
  padding: 0 319px 0;
  margin-bottom: 30px;
  font-size: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .call-to-action-wrapper p {
    padding: 0 10% 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .call-to-action-wrapper p {
    padding: 0 10% 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-to-action-wrapper p {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .call-to-action-wrapper p {
    padding: 0 0;
  }
}
.call-to-action-wrapper .callto-action-btn-wrapper {
  display: flex;
  justify-content: center;
}
.call-to-action-wrapper .callto-action-btn-wrapper .btn-primary {
  margin-right: 15px;
}

.bg-image-border {
  border-radius: 5px;
}

.about-title-m {
  font-size: 45px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-title-m {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .about-title-m {
    font-size: 26px;
  }
}

.about-fluidimg {
  padding: 0 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-fluidimg {
    padding: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-fluidimg {
    padding: 0;
  }
}
.about-fluidimg .bg_image {
  height: 560px;
  border-radius: 5px;
}

.about-fluidimg-cta {
  padding: 0 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-fluidimg-cta {
    padding: 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-fluidimg-cta {
    padding: 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-fluidimg-cta {
    padding: 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-fluidimg-cta {
    padding: 0 0;
  }
}

.mt_dec--50 {
  margin-top: -125px;
}

.h--100 {
  height: 130%;
}

.rn-about-card {
  border: 1px solid var(--color-border);
  background: #191925;
  padding: 50px 40px;
  border-radius: 5px;
}
.rn-about-card.transparent-bg {
  background: transparent;
  border: 1px solid var(--color-border);
  margin-top: 140px;
}
@media only screen and (max-width: 1199px) {
  .rn-about-card.transparent-bg {
    margin-top: 0px;
  }
}
.rn-about-card.widge-wrapper .inner {
  margin-bottom: 0;
}
.rn-about-card .inner {
  margin-bottom: 0;
}
.rn-about-card .inner h3 {
  font-weight: 400;
  margin-bottom: 15px;
  line-height: var(--h1);
}
.rn-about-card .inner p {
  margin-bottom: 20px;
  font-weight: 400;
}

.about-wrapper p.discription {
  max-width: 70%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .about-wrapper p.discription {
    max-width: 90%;
  }
}
@media only screen and (max-width: 479px) {
  .about-wrapper p.discription {
    max-width: 100%;
  }
}

.rn-service-one {
  text-align: left;
  padding: 70px 30px;
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 10px;
  background: var(--background-color-1);
  position: relative;
  z-index: 1;
  height: 100%;
  padding-bottom: 40px;
}
.rn-service-one::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 0;
  z-index: -1;
}
.rn-service-one .inner .icon {
  position: absolute;
  z-index: 2;
  right: -15px;
  top: -30px;
}
@media only screen and (max-width: 767px) {
  .rn-service-one .inner .icon {
    right: 0;
    top: -29px;
  }
}
.rn-service-one .inner .icon svg {
  width: 60px;
  height: auto;
  color: var(--color-primary);
  stroke-width: 1 !important;
  transition: var(--transition);
}
.rn-service-one .inner .icon img {
  max-height: 85px;
}
@media only screen and (max-width: 767px) {
  .rn-service-one .inner .icon img {
    max-height: 67px;
  }
}
.rn-service-one .inner .subtitle {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.rn-service-one .inner > * {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(10px);
}
.rn-service-one .inner .content {
  padding-top: 20px;
}
.rn-service-one .inner .content .title {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
  color: var(--color-white);
}
.rn-service-one .inner .content p.description {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-lightn);
  transition: var(--transition);
  transition: var(--transition);
  margin-bottom: 30px;
  margin-top: 20px;
}
.rn-service-one .inner .content .read-more-button {
  transition: var(--transition);
  font-size: 24px;
}
.rn-service-one .inner .content .read-more-button i {
  color: var(--color-body);
  transition: 0.3s;
}
.rn-service-one:hover .inner .content .read-more-button i {
  color: var(--color-primary) !important;
}
.rn-service-one:hover .inner .content h4.title {
  color: var(--color-primary) !important;
}
.rn-service-one:hover .inner > * {
  transform: translateY(0px);
}
.rn-service-one a.over-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.form-wrapper-one {
  padding: 40px 35px;
  border-radius: 6px;
  background: var(--background-color-1);
  height: 100%;
  border: 1px solid var(--color-border);
}
.form-wrapper-one .input-box {
  display: block;
}
.form-wrapper-one .rn-form-label {
  margin-bottom: 12px;
  font-size: 14px;
}
.form-wrapper-one input,
.form-wrapper-one textarea {
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
}
.form-wrapper-one input:focus,
.form-wrapper-one textarea:focus {
  border: 2px solid var(--color-primary) !important;
  box-shadow: none;
  background: var(--background-color-4);
}
.form-wrapper-one textarea {
  min-height: 100px;
}

.form-wrapper-one input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--color-body);
}

.form-wrapper-one input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--color-body);
}

.form-wrapper-one input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--color-body);
}

.form-wrapper-one input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--color-body);
}

.form-wrapper-one textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--color-body);
}

.form-wrapper-one textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--color-body);
}

.form-wrapper-one textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--color-body);
}

.form-wrapper-one textarea:-moz-placeholder {
  /* Firefox 18- */
  color: var(--color-body);
}

.rn-check-box {
  padding-left: 0;
}
.rn-check-box .rn-check-box-label {
  margin: 0;
  color: var(--color-body);
}

button.another-login {
  margin-bottom: 30px;
  padding: 0 15px;
  height: 50px;
  border: none;
  background: var(--background-color-4);
  border-radius: 5px;
  color: var(--color-white);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
button.another-login:hover {
  background: var(--color-primary-alta);
}
button.another-login:last-child {
  margin-bottom: 0;
}
button.another-login svg {
  width: 18px;
  color: var(--color-white);
  margin-right: 7px;
}
button .small-image {
  max-width: 30px;
  margin-right: 10px;
  padding: 2px;
}

.social-share-media h6 {
  margin-bottom: 15px;
}
.social-share-media p {
  font-size: 16px;
  margin-bottom: 20px;
}
.social-share-media .another-login {
  text-align: left;
  margin-bottom: 15px;
}

.message-area .form-wrapper-one.registration-area {
  width: 100%;
}

.upload-area label {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-direction: column;
  margin-bottom: 15px;
}
.upload-area label i {
  font-size: 40px;
  stroke-width: 1px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.upload-area label p {
  font-size: 14px;
  font-weight: 300;
}
.upload-area label span {
  font-size: 20px;
}
.upload-area .upload-formate h6.title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.upload-area .upload-formate p.formate {
  font-size: 16px;
}
.upload-area .brows-file-wrapper {
  position: relative;
  border: 2px dashed #575767;
  border-radius: 5px;
}
.upload-area .brows-file-wrapper input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.upload-area .brows-file-wrapper label {
  position: relative;
  z-index: 10;
  transition: var(--transition);
}
.upload-area .brows-file-wrapper img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
  cursor: pointer;
  border-radius: 5px;
  object-fit: cover;
}
.upload-area .brows-file-wrapper:hover label {
  transform: scale(0.8);
}

.forget-pass-wrapper {
  max-width: 400px;
  margin: auto;
  background: var(--background-color-1);
  padding: 25px;
  border-radius: 5px;
}
.forget-pass-wrapper .title {
  text-align: center;
}
.forget-pass-wrapper .form-label {
  margin-bottom: 15px;
}
.forget-pass-wrapper .form-control {
  background: var(--background-color-2) !important;
  height: 42px !important;
  border-radius: 5px !important;
  color: var(--color-white) !important;
  font-size: 18px;
  padding: 0 10px;
  border: 2px solid transparent !important;
}
.forget-pass-wrapper .form-control:focus {
  border: 2px solid var(--color-primary) !important;
  box-shadow: none;
}
.forget-pass-wrapper .rn-check-box {
  margin-bottom: 30px;
}
.forget-pass-wrapper .rn-check-box .rn-check-box-input {
  margin-bottom: 10px;
}
.forget-pass-wrapper .rn-check-box label {
  color: var(--color-body);
}
.forget-pass-wrapper .rn-check-box label a {
  color: var(--color-primary);
  transition: var(--transition);
}
.forget-pass-wrapper .rn-check-box label a:hover {
  text-decoration: underline;
}
.forget-pass-wrapper a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.forget-pass-wrapper .notice p {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wallet-wrapper {
  text-align: left;
  padding: 15px 22px 25px;
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
  background: var(--background-color-1);
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid var(--color-border);
}
.wallet-wrapper::before {
  content: "";
  position: absolute;
  transition: var(--transition);
  width: 100%;
  height: 100%;
  border-radius: 5px;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 0;
  z-index: -1;
}
.wallet-wrapper .inner {
  transition: var(--transition);
}
.wallet-wrapper .inner .icon {
  margin-bottom: 7px;
}
.wallet-wrapper .inner .icon svg {
  width: 40px;
  height: auto;
  color: var(--color-primary);
  stroke-width: 1 !important;
  transition: var(--transition);
}
.wallet-wrapper .inner > * {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(5px);
}
.wallet-wrapper .inner .content .title {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 0;
  color: var(--color-white);
  margin: 12px 0;
}
.wallet-wrapper .inner .content p.description {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-lightn);
  margin-bottom: 0;
  transition: var(--transition);
  transition: var(--transition);
}
.wallet-wrapper .inner .content .read-more-button {
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  font-size: 24px;
}
.wallet-wrapper a.over-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.wallet-wrapper:hover .inner > * {
  transform: translateY(0px);
}

.wallet-area p.privacy-para {
  font-size: 16px;
  padding: 30px 150px 0 150px;
}
@media only screen and (max-width: 1199px) {
  .wallet-area p.privacy-para {
    padding: 30px 100px 0 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .wallet-area p.privacy-para {
    padding: 30px 50px 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .wallet-area p.privacy-para {
    padding: 30px 50px 0 50px;
  }
}
@media only screen and (max-width: 575px) {
  .wallet-area p.privacy-para {
    padding: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .wallet-area p.privacy-para {
    padding: 20px 20px 0 20px;
  }
}

.connect-thumbnail {
  padding: 18px;
  background: var(--background-color-1);
  border-radius: 5px;
}
.connect-thumbnail .left-image {
  overflow: hidden;
  border-radius: 5px;
}
.connect-thumbnail .left-image img {
  border-radius: 5px;
  transition: var(--transition);
  width: 100%;
}
.connect-thumbnail .left-image img:hover {
  transform: scale(1.02);
}

.connect-title {
  margin-bottom: 10px;
}

.connect-td a {
  color: var(--color-white);
  transition: var(--transition);
  display: block;
  margin-top: 10px;
}
.connect-td a:hover {
  color: var(--color-primary);
}

.wallet-bootm-disc {
  font-size: 16px;
}

.rn-address {
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  padding-top: 20px;
  background: var(--background-color-1);
  padding-bottom: 20px;
  transition: 0.3s;
  border: 1px solid var(--color-border);
}
.rn-address .icon {
  color: var(--color-primary);
  border-radius: 100%;
  font-size: 33px;
  display: inline-block;
  margin-bottom: 12px;
}
.rn-address .icon svg {
  height: 40px;
  width: 40px;
}
.rn-address .inner h4.title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.rn-address .inner p {
  margin: 0;
}
.rn-address .inner p a {
  margin: 0;
  color: var(--color-light);
}

/*-----------------------
    Author Styles  
---------------------------*/
.padding-tb-50 {
  border-radius: 5px;
  padding: 20px 15px;
}

.author-wrapper {
  display: flex;
  justify-content: center;
}
.author-wrapper .author-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.author-wrapper .author-inner .user-thumbnail {
  display: flex;
  justify-content: center;
}
.author-wrapper .author-inner .user-thumbnail img {
  border: 15px solid #13131d;
  border-radius: 5px;
  position: relative;
  max-width: 170px;
}
.author-wrapper .author-inner .rn-author-info-content {
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 10px;
}
.author-wrapper .author-inner .rn-author-info-content h4.title {
  font-weight: 600;
  margin-bottom: 10px;
}
.author-wrapper .author-inner .rn-author-info-content .social-follw {
  display: flex;
  justify-content: center;
  margin-bottom: 7px;
}
.author-wrapper .author-inner .rn-author-info-content .social-follw svg {
  margin-right: 10px;
  width: 14px;
  color: var(--color-primary);
}
.author-wrapper .author-inner .rn-author-info-content .social-follw .user-name {
  position: relative;
  margin-top: 2px;
}
.author-wrapper .author-inner .rn-author-info-content .follow-area {
  display: flex;
  justify-content: center;
}
.author-wrapper .author-inner .rn-author-info-content .follow-area .follow.followers {
  margin-right: 15px;
}
.author-wrapper .author-inner .rn-author-info-content .follow-area .follow span {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
}
.author-wrapper .author-inner .rn-author-info-content .follow-area .follow span a {
  margin-left: 3px;
}

.author-button-area {
  margin-right: -8px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  margin-right: -8px;
}
.author-button-area .follow-button svg {
  position: relative;
  margin-top: -7px;
  margin-right: 3px;
  width: 17px !important;
}
.author-button-area .at-follw {
  padding: 10px 13px;
  background: var(--color-primary-alta);
  margin-right: 8px;
  transition: var(--transition);
  color: var(--color-white);
  border-radius: 5px;
  line-height: 20px;
  font-size: 14px;
}
.author-button-area .at-follw svg {
  width: 18px;
  height: auto;
}
.author-button-area .at-follw:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.author-button-area .at-follw.count button.icon {
  border: none;
  padding: 0;
}
.author-button-area .at-follw:hover {
  background: var(--color-primary);
}
.author-button-area .at-follw:hover svg {
  color: var(--color-white);
}
.author-button-area .at-follw.edit-btn svg {
  bottom: -3px;
  left: 1px;
}

.rn-authore-profile-area .tab-content > .tab-pane {
  display: none !important;
}
.rn-authore-profile-area .tab-content > .active {
  display: flex !important;
}

.avatar {
  position: relative;
}
.avatar::after, .avatar::before {
  --scale: 0;
  --arrow-size: 8px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) translateY(var(--translate-y, 0)) scale(var(--scale));
  transition: 150ms transform;
  transform-origin: bottom center;
}
.avatar::before {
  --translate-y:calc(-100% - var(--arrow-size));
  content: attr(data-tooltip);
  color: var(--color-white);
  padding: 5px 8px;
  background: var(--color-primary-alta);
  width: max-content;
  border-radius: 5px;
  text-align: center;
}
.avatar::after {
  --translate-y:calc(-1 * var(--arrow-size));
  content: "";
  border: var(--arrow-size) solid transparent;
  border-top-color: var(--color-primary-alta);
}
.avatar:hover::before, .avatar:hover::after {
  --scale:1;
}

.title-filter-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-filter-area .h2 {
  margin-bottom: 0;
}
.title-filter-area .nice-select {
  margin: 0;
}

.top-seller-inner-one.explore {
  border: 1px solid var(--background-color-1);
  border-radius: 5px;
  display: flex;
  padding: 20px;
  background: var(--background-color-1);
  transition: var(--transition);
  position: relative;
}
.top-seller-inner-one.explore .top-seller-wrapper .thumbnail {
  max-width: 80px;
}
.top-seller-inner-one.explore .top-seller-wrapper .thumbnail a {
  display: block;
  overflow: hidden;
}
.top-seller-inner-one.explore .top-seller-wrapper .thumbnail a img {
  transition: var(--transition);
}
.top-seller-inner-one.explore:hover {
  background: var(--color-primary-alta);
}
.top-seller-inner-one.explore:hover .top-seller-wrapper .thumbnail a img {
  transform: scale(1.2);
}
.top-seller-inner-one .thumbnail.varified {
  position: relative;
}
.top-seller-inner-one .thumbnail.varified::after {
  position: absolute;
  content: "\e92b";
  right: -3px;
  top: 26%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-family: 'Figtree', sans-serif;
  z-index: 1;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 50%;
  line-height: 0;
}

.rn-creator-title-area .nice-select::after {
  right: 18px;
}

.rn-top-top-seller-area h3.title {
  margin-right: 10px;
}

.nice-selector-transparent .nice-select {
  background: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nice-selector-transparent .nice-select {
    position: relative;
    top: -6px;
  }
}
@media only screen and (max-width: 767px) {
  .nice-selector-transparent .nice-select {
    position: relative;
    top: -8px;
  }
}
.nice-selector-transparent .nice-select span {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
}
@media only screen and (max-width: 767px) {
  .nice-selector-transparent .nice-select span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .nice-selector-transparent .nice-select .list {
    left: auto;
    right: 0;
  }
}
.nice-selector-transparent .nice-select::after {
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  right: 3px;
  height: 10px;
  width: 10px;
  top: 47%;
}

@media only screen and (max-width: 479px) {
  .justify-sm-center {
    justify-content: center;
  }
}

.top-seller-inner-one .top-seller-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .top-seller-inner-one .top-seller-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.top-seller-inner-one .top-seller-wrapper .thumbnail {
  max-width: 60px;
}
@media only screen and (max-width: 479px) {
  .top-seller-inner-one .top-seller-wrapper .thumbnail {
    margin-bottom: 5px;
  }
}
.top-seller-inner-one .top-seller-wrapper .thumbnail a {
  display: block;
  border-radius: 50%;
  border: 3px solid var(--color-border);
}
.top-seller-inner-one .top-seller-wrapper .thumbnail a img {
  overflow: hidden;
  transition: 0.3s;
  border-radius: 100%;
}
.top-seller-inner-one .top-seller-wrapper .top-seller-content {
  margin-left: 12px;
}
@media only screen and (max-width: 479px) {
  .top-seller-inner-one .top-seller-wrapper .top-seller-content {
    margin-left: 0;
  }
}
.top-seller-inner-one .top-seller-wrapper .top-seller-content a h6 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  transition: var(--transition);
}
@media only screen and (max-width: 479px) {
  .top-seller-inner-one .top-seller-wrapper .top-seller-content a h6 {
    font-size: 16px;
    margin-top: 10px;
  }
}
.top-seller-inner-one .top-seller-wrapper .top-seller-content a h6:hover {
  color: var(--color-primary);
}
.top-seller-inner-one .top-seller-wrapper .top-seller-content span {
  font-size: 14px;
}
.top-seller-inner-one .top-seller-wrapper .top-seller-content span.count-number {
  display: block;
}
.top-seller-inner-one .top-seller-wrapper .top-seller-content span a {
  margin-left: 7px;
  text-transform: capitalize;
}
.top-seller-inner-one .top-seller-wrapper:hover .thumbnail a img {
  transform: scale(1.2);
}

.rn-collection-inner-one .collection-wrapper {
  position: relative;
  padding: 18px;
  background: var(--background-color-1);
  border-radius: 5px;
}
.rn-collection-inner-one .collection-wrapper .collection-big-thumbnail {
  overflow: hidden;
  border-radius: 5px;
}
.rn-collection-inner-one .collection-wrapper .collection-big-thumbnail img {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: var(--transition);
}
.rn-collection-inner-one .collection-wrapper .collenction-small-thumbnail {
  display: flex;
  justify-content: space-between;
  margin: -4px;
  margin-top: 4px;
}
.rn-collection-inner-one .collection-wrapper .collenction-small-thumbnail img {
  display: inline-block;
  width: 33.33%;
  padding: 4px;
  border-radius: 10px;
}
.rn-collection-inner-one .collection-wrapper .collection-profile {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 575px) {
  .rn-collection-inner-one .collection-wrapper .collection-profile {
    top: 56%;
  }
}
@media only screen and (max-width: 479px) {
  .rn-collection-inner-one .collection-wrapper .collection-profile {
    top: 53%;
  }
}
.rn-collection-inner-one .collection-wrapper .collection-profile img {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid var(--color-primary-alta);
  transition: var(--transition);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-collection-inner-one .collection-wrapper .collection-profile img {
    max-width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .rn-collection-inner-one .collection-wrapper .collection-profile img {
    max-width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .rn-collection-inner-one .collection-wrapper .collection-profile img {
    max-width: 80px;
    height: 80px;
  }
}
.rn-collection-inner-one .collection-wrapper .collection-deg {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
  align-items: center;
}
.rn-collection-inner-one .collection-wrapper .collection-deg h6 {
  margin: 0;
  font-weight: 400;
  transition: var(--transition);
}
.rn-collection-inner-one .collection-wrapper .collection-deg h6:hover {
  color: var(--color-primary);
}
.rn-collection-inner-one .collection-wrapper .collection-deg span.items {
  padding: 5px 8px;
  background: var(--color-primary-alta);
  border-radius: 3px;
  color: var(--color-white);
  transition: var(--transition);
}
.rn-collection-inner-one .collection-wrapper .collection-deg span.items:hover {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}
.rn-collection-inner-one .collection-wrapper:hover .collection-big-thumbnail img {
  transform: scale(1.1);
}

.creator-list-wrapper {
  counter-reset: rn-list-counter;
}
.creator-list-wrapper .creator-single {
  counter-increment: rn-list-counter;
  position: relative;
}
.creator-list-wrapper .creator-single::before {
  content: counter(rn-list-counter);
  font-weight: 700;
  font-size: 61px;
  margin-right: 0.5rem;
  line-height: 1;
  position: absolute;
  right: 30px;
  z-index: 3;
  color: var(--color-body);
  opacity: 0.1;
  top: 50%;
  transform: translateY(-50%);
}

.top-seller-list-wrapper {
  counter-reset: rn-list-counter;
}
.top-seller-list-wrapper .top-seller-list {
  counter-increment: rn-list-counter;
  position: relative;
}
.top-seller-list-wrapper .top-seller-list::before {
  content: counter(rn-list-counter);
  font-weight: 700;
  font-size: 61px;
  margin-right: 0.5rem;
  line-height: 1;
  position: absolute;
  right: 30px;
  z-index: 3;
  color: var(--color-body);
  opacity: 0.1;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media only screen and (max-width: 479px) {
  .top-seller-list-wrapper .top-seller-list::before {
    font-size: 40px;
    right: 0;
  }
}
.top-seller-list-wrapper .top-seller-list:hover::before {
  font-size: 45px;
}

.input-group {
  max-width: 360px;
}

.rn-footer-one .footer-left .rn-footer-describe {
  font-size: 18px;
  margin-top: 20px;
  padding: 0 30px 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rn-footer-one .footer-left .rn-footer-describe {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rn-footer-one .footer-left .rn-footer-describe {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rn-footer-one .footer-left .rn-footer-describe {
    padding: 0;
  }
}

.footer-list-one {
  margin: 0;
  list-style: none;
  padding: 0;
}
.footer-list-one .single-list {
  margin: 11px 0;
}
.footer-list-one .single-list a {
  font-size: 16px;
  color: var(--color-body);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}
.footer-list-one .single-list a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 0;
  background: var(--color-primary);
  width: 0;
  height: 2px;
  transition: 0.3s;
  right: 0;
}
.footer-list-one .single-list a:hover {
  color: var(--color-primary) !important;
}
.footer-list-one .single-list a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

/*-------------------------
 Footer Widget  
------------------------*/
.footer-widget .widget-title {
  font-size: 24px;
  margin-bottom: 25px;
}
.footer-widget.widget-quicklink {
  margin-left: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.widget-quicklink {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget.widget-quicklink {
    margin-left: 0;
  }
}
.footer-widget.widget-information {
  margin-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.widget-information {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget.widget-information {
    margin-left: 0;
  }
}

.widget-content-wrapper .title {
  font-weight: 500;
  font-size: 16px;
}
.widget-content-wrapper .input-group .input-group-append {
  position: relative;
  left: -5px;
  z-index: 5;
}
.widget-content-wrapper .input-group .input-group-append button {
  border-radius: 0 5px 5px 0;
}
.widget-content-wrapper .input-group input {
  color: var(--color-body);
  position: relative;
  z-index: 1;
  font-size: 16px;
  border-radius: 5px 0 0 5px;
  background: var(--background-color-2);
  outline: none;
  box-shadow: none;
}
.widget-content-wrapper .input-group input:focus {
  box-shadow: none;
}
.widget-content-wrapper .newsletter-dsc p {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.widget-content-wrapper .widget-bottom {
  border-top: 1px solid var(--background-color-2);
}

/*-------------------------------
    Footer Slicky Header Area  
---------------------------------*/
.footer-for-left-sticky-header {
  padding-left: 320px;
  padding-right: 420px;
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .footer-for-left-sticky-header {
    padding-left: 320px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-for-left-sticky-header {
    padding-left: 320px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-for-left-sticky-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-for-left-sticky-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .footer-for-left-sticky-header {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer-for-left-sticky-header .logo a img {
  max-width: 120px;
}
.footer-for-left-sticky-header .inner {
  border-top: 1px solid var(--color-border);
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-for-left-sticky-header .inner p a {
  color: var(--color-body);
  transition: 0.4s;
}
.footer-for-left-sticky-header .inner p a:hover {
  color: var(--color-primary) !important;
}

/*-----------------------
    Recent Post  
---------------------------*/
.footer-recent-post {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-recent-post li.recent-post {
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin: 0;
}
.footer-recent-post li.recent-post .thumbnail {
  margin-right: 12px;
}
.footer-recent-post li.recent-post .thumbnail a img {
  max-height: 60px;
  border-radius: 100%;
  object-fit: cover;
}
.footer-recent-post li.recent-post .content .title {
  font-size: 14px;
  margin-bottom: 4px;
}
.footer-recent-post li.recent-post .content p {
  margin-bottom: 3px;
  font-size: 13px;
}
.footer-recent-post li.recent-post .content .price {
  color: var(--color-primary);
  font-weight: 700;
}
.footer-recent-post li + li.recent-post {
  border-top: 1px solid var(--background-color-2);
}
.footer-recent-post li:first-child.recent-post {
  padding-top: 0;
}

/*--------------------------
    Copyright Area  
----------------------------*/
.copy-right-one {
  border-top: 1px solid var(--color-border);
}
.copy-right-one .copyright-left {
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-right-one .copyright-left {
    justify-content: center;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .copy-right-one .copyright-left {
    display: block;
    text-align: center;
  }
}
.copy-right-one .copyright-left span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.copy-right-one .copyright-left .privacy {
  display: flex;
  list-style: none;
  margin: 0;
  padding-left: 18px;
  position: relative;
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .copy-right-one .copyright-left .privacy {
    padding-left: 7px;
    margin-left: 7px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-right-one .copyright-left .privacy {
    padding-left: 7px;
    margin-left: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .copy-right-one .copyright-left .privacy {
    padding-left: 0;
    justify-content: center;
    margin: 10px 0;
  }
}
.copy-right-one .copyright-left .privacy::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 1px;
  height: 25px;
  background: var(--color-border);
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .copy-right-one .copyright-left .privacy::before {
    display: none;
  }
}
.copy-right-one .copyright-left .privacy li {
  margin: 0;
  padding: 0 12px;
}
.copy-right-one .copyright-left .privacy li a {
  position: relative;
  color: var(--color-section-splitter);
  font-size: 16px;
  font-weight: 400;
}
.copy-right-one .copyright-left .privacy li a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 0;
  background: var(--color-primary);
  width: 0;
  height: 2px;
  transition: 0.3s;
  right: 0;
}
.copy-right-one .copyright-left .privacy li a:hover {
  color: var(--color-primary) !important;
}
.copy-right-one .copyright-left .privacy li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.copy-right-one .copyright-left .privacy li + li {
  position: relative;
}
.copy-right-one .copyright-left .privacy li + li::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 3px;
  background: var(--color-body);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.copy-right-one .copyright-right {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copy-right-one .copyright-right {
    margin: 0;
    padding: 0;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .copy-right-one .copyright-right {
    margin: 0;
    padding: 0;
    justify-content: center;
  }
}
.copy-right-one .copyright-right .social-copyright {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0 -5px;
  padding: 0;
}
.copy-right-one .copyright-right .social-copyright li {
  margin: 0 5px;
}
.copy-right-one .copyright-right .social-copyright li a {
  color: #fff;
  transition: 0.4s;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
}
.copy-right-one .copyright-right .social-copyright li a svg {
  width: 30px;
  transition: 0.4s;
}
.copy-right-one .copyright-right .social-copyright li a:hover {
  color: var(--color-white) !important;
}
.copy-right-one .copyright-right .social-copyright li a:hover svg {
  color: #3BC049;
}

.product-style-one {
  padding: 20px;
  border-radius: 10px;
  background: var(--background-color-4);
  height: 100%;
  position: relative;
  z-index: 5;
}
.product-style-one:hover::before {
  transform: rotate(2deg) translateX(-7px) translateY(11px);
}
.product-style-one.with-placeBid .card-thumbnail {
  position: relative;
}
.product-style-one.with-placeBid .card-thumbnail a.btn,
.product-style-one.with-placeBid .card-thumbnail span.btn {
  position: absolute;
  top: 50%;
  left: 33%;
  transform: scale(0);
  border-radius: 3px;
  padding: 7px 10px;
  transition: var(--transition);
}

.product-style-one.with-placeBid:hover .card-thumbnail a.btn,
.product-style-one.with-placeBid:hover .card-thumbnail span.btn {
  transform: scale(1);
}
.product-style-one .card-thumbnail {
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  margin: -15px;
}
.product-style-one .card-thumbnail a img {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.product-style-one .card-thumbnail::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.product-style-one a .product-name {
  display: block;
  margin-top: 40px;
  font-weight: 500;
  font-size: 18px;
  transition: 0.4s;
}
.product-style-one a .product-name:hover {
  color: var(--color-primary) !important;

}
.product-style-one .latest-bid {
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
}
.product-style-one .bid-react-area {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.product-style-one .bid-react-area .last-bid {
  font-weight: 500;
  color: var(--color-primary);
}
.product-style-one .bid-react-area .react-area {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 2px 8px;
  border-radius: 6px;
}
.product-style-one .bid-react-area .react-area span.number {
  font-size: 14px;
  position: relative;
}
.product-style-one .bid-react-area .react-area svg {
  margin-right: 3px;
  position: relative;
  width: 14px;
}
.product-style-one .bid-react-area .react-area::after {
  background: var(--color-primary-alta);
  position: absolute;
  content: "";
  top: 0;
  z-index: -1;
  border-radius: 6px;
  transition: var(--transition);
  opacity: 0;
  width: 100%;
  left: 0;
  height: 100%;
}
.product-style-one .bid-react-area .react-area:hover {
  color: var(--color-white);
}
.product-style-one .bid-react-area .react-area:hover::after {
  opacity: 1;
  background: var(--color-primary);
}
.product-style-one.no-overlay .card-thumbnail::before {
  display: none;
}
.product-style-one:hover .card-thumbnail a img {
  transform: scale(1.1);
}

.product-share-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}
.product-share-wrapper .profile-share {
  display: flex;
  align-items: center;
}
.product-share-wrapper .profile-share a {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.product-share-wrapper .profile-share a:nth-child(2) {
  margin-left: -12px;
}
.product-share-wrapper .profile-share a:nth-child(3) {
  margin-left: -12px;
}
.product-share-wrapper .profile-share a img {
  max-width: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}
.product-share-wrapper .profile-share a.more-author-text {
  color: var(--color-body);
  display: inline-block;
  padding-left: 7px;
}
.product-share-wrapper .profile-share a.more-author-text:hover {
  transform: none;
  color: var(--color-primary);
}
.product-share-wrapper .profile-share a:hover {
  z-index: 2;
  transform: translateY(-3px) scale(1.1);
}
.product-share-wrapper .share-btn {
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  height: 35px;
  display: flex;
  align-items: center;
}
.product-share-wrapper .share-btn .icon {
  padding: 0;
  margin: 0;
  border: 0;
}
.product-share-wrapper .share-btn::after {
  position: absolute;
  content: "";
  height: 35px;
  width: 35px;
  background: var(--color-primary-alta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  transition: var(--transition);
  opacity: 0;
}
.product-share-wrapper .share-btn:hover {
  color: var(--color-white);
}
.product-share-wrapper .share-btn:hover::after {
  opacity: 1;
}

.border-right {
  position: relative;
  padding-right: 30px !important;
}
.border-right::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  height: 100%;
  background: #333131;
  width: 1px;
}

.product-style-one .card-thumbnail {
  position: relative;
}
.product-style-one .card-thumbnail .countdown {
  position: absolute;
  display: flex;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  bottom: 12px;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 5px;
  z-index: 2;
}

.rn-support-read .read-card {
  padding-right: 15px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .rn-support-read .read-card {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rn-support-read .read-card {
    padding-right: 0;
  }
}
.rn-support-read .read-card h4 {
  margin-bottom: 15px;
}
.rn-support-read .read-card .content p {
  margin-bottom: 10px;
}

.isotop-filter {
  background: transparent;
  flex-wrap: wrap;
  margin: -5px;
}
.isotop-filter button {
  font-size: 16px;
  width: auto;
  border: 1px solid var(--color-border);
  height: 47px;
  display: inline-block;
  padding: 0 26px;
  border-radius: 500px;
  min-width: 95px;
  text-align: center;
  margin: 5px;
  line-height: 42px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .isotop-filter button {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .isotop-filter button {
    font-size: 14px;
    height: 44px;
    padding: 0 14px;
    line-height: 37px;
  }
}
.isotop-filter button.is-checked, .isotop-filter button:hover, .isotop-filter button:focus {
  color: var(--color-primary) !important;
  background: var(--color-primary-alta);
  border-color: var(--color-primary-alta);
}

/*---------------------------
    Filter Exanded  
-----------------------------*/
.default-exp-wrapper {
  border-top: 1px solid var(--color-border);
}
.default-exp-wrapper .inner {
  display: flex;
  padding: 40px 0;
  justify-content: flex-end;
  margin: -10px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .default-exp-wrapper .inner {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .default-exp-wrapper .inner {
    justify-content: start;
  }
}
@media only screen and (max-width: 767px) {
  .default-exp-wrapper .inner {
    justify-content: start;
  }
}
.default-exp-wrapper .inner .filter-select-option {
  flex-basis: 20%;
  padding: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .default-exp-wrapper .inner .filter-select-option {
    flex-basis: 33.33%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .default-exp-wrapper .inner .filter-select-option {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .default-exp-wrapper .inner .filter-select-option {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .default-exp-wrapper .inner .filter-select-option {
    flex-basis: 100%;
  }
}
.default-exp-wrapper .inner .filter-select-option .filter-leble {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.default-exp-wrapper .inner .filter-select-option .nice-select {
  width: 100%;
  padding-left: 20px;
  padding-right: 40px;
}
.default-exp-wrapper .inner .filter-select-option .nice-select::after {
  right: 22px;
  height: 8px;
  width: 8px;
  opacity: 0.5;
}
.default-exp-wrapper .inner .filter-select-option .nice-select .list {
  min-width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

.default-exp-expand {
  display: none;
}

.product-tab-nav .nav {
  background: var(--background-color-1);
  padding: 10px;
  border-radius: 5px 5px 0 0;
  border-right: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
.product-tab-nav .nav button {
  width: auto;
}
.product-tab-nav .nav button.nav-link {
  padding: 13px 30px;
  margin-right: 20px;
  border-radius: 5px;
  color: var(--color-white);
  border: 1px dashed var(--color-border);
  transition: var(--transition);
  font-size: 16px;
}
@media only screen and (max-width: 526px) {
  .product-tab-nav .nav button.nav-link {
    margin-bottom: 20px;
  }
  .product-tab-nav .nav button.nav-link:last-child {
    margin-bottom: 0;
  }
}
.product-tab-nav .nav button.nav-link.active {
  background: var(--color-primary-alta);
  border: 1px dashed transparent;
}
.product-tab-nav .nav button.nav-link:hover {
  border: 1px dashed var(--color-white);
  color: var(--color-white);
}
.product-tab-nav .nav button.nav-link:active {
  border: 1px dashed transparent;
  color: var(--color-white);
}
.product-tab-nav .nav button.nav-link:focus {
  border: 1px dashed transparent;
  color: var(--color-white);
}

.lg-product_tab-pane {
  padding: 30px;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0 0 5px 5px;
}
@media only screen and (max-width: 479px) {
  .lg-product_tab-pane {
    padding: 10px;
  }
}

.lg-product-col-2 {
  padding: 15px;
}

.lg-product-wrapper {
  padding: 15px 15px;
  background: var(--background-color-1);
  margin-top: 30px;
  border-radius: 5px;
  border: 1px solid var(--color-border);
  width: 100%;
}
.lg-product-wrapper.colum-2.two-colum-parent-product {
  margin-top: -25px;
  padding: 0;
  background: transparent;
  border: none;
  padding: 15px;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content a.thumbnail img {
  max-width: 168px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content a.thumbnail img {
    max-width: 100%;
    width: 680px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content a.thumbnail img {
    max-width: 100%;
    width: 680px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content a.thumbnail img {
    max-width: 100%;
    width: 680px;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content a.thumbnail img {
    max-width: 100%;
    width: 680px;
  }
}
.lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content .read-content {
  margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content .read-content {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content .read-content {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content .read-content {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper.colum-2.two-colum-parent-product .inner .lg-left-content .read-content {
    margin-left: 0;
    margin-top: 30px;
  }
}
.lg-product-wrapper.colum-2 .inner {
  padding: 15px 15px;
  background: var(--background-color-1);
  margin-top: 30px;
  border-radius: 5px;
  border: 1px solid var(--color-border);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper.colum-2 .inner {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper.colum-2 .inner {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper.colum-2 .inner {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper.colum-2 .inner {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper.colum-2 .inner button.btn {
    margin-top: -43px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper.colum-2 .inner button.btn {
    margin-top: -43px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper.colum-2 .inner button.btn {
    margin-top: -43px;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper.colum-2 .inner button.btn {
    margin-top: -43px;
  }
}
.lg-product-wrapper:first-child {
  margin-top: 0;
}
.lg-product-wrapper .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper .inner {
    flex-direction: column;
    align-items: flex-end;
  }
}
.lg-product-wrapper .inner .lg-left-content {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper .inner .lg-left-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lg-product-wrapper .inner .thumbnail {
  overflow: hidden;
  border-radius: 5px;
}
.lg-product-wrapper .inner .thumbnail img {
  border-radius: 5px;
  transition: var(--transition);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper .inner .thumbnail img {
    max-width: 190px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper .inner .thumbnail img {
    max-width: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper .inner .thumbnail img {
    width: 430px;
    height: auto;
  }
}
.lg-product-wrapper .inner .thumbnail img:hover {
  transform: scale(1.04);
}
.lg-product-wrapper .inner .read-content {
  margin-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper .inner .read-content {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper .inner .read-content {
    margin-left: 0;
    margin-top: 25px;
  }
}
.lg-product-wrapper .inner .read-content .profile-share {
  margin-right: 30px;
}
.lg-product-wrapper .inner .read-content .product-share-wrapper {
  margin-top: 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 479px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lg-product-wrapper .inner .read-content .product-share-wrapper .last-bid {
  font-weight: 500;
  color: var(--color-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper .last-bid {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper .last-bid {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper .last-bid {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 479px) {
  .lg-product-wrapper .inner .read-content .product-share-wrapper .last-bid {
    margin-top: 5px;
  }
}
.lg-product-wrapper .inner .read-content a h6 {
  display: block;
  font-weight: 500;
  font-size: 18px;
  transition: var(--transition);
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .lg-product-wrapper .inner .read-content a h6 {
    margin-bottom: 5px;
  }
}
.lg-product-wrapper .inner .read-content a:hover h6 {
  color: var(--color-primary);
}
.lg-product-wrapper .inner .read-content .share-wrapper {
  margin-top: 15px;
  align-items: center;
}
.lg-product-wrapper .inner .read-content .share-wrapper .share-btn {
  position: relative;
  z-index: 1;
}
.lg-product-wrapper .inner .read-content .share-wrapper .share-btn button {
  border: 0;
}
.lg-product-wrapper .inner .read-content .share-wrapper .share-btn button svg {
  color: var(--color-white);
}
.lg-product-wrapper .inner .read-content .share-wrapper .share-btn::after {
  position: absolute;
  content: "";
  height: 30px;
  width: 34px;
  background: var(--color-primary-alta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
  transition: var(--transition);
}
.lg-product-wrapper .inner .read-content .share-wrapper .share-btn:hover::after {
  background: var(--color-primary);
}
.lg-product-wrapper .inner .read-content .share-wrapper .react-area {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 4px 10px;
  border-radius: 6px;
}
.lg-product-wrapper .inner .read-content .share-wrapper .react-area svg {
  margin-right: 3px;
  position: relative;
  width: 14px;
  color: var(--color-white);
}
.lg-product-wrapper .inner .read-content .share-wrapper .react-area span.number {
  font-size: 14px;
  position: relative;
  color: var(--color-white);
}
.lg-product-wrapper .inner .read-content .share-wrapper .react-area::after {
  background: var(--color-primary-alta);
  position: absolute;
  content: "";
  top: 0;
  z-index: -1;
  border-radius: 6px;
  transition: var(--transition);
  width: 100%;
  left: 0;
  height: 100%;
}
.lg-product-wrapper .inner .read-content .share-wrapper .react-area:hover::after {
  background: var(--color-primary);
}
.lg-product-wrapper .inner button.btn {
  border-radius: 5px;
  padding: 13px 24px;
}
@media only screen and (max-width: 767px) {
  .lg-product-wrapper .inner button.btn {
    margin-right: 0 !important;
    margin-top: -42px;
    padding: 10px 16px;
  }
}

.lg-product-col-2.active {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 479px) {
  .lg-product-col-2.active {
    padding: 0;
  }
}
.lg-product-col-2 .lg-product-wrapper {
  margin-top: 0;
}

.game-banner-slick-wrapper .product-share-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
  left: 0;
}
.game-banner-slick-wrapper .product-share-wrapper.lg-product-share a img {
  max-width: 45px;
}
.game-banner-slick-wrapper .share-react.react {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.game-banner-slick-wrapper .share-react.react .share-btn {
  margin-right: 30px;
}
.game-banner-slick-wrapper .share-react.react .share-btn button {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 8px;
  outline: none;
  transition: var(--transition);
}
.game-banner-slick-wrapper .share-react.react .share-btn button:hover {
  background: var(--color-primary-alta);
  border: 1px solid transparent;
}
.game-banner-slick-wrapper .share-react.react .share-btn .share-btn-setting button {
  border: none;
}
.game-banner-slick-wrapper .share-react.react .bid-react-area {
  cursor: pointer;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 8px;
  outline: none;
  transition: var(--transition);
}
.game-banner-slick-wrapper .share-react.react .bid-react-area:hover {
  background: var(--color-primary-alta);
  border: 1px solid transparent;
}
.game-banner-slick-wrapper .top-bid-price {
  padding: 7px 13px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-bottom: 30px;
  max-width: max-content;
}

.tooltip-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  transform: translateY(110px);
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tooltip-bottom-wrapper {
    transform: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tooltip-bottom-wrapper {
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .tooltip-bottom-wrapper {
    transform: none;
  }
}

.product-notify-wrapper {
  width: auto;
  height: auto;
  padding: 0;
}
.product-notify-wrapper .notice-heading {
  border-radius: 5px 0 0 0;
  margin-left: -25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-product-col {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product-notify-wrapper {
    margin-top: 0 !important;
  }
}

.product-tab-wrapper {
  position: sticky;
}
.product-tab-wrapper .pd-tab-inner {
  display: flex;
}
.product-tab-wrapper .rn-pd-nav {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-basis: 25%;
  flex-direction: column;
  margin: -10px;
  padding-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-tab-wrapper .rn-pd-nav {
    margin: -10px 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-tab-wrapper .rn-pd-nav {
    margin: -10px 0;
  }
}
.product-tab-wrapper .rn-pd-content {
  max-width: 100%;
  height: auto;
  flex-basis: 75%;
  padding-left: 20px;
}
.product-tab-wrapper .rn-pd-content .tab-pane {
  height: 100%;
}
.product-tab-wrapper .rn-pd-content .rn-pd-thumbnail {
  padding: 15px;
  background: var(--background-color-1);
  border-radius: 7px;
  border: 2px solid transparent;
}
@media only screen and (max-width: 575px) {
  .product-tab-wrapper .rn-pd-content .rn-pd-thumbnail {
    padding: 5px;
  }
}
.product-tab-wrapper .rn-pd-content .rn-pd-thumbnail img {
  border-radius: 7px;
  object-fit: cover;
  width: -webkit-fill-available;
}
.product-tab-wrapper .rn-pd-rt-content button {
  border-radius: 5px;
  transition: var(--transition);
  height: auto;
  width: 100%;
  margin: 10px;
}
.product-tab-wrapper .rn-pd-rt-content button.nav-link {
  background: none;
  padding: 0;
}
.product-tab-wrapper .rn-pd-rt-content button.nav-link.active .rn-pd-sm-thumbnail {
  border-color: var(--color-border);
}
.product-tab-wrapper .rn-pd-rt-content button .rn-pd-sm-thumbnail {
  padding: 7px;
  background: var(--background-color-1);
  border-radius: 5px;
  border: 2px solid transparent;
  display: block;
}
@media only screen and (max-width: 575px) {
  .product-tab-wrapper .rn-pd-rt-content button .rn-pd-sm-thumbnail {
    padding: 5px;
  }
}
.product-tab-wrapper .rn-pd-rt-content button .rn-pd-sm-thumbnail img {
  border-radius: 5px;
  height: auto;
  width: 100%;
}

.rn-pd-sm-slick h6.title {
  margin-bottom: 0;
  font-weight: 400;
}
.rn-pd-sm-slick .pd-slide-wrapper {
  margin: 0 -10px;
  margin-top: 20px;
}
.rn-pd-sm-slick .pd-slide-wrapper .slick-list .slick-track {
  margin-top: 0;
}
.rn-pd-sm-slick .pd-slide-wrapper button.slide-arrow {
  border: none;
  padding: 15px;
  height: 36px;
  width: 36px;
  border-radius: 5px;
  background: var(--color-primary-alta);
  display: flex;
  justify-content: center;
  align-items: center;
  top: -50px;
  right: 10px;
  position: absolute;
  color: var(--color-white);
  transition: var(--transition);
}
.rn-pd-sm-slick .pd-slide-wrapper button.slide-arrow:hover {
  background: var(--color-primary);
}
.rn-pd-sm-slick .pd-slide-wrapper button.prev-arrow {
  right: 65px;
}
.rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick {
  padding: 15px;
  background: var(--background-color-1);
  margin: 0 15px;
  border-radius: 6px;
}
@media only screen and (max-width: 575px) {
  .rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick {
    padding: 5px;
  }
}
.rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick .rn-pd-small-thumb img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}
.rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick .rn-pd-pric {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
.rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick .rn-pd-pric span {
  color: var(--color-body);
  font-weight: 500;
}
.rn-pd-sm-slick .pd-slide-wrapper .slick-list {
  margin: 0px -5px;
}

.rn-pd-content-area span.bid {
  font-weight: 500;
  font-size: 14px;
}
.rn-pd-content-area span.bid span.price {
  color: var(--color-primary);
}
.rn-pd-content-area h6.title-name {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 30px;
}
.rn-pd-content-area .catagory-collection {
  display: flex;
  margin-bottom: 20px;
}
.rn-pd-content-area .catagory-collection .top-seller-wrapper .thumbnail {
  max-width: 50px;
}
.rn-pd-content-area .catagory-collection .catagory {
  margin-right: 50px;
}
.rn-pd-content-area .catagory-collection .catagory span {
  color: var(--color-white);
  font-size: 16px;
}
.rn-pd-content-area .catagory-collection .catagory span span.color-body {
  font-weight: 500;
}
@media only screen and (max-width: 479px) {
  .rn-pd-content-area .catagory-collection .collection {
    text-align: center;
  }
}
.rn-pd-content-area .catagory-collection .collection span {
  color: var(--color-white);
}
.rn-pd-content-area .catagory-collection .collection span span {
  font-size: 16px;
}
.rn-pd-content-area .catagory-collection .collection span span.color-body {
  font-weight: 500;
}
.rn-pd-content-area .catagory-collection .top-seller-inner-one {
  margin-top: 5px;
}
.rn-pd-content-area .pd-title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 479px) {
  .rn-pd-content-area .pd-title-area {
    display: block;
  }
}
.rn-pd-content-area .pd-title-area h4.title {
  font-size: 30px;
  margin-bottom: 0;
}
@media only screen and (max-width: 479px) {
  .rn-pd-content-area .pd-title-area h4.title {
    margin-bottom: 15px;
  }
}
.rn-pd-content-area .pd-title-area .pd-react-area {
  display: flex;
}
@media only screen and (max-width: 479px) {
  .rn-pd-content-area .pd-title-area .pd-react-area {
    margin-bottom: 15px;
  }
}
.rn-pd-content-area .pd-title-area .pd-react-area .heart-count {
  padding: 7px 12px;
  background: var(--color-primary-alta);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
}
.rn-pd-content-area .pd-title-area .pd-react-area .heart-count svg {
  width: 18px;
  margin-right: 5px;
  transition: var(--transition);
}
.rn-pd-content-area .pd-title-area .pd-react-area .heart-count span {
  color: var(--color-white);
  transition: var(--transition);
}
.rn-pd-content-area .pd-title-area .pd-react-area .heart-count:hover {
  background: var(--color-primary) !important;
}
.rn-pd-content-area .pd-title-area .pd-react-area .heart-count:hover svg {
  color: var(--color-white) !important;
}
.rn-pd-content-area .pd-title-area .pd-react-area .heart-count:hover span {
  color: var(--color-white) !important;
}
.rn-pd-content-area .pd-title-area .pd-react-area .count {
  padding: 7px 7px;
  background: var(--color-primary-alta);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  margin-left: 15px;
  transition: var(--transition);
}
.rn-pd-content-area .pd-title-area .pd-react-area .count button {
  border: 0 none;
}
.rn-pd-content-area .pd-title-area .pd-react-area .count svg {
  width: 18px;
  transition: var(--transition);
}
.rn-pd-content-area .pd-title-area .pd-react-area .count:hover {
  background: var(--color-primary) !important;
}
.rn-pd-content-area .pd-title-area .pd-react-area .count:hover svg,
.rn-pd-content-area .pd-title-area .pd-react-area .count:hover span {
  color: var(--color-white) !important;
}

.rn-bid-details {
  margin-top: 40px;
}
.rn-bid-details .rn-bid-content {
  display: block;
}
.rn-bid-details .rn-bid-content .top-seller-inner-one {
  padding-top: 20px;
}
.rn-bid-details .rn-bid-content .top-seller-inner-one + .top-seller-inner-one {
  margin-top: 20px;
  border-top: 1px solid var(--color-border);
}
.rn-bid-details .countdown .countdown-container .countdown-value {
  background-color: var(--color-primary-alta);
  backdrop-filter: blur(15px);
}

.tab-wrapper-one {
  margin-bottom: 30px;
}
.tab-wrapper-one .top-seller-inner-one .thumbnail {
  max-width: 50px;
}

.tab-button-one {
  display: block;
  border-radius: 5px;
}
.tab-button-one .nav-tabs {
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  transition: var(--transition);
  background: var(--background-color-1);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.tab-button-one .nav-tabs button {
  width: 150px;
  height: 50px;
  border: none;
  color: var(--color-white);
  position: relative;
  margin: 6px;
  border-radius: 6px;
  border: 1px dashed var(--color-border);
  transition: 0.3s;
}
@media only screen and (max-width: 479px) {
  .tab-button-one .nav-tabs button {
    width: 100%;
  }
}
.tab-button-one .nav-tabs button.active {
  background: var(--color-primary-alta);
  color: var(--color-white);
  border-radius: 5px;
  border: transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tab-button-one .nav-tabs button {
    width: 130px;
  }
}


.rn-pd-bd-wrapper {
  max-width: 450px;
}
.rn-pd-bd-wrapper .top-seller-inner-one p {
  margin-bottom: 7px;
  font-size: 16px;
}
.rn-pd-bd-wrapper .top-seller-inner-one h6.name-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-body);
}
@media only screen and (max-width: 479px) {
  .rn-pd-bd-wrapper .top-seller-inner-one h6.name-title {
    text-align: center;
  }
}

.rn-pd-sm-property-wrapper {
  margin-top: 30px;
}
.rn-pd-sm-property-wrapper h6.pd-property-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body);
  margin-bottom: 10px;
}
.rn-pd-sm-property-wrapper .property-wrapper,
.rn-pd-sm-property-wrapper .catagory-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: -7px;
}
.rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner,
.rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner {
  padding: 10px 15px;
  background: var(--background-color-1);
  border-radius: 6px;
  max-width: 200px;
  margin: 7px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(15px);
}
.rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner span,
.rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner span {
  display: block;
  font-size: 18px;
  margin-bottom: 7px;
}
.rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner span:last-child,
.rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner span:last-child {
  margin: 0;
}
.rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner span.type,
.rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner span.type {
  font-size: 12px;
}
.rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner span.value,
.rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner span.value {
  font-size: 14px;
  letter-spacing: 0.5px;
}

/*--------------------------
    Swicher Styles  
----------------------------*/
.active-dark-mode .my_switcher ul li .setColor.dark {
  display: none;
}

.active-light-mode .my_switcher ul li .setColor.light {
  display: none;
}

.active-light-mode .my_switcher ul li a.dark img {
  display: block;
}

.my_switcher ul li a.dark img {
  display: none;
  filter: brightness(100);
}

.active-light-mode .my_switcher ul li a.dark img {
  filter: brightness(0);
}

.my_switcher {
  border: 0 none;
  padding: 0;
  width: 40px;
  background: var(--color-secondary);
  display: flex;
  justify-content: center;
  height: 40px;
  align-items: center;
  border-radius: 100%;
  border: 1px solid var(--color-border);
  transition: 0.4s;
}
.my_switcher ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 100%;
}
.my_switcher ul li {
  margin-top: 0;
  margin-bottom: 0;
}
.my_switcher ul li a {
  display: block;
  position: relative;
  z-index: 2;
  background: var(--color-secondary);
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.my_switcher ul li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--background-color-1);
  top: 0;
  left: 0;
  transform: scale(0.5);
  opacity: 0;
  border-radius: 100%;
  transition: 0.3s;
  z-index: -1;
}
.my_switcher ul li a:hover {
  border-color: transparent;
}
.my_switcher ul li a:hover::after {
  transform: scale(1);
  opacity: 1;
}
.my_switcher ul li a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.5);
  max-height: 16px;
}
.my_switcher ul li a.active {
  display: none;
}
.my_switcher:hover {
  border-color: transparent;
}

.rn-slick-dot-style .slick-dots {
  bottom: -11px;
}

.preloader {
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999999;
}

@keyframes bgg {
  0% {
    background: var(--color-primary-light);
  }
  50% {
    background: var(--color-primary);
  }
  100% {
    background: var(--color-primary);
  }
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 70px;
  height: 70px;
  margin: auto;
}

.loader .circle {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0;
  transform: rotate(225deg);
  animation-iteration-count: infinite;
  animation-name: orbit;
  animation-duration: 5.5s;
  left: 3px;
  top: -5px;
}

.loader .circle:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  animation: bgg 1500ms ease-in alternate infinite;
}

.loader .circle:nth-child(2) {
  animation-delay: 240ms;
}

.loader .circle:nth-child(3) {
  animation-delay: 480ms;
}

.loader .circle:nth-child(4) {
  animation-delay: 720ms;
}

.loader .circle:nth-child(5) {
  animation-delay: 960ms;
}

@keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  7% {
    transform: rotate(345deg);
    animation-timing-function: linear;
  }
  30% {
    transform: rotate(455deg);
    animation-timing-function: ease-in-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  70% {
    transform: rotate(815deg);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  75% {
    transform: rotate(945deg);
    animation-timing-function: ease-out;
  }
  76% {
    transform: rotate(945deg);
    opacity: 0;
  }
  100% {
    transform: rotate(945deg);
    opacity: 0;
  }
}
/*--------------------------
    Social Share  
----------------------------*/
.social-share-default {
  display: flex;
  padding: 0;
  margin: -5px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
}
.social-share-default li {
  margin: 5px;
}
.social-share-default li a {
  display: inline-block;
  text-align: center;
}
.social-share-default li a .icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-body);
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0 auto;
}
.social-share-default li a .icon svg {
  color: var(--color-body);
  width: 18px;
  transition: 0.3s;
}
.social-share-default li a .text {
  display: block;
  color: var(--color-body);
  margin-top: 8px;
  text-transform: capitalize;
  transition: 0.3s;
}
.social-share-default li a:hover .icon {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.social-share-default li a:hover .icon svg {
  color: var(--color-white);
}
.social-share-default li a:hover .text {
  color: var(--color-primary) !important;
}

/*-----------------------------
 Modal Styles  
-----------------------------------*/
body.modal-open {
  padding: 0 !important;
}

.share-btn-activation .share-btn-setting {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--color-primary-alta);
  padding: 5px 0;
  border-radius: 5px;
  z-index: 2;
}
.share-btn-activation .share-btn-setting .btn-setting-text {
  border: 0;
  color: var(--color-white);
  font-weight: 400;
  font-size: 14px;
  padding: 9px 20px;
  letter-spacing: 0.5px;
  text-align: left;
  transition: 0.3s;
}
.share-btn-activation .share-btn-setting .btn-setting-text:hover {
  color: var(--color-primary);
}
.share-btn-activation .share-btn-setting .btn-setting-text + .btn-setting-text {
  border-top: 1px solid var(--color-border);
}

/*---------------------------------
    Share Modal Wrapper  
----------------------------------*/
.modal-backdrop {
  background-color: #000;
}

.modal-backdrop.show {
  background-color: #000;
  opacity: 0.75;
}

.rn-popup-modal .modal-content {
  background-color: var(--background-color-2);
  border: 0 none;
  padding: 40px 20px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .rn-popup-modal .modal-content {
    padding: 20px 15px;
  }
}
.rn-popup-modal .btn-close {
  margin: 0;
  position: fixed;
  z-index: 99;
  right: 30px;
  top: 30px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.rn-popup-modal .btn-close svg {
  color: #fff;
  width: 18px;
}
.rn-popup-modal .modal-header {
  border: 0 none;
  justify-content: center;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .rn-popup-modal .modal-dialog {
    max-width: 450px;
  }
}

/* Share Modal Popup  */
.share-modal-wrapper .modal-footer {
  border: 0 none;
}

/* Report Modal Popup  */
.report-modal-wrapper .modal-header.report-modal-header {
  justify-content: flex-start !important;
}

/*--------------------------------
    Place Bid Modal Popup  
---------------------------------*/
.placebid-modal-wrapper p {
  color: #fff;
  font-size: 16px;
}
.placebid-modal-wrapper .bid-content-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.placebid-modal-wrapper .bid-content-top span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-body);
}
.placebid-modal-wrapper .bid-content-mid {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.placebid-modal-wrapper .bid-content-mid span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-body);
}
.placebid-modal-wrapper .bid-content-mid .bid-content-right span:last-child {
  color: var(--color-primary);
}

.report-content-wrapper .modal-body {
  padding: 0;
}
.report-content-wrapper .modal-body p {
  margin-bottom: 15px;
}

.report-modal-header {
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
.report-modal-header h5 {
  margin-bottom: 10px;
}

.report-form-box h6.title {
  margin-bottom: 15px;
}
.report-form-box textarea {
  height: 100px;
  background: var(--background-color-1);
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 5px 10px;
}
.report-form-box textarea:focus {
  border-radius: 5px;
  border: 2px solid var(--color-primary) !important;
}

.placebid-modal-wrapper .modal-header {
  padding: 0;
  margin-bottom: 15px;
}
.placebid-modal-wrapper .modal-body p {
  margin-bottom: 15px;
}
.placebid-modal-wrapper .modal-body .placebid-form-box h5.title {
  margin-bottom: 15px;
}
.placebid-modal-wrapper .modal-body .placebid-form-box .bid-content .bid-content-top {
  display: block;
  border: none;
  padding: 0;
}
.placebid-modal-wrapper .modal-body .placebid-form-box .bid-content .bid-content-top .bid-content-left {
  display: flex;
  position: relative;
  align-items: center;
}
.placebid-modal-wrapper .modal-body .placebid-form-box .bid-content .bid-content-top .bid-content-left input {
  background: var(--background-color-1);
  height: 40px;
  border-radius: 5px;
  border: 2px solid transparent;
}
.placebid-modal-wrapper .modal-body .placebid-form-box .bid-content .bid-content-top .bid-content-left input:focus {
  border: 2px solid var(--color-primary);
}
.placebid-modal-wrapper .modal-body .placebid-form-box .bid-content .bid-content-top .bid-content-left span {
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.single-activity-wrapper {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--background-color-1);
  border-radius: 5px;
  position: relative;
}
.single-activity-wrapper .thumbnail {
  overflow: hidden;
  border-radius: 5px;
}
.single-activity-wrapper .thumbnail a {
  display: block;
  overflow: hidden;
}
.single-activity-wrapper .thumbnail a img {
  transition: 0.4s;
}
.single-activity-wrapper .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-activity-wrapper .inner .read-content {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .read-content {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .read-content img {
    width: 100%;
  }
}
.single-activity-wrapper .inner .icone-area svg {
  width: 30px;
  height: auto;
  color: var(--color-primary);
  margin-right: 10px;
  stroke-width: 1.5px;
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .icone-area {
    position: absolute;
    top: 50px;
    left: 50px;
  }
}
.single-activity-wrapper .inner .content {
  margin-left: 20px;
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .content {
    margin-left: 0;
    margin-top: 20px;
  }
}
.single-activity-wrapper .inner .content h6.title {
  margin-bottom: 10px;
}
.single-activity-wrapper .inner .content p {
  margin-bottom: 5px;
  font-size: 20px;
  color: #7f859d;
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .content p {
    margin-bottom: 20px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .single-activity-wrapper .inner .content p {
    margin-bottom: 10px;
    padding-right: 7px;
    font-size: 18px;
    line-height: 27px;
  }
}
.single-activity-wrapper .inner .content p span {
  color: var(--color-primary);
}
.single-activity-wrapper .inner .content .time-maintane {
  display: flex;
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .content .time-maintane {
    flex-direction: column;
  }
}
.single-activity-wrapper .inner .content .time-maintane .time {
  margin-right: 10px;
}
.single-activity-wrapper .inner .content .time-maintane .data {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .single-activity-wrapper .inner .content .time-maintane .data {
    margin-bottom: 7px;
  }
}
.single-activity-wrapper .inner .content .time-maintane .data svg {
  width: 18px;
  height: auto;
  margin-right: 7px;
}
.single-activity-wrapper .inner .content .time-maintane .data a {
  color: var(--color-body);
}
.single-activity-wrapper .inner .content .time-maintane .data a:hover {
  color: var(--color-primary);
}
.single-activity-wrapper:hover .thumbnail a img {
  transform: scale(1.1);
}

.mb_dec--15 {
  margin-bottom: -15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .activity-direction {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .activity-direction {
    flex-direction: column-reverse;
  }
}

.filter-wrapper {
  height: 100%;
}
.filter-wrapper .sing-filter {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -15px;
  margin-right: -15px;
}
.filter-wrapper .sing-filter button {
  display: inline-block;
  padding: 10px 15px;
  background: var(--background-color-1);
  cursor: pointer;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 16px;
  max-width: fit-content;
}
.filter-wrapper .sing-filter button:hover {
  background: var(--color-primary-alta);
  color: var(--color-white);
}
.filter-wrapper .sing-filter button:focus {
  background: var(--color-primary-alta);
  color: var(--color-white);
}

.widge-wrapper {
  position: sticky;
  z-index: 10;
}
.widge-wrapper .inner {
  margin-bottom: 30px;
}
.widge-wrapper h3 {
  font-weight: 500;
  font-size: 18px;
}

.mb_dec--50 {
  margin-bottom: -50px;
}

.privacy-wrapper {
  margin-bottom: 50px;
}
.privacy-wrapper h4 {
  margin-bottom: 15px;
}
.privacy-wrapper ol {
  padding-left: 18px;
}
.privacy-wrapper ol li {
  font-size: 16px;
}

.forget-pass-wrapper {
  max-width: 400px;
  margin: auto;
  background: var(--background-color-1);
  padding: 25px;
  border-radius: 5px;
}
.forget-pass-wrapper .title {
  text-align: center;
}
.forget-pass-wrapper .form-label {
  margin-bottom: 15px;
}
.forget-pass-wrapper .form-control {
  background: var(--background-color-2) !important;
  height: 42px !important;
  border-radius: 5px !important;
  color: var(--color-white) !important;
  font-size: 18px;
  padding: 0 10px;
  border: 2px solid transparent !important;
}
.forget-pass-wrapper .form-control:focus {
  border: 2px solid var(--color-primary) !important;
  box-shadow: none;
}
.forget-pass-wrapper .form-check {
  margin-bottom: 30px;
}
.forget-pass-wrapper .form-check .form-check-input {
  margin-bottom: 10px;
}
.forget-pass-wrapper .form-check label {
  color: var(--color-body);
}
.forget-pass-wrapper .form-check label a {
  color: var(--color-primary);
  transition: var(--transition);
}
.forget-pass-wrapper .form-check label a:hover {
  text-decoration: underline;
}
.forget-pass-wrapper a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.forget-pass-wrapper .notice p {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rn-not-found-wrapper {
  max-width: 400px;
  margin: auto;
  background: var(--background-color-1);
  padding: 25px;
  border-radius: 5px;
}
.rn-not-found-wrapper .large-title {
  text-align: center;
  font-size: 150px;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (max-width: 479px) {
  .rn-not-found-wrapper .large-title {
    font-size: 120px;
  }
}
.rn-not-found-wrapper p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}
.rn-not-found-wrapper a.btn {
  display: flex;
  justify-content: center;
}

.maintanence-area .logo a img {
  margin-bottom: 50px;
}
.maintanence-area .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 40px;
}
.maintanence-area .inner .content .sub-title {
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}
.maintanence-area .inner .content .title {
  font-size: 60px;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 15px 0;
}
.maintanence-area .inner .content p {
  color: var(--color-dark-alt);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.maintanence-area .inner .content p a {
  color: var(--color-lighter);
  position: relative;
}
.maintanence-area .inner .content p a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 0;
  background: var(--color-primary);
  width: 0;
  height: 2px;
  transition: 0.3s;
  left: 0;
  transition: var(--transition);
}
.maintanence-area .inner .content p a:hover::after {
  width: 100%;
}

/*---------------------------
 Masonary Item  
-----------------------------*/
.grid-metro3 {
  margin: 0 -15px;
}
.grid-metro3 .grid-metro-item {
  width: 33.33%;
  padding: 0 15px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-metro3 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-metro3 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-metro3 .grid-metro-item {
    width: 100%;
  }
}
.grid-metro3 .resizer {
  width: 33.33%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-metro3 .resizer {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-metro3 .resizer {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-metro3 .resizer {
    width: 100%;
  }
}

.grid-metro4 {
  margin: 0 -15px;
}
.grid-metro4 .grid-metro-item {
  width: 25%;
  padding: 0 15px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-metro4 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-metro4 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-metro4 .grid-metro-item {
    width: 100%;
  }
}
.grid-metro4 .resizer {
  width: 25%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-metro4 .resizer {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-metro4 .resizer {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-metro4 .resizer {
    width: 100%;
  }
}

.grid-metro5 {
  margin: 0 -15px;
}
.grid-metro5 .grid-metro-item {
  width: 20%;
  padding: 0 15px;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid-metro5 .grid-metro-item {
    width: 33.33%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-metro5 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-metro5 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-metro5 .grid-metro-item {
    width: 100%;
  }
}
.grid-metro5 .resizer {
  width: 20%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .grid-metro5 .resizer {
    width: 33.33%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grid-metro5 .resizer {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .grid-metro5 .resizer {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .grid-metro5 .resizer {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-header .grid-metro4 .grid-metro-item {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-header .grid-metro4 .resizer {
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .Capso-left-sidebar-nav .grid-metro4 .grid-metro-item {
    width: 33.33%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .Capso-left-sidebar-nav .grid-metro4 .resizer {
    width: 33.33%;
  }
}

/*--------------------------
    Breadcrumb Styles 
----------------------------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0rem;
  margin-bottom: 1rem;
  list-style: none;
  border-radius: 0.25rem;
}

.breadcrumbs-container {
  z-index: 10;
  padding: 0 7.14vw;
  position: absolute;
  top: 200px;
}

@media screen and  (max-width: 1200px ) {
  .breadcrumbs-container {
    bottom: 0;
    position: absolute !important;
    top: auto;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 0.5rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: #3BC049;
  text-decoration: none;
  font-size: 16px;
}

.breadcrumb-item.active {
  font-size: 16px;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}
/*-------------------------------
    Slick Arrow And Dots Styles  
----------------------------------*/
button.slide-arrow {
  height: 50px;
  width: 50px;
  border-radius: 6px;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
  color: var(--color-white);
  background: #1b1b27;
  border: none;
  transform: translateY(-50%) scale(1);
  top: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  button.slide-arrow {
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  button.slide-arrow {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  button.slide-arrow {
    opacity: 1;
  }
}
button.slide-arrow i {
  font-size: 22px;
  color: var(--color-primary);
}
button.slide-arrow.slide-arrow {
  top: -30px !important;
  opacity: 1;
  border-radius: 6px;
}
button.slide-arrow.prev-arrow {
  right: 92px !important;
}
button.slide-arrow.next-arrow {
  right: 22px !important;
}
button.slide-arrow:hover {
  background: var(--color-primary) !important;
}
button.slide-arrow:hover.slide-arrow i {
  color: var(--color-white) !important;
}

.slick-arrow-between {
  position: relative;
}
.slick-arrow-between button.slide-arrow {
  height: 58px;
  width: 58px;
  border-radius: 50%;
}
.slick-arrow-between button.slide-arrow.prev-arrow {
  top: 50% !important;
  left: 40px !important;
}
.slick-arrow-between button.slide-arrow.next-arrow {
  top: 50% !important;
  right: 40px !important;
}

.slick-dots {
  position: relative;
  margin-top: -5px;
}
.slick-dots li.slick-active {
  background: transparent;
}
.slick-dots li.slick-active button {
  background: transparent !important;
  border: 2px solid var(--color-primary);
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 7px;
  height: 7px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: var(--color-primary-alta);
  border-radius: 50%;
}
.slick-dots li button::before {
  display: none;
}

.countdown {
  display: flex;
  margin: -4px;
  justify-content: center;
}
.countdown .countdown-container {
  margin: 4px !important;
  position: relative;
}
.countdown .countdown-container .countdown-heading {
  display: block;
  color: var(--color-body);
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  display: block;
}
.countdown .countdown-container .countdown-value {
  display: block;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  padding: 2px 10px;
  position: relative;
  background-color: rgba(36, 36, 53, 0.3);
  backdrop-filter: blur(15px);
}
.countdown .countdown-container .countdown-value:after {
  content: ":";
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
  position: absolute;
  font-size: 20px;
  color: var(--color-body);
  font-weight: 400;
}
.countdown .countdown-container:last-child .countdown-value::after {
  display: none;
}

/*------------------------------
 Comming Soon Styles  
--------------------------------*/
.maintanance-plr {
  padding-left: 150px;
  padding-right: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maintanance-plr {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .maintanance-plr {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .maintanance-plr {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.single-rn-slider .inner {
  padding-top: 90px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.single-rn-slider .inner .title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 400;
}
.single-rn-slider .inner .description {
  color: #9f9f9f;
  max-width: 80%;
  font-size: 20px;
}
@media only screen and (max-width: 575px) {
  .single-rn-slider .inner .description {
    max-width: 100%;
  }
}
.single-rn-slider .inner .button-group .btn-primary {
  margin-right: 15px;
}

.maintanance-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;
}
.maintanance-inner .wrapper p {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
}
.maintanance-inner .wrapper h2 {
  font-size: 56px;
  margin-bottom: 0px;
  color: var(--color-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maintanance-inner .wrapper h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .maintanance-inner .wrapper h2 {
    font-size: 32px;
  }
}
.maintanance-inner .wrapper h2 span {
  color: var(--color-primary);
}

.maintanance_countdown {
  margin-top: 30px !important;
}
.maintanance_countdown .countdown-container {
  display: flex;
  flex-direction: column-reverse;
  margin-right: 25px !important;
}
.maintanance_countdown .countdown-container span.countdown-heading {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 0;
  margin-left: 4px;
  letter-spacing: 3px;
}
.maintanance_countdown .countdown-container span.countdown-value {
  font-size: 50px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .maintanance_countdown .countdown-container span.countdown-value {
    font-size: 36px;
  }
}

.countdown.maintanance_countdown .countdown-container span.countdown-heading {
  padding: 0;
  margin: 0;
}
.countdown.maintanance_countdown .countdown-container span.countdown-value {
  margin-top: 30px;
  margin-bottom: 30px;
}

.maintanance-plr .logo img {
  max-width: 120px;
}

.upload-modal-wrapper .modal-body {
  overflow-y: visible;
}
.upload-modal-wrapper .modal-content {
  background: transparent;
}

.upload-variant-title-wrapper p {
  font-size: 18px;
  width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .upload-variant-title-wrapper p {
    width: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .upload-variant-title-wrapper p {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .upload-variant-title-wrapper p {
    width: 80%;
  }
}
@media only screen and (max-width: 575px) {
  .upload-variant-title-wrapper p {
    width: 100%;
  }
}
.upload-variant-title-wrapper p span {
  color: var(--color-white);
}

.varient .info {
  font-size: 14px;
}

.upload-variant-wrapper {
  padding: 18px 20px;
  background: var(--background-color-1);
  border-radius: 5px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.upload-variant-wrapper .variant-preview {
  overflow: hidden;
  border-radius: 5px;
}
.upload-variant-wrapper .variant-preview img {
  border-radius: 5px;
  transition: var(--transition);
}
.upload-variant-wrapper .variant-preview img:hover {
  transform: scale(1.02);
}
.upload-variant-wrapper a {
  border-radius: 5px;
}

.table-title-area {
  margin-bottom: 30px;
}
.table-title-area svg {
  position: relative;
  top: 5px;
  width: 35px;
  margin-right: 10px;
}

.upcoming-projects tr {
  border: none;
}
.upcoming-projects tr td {
  white-space: nowrap;
  border: none;
}
.upcoming-projects tr td span {
  color: var(--color-body);
}
.upcoming-projects tr th {
  padding: 25px 23px !important;
}
.upcoming-projects tr th span {
  color: var(--color-heading);
  font-size: 20px;
  text-transform: none;
}

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

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

.upcoming-projects tbody td:first-child {
  border-radius: 5px 0 0 5px;
  width: 60px;
}

.upcoming-projects tbody td:last-child {
  border-radius: 0px 5px 5px 0px;
}

thead {
  border: none;
}
thead tr th {
  border: none;
}

tbody tr td {
  padding: 25px 23px !important;
}
tbody tr td span {
  font-size: 16px;
}
tbody .color-light {
  background: var(--background-color-4);
  border-radius: 5px;
}

.box-table {
  padding: 0 20px 0 20px;
  background: var(--background-color-1);
  border-radius: 5px;
  border: 1px solid var(--color-border);
}

tbody.ranking tr td {
  padding: 10px 25px !important;
  vertical-align: middle !important;
}
tbody.ranking tr td .thumbnail img {
  max-width: 60px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

/*-------------------------
    404 Page Style Here  
--------------------------*/
.rn-not-found-wrapper {
  text-align: center;
}
.rn-not-found-wrapper .large-title {
  text-align: center;
  font-size: 150px;
  margin-bottom: 0;
  line-height: 1;
  color: var(--color-light-body);
}
@media only screen and (max-width: 767px) {
  .rn-not-found-wrapper .large-title {
    font-size: 120px;
  }
}
.rn-not-found-wrapper .title {
  font-size: 60px;
}
@media only screen and (max-width: 767px) {
  .rn-not-found-wrapper .title {
    font-size: 30px;
  }
}
.rn-not-found-wrapper p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
}
/*-------------------------
    maintanance Page Style Here  
--------------------------*/
.maintanence-area .logo a img {
  margin-bottom: 50px;
  max-width: 120px;
}
.maintanence-area .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 60px;
}
.maintanence-area .inner .content .sub-title {
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
  margin-top: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .maintanence-area .inner .content .sub-title {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .maintanence-area .inner .content .sub-title {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maintanence-area .inner .content .sub-title {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .maintanence-area .inner .content .sub-title {
    margin-top: 30px;
  }
}
.maintanence-area .inner .content .title {
  font-size: 45px;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 15px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maintanence-area .inner .content .title {
    font-size: 30px;
  }
}
.maintanence-area .inner .content p {
  font-size: 20px;
  line-height: 30px;
  margin-top: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .maintanence-area .inner .content p {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .maintanence-area .inner .content p {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .maintanence-area .inner .content p {
    margin-top: 60px;
    font-size: 18px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .maintanence-area .inner .content p {
    margin-top: 50px;
  }
}
.maintanence-area .inner .content p a {
  color: var(--color-lighter);
  position: relative;
}
.maintanence-area .inner .content p a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 0;
  background: var(--color-primary);
  width: 0;
  height: 2px;
  transition: 0.3s;
  left: 0;
  transition: var(--transition);
}
.maintanence-area .inner .content p a:hover::after {
  width: 100%;
}

.maintanance-heignt {
  height: 100vh;
}

.comeing-soon-slick .single-rn-slider {
  height: 101vh;
}
@media only screen and (max-width: 767px) {
  .comeing-soon-slick .single-rn-slider {
    height: 50vh;
  }
}

.edit-profile-area .title-left {
  margin-bottom: 0;
}

.left-nav {
  padding-right: 10px;
  position: sticky;
}
@media only screen and (max-width: 767px) {
  .left-nav {
    padding-right: 0;
  }
}
.left-nav .nav.nav-tabs {
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  transition: var(--transition);
  background: var(--background-color-1);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}
.left-nav .nav.nav-tabs button {
  height: max-content;
  border: none;
  color: var(--color-white);
  padding: 12px 13px;
  position: relative;
  margin: 6px;
  border-radius: 6px;
  border: 1px dashed var(--color-border);
  transition: 0.4s;
  display: block;
  text-align: left;
  transition: var(--transition);
  line-height: 22px;
  outline: none;
}
.left-nav .nav.nav-tabs button i {
  margin-right: 7px;
  color: var(--color-white);
  transition: var(--transition);
}
.left-nav .nav.nav-tabs button.active, .left-nav .nav.nav-tabs button:hover {
  background: var(--color-primary-alta);
  color: var(--color-white);
  border-radius: 5px;
  border-color: transparent;
}
.left-nav .nav.nav-tabs button:focus {
  border-color: transparent;
  outline: none;
  box-shadow: none;
}

.tab-content-edit-wrapepr .tab-pane {
  padding: 30px;
  background: var(--background-color-1);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .tab-pane {
    padding: 10px;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-change {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .nuron-information .profile-change {
    flex-wrap: wrap;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left {
  border-right: 1px dashed var(--color-border);
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .nuron-information .profile-change .profile-left {
    border: none;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left.right {
  border: none;
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .nuron-information .profile-change .profile-left.right {
    margin-top: 30px;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .profile-image img {
  border-radius: 5px;
  border: 5px solid var(--color-border);
  height: 260px;
  max-height: 260px;
  width: 100%;
  object-fit: cover;
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .button-area {
  display: flex;
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .button-area .btn:hover {
  background: var(--color-danger);
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .button-area .brows-file-wrapper {
  position: relative;
  cursor: pointer;
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .button-area .brows-file-wrapper input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .button-area .brows-file-wrapper label {
  width: max-content;
  padding: 0 16px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  z-index: 10;
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .button-area .brows-file-wrapper label:hover {
  background: var(--color-primary-alta);
}
.tab-content-edit-wrapepr .nuron-information .profile-change .profile-right .btn {
  border-radius: 5px;
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper label {
  margin-bottom: 10px;
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper {
  display: flex;
  justify-content: space-between;
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper input {
  min-width: 50%;
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper .half-wid {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper .half-wid {
    width: 100%;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper .first-name {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper .first-name {
    margin-right: 0;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper .last-name {
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  .tab-content-edit-wrapepr .nuron-information .profile-form-wrapper .input-two-wrapper .last-name {
    margin-left: 0;
  }
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper input {
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
}
.tab-content-edit-wrapepr .nuron-information .profile-form-wrapper input:focus {
  border: 2px solid var(--color-primary);
}
.tab-content-edit-wrapepr .nuron-information .profile-picture-change .thumbnail img {
  border-radius: 5px;
  border: 3px solid var(--color-border);
  max-width: 100px;
  position: relative;
  z-index: 2;
  bottom: -40px;
}
.tab-content-edit-wrapepr .nuron-information .profile-picture-change .drag-drop-area {
  position: relative;
  height: 200px;
  background: var(--background-color-1);
  width: 75%;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px dashed rgba(87, 87, 87, 0.452);
}
.tab-content-edit-wrapepr .nuron-information .profile-picture-change .drag-drop-area input {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  left: 0;
}
.tab-content-edit-wrapepr .nuron-information .profile-picture-change .drag-drop-area label {
  margin-top: 70px;
}
.tab-content-edit-wrapepr .nuron-information .profile-picture-change .drag-drop-area label p {
  font-size: 15px;
}
.tab-content-edit-wrapepr .nuron-information .edit-bio-area textarea {
  background: var(--background-color-4);
  height: 150px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}

.role-area input {
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
}
.role-area input:focus {
  border: 2px solid var(--color-primary);
}

.input-two-wrapepr-prifile {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapepr-prifile {
    flex-wrap: wrap;
  }
}
.input-two-wrapepr-prifile .role-area,
.input-two-wrapepr-prifile .profile-edit-select {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapepr-prifile .role-area,
.input-two-wrapepr-prifile .profile-edit-select {
    width: 100%;
  }
}
.input-two-wrapepr-prifile .role-area {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapepr-prifile .role-area {
    margin-right: 0;
  }
}
.input-two-wrapepr-prifile .profile-edit-select {
  margin-top: 45px;
  margin-left: 15px;
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapepr-prifile .profile-edit-select {
    margin-top: 25px;
    margin-left: 0;
  }
}

.input-two-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapper {
    flex-wrap: wrap;
    margin-top: 0 !important;
  }
}
.input-two-wrapper .profile-edit-select {
  margin-top: 25px;
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
  display: flex;
  align-items: center;
  float: none;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapper .profile-edit-select {
    margin-top: 10px;
  }
}
.input-two-wrapper .phone-number {
  margin-left: 15px;
}
.input-two-wrapper .phone-number input {
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
}
.input-two-wrapper .currency {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapper .currency {
    margin-right: 0;
  }
}
.input-two-wrapper .half-wid {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapper .half-wid {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
.input-two-wrapper .old-password {
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapper .old-password {
    margin-right: 0;
  }
}
.input-two-wrapper .new-password {
  margin-left: 15px;
}
@media only screen and (max-width: 767px) {
  .input-two-wrapper .new-password {
    margin-left: 0;
    margin-top: 15px;
  }
}

.nuron-information .save-btn-edit {
  border-radius: 5px;
  display: flex;
  max-width: max-content;
  justify-content: end;
  margin: 20px 0 0 auto;
}

.nuron-information .condition p {
  margin-bottom: 25px;
  font-size: 14px;
}
.nuron-information input {
  background: var(--background-color-4);
  height: 50px;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--color-border);
  transition: 0.3s;
}
.nuron-information .save-btn-edit {
  border-radius: 5px;
  display: flex;
  max-width: max-content;
  justify-content: end;
  margin: 20px 0 0 auto;
}

.nuron-information p {
  font-size: 14px;
}

.save-btn-edit {
  border-radius: 5px !important;
  display: flex !important;
  max-width: max-content;
  justify-content: end;
  margin: 20px 0 0 auto;
}
.save-btn-edit .btn {
  border-radius: 5px;
}

.nuron-information .title {
  margin-bottom: 15px;
}
.nuron-information label {
  margin: 0;
}
.nuron-information label::before {
  display: none;
}
.nuron-information label::after {
  display: none;
}
.nuron-information .single-notice-setting {
  display: flex;
  align-content: center;
}
.nuron-information .single-notice-setting .input {
  margin-right: 10px;
}
.nuron-information .single-notice-setting .input input {
  max-width: max-content;
}
.nuron-information .single-notice-setting .content-text p {
  font-size: 18px;
  font-weight: 500;
}

.theme-switch__input:checked ~ main,
.theme-switch__input:checked ~ label {
  --text: white;
}

.theme-switch__input:checked ~ main {
  --gradDark: hsl(198, 44%, 11%);
  --gradLight: hsl(198, 39%, 29%);
}

.theme-switch__input,
.theme-switch__label {
  position: absolute;
  z-index: 1;
}

.theme-switch__input {
  opacity: 0;
}

.theme-switch__label {
  padding: 13px;
  margin: 60px;
  transition: background-color 200ms ease-in-out;
  width: 60px;
  height: 20px;
  border-radius: 50px;
  text-align: center;
  background-color: slateGray;
}
.theme-switch__label::before, .theme-switch__label::after {
  font-size: 2rem;
  position: absolute;
  transform: translate3d(0, -50%, 0);
  top: 50%;
}
.theme-switch__label::before {
  content: "☼";
  right: 100%;
  margin-right: 10px;
  color: orange;
}
.theme-switch__label::after {
  content: "☾";
  left: 100%;
  margin-left: 10px;
  color: lightSlateGray;
}
.theme-switch__label span {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 100%;
}
.theme-switch__label span::after {
  position: absolute;
  top: calc(100% + 13px);
  left: 4px;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background-color: lightBlue;
  transition: transform 200ms, background-color 200ms;
  box-shadow: -3px 3px 8px #00000066;
}

.theme-switch__input:checked ~ .theme-switch__label {
  background-color: var(--color-primary);
}
.theme-switch__input:checked ~ .theme-switch__label::before {
  color: lightSlateGray;
}
.theme-switch__input:checked ~ .theme-switch__label::after {
  color: turquoise;
}
.theme-switch__input:checked ~ .theme-switch__label span::after {
  transform: translate3d(32px, 0, 0);
}

@media only screen and (max-width: 1199px) {
  .padding-control-edit-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ---------------Animation---------------- */
.slit-in-vertical {
  -webkit-animation: slit-in-vertical 0.45s ease-out both;
  animation: slit-in-vertical 0.45s ease-out both;
}

@-webkit-keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
  }
}
@keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
  }
}
/*---------------#region Alert--------------- */
#dialogoverlay {
  display: none;
  opacity: 0.8;
  position: fixed;
  top: 0px;
  left: 0px;
  background: transparent;
  width: 100%;
  z-index: 10;
}

#dialogbox {
  display: none;
  position: absolute;
  background: var(--background-color-4);
  border-radius: 7px;
  box-shadow: 0 4px 8px 0 #000;
  transition: 0.3s;
  width: 40%;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #dialogbox {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  #dialogbox {
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  #dialogbox {
    width: 80%;
  }
}

#dialogbox:hover {
  box-shadow: 0 8px 16px 0 #000;
}

.container {
  padding: 2px 16px;
}

.pure-material-button-contained {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  max-width: 64px;
  height: 36px;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: white;
  background-color: var(--color-primary);
  /* background-color: rgb(1, 47, 61) */
  box-shadow: 0 3px 1px -2px #000, 0 2px 2px 0 #000, 0 1px 5px 0 #000;
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.pure-material-button-contained::-moz-focus-inner {
  border: none;
}

/* ---------------Overlay--------------- */
.pure-material-button-contained::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.2s;
}

/* Ripple */
.pure-material-button-contained::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  padding: 50%;
  width: 32px;
  /* Safari */
  height: 32px;
  /* Safari */
  background-color: #000;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.pure-material-button-contained:hover,
.pure-material-button-contained:focus {
  box-shadow: 0 2px 4px -1px #000, 0 4px 5px 0 #000, 0 1px 10px 0 #000;
}

.pure-material-button-contained:hover::before {
  opacity: 0.08;
}

.pure-material-button-contained:focus::before {
  opacity: 0.24;
}

.pure-material-button-contained:hover:focus::before {
  opacity: 0.3;
}

/* Active */
.pure-material-button-contained:active {
  box-shadow: 0 5px 5px -3px #000, 0 8px 10px 1px #000, 0 3px 14px 2px #000;
}

.pure-material-button-contained:active::after {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0s;
}

/* Disabled */
.pure-material-button-contained:disabled {
  color: #000;
  background-color: #000;
  box-shadow: none;
  cursor: initial;
}

.pure-material-button-contained:disabled::before {
  opacity: 0;
}

.pure-material-button-contained:disabled::after {
  opacity: 0;
}

#dialogbox > div {
  background: var(--background-color-4);
  margin: 8px;
}

#dialogbox > div > #dialogboxhead {
  background: #000;
  font-size: 19px;
  padding: 10px;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#dialogbox > div > #dialogboxbody {
  background: var(--color-success);
  padding: 20px;
  color: var(--color-white) !important;
  font-size: 16px;
  border-radius: 5px;
}

#dialogbox > div > #dialogboxfoot {
  background: var(--background-color-4);
  padding: 10px;
  text-align: right;
}

/*#endregion Alert*/
/*----------------------------------
    White Version Demo  
-----------------------------------*/
body.active-light-mode {
  background: #f5f8fa;
}

.active-light-mode {
  color: var(--color-light-body);
}
.active-light-mode .bg-color--3 {
  background: var(--color-white);
}
.active-light-mode .bg-color--2 {
  background: #f5f8fa;
}
.active-light-mode .bg-color--1 {
  background: var(--color-white);
}
.active-light-mode p,
.active-light-mode .product-share-wrapper .profile-share a.more-author-text,
.active-light-mode input,
.active-light-mode select,
.active-light-mode textarea,
.active-light-mode .active-light-mode .nice-select .current,
.active-light-mode .nice-select .option,
.active-light-mode .rn-collection-inner-one .collection-wrapper .collection-deg span.items,
.active-light-mode .footer-list-one .single-list a,
.active-light-mode .rn-icon-list .icon-box > a,
.active-light-mode .mainmenu-nav .mainmenu li a,
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a,
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a,
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg,
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i,
.active-light-mode .rn-icon-list.user-account .rn-dropdown .rn-product-inner ul.product-list .single-product-list span,
.active-light-mode .rn-icon-list.user-account .rn-dropdown .list-inner li a,
.active-light-mode .widget-content-wrapper .input-group input,
.active-light-mode .copy-right-one .copyright-left span,
.active-light-mode .copy-right-one .copyright-left .privacy li a,
.active-light-mode .copy-right-one .copyright-right .social-copyright li a,
.active-light-mode .left-header-style .mainmenu-nav .mainmenu li a svg,
.active-light-mode .rn-top-bar-area .input-group input,
.active-light-mode .rn-service-one .inner .content .read-more-button i,
.active-light-mode .color-body,
.active-light-mode .tab-button-one .nav-tabs button,
.active-light-mode ol li,
.active-light-mode .rn-pd-bd-wrapper .top-seller-inner-one h6.name-title,
.active-light-mode .rn-pd-sm-property-wrapper h6.pd-property-title,
.active-light-mode .rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick .rn-pd-pric span,
.active-light-mode .widge-tag .tag-wrapper a.badge,
.active-light-mode .widge-social .social-share-list li a svg,
.active-light-mode .popup-mobile-menu .mainmenu li a,
.active-light-mode .hamberger button.hamberger-button,
.active-light-mode .top-seller-list-wrapper .top-seller-list::before,
.active-light-mode .creator-list-wrapper .creator-single::before,
.active-light-mode .maintanence-area .inner .content p,
.active-light-mode .rbt-single-widget.widget_categories ul li span,
.active-light-mode .tagcloud a,
.active-light-mode .social-share-default li a .text,
.active-light-mode .shortby-default .filter-leble,
.active-light-mode .price__output--wrap .price--output span,
.active-light-mode .isotop-filter button,
.active-light-mode .footer-for-left-sticky-header .inner p a,
.active-light-mode .rn-check-box .rn-check-box-label,
.active-light-mode nav.pagination-wrapper .pagination,
.active-light-mode input[type=checkbox] ~ label,
.active-light-mode input[type=radio] ~ label,
.active-light-mode .single-activity-wrapper .inner .content .time-maintane .data a,
.active-light-mode .rbt-single-widget.widget_recent_entries .inner span,
.active-light-mode .comment-list .comment .comment-img .time-spent,
.active-light-mode .upcoming-projects tr td span,
.active-light-mode .banner-style-4 .sldier-content p.banner-disc-one,
.active-light-mode .search-form-wrapper .search-icon button i,
.active-light-mode .product-share-wrapper .share-btn .icon,
.active-light-mode .rn-search-mobile.form-group input {
  color: var(--color-light-body);
}
.active-light-mode .color-body {
  color: var(--color-light-body) !important;
}
.active-light-mode h1,
.active-light-mode h2,
.active-light-mode h3,
.active-light-mode h4,
.active-light-mode h5,
.active-light-mode h6,
.active-light-mode .h1,
.active-light-mode .h2,
.active-light-mode .h3,
.active-light-mode .h4,
.active-light-mode .h5,
.active-light-mode .h6,
.active-light-mode .rn-service-one .inner .content .title,
.active-light-mode .nice-select .current,
.active-light-mode .share-btn-activation .share-btn-setting .btn-setting-text,
.active-light-mode .product-style-one a .product-name,
.active-light-mode ul li a,
.active-light-mode .left-header-style .authore-profile .au-content p.name,
.active-light-mode .page-title-area h3,
.active-light-mode .btn-transparent,
.active-light-mode .author-wrapper .author-inner .rn-author-info-content .social-follw .user-name,
.active-light-mode .author-wrapper .author-inner .rn-author-info-content .follow-area .follow span,
.active-light-mode .wallet-wrapper .inner .content .title,
.active-light-mode .top-seller-inner-one .top-seller-wrapper .top-seller-content span a,
.active-light-mode .popup-mobile-menu .inner .header-top .close-menu .close-button,
.active-light-mode .banner-style-4 .sldier-content .title,
.active-light-mode .slider-style-5 .banner-left-content .title,
.active-light-mode .rn-comment-form .section-title .title,
.active-light-mode .upload-variant-title-wrapper p span,
.active-light-mode .rbt-single-widget.widget_recent_entries .inner a,
.active-light-mode .upcoming-projects tr th span,
.active-light-mode .change-pass-wrapper input,
.active-light-mode .team-social-icon svg {
  color: var(--color-light-heading);
}
.active-light-mode .share-btn-activation .share-btn-setting .btn-setting-text:hover,
.active-light-mode ul li a:hover,
.active-light-mode .maintanence-area .inner .content p a {
  color: var(--color-primary);
}
.active-light-mode .social-share-media .another-login {
  color: var(--color-light-heading);
}
.active-light-mode .btn:focus {
  border: none;
  box-shadow: none;
}
.active-light-mode .btn:hover {
  color: var(--color-white) !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .active-light-mode .rn-search-mobile.form-group {
    background: var(--color-gray-2);
  }
  .active-light-mode .rn-search-mobile.form-group input {
    background: var(--color-white);
  }
}
@media only screen and (max-width: 767px) {
  .active-light-mode .rn-search-mobile.form-group {
    background: var(--color-gray-2);
  }
  .active-light-mode .rn-search-mobile.form-group input {
    background: var(--color-white);
  }
}
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover svg,
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover i {
  color: var(--color-white);
}
.active-light-mode .nice-select,
.active-light-mode tbody .color-light {
  background: var(--color-gray-2);
}
.active-light-mode .nice-select::after,
.active-light-mode tbody .color-light::after {
  border-bottom: 2px solid var(--color-light-body);
  border-right: 2px solid var(--color-light-body);
}
.active-light-mode .ui-widget-content {
  background: var(--color-white) none repeat scroll 0 0;
}
.active-light-mode .rn-progress-parent {
  box-shadow: inset 0 0 0 2px var(--color-white);
}
.active-light-mode .nice-select.open .list,
.active-light-mode .banner-one-slick button.slide-arrow,
.active-light-mode .left-header-style .mainmenu-nav .mainmenu li a svg,
.active-light-mode .report-form-box textarea,
.active-light-mode .copy-right-one .copyright-right .social-copyright li a,
.active-light-mode button.slide-arrow,
.active-light-mode .upload-variant-wrapper,
.active-light-mode nav.pagination-wrapper .pagination,
.active-light-mode button.another-login,
.active-light-mode .author-button-area .at-follw,
.active-light-mode .change-pass-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .profile-form-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .edit-bio-area textarea,
.active-light-mode .nuron-information input {
  background: var(--color-gray-2);
}
.active-light-mode .left-header-style .authore-profile {
  background: #f0f9ff;
}
.active-light-mode .author-button-area .at-follw svg {
  color: var(--color-light-heading);
}
.active-light-mode .rn-icon-list.user-account .rn-dropdown,
.active-light-mode .popup-mobile-menu .inner,
.active-light-mode .slider-style-6,
.active-light-mode .box-table,
.active-light-mode .lg-product-wrapper,
.active-light-mode .lg-product-wrapper.colum-2 .inner,
.active-light-mode .tab-content-edit-wrapepr .tab-pane {
  background: var(--color-white);
}
.active-light-mode .slick-dots li button,
.active-light-mode .left-header-style,
.active-light-mode .accordion .accordion-item .accordion-body {
  background: var(--color-white);
}
.active-light-mode .rn-collection-inner-one .collection-wrapper .collection-deg span.items,
.active-light-mode .form-wrapper-one.form-create .nice-select.open .list {
  background: var(--color-gray-2);
}
.active-light-mode .rn-icon-list.user-account .rn-dropdown .list-inner li a:hover {
  background: var(--color-primary);
}
.active-light-mode .search-form-wrapper .form-control,
.active-light-mode .rn-icon-list .icon-box > a,
.active-light-mode .my_switcher,
.active-light-mode .footer-recent-post li + li.recent-post,
.active-light-mode .widget-content-wrapper .widget-bottom,
.active-light-mode .rn-icon-list.user-account .rn-dropdown .add-fund-button,
.active-light-mode .single-notice .thumbnail a img,
.active-light-mode .top-seller-inner-one .top-seller-wrapper .thumbnail a img,
.active-light-mode .right-fix-notice,
.active-light-mode .single-notice,
.active-light-mode .rn-header,
.active-light-mode .widge-post ul li,
.active-light-mode .widge-tag .tag-wrapper a.badge,
.active-light-mode .popup-mobile-menu .inner .header-top,
.active-light-mode .popup-mobile-menu .mainmenu li + li,
.active-light-mode .popup-mobile-menu .mainmenu .mega-menu-item li:last-child,
.active-light-mode .default-exp-wrapper,
.active-light-mode .share-btn-activation .share-btn-setting .btn-setting-text + .btn-setting-text,
.active-light-mode .top-seller-inner-one .top-seller-wrapper .thumbnail a,
.active-light-mode .title-badge,
.active-light-mode .tagcloud a,
.active-light-mode .rn-icon-list .icon-box > a, .active-light-mode .rn-icon-list .icon-box > button,
.active-light-mode input, .active-light-mode button, .active-light-mode select, .active-light-mode textarea,
.active-light-mode .social-share-default li a .icon,
.active-light-mode .copy-right-one,
.active-light-mode .nice-select .option + .option,
.active-light-mode .product-share-wrapper .profile-share a img,
.active-light-mode .upload-area label,
.active-light-mode nav.pagination-wrapper .pagination,
.active-light-mode .product-tab-wrapper .rn-pd-rt-content button.nav-link.active .rn-pd-sm-thumbnail,
.active-light-mode .rn-comment-form .inner .rnform-group textarea,
.active-light-mode .box-table,
.active-light-mode .left-header-style .authore-profile .thumbnail img,
.active-light-mode .hamberger button.hamberger-button,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .profile-form-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .edit-bio-area textarea,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .profile-change .profile-left .profile-image img {
  border-color: var(--color-border-white);
}
.active-light-mode .game-banner-slick-wrapper .share-react.react .share-btn button:hover {
  background: transparent;
}
.active-light-mode .copy-right-one .copyright-left .privacy::before {
  background: var(--color-border-white);
}
.active-light-mode .rbt-single-widget.widget_categories ul li + li,
.active-light-mode .rbt-single-widget.widget_recent_entries ul li + li {
  border-top: 1px solid var(--color-border-white);
}
.active-light-mode .filter-wrapper .sing-filter button,
.active-light-mode button.another-login,
.active-light-mode tbody.ranking tr td .thumbnail img,
.active-light-mode .game-banner-slick-wrapper .product-share-wrapper.lg-product-share a img,
.active-light-mode .lg-product_tab-pane,
.active-light-mode .product-tab-nav .nav,
.active-light-mode .tab-content-edit-wrapepr .tab-pane,
.active-light-mode .tab-content-edit-wrapepr .personal-info-wrapper .profile-form-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .personal-info-wrapper .edit-bio-area textarea,
.active-light-mode .input-two-wrapper .profile-edit-select,
.active-light-mode .input-two-wrapper .phone-number input,
.active-light-mode .input-two-wrapepr-prifile .profile-edit-select,
.active-light-mode .change-pass-wrapper input {
  border-color: var(--color-border-white) !important;
}
.active-light-mode .slider-style-3 .wrapper,
.active-light-mode .banner-style-4 .slider,
.active-light-mode .rbt-single-widget,
.active-light-mode .left-nav .nav.nav-tabs {
  background: var(--color-white);
}
.active-light-mode .author-button-area .btn,
.active-light-mode .author-button-area .at-follw,
.active-light-mode .left-nav .nav.nav-tabs button {
  background: var(--color-gray-2);
  color: var(--color-light-heading);
}
.active-light-mode .author-button-area .at-follw:hover {
  background: var(--color-primary);
}
.active-light-mode .author-button-area .at-follw:hover svg {
  color: var(--color-white);
}
.active-light-mode .filter-wrapper .sing-filter button {
  background: var(--color-gray-2);
  border-color: var(--color-gray-2);
}
.active-light-mode .filter-wrapper .sing-filter button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.active-light-mode .author-button-area .btn:hover,
.active-light-mode .left-nav .nav.nav-tabs button.active,
.active-light-mode .left-nav .nav.nav-tabs button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.active-light-mode .author-button-area .btn:hover i,
.active-light-mode .left-nav .nav.nav-tabs button.active i,
.active-light-mode .left-nav .nav.nav-tabs button:hover i {
  color: var(--color-white);
}
.active-light-mode .theme-switch__label {
  background: #e4e4e4;
}
.active-light-mode .tab-button-one .nav-tabs button,
.active-light-mode .popup-mobile-menu .inner .header-top .close-menu .close-button,
.active-light-mode .form-wrapper-one input, .active-light-mode .form-wrapper-one textarea,
.active-light-mode .active-light-mode .rn-footer-one .input-group input,
.active-light-mode .rn-top-bar-area .input-group input,
.active-light-mode .tab-content-edit-wrapepr .personal-info-wrapper .profile-form-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .personal-info-wrapper .edit-bio-area textarea,
.active-light-mode .role-area input,
.active-light-mode .input-two-wrapper .phone-number input {
  background: var(--color-gray-2);
}
.active-light-mode .tab-content-edit-wrapepr .personal-info-wrapper .profile-form-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .personal-info-wrapper .edit-bio-area textarea,
.active-light-mode .role-area input,
.active-light-mode .input-two-wrapper .phone-number input,
.active-light-mode .left-nav .nav.nav-tabs button i,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .profile-form-wrapper input,
.active-light-mode .tab-content-edit-wrapepr .nuron-information .edit-bio-area textarea {
  color: var(--color-light-heading);
}
.active-light-mode .left-nav .nav.nav-tabs button.active i {
  color: var(--color-white);
}
.active-light-mode .tab-button-one .nav-tabs button.active {
  background: var(--color-primary);
  color: var(--color-white);
}
.active-light-mode .wallet-wrapper:hover .inner .icon svg,
.active-light-mode .slider-style-3 .wrapper .slider .slider-thumbnail a,
.active-light-mode .slider-style-3 .slide-small-wrapper .read-wrapper .title {
  color: var(--color-white);
}
.active-light-mode .rn-top-bar-area .my_switcher ul li a.dark img {
  filter: brightness(100);
}
.active-light-mode .rn-check-box-label a {
  color: var(--color-primary);
}
.active-light-mode .rn-header.rn-header-four.header--fixed {
  background: var(--color-white);
}
.active-light-mode .padding-controler-slide-product a h1.title {
  color: var(--color-white);
}
.active-light-mode .place-bet-area.into-banner {
  background: var(--background-color-1);
}
.active-light-mode .place-bet-area.into-banner .winning-bid h6 {
  color: var(--color-white);
}
.active-light-mode .place-bet-area.into-banner .left-bid h6 {
  color: var(--color-white);
}
.active-light-mode .place-bet-area.into-banner .winning-bid .top-seller-content .heighest-bid {
  color: #adadad;
}
.active-light-mode .place-bet-area.into-banner .winning-bid .top-seller-content .heighest-bid a {
  color: var(--color-white);
}
.active-light-mode .place-bet-area.into-banner .bid-list .top-seller-inner-one .top-seller-wrapper .top-seller-content .count-number {
  color: var(--color-body);
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .catagory-wrapper .pd-property-inner span.type {
  color: var(--color-body) !important;
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .catagory-wrapper .pd-property-inner span.value {
  color: var(--color-white) !important;
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .catagory-wrapper .pd-property-inner {
  background: var(--background-color-1) !important;
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .property-wrapper .pd-property-inner {
  background: var(--background-color-1) !important;
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .property-wrapper .pd-property-inner span.type {
  color: var(--color-body) !important;
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .property-wrapper .pd-property-inner span.value {
  color: var(--color-white) !important;
}
.active-light-mode .rn-pd-sm-property-wrapper.into-banner .pd-property-title {
  color: var(--color-body);
}
.active-light-mode .padding-controler-slide-product .top-bid-price span.latest-bid {
  color: var(--color-white);
}
.active-light-mode .form-wrapper-one input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--color-light-body);
}
.active-light-mode .form-wrapper-one textarea:-moz-placeholder {
  /* Firefox 18- */
  color: var(--color-light-body);
}
.active-light-mode .rn-icon-list.user-account .rn-dropdown .list-inner li a:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.active-light-mode .product-tab-nav .nav button.nav-link.active {
  background: var(--color-primary);
  border: 1px solid transparent;
}
.active-light-mode .product-tab-nav .nav button.nav-link {
  border-color: var(--color-border-white);
  background: var(--color-primary-alta);
}

.active-light-mode .rn-header.sticky {
  background-color: #fff;
}

.active-light-mode .product-style-one,
.active-light-mode .rn-service-one,
.active-light-mode .rn-collection-inner-one .collection-wrapper,
.active-light-mode .slider-style-2 .single-slide .inner,
.active-light-mode .slider-style-3 .slide-small-wrapper,
.active-light-mode .tab-button-one .nav-tabs,
.active-light-mode nav.pagination-wrapper .pagination,
.active-light-mode .product-tab-nav .nav {
  background: var(--color-white);
}

.active-light-mode .nice-select::after {
  border-bottom: 2px solid var(--color-light-heading);
  border-right: 2px solid var(--color-light-heading);
}

.slider-style-6 .slide .banner-read-thumb-lg h4,
.slider-style-7 .rn-banner-wrapper h2.title,
.rn-top-bar-area .contact-area .setting-option .icon-box a, .rn-top-bar-area .contact-area .setting-option .icon-box button {
  color: var(--color-white);
}

.active-light-mode .product-share-wrapper .share-btn::after {
  background: var(--color-gray-2);
}
.active-light-mode .product-style-one .bid-react-area .react-area::after {
  background: var(--color-primary);
}
.active-light-mode .single-rn-slider .inner .title {
  color: #fff;
}
.active-light-mode .slider-wrapper-two .banner-read-thumb-lg h4 {
  color: #fff;
}
.active-light-mode .wallet-wrapper {
  background: var(--color-white);
}
.active-light-mode .wallet-wrapper::before {
  background: var(--gradient-one);
}
.active-light-mode .wallet-wrapper:hover::before {
  opacity: 1;
}
.active-light-mode .wallet-wrapper:hover .inner .icon svg {
  color: var(--color-white);
}
.active-light-mode .wallet-wrapper:hover .inner .content h4.title a {
  color: var(--color-white);
}
.active-light-mode .wallet-wrapper:hover .inner .content p.description {
  color: var(--color-white);
}
.active-light-mode .wallet-wrapper:hover .inner .content a.read-more-button {
  color: var(--color-white);
  color: var(--color-white) !important;
}
.active-light-mode .nice-selector-transparent .nice-select {
  background: transparent !important;
}
.active-light-mode .nice-selector-transparent .nice-select .current {
  color: var(--color-primary);
}
.active-light-mode .nice-selector-transparent .nice-select.open .list li {
  transition: var(--transition);
}
.active-light-mode .nice-selector-transparent .nice-select.open .list li:hover {
  color: var(--color-dark);
}
.active-light-mode .nice-selector-transparent .nice-select::after {
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}
.active-light-mode .rn-footer-one .input-group input {
  background: var(--color-gray-2);
  border: 2px solid transparent;
}
.active-light-mode .rn-footer-one .input-group input:focus {
  border: 2px solid var(--color-primary);
}
.active-light-mode .backto-top > div {
  background-color: var(--color-primary);
}
.active-light-mode .backto-top > div:hover {
  background: var(--color-primary-alta);
}
.active-light-mode .author-wrapper .author-inner .user-thumbnail img {
  border: 15px solid var(--color-white);
}
.active-light-mode nav.pagination-wrapper .pagination li a {
  background: var(--color-gray-2);
  color: var(--color-dark);
}
.active-light-mode nav.pagination-wrapper .pagination li a.active {
  background: var(--color-primary);
}
.active-light-mode nav.pagination-wrapper .pagination li a:hover {
  background: var(--color-primary);
}
.active-light-mode .form-wrapper-one {
  background: var(--color-white);
}
.active-light-mode .form-wrapper-one input.form-control,
.active-light-mode .form-wrapper-one textarea.form-control {
  background: var(--color-gray-2) !important;
  color: var(--color-dark) !important;
}
.active-light-mode .form-wrapper-one input.form-control:focus,
.active-light-mode .form-wrapper-one textarea.form-control:focus {
  border: 2px solid var(--color-primary) !important;
}
.active-light-mode .form-wrapper-one .nice-select {
  background: var(--color-gray-2);
}
.active-light-mode .product-tab-wrapper .rn-pd-content .rn-pd-thumbnail {
  background: var(--color-white);
}
.active-light-mode .product-tab-wrapper .rn-pd-rt-content button .rn-pd-sm-thumbnail {
  background: var(--color-white);
}
.active-light-mode .rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner {
  background: var(--color-white);
}
.active-light-mode .rn-pd-sm-property-wrapper .property-wrapper .pd-property-inner span.color-white {
  color: var(--color-dark) !important;
}
.active-light-mode .rn-pd-content-area .pd-title-area .pd-react-area .count {
  background: var(--color-gray-2);
}
.active-light-mode .rn-pd-content-area .pd-title-area .pd-react-area .count svg {
  color: var(--color-light-body);
}
.active-light-mode .rn-pd-content-area .pd-title-area .pd-react-area .heart-count {
  background: var(--color-gray-2);
}
.active-light-mode .rn-pd-content-area .pd-title-area .pd-react-area .heart-count svg {
  color: var(--color-light-body);
}
.active-light-mode .rn-pd-content-area .pd-title-area .pd-react-area .heart-count span {
  color: var(--color-light-body);
}
.active-light-mode .rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner {
  background: var(--color-white);
}
.active-light-mode .rn-pd-sm-property-wrapper .catagory-wrapper .pd-property-inner span.color-white {
  color: var(--color-dark) !important;
}
.active-light-mode .place-bet-area {
  background: var(--color-white);
}
.active-light-mode .rn-pd-sm-slick .pd-slide-wrapper .rn-pd-slick {
  background: var(--color-white);
}
.active-light-mode .rn-pd-sm-slick .pd-slide-wrapper button.slide-arrow {
  background: var(--color-primary);
  transition: var(--transition);
}
.active-light-mode .rn-pd-sm-slick .pd-slide-wrapper button.slide-arrow:hover {
  background: var(--color-primary-alta);
}
.active-light-mode .rn-pd-content-area .catagory-collection .catagory span {
  color: var(--color-primary);
}
.active-light-mode .rn-pd-content-area .catagory-collection .collection span {
  color: var(--color-primary);
}
.active-light-mode .rn-blog {
  background: var(--color-white);
}
.active-light-mode .rn-blog-listen .bd-thumbnail {
  background: var(--color-white);
}
.active-light-mode .rn-blog-listen .comment-inner .rnform-group input {
  background: var(--color-white);
}
.active-light-mode .rn-blog-listen .comment-inner .rnform-group textarea {
  background: var(--color-white);
}
.active-light-mode .accordion .accordion-item {
  background: #ffffff61;
}
.active-light-mode .accordion .accordion-item .accordion-header button {
  background: var(--color-white);
}
.active-light-mode .avatar::before {
  background: var(--color-primary);
}
.active-light-mode .avatar::after {
  border-top-color: var(--color-primary);
}
.active-light-mode .connect-td a {
  color: var(--color-primary);
}
.active-light-mode .connect-td a:hover {
  color: var(--color-primary-alta) !important;
}
.active-light-mode .connect-thumbnail {
  background: var(--color-white);
}
.active-light-mode .slider-wrapper-one {
  background: var(--color-white);
}
.active-light-mode .slider-wrapper-one .banner-read-thumb h4 {
  color: var(--color-white);
}
.active-light-mode section.slider-wrapper {
  background: var(--color-white);
}
.active-light-mode section.slider-wrapper .slider .slider-thumbnail .read-wrapper h5 {
  color: var(--color-white);
}
.active-light-mode .slide-progress-small-wrapper {
  background: var(--color-white);
}
.active-light-mode .slide-progress-small-wrapper .read-wrapper h5 {
  color: var(--color-white);
}
.active-light-mode .slider-progress {
  height: 3px;
}
.active-light-mode .slider-progress .progress {
  height: 3px;
}
.active-light-mode .share-btn-activation .share-btn-setting {
  background: var(--color-gray-2) !important;
  box-shadow: none;
  border: none;
}
.active-light-mode .modal-content.share-wrapper {
  background: var(--color-white);
}
.active-light-mode .upload-modal-wrapper .modal-content.share-wrapper {
  background: transparent !important;
}
.active-light-mode .report-content-wrapper {
  background: var(--color-white);
}
.active-light-mode .report-content-wrapper .modal-body {
  padding: 0;
}
.active-light-mode .report-content-wrapper .modal-body p {
  margin-bottom: 15px;
}
.active-light-mode .report-modal-header {
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}
.active-light-mode .report-modal-header h5 {
  margin-bottom: 10px;
}
.active-light-mode .placebid-modal-wrapper .modal-content {
  background: var(--color-white);
}
.active-light-mode .placebid-modal-wrapper .modal-content .modal-body p {
  color: var(--color-light-body);
}
.active-light-mode .placebid-modal-wrapper .modal-content .modal-body .placebid-form-box .bid-content .bid-content-top .bid-content-left input {
  background: var(--color-gray-2);
  border: 2px solid var(--color-border-white);
}
.active-light-mode .placebid-modal-wrapper .modal-content .modal-body .placebid-form-box .bid-content .bid-content-top .bid-content-left input:focus {
  border: 2px solid var(--color-primary);
}
.active-light-mode .placebid-modal-wrapper .bid-content-mid span {
  color: var(--color-light-body);
}
.active-light-mode input[type=checkbox] ~ label::before,
.active-light-mode input[type=radio] ~ label::before {
  background-color: var(--color-border-white);
}
.active-light-mode .forget-pass-wrapper {
  background: var(--color-white);
}
.active-light-mode .forget-pass-wrapper .form-control {
  background: var(--color-gray-2) !important;
  color: var(--color-dark) !important;
}
.active-light-mode .top-seller-inner-one.explore {
  background: var(--color-white);
  border: 1px solid transparent;
}
.active-light-mode .accordion .accordion-item .accordion-header button {
  color: var(--color-light-heading);
}
.active-light-mode .accordion .accordion-item .accordion-header button[aria-expanded=true] {
  color: var(--color-primary);
}
.active-light-mode .single-activity-wrapper {
  background: var(--color-white);
}
.active-light-mode .filter-wrapper .sing-filter span {
  background: var(--color-white);
}
.active-light-mode .filter-wrapper .sing-filter span:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.active-light-mode .rn-about-card {
  background: var(--color-white);
  border: none;
}
.active-light-mode .rn-about-wrapper {
  border: none;
  background: var(--color-white);
}
.active-light-mode .single-counter-up {
  background: var(--color-white);
  border: none;
}
.active-light-mode .single-counter-up .botton-title {
  color: var(--color-light-heading);
}
.active-light-mode .wETH::after {
  color: #ff0000bf;
}
.active-light-mode .call-to-action-wrapper h3 {
  color: var(--color-white);
}
.active-light-mode .call-to-action-wrapper P {
  color: #bdbbbb;
}
.active-light-mode .mainmenu-nav .mainmenu li .submenu {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.082);
  border-left: 1px solid rgba(0, 0, 0, 0.082);
  border-right: 1px solid rgba(0, 0, 0, 0.082);
}
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a {
  transition: var(--transition);
}
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a:hover svg {
  color: var(--color-white) !important;
}
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a svg {
  color: var(--color-white);
}
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper {
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-bottom: 1px solid #00000014;
  border-left: 1px solid #00000014;
  border-right: 1px solid #00000014;
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li .submenu {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.082);
  border-left: 1px solid rgba(0, 0, 0, 0.082);
  border-right: 1px solid rgba(0, 0, 0, 0.082);
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li .submenu li a {
  transition: var(--transition);
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li .submenu li a:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li .submenu li a:hover svg {
  color: var(--color-white) !important;
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li .submenu li a svg {
  color: var(--color-white);
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper {
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-bottom: 1px solid #00000014;
  border-left: 1px solid #00000014;
  border-right: 1px solid #00000014;
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .single-mega-item li a:hover {
  color: var(--color-white) !important;
  background: var(--color-primary);
}
.active-light-mode .rn-header.sticky .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .single-mega-item li a:hover svg {
  color: var(--color-primary);
  background: var(--color-white);
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  color: var(--color-body);
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i,
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg {
  color: var(--color-body);
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li .submenu {
  background: #00000042;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #00000014;
  border-left: 1px solid #00000014;
  border-right: 1px solid #00000014;
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li .submenu li a {
  color: #bbb9b9;
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li .submenu li a i,
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li .submenu li a svg {
  color: #bbb9b9;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  color: var(--color-body);
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i,
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg {
  color: var(--color-body);
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li .submenu {
  background: #fff;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #00000014;
  border-left: 1px solid #00000014;
  border-right: 1px solid #00000014;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li .submenu li a {
  color: #7e7b7b;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li .submenu li a i,
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li .submenu li a svg {
  color: #7e7b7b;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper {
  background: var(--color-white);
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  color: #7e7b7b !important;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i,
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg {
  color: #7e7b7b !important;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover {
  color: var(--color-white) !important;
}
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover i,
.active-light-mode .rn-header.sticky.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover svg {
  color: var(--color-primary) !important;
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  color: #bbb9b9;
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a i,
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg {
  color: #bbb9b9;
}
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover {
  color: var(--color-white) !important;
  background: var(--color-primary);
}
.active-light-mode .mainmenu-nav .mainmenu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover svg {
  color: var(--color-white);
}
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a svg,
.active-light-mode .mainmenu-nav .mainmenu li .submenu li a i {
  color: #fff;
}
.active-light-mode .mainmenu-nav .primary-menu li .submenu {
  background: #fff !important;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  border-left: 1px solid #ffffff14;
}
.active-light-mode .mainmenu-nav .primary-menu li .submenu li a {
  transition: var(--transition);
}
.active-light-mode .mainmenu-nav .primary-menu li .submenu li a:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.active-light-mode .mainmenu-nav .primary-menu li .submenu li a:hover svg {
  color: var(--color-white);
}
.active-light-mode .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper {
  background: #ffffff !important;
  border-bottom: 1px solid #ffffff14;
  border-right: 1px solid #ffffff14;
  border-left: 1px solid #ffffff14;
}
.active-light-mode .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  transition: var(--transition);
}
.active-light-mode .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}
.active-light-mode .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a:hover svg {
  background: var(--color-white);
  color: var(--color-primary);
}
.active-light-mode .rn-header.header--fixed.sticky .header-left .rn-search-header .input-group input {
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-dark);
}
.active-light-mode .rn-header.header--fixed.sticky .header-left .rn-search-header .input-group .input-group-append button svg {
  color: var(--color-primary);
}
.active-light-mode .rn-header.header--fixed.sticky .mainmenu-nav .primary-menu li .with-megamenu .rn-megamenu .wrapper {
  background: var(--color-white) !important;
}
.active-light-mode .rn-header.header--fixed.position-absolute .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper {
  background: #00000042 !important;
}
.active-light-mode .rn-header.header--fixed.position-absolute.sticky .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper {
  background: #fff !important;
}
.active-light-mode .rn-header.header--fixed.position-absolute.sticky .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a {
  color: var(--color-dark);
}
.active-light-mode .rn-header.header--fixed.position-absolute.sticky .mainmenu-nav .primary-menu li.with-megamenu .rn-megamenu .wrapper .mega-menu-item li a svg {
  color: var(--color-dark);
}
.active-light-mode .rn-header.position-absolute.header--fixed.sticky .mainmenu-nav .primary-menu li.nav-item .submenu {
  background: var(--color-white) !important;
}
.active-light-mode .rn-header.position-absolute.header--fixed.sticky .mainmenu-nav .primary-menu li.nav-item .submenu li a {
  color: var(--color-dark);
}
.active-light-mode .rn-header.position-absolute.header--fixed.sticky .mainmenu-nav .primary-menu li.nav-item .submenu li a svg {
  color: var(--color-white) !important;
}
.active-light-mode .rn-header.header--fixed.sticky .mainmenu-nav .primary-menu li.nav-item .submenu {
  background: var(--color-white) !important;
}
.active-light-mode .comment-list ul.children .comment::before {
  border-left: 1px solid #c5c5c5;
}
.active-light-mode .comment-list ul.children .comment .single-comment::before {
  border-top: 1px solid #c5c5c5;
}
.active-light-mode .comment-list .comment.byuser .single-comment {
  background-color: var(--color-primary) !important;
}
.active-light-mode .comment-list .comment.byuser .single-comment .comment-author .commenter {
  color: var(--color-white);
}
.active-light-mode .comment-list .comment.byuser .single-comment .comment-author .time-spent {
  color: var(--color-white);
}
.active-light-mode .comment-list .comment.byuser .single-comment .comment-text p {
  color: var(--color-white);
}
.active-light-mode .comment-list .comment.byuser .single-comment .reply-edit .reply .comment-reply-link {
  color: var(--color-white);
}
.active-light-mode .comment-list .comment.byuser .single-comment .reply-edit .reply .comment-reply-link:hover {
  color: var(--color-white) !important;
}
.active-light-mode .comment-list .comment.byuser .single-comment .reply-edit .reply .comment-reply-link i {
  color: var(--color-white);
}
.active-light-mode .comment-list .comment .single-comment {
  background: var(--color-white);
}
.active-light-mode .comment-list .comment .comment-img .commenter {
  color: var(--color-dark);
}
.active-light-mode.home-sticky-pin {
  background: #f5f8fa;
}
.active-light-mode .right-fix-notice {
  background: var(--color-white);
}
.active-light-mode .right-fix-notice .notice-heading {
  background: #f0f9ff;
}
.active-light-mode .right-fix-notice .notice-heading h4 {
  color: var(--color-dark);
}
.active-light-mode .right-fix-notice .notice-heading .nice-select {
  background: var(--color-primary);
}
.active-light-mode .right-fix-notice .notice-heading .nice-select .current {
  color: var(--color-white);
}
.active-light-mode .right-fix-notice .notice-heading .nice-select::after {
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}
.active-light-mode .banner-style-three .rn-banner-wrapper h2.title {
  color: var(--color-white);
}
.active-light-mode .rn-address {
  background: var(--color-white);
}
.active-light-mode .rn-address .inner p {
  margin: 0;
}
.active-light-mode .rn-address .inner p a {
  margin: 0;
  color: var(--color-dark);
}
.active-light-mode .product-style-one::after {
  background: #ffffff;
}
.active-light-mode .product-style-one::before {
  background-image: linear-gradient(100deg, #fff, #0398ed);
}
.active-light-mode .logo-custom-css .logo-dark {
  display: block;
}
.active-light-mode .logo-custom-css .logo-light {
  display: none;
}
.active-light-mode .logo-custom-css::after {
  background: var(--color-border-white);
}
.active-light-mode .right-fix-notice::-webkit-scrollbar {
  width: 5px;
  background: var(--color-border-white);
}
.active-light-mode .right-fix-notice::-webkit-scrollbar-thumb {
  background: var(--color-primary-alta);
  border-radius: 0;
}
.active-light-mode .slider-style-7 .rn-banner-wrapper .item-description .product-share-wrapper .profile-share a.more-author-text,
.active-light-mode .game-banner-slick-wrapper .product-share-wrapper .profile-share a.more-author-text {
  color: #b9b8b8;
}
.active-light-mode .game-banner-short-slick-wrapper .slider-style-7 .rn-banner-wrapper .item-description {
  background: #504b7852;
}
/*# sourceMappingURL=../maps/style.css.map */


/* my source code */

.nav-button {
  position: relative;
  color: inherit; /* Inherit text color from parent */
}

.nav-button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  height: 25px;
  background: var(--color-border); /* Use custom border color */
  transform: translateY(-50%);
}

.nav-button::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: var(--underline-color); /* Dynamic underline color */
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.nav-button:hover::after {
  width: 100%;
}

.nav-mainmenu-spacers {
  margin: 0 20px;
}

.homescreen-imagecontainer  {
  justify-content: center;
  display: flex;
}
.homescreen-image {
  width: 100%;
}

.homepage-imagecontainer  {
  justify-content: center;
  display: flex;
}
.homepage-image {
  width: 90%;
}
.middle-banner-text{
  text-align: right;
}
.container {
  overflow: hidden;
  position: relative;
}

.customer-logos-section {
  white-space: nowrap;
  animation: scrollLogos 20s linear infinite;
  animation-delay: -10s; /* Half of the animation duration for continuous looping */
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
}

.logos:after {
  right: 0;
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
  white-space: nowrap;
}

.logos-slide img {
  height: auto;
  max-width: 10%;
  margin: 0 40px;
}
@media (max-width: 1400px) {
  .logos-slide img {
    margin: 0 30px; /* Reduced margin for smaller screens */
  }
}
@media (max-width: 991px) {
  .logos-slide img {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .logos-slide img {
    margin: 0 20px; /* Reduced margin for smaller screens */
  }
}
@media (max-width: 479px) {
  .logos-slide img {
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .logos-slide img {
    max-width: 6%;
  }
}

.ourPortfolioIndex {
  text-align: center;
}

@media (max-width: 991px) {
  .customer-logos-img {
    margin: 0 15px;
  }
}

@media (max-width: 991px) {
  .customer-logos-wrap {
    justify-content: center;
  }
}

.ourPortfolioHeader {
  width: 100%;
}

@media (max-width: 992px) {
  .ourPortfolioHeader {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ourPortfolioHeader {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .ourPortfolioHeader {
    width: 100%;
  }
}

.ourPortfolioFilter {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  .ourPortfolioFilter {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ourPortfolioFilter {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .ourPortfolioFilter {
    width: 100%;
  }
}

.portfolioContainer {
  justify-content: center;
}

@media (max-width: 992px) {
  .portfolioContainer {
    justify-content: unset;
  }
}

.teamTitle {
  text-align: center;
}

.teamTitleDescription {
  align-items: center;
  text-align: center;
}
.team-grid {
  grid-column-gap: 64px;
    grid-row-gap: 56px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 50px;
    display: grid;
}

  .teammember-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center;
    height: 100%; /* Optionally, set a height to center vertically within the container */
}

/* Optional: Add margin or padding as needed */
.teammember-container .content {
    margin: 0 0 20px 0;
    width: 250px;
}

/* Add a transition for background-color and color properties */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Add transitions for other elements as needed */
.my_switcher ul li a {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.rn-section-gap-sm {
  padding: 50px 0;
}
.contact-sidepanel {
  width: 100%;
}

/* Style for the portfolio items */
.product-style-one {
  position: relative;
}

/* Style for the portfolio info */
.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  opacity: 0; /* Initially hidden */
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

.active-light-mode .portfolio-info h3 {
  color: var(--color-light);
}

/* Show the portfolio info on hover */
.product-style-one:hover .portfolio-info {
  opacity: 1;
}

.portfolio-image {
  width: 100%;
}
.slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style for each slide */
.slide {
  padding: 0;
  transform: scale(0.8); /* Scale down the side images */
  transition: transform 0.3s ease-in-out;
}

/* Style for the center slide */
.slick-center .slide {
  transform: scale(1); /* Keep the center image at its original size */
}
.circle-container {
  display: inline-block;
}
.team-circle {
  position: relative;
  width: 250px;
  height: 250px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) and (orientation:landscape) {
  .team-circle {
    width: 200px;
    height: 200px;
  }
  .team-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 576px) and (orientation:portrait) {
  .team-circle {
    width: 175px;
    height: 175px;
  }
  .team-title {
    font-size: 15px;
  }

 .col-12 {
    width: 50% !important;
  }
}

.team-photos {
  border-radius: 10%;
  display: block;
}

.team-social-icon-container {
  display: flex;
  flex-direction: row;
}

.team-circle-front,
.team-circle-back {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position:absolute;
  backface-visibility: hidden;
  transition: transform 0.8s;
}

.active-light-mode .team-circle-back {
  background-color: var(--color-border-white);
}

.spacing-socials {
  margin: 10px 0;
}

.team-social-icon svg {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  transition: var(--transition);
  color: black;
}

.active-light-mode .team-social-icon {
  color: var(--color-light-heading);
}

.team-social-icon:hover svg {
  color: var(--color-green);
}


.team-title {
  margin-bottom: 0;
  margin-top: 1rem;
}

.number-email-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.number-container {
  margin-right: auto;
}

.email-container {
  margin-right: auto;
}

.rwt-inner {
  display: flex;
  flex-direction: column;
}
.rwt-portfolio-img {
  width: 100px;
  margin: 20px 0;
  border-radius: 10px;
}

.rwt-portfolio-detail {
  display: flex;
  flex-direction: row;
}

.rwt-portfolio-name {
  margin: auto;
}

.rwt-portfolio-p {
  margin: 0;
}


.section-title-header {
  color: var(--color-section-splitter);
  font-size: calc((1.2 - 1)* 1.2vw + 1rem);
  font-weight: 700;
}


.about-capso-p-centered {
  text-align: center;
}


@media screen and (min-width: 768px ),screen and (max-width:calc(3428.4px - 1px)) and (orientation:landscape) {
  .about-capso-p {
      width: 100%;
      margin-bottom: 1rem 0;
      color: #4d5057;
  }
}
@media screen and (max-width: 767px ) and (orientation: portrait) {
  .about-capso-p {
      width: 100%;
      line-height: 1.6em;
  }
}

@media screen and (min-width: 768px ),screen and (max-width:calc(3428.4px - 1px)) and (orientation:landscape) {
  .home-capso-p {
      width: 80%;
      margin-bottom: 1rem 0;
      color: #4d5057;
  }
}
@media screen and (max-width: 767px ) and (orientation: portrait) {
  .home-capso-p {
      width: 100%;
      line-height: 1.6em;
  }
}


.capso-p-bullet {
  font-size: calc((1.26 - 1)* 1.2vw + 0.8rem);
}

@media screen and (min-width: 3428.4px) {
  .capso-p-bullet {
      font-size:calc((1.26 - 1)* 1.2vw + 0.8rem);
  }
}

@media screen and (min-width: 768px ),screen and (max-width:calc(3428.4px - 1px)) and (orientation:landscape) {
  .capso-p-bullet {
      width: 80%;
      margin-bottom: 0.5 rem 0 !important;
      color: #4d5057;
  }
}

@media screen and (max-width: 767px ) and (orientation: portrait) {
  .capso-p-bullet {
      width: 100%;
      line-height: 1.6em;
  }
}

.capsomod-title, h1, h2 {
  color: #4d5057;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  text-align: left;
}

.capsomod-p {
  text-align: left;
  color: #4d5057;
}

@media screen and (min-width: 768px ),screen and (max-width:calc(3428.4px - 1px)) and (orientation:landscape) {
  .capsomod-p {
      width: 100%;
      margin-bottom: 1rem 0;
  }
}
@media screen and (max-width: 767px ) and (orientation: portrait) {
  .capsomod-p {
      width: 100%;
  }
}


@media screen and (min-width: 768px ),screen and (max-width:calc(3428.4px - 1px)) and (orientation:landscape) {
  .offer-capso-p {
      width: 100%;
      margin-bottom: 1rem 0;
  }
}
@media screen and (max-width: 767px ) and (orientation: portrait) {
  .offer-capso-p {
      width: 100%;
  }
}
@media screen and (min-width: 768px ),screen and (max-width:calc(3428.4px - 1px)) and (orientation:landscape) {
  .process-capso-p {
      width: 100%;
      margin-bottom: 1rem 0;
      color: #4d5057;
  }
}
@media screen and (max-width: 767px ) and (orientation: portrait) {
  .process-capso-p {
      width: 100%;
      line-height: 1.6em;
  }
}

.about-image-container {
  display: flex;
  justify-content: flex-end;
}

.offer-capso-title {
  text-align: left;
}

.offer-capso-text-title {
  text-align: left;
  color: #fff;
}

.offer-capso-p {
  text-align: left;
  color: #fff;
}
.offer-header {
  text-align: left;
}
.delivery-image-container {
  flex: 1 1 50%; /* Make the image container take up 50% of the available space */
}

.delivery-image-container img {
  width: 100%; /* Make the image fill the container */
  display: block;
  border-radius: 5px; /* Add border-radius for rounded corners */
}

.offer-button {
  background: #3BC049;
}

@media only screen and (max-width: 1199.98px) {
    .header-button {
        display: none !important;
    }
}

.dry-ice-button {
  background: #3BC049;
  padding: 12px 36px !important;
}

.custom-button {
  background: #3BC049 !important;
  color: #4d5057;
}

.button-container a {
  font-size: calc((1.8 - 1)* 1.2vw + 1rem);
}

.button-container {
  display: flex;
}

/*Solution Section*/ 

.bg-section-image img {
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
  .bg-section-image img{
    height: 50vh;
  }
}

.solution-slider {
  background-color: #4d5057;
  pointer-events: none;
}

.solution-slider img {
  max-width: 150px;
  margin: 0 10px;
}

.convention-banner-container {
  background-color: #4d5057;
}

.convention-slider-title {
  display: flex;
  justify-content: center;
}

.convention-slider-title h6 {
  font-size: 25px;
  color: #fff;
  margin: 25px 0 0 0;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-padding {
  padding: 0;
}
.solution-text-container {
  padding: 0 7.14vw 0 7.14vw;
}


@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
  .solution-text-container{
    padding: 7.14vw;
  }
}
@media only screen and (max-width: 767px) {
  .solution-text-container{
    padding: 7.14vw;
  }
}



/* Act Section */

.act-explained-container {
  padding: 0 7.14vw 0 7.14vw;
}

.process-image-container {
  display: flex;
  justify-content: center;
}

.act-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-container {
  width: 50%; /* Set the width to 50% */
  max-width: 500px; /* Set a maximum width if needed */
  height: auto; /* Allow the height to adjust based on the image aspect ratio */
  margin: 0 auto; /* Center the carousel horizontally */
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-container {
    width: 100%;
    max-width: none;
  }
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Retain your existing styles */
.act-text-container {
  padding: 0 20vh 0 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .act-text-container {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
  .act-text-container {
    padding: 7.14vw;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  .act-text-container {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .act-text-container {
    padding: 0 0 0 0;
  }
}

@media only screen and (max-width: 575px) {
  .act-text-container {
    padding: 0 0 0 0;
  }
}

/*Natural Waste */

.natural-waste-image {
  width: 100%;
}
.natural-waste-text-container {
  padding: 0 7.14vw 0 7.14vw;
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape){
  .natural-waste-text-container{
    padding: 7.14vw;
  }
}

@media only screen and (max-width: 767px) {
  .natural-waste-text-container{
    padding: 7.14vw;
  }
}
@media only screen and (max-width: 575px) {
  .natural-waste-text-container{
    padding: 0 7.14vw 7.14vw 7.14vw;
  }
}

.overview-container {
  margin: 0 auto;
  overflow: unset;
  padding: 0 7.14vw 0 7.14vw;
}

@media only screen and (max-width: 767px) {
  .panel-container{
    flex-direction: column;
  }
}

.panel-container {
  display: flex;
  grid-gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview-content-container {
  max-width: 80%;
  margin: auto;
  padding: 0 0 10%;
}

.panel {
  flex: 1 0 30%; /* Adjust width as needed */
  list-style-type:none;
  background-color: #f9f9f9;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow effect */
}

.panel h2 {
  color:#4d5057;
  margin: 20px 0 15px 0;
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .panel h2{
    font-size: calc((var(--title-font-size-value) - 1) * calc(.012 * min(100vh, 900px)) + 1rem) !important;

  }
}


.panel p {
  font-size:calc((1.26 - 1)* 1.2vw + 1rem);
      margin-bottom: 1rem 0;
      color: #4d5057;
}

.content-wrapper-capso {
  padding-top: 5.5vw;
  padding-bottom: 5.5vw;
  width: 100%;
  padding-left: 7.14vw;
  padding-right: 7.14vw;
}

.content-wrapper-dryice {
  padding-top: 5.5vw;
  padding-bottom: 5.5vw;
  width: 100%;
  padding-left: 15vw;
  padding-right: 15vw;
}

.content-wrapper-capso-top {
  padding-top: 5.5vw;
  padding-bottom: 5.5vw;
}

.content-wrapper-dryice-sides {
  width: 100%;
  padding-left: 15vw;
  padding-right: 15vw;
}

.content-wrapper-capso-sides {
  width: 100%;
  padding-left: 7.14vw;
  padding-right: 7.14vw;
}

.offer-capso-title, h1, h2 {
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
}
.capso-title, h2  {
  font-size: calc((2.45 - 1)* 1.2vw + 1rem);
  color: #4d5057;
}

.capso-title-centered{
  font-size: calc((2.45 - 1)* 1.2vw + 1rem);
  color: #4d5057;
  text-align: center;
}

.hr-white {
  color: #fff;
}

.container-header{
  padding: 2.75vw 7.14vw;
}

.logo-footer {
  display: flex;
  justify-content: flex-end;
}
#section-home {
  position: relative;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-size: cover;
}


.section-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/home-page.jpg');
  background-size: cover;
  background-position: 50% 90%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.company-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/capsotechnologiescompany.jpg');
  background-size: cover;
  background-position: 50% 40%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.products-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/product-page/product-home-page.jpg');
  background-size: cover;
  background-position: 50% 40%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.services-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/services-page/services.jpg');
  background-size: cover;
  background-position: 50% 40%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.technology-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/technology.jpg');
  background-size: cover;
  background-position: 50% 40%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.carbon-capture-section-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/product-page/carbon-capture-page/carbon-capture.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.dual-phase-carbon-capture-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/product-page/carbon-capture-page/dual-phase-capture/dual-phase-carbon-capture.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.modular-capture-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/product-page/carbon-capture-page/modular-capture/modular-capture.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.portfolio-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/main-portfolio.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.dry-ice-panel-background {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-us-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/about-us.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.our-company-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/about-us-page/company/our-company-home.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.catalyst-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/catalysts/catalysts-section-img.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.capsos-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/catalysts/capsos/capsos-section-img.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.capsoc-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/catalysts/capsoc/capsoc-section-img.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.capsox-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/catalysts/capsox/capsox-section-img.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.capsopure-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/processes/capsopure-section-img.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}


.dry-ice-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/dry-ice-creation.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.dry-ice-blasting-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/dry-ice-blasting-background.jpeg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.dry-ice-production-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/dry-ice-production-background.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.dry-ice-recycler-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/product-page/dry-ice-machinery-page/recycler/recycler-section.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.dry-ice-automation-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/dry-ice-automation-background.png');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.aquaculture-equipment-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/product-page/aqua-culture-equipment-page/aquaculture-equipment-section-img.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.end-to-end-ccus-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/services-page/end-to-end-ccus/end-to-end-ccus.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.carbon-credits-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/services-page/carbon-credits/what-are-carbon-credits.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.maintenance-support-section-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/services-page/maintenance-support/maintenance-support.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.our-technology-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology.jpeg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.cement-mineralization-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/methodologies/cement-mineralization/what-is-cement-mineralization.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

.e-methanol-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/technology-page/methodologies/e-methanol/what-is-e-methanol.jpg');
  background-size: cover;
  background-position: 50% 50%; /* Manually position the image to the center */
  background-repeat: no-repeat;
  z-index: -1; /* Ensure it stays behind the text */
}

/* Halo */
.halo-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  flex-direction: column;
  top: 6vw;
  left: 0;
}

.halo {
  width: 20vw; /* Full width of halo container */
  height: 20vw; /* Full height of halo container */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #fff;
  opacity: 0;
  animation: haloUp 1.5s 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.halo::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  box-shadow: 0 0 29px 14px rgba(255, 255, 255, 0.35), inset 0 0 29px 14px rgba(255, 255, 255, 0.35);
  mix-blend-mode: screen;
}

@keyframes haloUp {
  from {
      opacity: 0;
      transform: scale(0.5); /* Start from a smaller size */
  }
  to {
      opacity: 1;
      transform: scale(1); /* Scale up to full size */
  }
}

.halo-text {
  position: relative;
  z-index: 1; /* Ensure text is above the halo */
  text-align: center;
  color: #ffffff; /* Text color */
  padding: 4vw; /* Add padding around text */
  font-size: calc((2.45 - 1)* 1.2vw + 1rem);
}

.halo-dryice-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 4vw;
  font-size: calc((2.45 - 1) * 1.2vw + 1rem);
  overflow: hidden; /* Ensures text is clipped properly */
  white-space: nowrap; /* Prevent text wrapping */
  display: inline-block;
}

.halo-custom-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  font-size: calc((2.45 - 1) * 1.2vw + 1rem);
  overflow: hidden; /* Ensures text is clipped properly */
  white-space: nowrap; /* Prevent text wrapping */
  display: inline-block;
}

.gap {
  display: inline-block;
  width: 5ch;
  vertical-align: middle;
}

.gap-aquaculture {
  display: inline-block;
  width: 8.5ch;
  vertical-align: middle;
}

.dryice-underline {
  display: inline-block;
  position: relative;
  vertical-align: middle; 
}

.dryice-underline span {
  color: #3BC049;
  white-space: nowrap;
  border-right: 15px solid white;
  overflow: hidden;
  width: 0; 
  display: inline-block;
  vertical-align: middle; 
  position: relative;
  padding-bottom: 5px; 
  animation: cursor-blink 0.5s step-end infinite, typing 1s steps(10) 0.5s forwards, cursor-fade 0s 2s forwards;
}

.dryice-underline span::after {
  content: '';
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 100%;
  height: 5px; 
  background-color: #3BC049;
  border-radius: 5px; 
  z-index: -1;
  display: block; 
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes cursor-blink {
  50% { border-color: transparent; }
}

@keyframes cursor-fade {
  to { border-color: transparent; }
}

.no-top-image {
  top: 15vw;
}

.dryice-no-top-image {
  top: 2vw;
}


/* Arrow Button */
.arrow-button {
  display: inline-block;
  position: absolute;
  bottom: 5rem; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff; /* Arrow color */
  text-decoration: none;
  cursor: pointer;
  animation: jump 1s infinite;
  z-index: 2;
}

/* Remove grey color on click or focus */
.arrow-button:focus,
.arrow-button:active {
  color: #ffffff; /* Ensure the color remains as intended */
  background-color: transparent; /* Ensure no background color is applied */
}

.arrow-button:hover {
  color: #3BC049; /* Change color on hover */
}

/* Arrow Icon */
.arrow {
  width: 10rem; /* Adjust the width as needed */
  height: 10rem; /* Adjust the height as needed */
}

/* Halo End */

.contact-us-capso-p {
  margin-bottom: 5rem;
  color: #4d5057;
}

.get-a-quote-style {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
}

.overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 9999;
}

/* Center the embedded modal within the overlay */
.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
}

iframe {
  width: 100%;
  height: 100%;
}

.exit-button-modal {
  width: 50px !important;
  position: absolute;
  right: 0;
  background: rgba(0, 0, 0, 0) !important;
  height: 50px;
  padding: 0 !important;
  min-width: 0 !important;
}

.capso-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.capso-overlay-darker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.ccus-slider {
  background-color: #F7F5FA;
}

.ccus-bg-section-img {
  width: 100%;
  padding: 30px;
}

.dry-ice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: calc(1rem + 0.312vw);
  text-align: left;
}
.dry-ice-th, .dry-ice-td {
  padding: 12px !important;
  font-size: calc(1rem + 0.312vw);
  border: 1px solid #ddd;
}
.dry-ice-th {
  background-color: #F7F5FA;
}
.dry-ice-highlight {
  background-color: #F7F5FA;
}
.dry-ice-center {
  text-align: center;
}

.capso-process-img {
  padding: 0 7.14vw ;
}

.ccs-contact-us-image {
  align-items: center;
  justify-content: center;
  display: flex;
}

.ccs-contact-us-text-container {
  text-align: left;
  padding: 0 7.14vw 0 7.14vw;
}

.ccs-get-a-quote {
  align-items: flex-end;
}
.ccs-section-title-header {
  color: var(--color-section-splitter);
  font-size: calc((1.2 - 1)* 1.2vw + 1rem);
  font-weight: 700;
  text-align: right;
}

.ccs-get-a-quote-style {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-end;
}

#map {
  height: 100vh;
  width: 100%;
}
.allow-scroll {
  overflow: auto; /* Allow page scrolling */
}

.privacy-titles {
  color: #4d5057;
}

.capsore_middle_title {
  text-align: center;
}

.capsore_middle_p {
  text-align: center;
}
.capsore_subtitle {
  text-align: center;
  font-size: var(--font-size-b2);
}
.capsore_subtitle-left {
  text-align: left;
  font-size: var(--font-size-b2);
  margin-bottom: 10px;
}
.capsore_subtitle-white {
  text-align: center;
  color: #fff;
  font-size: var(--font-size-b2);
}
.capsore_p_container {
  align-items: center;
}

.white-capsore_middle_title {
  text-align: center;
 color: #fff;
}

.white-capsore_middle_p {
  text-align: center;
   color: #fff;
}
.white-capsore_p_container {
  align-items: center;
}

.capsore_image {
  width: 100%;
}


.sustainability-content-wrapper {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .sustainability-content-wrapper {
    flex-direction: column-reverse;
  }
}

.capsore-title {
  text-align: center;
}
.capsore-product-card-title {
  padding-top: 20px;
}
.capsore-product-center-card-container {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 20px;
}

.capsore-product-center-text-container {
  width: 200px;
}

.capsore-product-img {
  padding-top: 20px;
}

.capsore-product-center-card-title {
  font-size: 22px;
  font-weight: 700;
  background-color: var(--color-green);
  color: #fff;
  border-radius: 20px;
}

.capsore-product-center-card {
  border: 3px solid var(--color-green); 
  border-radius: 20px;
  position: relative;
  bottom: 32px;
}

.capsore-quote {
  text-align: center;
  width: 40%;
}

.capsore-quote-quote {
  font-size: 20px;
}

.capsore-quote-sm {
  font-size: 12px;
}
.capsore-recovery-title {
  text-align: center;
}

.table-contents {
  display: flex;
  flex-direction: column;
}

.table-contents th {
  font-size: calc((1.26 - 1)* 1.2vw + 1.7rem);
}

.table-contents td {
  font-size: var(--font-size-b2);
}

.product-card-title {
  padding-top: 4rem;
}

/* FAQ Section Styling */


.faq-title {
  text-align: center;
  padding-bottom: 4rem;
}

.faq-container {
    width: 60%;
    margin: 20px auto;
}

.faq-top-border {
  border-bottom: 1px solid #ccc;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;  /* Ensure vertical centering */
    cursor: pointer;
    padding: 10px;
    background-color: #f1f1f1;
    transition: background-color 0.3s;
}

.faq-text {
  font-size: calc((1.26 - 1)* 1.2vw + 1.7rem);
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-icon {
  font-size: 30px;  /* Large font size for icon */
  line-height: 1;   /* Ensure icon doesn't stretch container */
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 10px 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);  /* Rotate the + icon into an X */
  opacity: 0.5;
}

.mailtobutton {
  color: #3BC049;
}

.mailtobutton:hover {
  color: blue;
}

.bg-altcolor {
  background-color: #fff;
}

/* Product Cards */

.product-cards-container {
  display: flex;
  justify-content: center;
}

.product-cards {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-card {
  flex: 0 0 40%;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  margin: 20px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.product-card img {
  height: auto;
  width: 300px;
  margin-bottom: 0.5rem;
  padding: 20px 20px;
}

.product-card-full-size {
  flex: 0 0 40%;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.product-card-full-size-carbon {
  flex: 0 0 40%;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.product-card-full-size-carbon img {
  height: auto;
  width: 400px;
  margin-bottom: 0.5rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.product-card-full-size img {
  height: auto;
  width: 400px;
  margin-bottom: 0.5rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.carbon-capture-product-text-container {
  padding: 20px;
}

.product-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  flex-direction: column;
}

.product-link .link-text {
  margin: 0;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}

.product-link .link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.product-link:hover .link-text::after {
  opacity: 1;
}

.product-card h5 {
  font-size: 24px;
}

.product-card p {
  color: #666;
  margin: 0.5rem 0;
}

@media only screen and (max-width: 1600px) {
  .product-card {
      margin: 10px;
  }
  .product-cards {
      width: 70%;
  }
  .full-sized-product-cards {
      width: 60%;
  }
}
@media only screen and (max-width: 1200px) {
  .product-cards {
      width: 90%;
  }
  .full-sized-product-cards {
    width: 80%;
}
}
@media (max-width: 992px) {
  .product-cards {
      width: 100%;
      margin-bottom: 1rem;
  }

}
@media (max-width: 768px) {
  .product-card {
      flex: 0 0 70%;
      margin-bottom: 1rem;
  }
  .product-cards-container {
      flex-wrap: wrap;
      justify-content: space-around;
  }
  .product-card-carbon-capture {
    flex: 0 0 70%;
      margin-bottom: 1rem;
  }
  .product-card-full-size {
     flex: 0 0 70%;
  }
  .full-sized-product-cards {
    display: flex;
    flex-direction: column;
    width: 80%;
    width: 400px;
}
.full-sized-product-cards img {
    width: 100%
}

.faq-container {
  width: 90%;
}
}


.clients-logos {
  display: grid !important;
  width: 80%;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 1800px) {
  .clients-logos  img {
    width: 80%;
  }
}

@media (max-width: 1600px) {
  .clients-logos {
    width: 90%;
  }
}

@media (max-width: 1200px) {
  .clients-logos {
    width: 90%;;
  }
  .clients-logos img {
      width: 80%;
  }
}

@media (max-width: 768px) {
  .clients-logos {
    width: 100%;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(6, 1fr);
  }
  .clients-logos img {
      width: 80%;
  }

  .e-methanol-hero-grid-container {
    padding-top: 0px !important;
  }
}

.clients-logos img {
  max-width: 150px;
  object-fit: contain;
  transition: filter 0.3s;
}

.section-starter .content-wrapper-capso {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.justify-content-center {
  justify-content: center !important;
  display: flex;
}

.section-starter .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dry-ice-title-container {
  width: 800px;
}
.home-title-container {
  width: 700px;
}

.capsore-bullet-container {
  padding: 4rem 4rem;
}

@media screen and (max-width: 1200px) {
  .capsore-bullet-container {
    padding: 1rem 4rem;
  }
}

@media screen and (max-width: 768px) {
  .capsore-bullet-container {
    padding: 1rem 4rem;
  }
}

#counter-section .content-wrapper-capso{
  padding-top: 3.5vw;
  padding-bottom: 3.5vw;
}

.counter-infinite {
  font-size: 80px !important;
}

.capsore-overview-title {
  margin: 0;
  font-size: var(--font-size-b2);
}

/* Blog Cards calc((1.26 - 1)* 1.2vw + 1.7rem); */

.blog-post {
  margin-bottom: 2rem;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.blog-post h2 {
  font-size: 1.5rem;
  text-align: center;
}

.blog-post a {
  text-decoration: none;
  color: #007bff;
}

.blog-post .read-more {
  display: block;
  margin-top: 1rem;
  color: #007bff;
}

.blog-post-container {
  display: flex;
  flex-direction: column; /* Ensure vertical layout */
  align-items: center; /* Center content horizontally */
  max-width: 100%; /* Ensure responsiveness */
}

.blog-post-content {
  width: 100%; /* Take full width of container */
  max-width: 800px; /* Limit maximum width */
  margin: 0 auto; /* Center content */
  text-align: center; /* Center text */
}

.blog-post-content h2 {
  text-align: center;
}

.blog-post-content img {
  width: 100%; /* Make images take full width of container */
  max-width: 100%; /* Ensure images do not exceed container width */
  height: auto; /* Maintain aspect ratio */
}

.blog-post-content img:first-child {
  margin: 50px 0;
}

.blog-rich-text img {
  margin: 50px 0;
}

.blog-rich-text p, 
.blog-rich-text ol,
.blog-rich-text ul {
  text-align: left;
}

.blog-rich-text h3 {
  margin-bottom: 25px;
}


.blog-section-title {
  text-align: center;
  margin: 0 0 50px 0;
}

.blog-button {
  margin-top: 50px;
}


/* Grid container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

/* Remove padding and margins from the Slick slider container and slides */
.slick-list,
.slick-track,
.slick-slide {
  padding: 0;
}

.slick-slide {
  justify-content: center;
  display: flex !important;
  margin: 0 20px;
}

.slick-slider {
  display: flex !important;
  justify-content: center;

}

.blog-slider-container {
  width: 100%;
}


/* Ensure the link covers the entire blog card */
.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card {
  width: 350px !important;
  height: 420px;
  background-color: #fff; 
  border: 1px solid #ddd; 
  border-radius: 20px; 
  overflow: hidden; 
}


.blog-card img {
  width: 100%;
}

.blog-card .text-content {
  padding: 1rem;
  flex: 1;
}

.text-content p {
  font-size: 16px;
}

.blog-card h5 {
  margin: 0;
  font-size: 22px;
  padding: 20px;
}

.blog-card p {
  padding: 0 20px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

/* Blog Page Blog Cards */

/* Parent container for positioning the filter container */
.blog-filtering-container {
  display: flex; /* Use flexbox to align child elements */
  justify-content: flex-end; /* Align children to the end of the container (right side) */
  padding: 20px; /* Adjust padding as needed */
  position: relative; /* Ensure that the filter dropdown is positioned relative to this container */
}

/* Container for the filter dropdown */
#filter-container {
  width: 250px; /* Adjust width as needed */
  background-color: #ffffff; /* Optional background color */
  border: 1px solid #ddd; /* Optional border for visibility */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
  position: relative; /* Position relative to make sure the dropdown is positioned correctly */
}

/* Button to toggle the dropdown */
#toggle-filter {
  width: 100%;
  padding: 12px;
  background-color: var(--color-green);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}

/* Dropdown container for filter buttons */
#filter-buttons {
  background-color: #ffffff; /* White background for the dropdown */
  border: 1px solid #ddd; /* Light border for the dropdown */
  border-radius: 5px;
  max-height: 0;
  overflow-y: hidden;
  transition: max-height 0.3s ease;
  width: 100%; /* Takes up the full width of the #filter-container */
  position: absolute; /* Position absolutely to overlay content */
  top: 100%; /* Position directly below the #filter-container */
  left: 0;
  z-index: 10;
}

/* Show the dropdown when active */
#filter-buttons.active {
  max-height: 400px; /* Adjust based on the content */
}

/* Individual filter buttons */
.filter-button {
  display: block;
  padding: 10px 15px;
  background-color: #f8f9fa; /* Light background for buttons */
  color: #333; /* Dark text for readability */
  border: none;
  border-bottom: 1px solid #ddd; /* Border between buttons */
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

/* Last button should not have a bottom border */
.filter-button:last-child {
  border-bottom: none;
}

/* Hover effect for filter buttons */
.filter-button:hover {
  background-color: #e9ecef; /* Slightly darker background on hover */
  color: #007bff; /* Change text color on hover */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.page-blog-card {
  position: relative;
  top: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  width: 100%;
  height: 350px;
  margin: 0;
}

.page-blog-card:hover {
  transform: translateY(-5px);
}

.page-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-blog-card .text-content {
  padding: 1rem;
  flex: 1;
}

.page-blog-card h5 {
  margin: 0;
  font-size: 22px;
}

.page-blog-card p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}

.underline {
  text-decoration: underline;
}

/*Footer Section */

.footer-container {
  background-color: #4d5057;
  font-family: Arial, sans-serif;
}

.footer-content-wrapper {
  padding: 2.75vw 7.14vw;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section img {
  width: 175px;
}

.footer-logo {
  padding-bottom: 20px;
}

.footer-section address {
  color: #fff;
}

.footer-section h4 {
  font-size: 18px;
  margin: 10px 0;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::after {
  opacity: 1;
}

.footer-section address {
  font-style: normal;
  line-height: 1.5;
}

.footer-bottom-wrapper {
  width: 100%;
  background-color: #4d5057; 
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  padding: 20px 7.14vw;
  flex-wrap: wrap; 
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-bottom span {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.inner-footer-link {
  margin-left: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
}

.social-links a:hover {
  color: var(--color-green);
}

.social-links i {
  font-size: 18px;
}

.language-button {
  background-color: #4d5057;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.language-button:hover {
  background-color: #fff;
  color: #4d5057;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    width: 100%;
    margin: 10px 0;
  }

  .footer-section img {
    width: 150px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .social-links {
    margin-top: 10px;
  }

  .language-button {
    margin-top: 10px;
  }
}

.learn-more-button {
  width: 150px !important;
}
.btn-container {
  display: flex;
  padding-top: 10px;
  gap: 30px;
}

.logo-slider img {
  max-width: 100px; /* Adjust size as needed */
  margin: 0 10px;
}
.chairman-quote-title {
  text-align: center;
  font-size: 32px !important;
  margin: 0;
}
.chairman-quote-p {
  text-align: right;
  margin-top: 10px;
  position: relative;
  right: 80px;
}

/* Contact Form */

.contact-us-info-container {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
}

.contact-us-info-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.contact-us-info-section a {
  color: var(--color-green);
}

form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-row .form-group:first-child {
  margin-right: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: var(--font-size-b1) !important;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white !important;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #45a049;
}

.nice-select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  appearance: none; /* Removes default browser styling */
  background-color: #fff;
  height: auto;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

.nice-select ul {
  width: 100%;
}



.nice-select .option {
  width: 100%;
}

.anchor-link {
  color: var(--color-green);
  text-decoration: none; 
  position: relative; 
}

.anchor-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 100%;
  height: 2px;
  background-color: var(--color-green);
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.anchor-link:hover::after {
  opacity: 1; 
}

.end-to-end-ccus-list {
  margin: 0;
}

.end-to-end-ccus-list li {
  font-size: var(--font-size-b2);
}

.video-placeholder-container {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: auto;
}

.video-placeholder {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.play-button svg {
  width: 30px;
  height: 30px;
}

/* Timed Popup */
.contact-modal-popup {
  display: none; 
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-green); 
  color: white;
  padding: 15px;
  border-radius: 5px;
  z-index: 1000; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease-in-out; 
}

.contact-modal-popup.show {
  display: block;
  opacity: 1; 
}


.contact-modal-popup.hide {
  opacity: 0;
}

.contact-modal-popup .contact-modal-popup-close {
  color: white;
  float: right;
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.contact-modal-popup .contact-modal-popup-close:hover {
  color: #ddd;
}

.btn-spacer-left {
 margin-left: 10px;
}
.btn-spacer-right {
  margin-right: 10px;
 }


@media (max-width: 768px) { 
.button-container {
  justify-content: center;
}
}

.greyed-out-button {
  color: #AAAFB4;
}

.logo-container {
  display: flex;
  gap: 20px;
  margin-top: 0px;
}
.cement-logo {
  width: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cement-logo:hover {
  transform: scale(1.1);
}

.cement-mineralization-as-seen-on {
  margin-bottom: 0;
  margin-top: 40px;
}

.high-purity-co2-grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1fr; /* Makes "Content" column smaller */
  max-width: 700px; /* Reduce overall width */
  margin: 20px auto auto auto;
}

.grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px; /* Keep padding the same */
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  min-height: 60px; /* Keep the height */
  font-size: 14px;
}

.e-methanol-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px; /* Keep padding the same */
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  min-height: 80px; /* Keep the height */
  font-size: 14px;
}

@media (max-width: 768px) {
.high-purity-co2-grid-container {
    grid-template-columns: repeat(4, 1fr); /* Stack Project and Content */
}
}

@media (max-width: 480px) {
.high-purity-co2-grid-container {
    grid-template-columns: repeat(1, 1fr); /* Single column for small screens */
}
}
@media (max-width:982px) {
  .e-methanol-grid-item {
    font-size: 10px;
  }
}

.list-container-cement-mineralization {
  padding: 0 0 0 15px;
}

#section-documentation {
  padding: 60px 0;
}

.doc-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #1e1e1e;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
  gap: 30px;
}

.doc-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doc-icon {
  width: 100%;
  margin-bottom: 20px;
}

.doc-title-item {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.doc-download-btn {
  padding: 10px 20px;
  background-color: var(--color-green);
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.doc-download-btn:hover {
  background-color: var(--color-body);
  color: var(--color-green);
}

@media (max-width: 640px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
  .doc-item {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .doc-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  }
}

/* Wrapper */
.doc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal box */
.doc-modal-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: doc-fadeIn 0.3s ease-in-out;
}

.doc-modal-header {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
  margin-bottom: 1rem;
}

.doc-modal-header h2 {
  margin: 0;
  font-size: var(--h2);
  flex-grow: 1;
}

.doc-close-button {
  background: none;
  width: 50px;
  border: none;
  font-size: 5rem;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  margin-left: 1rem;
  line-height: 1;
}

.doc-close-button:hover {
  color: #000;
}

.doc-modal-content p {
  padding: 20px;
  margin: 0;
}

/* Form styles */
.doc-modal-content form label {
  display: block;
  margin: 0.75rem 0 0.3rem;
  font-weight: 500;
}

.doc-modal-content form input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.doc-modal-content form button[type="submit"] {
  background-color: var(--color-green);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.doc-modal-content form button[type="submit"]:hover {
  background-color: var(--color-light-body);
  color: var(--color-green);
}

/* Hide by default */
.doc-hidden {
  display: none;
}

.doc-flex-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.doc-flex-field {
  flex: 1;
  min-width: 150px;
}

.doc-agreement {
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.doc-agreement input[type="checkbox"] {
  margin-right: 0.5rem;
  height: 0;
  vertical-align: middle;
}

.doc-agreement a {
  color: var(--body-color);
  text-decoration: underline;
}

.doc-agreement a:hover {
  color: var(--color-green);
}

/* Fade-in animation */
@keyframes doc-fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .doc-modal-header h2 {
    font-size: 3rem;
  }

  .doc-close-button {
    font-size: 3rem;
  }

  .doc-modal-content p {
    padding: 0 20px;
  }

  .doc-modal-header h2 {
    margin-bottom: 10px;
  }
}

.h2-thankyou {
  padding: 0 20px;
}

.doc-spinner {
  margin-top: 20px;
  text-align: center;
}

.doc-spinner div {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.e-methanol-grid-container {
  display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    max-width: 1200px;
    margin: 20px auto auto auto;
}

.e-methanol-hero-grid-container {
  padding-top: 50px;
}

.e-methanol-section-container {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 grid-template-rows: repeat(2, 1fr);
 gap: 10px; /* optional */
}

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


.custom-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 12px;
  border-radius: 8px;
  gap: 20px;
  font-family: sans-serif;
  z-index: 10;
}

.custom-legend label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.custom-legend input[type="checkbox"] {
  opacity: 1;
  width: 18px;
  height: 18px;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 3px;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  appearance: none;
  display: inline-block;
  vertical-align: middle;
}

.custom-legend input[type="checkbox"]:checked {
  background-color: #4caf50;
  border-color: #4caf50;
}

.custom-legend input[type="checkbox"]::after {
  content: '✓';
  color: white;
  font-size: 14px;
  position: absolute;
  top: -2px;
  left: 3px;
  display: none;
}

.custom-legend input[type="checkbox"]:checked::after {
  display: block;
}

.custom-legend .color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.marker {
  position: relative;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  overflow: visible;
}

.marker:hover {
  z-index: 1000;
}

.marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: currentColor;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.marker.pulsing::before {
  animation: pulse 1.5s ease-out infinite;
  opacity: 0.5;
}

.marker.pulse-fade-out::before {
  animation: pulse-fade 0.6s forwards;
}

.marker.carbon::before {
  color: #4CAF50;
}
.marker.dryice::before {
  color: #3FB1CE;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

@keyframes pulse-fade {
  0% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}




.portfolio-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0); 
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.portfolio-overlay.active {
  opacity: 1;
  background: rgba(10, 10, 10, 0.9); 
  pointer-events: auto;
}


.portfolio-overlay-content {
  background: #1e1e1e;
  color: white;
  padding: 24px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 60vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transform-origin: center center;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.portfolio-overlay-content::-webkit-scrollbar {
  width: 6px;
}
.portfolio-overlay-content::-webkit-scrollbar-track {
  background: transparent;
}
.portfolio-overlay-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  border: 2px solid transparent; 
  background-clip: content-box;
}

.portfolio-overlay.show-content .portfolio-overlay-content {
  transform: scale(1);
  opacity: 1;
}

.portfolio-overlay-title,
.portfolio-overlay-paragraph {
  color: white;
}

.portfolio-overlay-close {
  display: flex;
  flex-direction: row-reverse;
  background: transparent;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  padding-bottom: 20px;
}


.zoom-buttons {
  margin: auto;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: space-between; 
  height: 80px;
}

.zoom-btn {
  background-color: var(--color-green);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
}

.portfolio-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.4);
}

.portfolio-map-cluster-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute; 
}

.portfolio-map-cluster-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF7F50;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: scale(0.5);


  animation: portfolioFadeScaleIn 0.4s ease forwards;
  animation-delay: 0.8s;
}

.cluster-dryice {
  background-color: #3FB1CE;
}

.cluster-carbon {
  background-color: #4CAF50;
}

.cluster-achievement {
  background-color: #FFD700;
}

.cluster-both {
  background: linear-gradient(to right, #4CAF50 50%, #FFD700 50%); 
}

.cluster-unknown {
  background-color: #999999;
}

.cluster-carbon::after {
  background-color: rgba(76, 175, 80, 0.4); /* match green */
}

.cluster-dryice::after {
  background-color: rgba(33, 150, 243, 0.4); /* match blue */
}

.cluster-achievement::after {
  background-color: rgba(218, 165, 32, 0.4);
}

.cluster-both::after {
  background: linear-gradient(
    to right, rgba(76, 175, 80, 0.4) 50%, rgba(218, 165, 32, 0.4) 50%
  );
}


.portfolio-map-cluster-inner::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: portfolioPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes portfolioFadeScaleIn {
  from {
      opacity: 0;
      transform: scale(0.5);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes portfolioPulse {
  0% {
      transform: scale(1);
      opacity: 0.7;
  }
  100% {
      transform: scale(2);
      opacity: 0;
  }
}

.marker, .portfolio-map-cluster-wrapper {
  transition: opacity 0.5s ease;
  opacity: 1;
}

#map .marker {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-tooltip {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 9999;
  text-align: center;
}

.map-tooltip.show {
  opacity: 1;
}


#map.fullscreen-mobile {
  height: 100% !important;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #232227; 
  touch-action: pan-x pan-y;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.maplibregl-canvas {
  background-color: #232227 !important;
}

body.noscroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.maplibregl-ctrl-attrib {
  font-size: 10px !important;      
  opacity: 0.6 !important;         
  bottom: 5px !important;      
  right: 5px !important;         
  background: rgba(255, 255, 255, 0.2) !important;
  color:#232227 !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
}

.custom-company-image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-company-image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.custom-company-image-slider img.custom-company-active {
  opacity: 1;
}

.custom-company-image-slider img:first-child {
  position: relative;
}

.partners-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
  padding: 30px;
}

.partners-slider img {
  height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px; 
  height: 100%;
  z-index: 5;
  pointer-events: none; 
}

.partners-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0));
}

.partners-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0));
}
