/*---------------------------
 CSS Index  
****************************

1. variables
2. typography
3. spacing
4. reset
5. forms
6. mixins
7. shortcode
8. common
9. animations
10. text-animation
11. sal animation
12. header
13. side-bar
14. mobile-menu
15. search-show
16. breadcrumb
17. blog
18. blog-list
19. banner
20. contact
21. about
22. calender
23. service
24. gallery
25. shop
26. team
27. course
28. cta
29. event
30. wedding
31. booking
32. footer
33. faq




/* Default  */
@import url("https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&amp;display=swap");
:root {
  --color-primary: #A78448;
  --title-font:"Rufina", serif;
  --body-font:"Roboto", sans-serif;
  --color-body:#707070;
  --dark-color-body:rgba(255, 255, 255, .8);
  --color-title-af-bf: #F9F9F9;
  --color-title: #111;
  --dark-color-heading-1: #ffffff;
  --bg-dark-one: #27272e;
  --bg-dark-two: #212121;
  --bg-dark-three: #0f0f1c;
  --color-white:#fff;
  --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.3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 66px;
  --h2: 40px;
  --h3: 36px;
  --h4: 30px;
  --h5: 26px;
  --h6: 22px;
}

* {
  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;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}
@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;
  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;
}

p,
a {
  font-family: var(--body-font);
  transition: all 0.4s;
}

a:hover {
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: var(--title-font);
  line-height: 1.4074;
  color: var(--color-title);
}

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

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

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

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: 34px;
  }

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

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

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

  h5,
.h5 {
    font-size: 20px;
  }
}
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);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
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: "Manrope", 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;
  color: var(--color-body);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--color-primary);
}
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;
}

.typo-title-area .title {
  margin-top: 0;
}

.paragraph-area p.disc {
  margin-bottom: 20px;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 64px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
}

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

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

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

.m--0 {
  margin: 0;
}

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

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

.rts-section-gapTop {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapTop {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapTop {
    padding-top: 60px;
  }
}

.rts-section-gap2 {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2 {
    padding: 60px 0;
  }
}

.rts-section-gap2Bottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2Bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2Bottom {
    padding-bottom: 60px;
  }
}

.rts-section-gap2Top {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap2Top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap2Top {
    padding-top: 60px;
  }
}

.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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mb_lp--200 {
    margin-bottom: 200px;
  }
}
@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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml_lg--200 {
    margin-left: 200px !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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mb_md--200 {
    margin-bottom: 200px !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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mb_sm--200 {
    margin-bottom: 200px !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;
}
.slick-gutter-5 .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}

.slick-gutter-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.slick-gutter-10 .slick-slide {
  padding-left: 10px;
  padding-right: 10px;
}

.slick-gutter-15 {
  margin-left: -15px;
  margin-right: -15px;
}
.slick-gutter-15 .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
}

.slick-gutter-20 {
  margin-left: -20px;
  margin-right: -20px;
}
.slick-gutter-20 .slick-slide {
  padding-left: 20px;
  padding-right: 20px;
}

.slick-gutter-25 {
  margin-left: -25px;
  margin-right: -25px;
}
.slick-gutter-25 .slick-slide {
  padding-left: 25px;
  padding-right: 25px;
}

.slick-gutter-30 {
  margin-left: -30px;
  margin-right: -30px;
}
.slick-gutter-30 .slick-slide {
  padding-left: 30px;
  padding-right: 30px;
}

.slick-gutter-35 {
  margin-left: -35px;
  margin-right: -35px;
}
.slick-gutter-35 .slick-slide {
  padding-left: 35px;
  padding-right: 35px;
}

.slick-gutter-40 {
  margin-left: -40px;
  margin-right: -40px;
}
.slick-gutter-40 .slick-slide {
  padding-left: 40px;
  padding-right: 40px;
}

.slick-gutter-45 {
  margin-left: -45px;
  margin-right: -45px;
}
.slick-gutter-45 .slick-slide {
  padding-left: 45px;
  padding-right: 45px;
}

.slick-gutter-50 {
  margin-left: -50px;
  margin-right: -50px;
}
.slick-gutter-50 .slick-slide {
  padding-left: 50px;
  padding-right: 50px;
}

.slick-gutter-55 {
  margin-left: -55px;
  margin-right: -55px;
}
.slick-gutter-55 .slick-slide {
  padding-left: 55px;
  padding-right: 55px;
}

.slick-gutter-60 {
  margin-left: -60px;
  margin-right: -60px;
}
.slick-gutter-60 .slick-slide {
  padding-left: 60px;
  padding-right: 60px;
}

.slick-gutter-65 {
  margin-left: -65px;
  margin-right: -65px;
}
.slick-gutter-65 .slick-slide {
  padding-left: 65px;
  padding-right: 65px;
}

.slick-gutter-70 {
  margin-left: -70px;
  margin-right: -70px;
}
.slick-gutter-70 .slick-slide {
  padding-left: 70px;
  padding-right: 70px;
}

.slick-gutter-75 {
  margin-left: -75px;
  margin-right: -75px;
}
.slick-gutter-75 .slick-slide {
  padding-left: 75px;
  padding-right: 75px;
}

.slick-gutter-80 {
  margin-left: -80px;
  margin-right: -80px;
}
.slick-gutter-80 .slick-slide {
  padding-left: 80px;
  padding-right: 80px;
}

.slick-gutter-85 {
  margin-left: -85px;
  margin-right: -85px;
}
.slick-gutter-85 .slick-slide {
  padding-left: 85px;
  padding-right: 85px;
}

.slick-gutter-90 {
  margin-left: -90px;
  margin-right: -90px;
}
.slick-gutter-90 .slick-slide {
  padding-left: 90px;
  padding-right: 90px;
}

.slick-gutter-95 {
  margin-left: -95px;
  margin-right: -95px;
}
.slick-gutter-95 .slick-slide {
  padding-left: 95px;
  padding-right: 95px;
}

.slick-gutter-100 {
  margin-left: -100px;
  margin-right: -100px;
}
.slick-gutter-100 .slick-slide {
  padding-left: 100px;
  padding-right: 100px;
}

.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;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plr_md--30 {
    padding-left: 30 !important;
    padding-right: 30 !important;
  }
}

@media only screen and (max-width: 400px) {
  .plr--10 {
    padding: 0 10px !important;
  }
}
.padding-contorler-am-slide {
  padding-left: 246px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .padding-contorler-am-slide {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-contorler-am-slide {
    padding-left: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .padding-contorler-am-slide {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-contorler-am-slide {
    padding-left: 15px;
  }
}

.padding-contorler-am-slide-11 {
  padding-left: 246px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .padding-contorler-am-slide-11 {
    padding-left: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-contorler-am-slide-11 {
    padding-left: 0;
  }
}

.padding-contorler-am-slide-right {
  padding-right: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .padding-contorler-am-slide-right {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-contorler-am-slide-right {
    padding-right: 30px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-contorler-am-slide-right {
    padding-right: 30px;
    padding-top: 50px;
  }
}

* {
  -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;
}

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;
}

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: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  background: none;
  border: 1px solid var(--color-white);
  transition: all 0.3s;
}
input[type=checkbox] ~ label::after,
input[type=radio] ~ label::after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 3px;
  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%;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.form-group input {
  border: 0 none;
  border-radius: 4px;
  height: 50px;
  font-size: var(--font-size-b2);
  transition: var(--transition);
  padding: 0 20px;
  background-color: var(--color-lightest);
  border: 1px solid transparent;
  transition: var(--transition);
}
.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}
.form-group textarea {
  min-height: 160px;
  border: 0 none;
  border-radius: 4px;
  resize: none;
  padding: 15px;
  font-size: var(--font-size-b2);
  transition: var(--transition);
  background-color: var(--color-lightest);
  border: 1px solid transparent;
}
.form-group textarea:focus {
  border-color: var(--color-primary);
}

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
=================================*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.fix {
  overflow: hidden;
}

.slick-initialized .slick-slide {
  margin-bottom: -10px;
}

.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 
=============================*/
.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg_image--1 {
  background-image: url(../images/bg/bg-image-1.html);
}

.bg_image--2 {
  background-image: url(../images/bg/bg-image-2.html);
}

.bg_image--3 {
  background-image: url(../images/bg/bg-image-3.html);
}

.bg_image--4 {
  background-image: url(../images/bg/bg-image-4.html);
}

.bg_image--5 {
  background-image: url(../images/bg/bg-image-5.html);
}

.bg_image--6 {
  background-image: url(../images/bg/bg-image-6.html);
}

.bg_image--7 {
  background-image: url(../images/bg/bg-image-7.html);
}

.bg_image--8 {
  background-image: url(../images/bg/bg-image-8.html);
}

.bg_image--9 {
  background-image: url(../images/bg/bg-image-9.html);
}

.bg_image--10 {
  background-image: url(../images/bg/bg-image-10.html);
}

.bg_image--11 {
  background-image: url(../images/bg/bg-image-11.html);
}

.bg_image--12 {
  background-image: url(../images/bg/bg-image-12.html);
}

.bg_image--13 {
  background-image: url(../images/bg/bg-image-13.html);
}

.bg_image--14 {
  background-image: url(../images/bg/bg-image-14.html);
}

.bg_image--15 {
  background-image: url(../images/bg/bg-image-15.html);
}

.bg_image--16 {
  background-image: url(../images/bg/bg-image-16.html);
}

.bg_image--17 {
  background-image: url(../images/bg/bg-image-17.html);
}

.bg_image--18 {
  background-image: url(../images/bg/bg-image-18.html);
}

.bg_image--19 {
  background-image: url(../images/bg/bg-image-19.html);
}

.bg_image--20 {
  background-image: url(../images/bg/bg-image-20.html);
}

.bg_image--21 {
  background-image: url(../images/bg/bg-image-21.html);
}

.bg_image--22 {
  background-image: url(../images/bg/bg-image-22.html);
}

.bg_image--23 {
  background-image: url(../images/bg/bg-image-23.html);
}

.bg_image--24 {
  background-image: url(../images/bg/bg-image-24.html);
}

.bg_image--25 {
  background-image: url(../images/bg/bg-image-25.html);
}

.bg_image--26 {
  background-image: url(../images/bg/bg-image-26.html);
}

.bg_image--27 {
  background-image: url(../images/bg/bg-image-27.html);
}

.bg_image--28 {
  background-image: url(../images/bg/bg-image-28.html);
}

.bg_image--29 {
  background-image: url(../images/bg/bg-image-29.html);
}

.bg_image--30 {
  background-image: url(../images/bg/bg-image-30.html);
}

.bg_image--31 {
  background-image: url(../images/bg/bg-image-31.html);
}

.bg_image--32 {
  background-image: url(../images/bg/bg-image-32.html);
}

.bg_image--33 {
  background-image: url(../images/bg/bg-image-33.html);
}

.bg_image--34 {
  background-image: url(../images/bg/bg-image-34.html);
}

.bg_image--35 {
  background-image: url(../images/bg/bg-image-35.html);
}

.bg_image--36 {
  background-image: url(../images/bg/bg-image-36.html);
}

.bg_image--37 {
  background-image: url(../images/bg/bg-image-37.html);
}

.bg_image--38 {
  background-image: url(../images/bg/bg-image-38.html);
}

.bg_image--39 {
  background-image: url(../images/bg/bg-image-39.html);
}

.bg_image--40 {
  background-image: url(../images/bg/bg-image-40.html);
}

.bg_tr-image--1 {
  background-image: url(../images/bg/bg-image-41.html) !important;
  background-size: cover !important;
}

.bg_tr-image--2 {
  background-image: url(../images/bg/bg-image-42.html) !important;
  background-size: cover !important;
}

.bg_tr-image--3 {
  background-image: url(../images/bg/bg-image-43.html) !important;
  background-size: cover !important;
}

.bg_tr-image--4 {
  background-image: url(../images/bg/bg-image-44.html) !important;
  background-size: cover !important;
}

.bg_tr-image--5 {
  background-image: url(../images/bg/bg-image-45.html) !important;
  background-size: cover !important;
}

.bg_tr-image--6 {
  background-image: url(../images/bg/bg-image-46.html) !important;
  background-size: cover !important;
}

.bg_tr-image--7 {
  background-image: url(../images/bg/bg-image-47.html) !important;
  background-size: cover !important;
}

.bg_tr-image--8 {
  background-image: url(../images/bg/bg-image-48.html) !important;
  background-size: cover !important;
}

.bg_tr-image--9 {
  background-image: url(../images/bg/bg-image-49.html) !important;
  background-size: cover !important;
}

.bg_tr-image--10 {
  background-image: url(../images/bg/bg-image-50.html) !important;
  background-size: cover !important;
}

.bg_tr-image--11 {
  background-image: url(../images/bg/bg-image-51.html) !important;
  background-size: cover !important;
}

.bg_tr-image--12 {
  background-image: url(../images/bg/bg-image-52.html) !important;
  background-size: cover !important;
}

.bg_tr-image--13 {
  background-image: url(../images/bg/bg-image-53.html) !important;
  background-size: cover !important;
}

.bg_tr-image--14 {
  background-image: url(../images/bg/bg-image-54.html) !important;
  background-size: cover !important;
}

.bg_tr-image--15 {
  background-image: url(../images/bg/bg-image-55.html) !important;
  background-size: cover !important;
}

.bg_tr-image--16 {
  background-image: url(../images/bg/bg-image-56.html) !important;
  background-size: cover !important;
}

.bg_tr-image--17 {
  background-image: url(../images/bg/bg-image-57.html) !important;
  background-size: cover !important;
}

.bg_tr-image--18 {
  background-image: url(../images/bg/bg-image-58.html) !important;
  background-size: cover !important;
}

.bg_tr-image--19 {
  background-image: url(../images/bg/bg-image-59.html) !important;
  background-size: cover !important;
}

.bg_tr-image--20 {
  background-image: url(../images/bg/bg-image-60.html) !important;
  background-size: cover !important;
}

/* 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);
}

body {
  scroll-behavior: auto;
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1290px;
}

.title-hover {
  background-size: 200% 1px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--color-title)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--color-title) 50%, transparent 50%);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.title-hover:hover {
  background-position: 0% 100%;
  color: var(--color-title);
}

p {
  font-size: 16px;
  line-height: 26px;
}

a.pe-none {
  font-size: 14px;
  font-weight: 500;
}

.img-transition-scale {
  overflow: hidden;
}
.img-transition-scale:hover a img {
  transform: scale(110%);
}
.img-transition-scale a {
  display: block;
  width: 100%;
}
.img-transition-scale a img {
  transform: scale(100%);
  transition: all 0.4s;
}

.home-three .img-transition-scale {
  overflow: hidden;
  border-radius: 20px;
}
.home-three .img-transition-scale:hover a img {
  transform: scale(110%);
}
.home-three .img-transition-scale a {
  display: block;
  width: 100%;
}
.home-three .img-transition-scale a img {
  transform: scale(100%);
  transition: all 0.4s;
  width: 100%;
}

/*------------------------
    Header Sticky 
--------------------------*/
/* Start Sticky Menu */
.golfy-header-area.header-sticky {
  position: fixed;
  z-index: 99;
  transition: all 0.4s;
  background: var(--color-title);
}

.echo-header-area .echo-header-top.remove-content {
  display: none;
}

/* End Sticky Menu */
.col-lg-20 {
  width: 20%;
  float: left;
}

.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
  padding-top: 15px;
}

@media (min-width: 1200px) {
  .col-lg-20 {
    width: 20%;
    float: left;
  }
}
@media only screen and (max-width: 1199px) {
  .col-lg-20 {
    width: 33%;
    float: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .col-lg-20 {
    width: 50%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .col-lg-20 {
    width: 50%;
    float: left;
  }
}
@media only screen and (max-width: 575px) {
  .col-lg-20 {
    width: 50%;
    float: left;
  }
}
@media only screen and (max-width: 479px) {
  .col-lg-20 {
    width: 100%;
    float: left;
  }
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #5D666F !important;
  opacity: 1 !important;
  /* Firefox */
  font-size: 16px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #5D666F !important;
  font-size: 16px;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #5D666F !important;
  font-size: 16px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.bg-1 {
  background: #e00a0a;
}

.bg-secondary {
  background: #1D2027 !important;
}

.bg-white {
  background: #FFFFFF;
}

.bg-footer-one {
  background-repeat: no-repeat;
  background-size: cover;
  background: #0E1422;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bg-footer-one::after {
  content: "";
  position: absolute;
  background-image: url(../images/footer/h1-shape/01.html);
  height: 450px;
  width: 450px;
  right: -3%;
  background-repeat: no-repeat;
  bottom: -5%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .bg-footer-one::after {
    right: -15%;
  }
}
@media only screen and (max-width: 1199px) {
  .bg-footer-one::after {
    right: -15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-footer-one::after {
    left: 53%;
  }
}
.bg-footer-one::before {
  content: "";
  position: absolute;
  background-image: url(../images/footer/h1-shape/02.html);
  height: 800px;
  width: 823px;
  left: -16%;
  background-position: center;
  bottom: -13%;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .bg-footer-one::before {
    left: -25%;
  }
}
@media only screen and (max-width: 1199px) {
  .bg-footer-one::before {
    left: -25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-footer-one::before {
    left: -48%;
  }
}
.bg-footer-one .bg-shape-f1 {
  position: relative;
  z-index: 1;
}
.bg-footer-one .bg-shape-f1::after {
  position: absolute;
  background-image: url(../images/footer/h1-shape/03.html);
  content: "";
  height: 500px;
  width: 523px;
  left: -25%;
  top: -20%;
  z-index: -1;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .bg-footer-one .bg-shape-f1::after {
    left: -30%;
    top: -32%;
  }
}
@media only screen and (max-width: 1199px) {
  .bg-footer-one .bg-shape-f1::after {
    left: -30%;
    top: -32%;
  }
}

.over_link {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
  left: 0;
  top: 0;
}

.title-area span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #3B38EB;
}
.title-area .title {
  margin-top: 10px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .title-area .title {
    margin-bottom: 15px;
  }
}

.bg-light {
  background: #ecf2f6;
}

.photographer-home.dark-version .header--sticky.sticky {
  background: #2f2d24 !important;
}

.header--sticky {
  transition: 0.3s;
  top: 0;
  z-index: 5;
  position: relative;
}
.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  backdrop-filter: blur(9px);
  width: 100%;
  box-shadow: 0px 7px 18px #1810100d;
  background: #fff !important;
  z-index: 999;
}

.bg_dark {
  background: #1C1C1C;
}

.g-6, .gy-6 {
  --bs-gutter-y: 4rem !important;
}

.g-6, .gx-6 {
  --bs-gutter-x: 4rem !important;
}

.g-24, .gy-24 {
  --bs-gutter-y: 2.4rem !important;
}

.g-24, .gx-24 {
  --bs-gutter-x: 2.4rem !important;
}

.h2-title-area {
  position: relative;
  z-index: 4;
}
.h2-title-area::after {
  position: absolute;
  content: "";
  height: 99%;
  width: 100%;
  top: 4px;
  z-index: -1;
  left: 0;
  background: linear-gradient(180deg, #ffffff00 0%, #ecf0f3 100%);
}
.h2-title-area span.bg-text {
  position: absolute;
  z-index: 1;
  font-weight: 800;
  font-size: 120px;
  z-index: -1;
  left: 0;
  top: 54px;
  color: #fff;
  text-transform: uppercase;
  max-width: max-content;
  width: max-content;
}
.h2-title-area .pre-title {
  display: inline-block;
  padding: 2px 15px;
  border: 1px solid #141414;
  border-radius: 33px;
  color: #141414;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.h2-title-area .title {
  margin-top: 30px;
  font-size: 48px;
}
@media only screen and (max-width: 575px) {
  .h2-title-area .title {
    font-size: 27px;
  }
}

.photographer-home.dark-version .h2-title-area .pre-title {
  border: 1px solid #d3d3d3;
  border-radius: 33px;
  color: #d3d3d3;
}

.h2-title-area.text-center {
  position: relative;
  z-index: 4;
}
.h2-title-area.text-center::after {
  position: absolute;
  content: "";
  height: 71%;
  width: 100%;
  top: 0;
  z-index: -1;
  left: 0;
  background: linear-gradient(180deg, #ffffff00 0%, #ecf0f3 100%);
}
.h2-title-area.text-center span.bg-text {
  position: absolute;
  z-index: 1;
  font-weight: 800;
  font-size: 120px;
  z-index: -1;
  left: 50%;
  top: 15px;
  color: #fff;
  text-transform: uppercase;
  transform: translateX(-50%);
  max-width: max-content;
  width: max-content;
}
@media only screen and (max-width: 767px) {
  .h2-title-area.text-center span.bg-text {
    font-size: 62px;
  }
}
.h2-title-area.text-center .pre-title {
  display: inline-block;
  padding: 2px 15px;
  border: 1px solid #141414;
  border-radius: 33px;
  color: #141414;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
.h2-title-area.text-center .title {
  margin-top: 30px;
  font-size: 48px;
}
@media only screen and (max-width: 767px) {
  .h2-title-area.text-center .title {
    font-size: 27px;
  }
}

.title-area-h3 .pre-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #74787C;
}
.title-area-h3 .title {
  font-weight: 600;
  font-size: 60px;
  line-height: 82px;
  color: #141414;
}
@media only screen and (max-width: 479px) {
  .title-area-h3 .title {
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-h3 .title {
    font-size: 36px;
  }
}
.title-area-h3 .title span {
  color: #FF390E;
}

.title-area-home-4 .pre-title {
  background: linear-gradient(130.08deg, #FFFFFF 0%, #ECF0F3 100%);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 40px #D3DAE1;
  border-radius: 100px;
  padding: 3px 24px;
  text-transform: uppercase;
  color: #141414;
  font-weight: 700;
}
.title-area-home-4 .title {
  font-weight: 800;
  font-size: 48px;
  line-height: 66px;
  color: #141414;
  margin-top: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-area-home-4 .title {
    font-size: 39px;
    line-height: 61px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-area-home-4 .title {
    font-size: 30px;
    line-height: 39px;
  }
}
@media only screen and (max-width: 767px) {
  .title-area-home-4 .title {
    font-size: 26px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 479px) {
  .title-area-home-4 .title {
    font-size: 20px;
    line-height: 33px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-contact-area.four {
    background: transparent;
  }
}
@media only screen and (max-width: 767px) {
  .rts-contact-area.four {
    background: transparent;
  }
}

.echo-breadcrumb-area {
  background-image: url("../images/breadcrumb/breadcrumb.html");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0;
}
.echo-breadcrumb-area .breadcrumb-inner .meta .next {
  text-transform: uppercase;
}
.echo-breadcrumb-area .breadcrumb-inner .title {
  margin-bottom: 0;
  font-size: 56px;
  line-height: 76px;
}

.echo-breadcrumb-area-2 {
  background-image: url("../images/breadcrumb/breadcrumb.html");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 65px 0;
}
.echo-breadcrumb-area-2 .echo-author-content {
  display: flex;
  gap: 30px;
}
.echo-breadcrumb-area-2 .echo-author-content h5 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 35px;
}
.echo-breadcrumb-area-2 .echo-author-content p {
  margin-bottom: 15px;
}
.echo-breadcrumb-area-2 .echo-author-content .echo-footer-social-media a:first-child {
  margin-left: -5px;
}
.echo-breadcrumb-area-2 .echo-author-content .echo-footer-social-media a {
  font-size: 16px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  border: 1px solid #5E5E5E;
  text-align: center;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
  transform: scale(0.9);
  position: relative;
}
.echo-breadcrumb-area-2 .echo-author-content .echo-footer-social-media a i {
  color: #5E5E5E;
}
.echo-breadcrumb-area-2 .echo-author-content .echo-footer-social-media a:hover {
  background-color: var(--color-primary);
  border: 1px solid transparent;
}
.echo-breadcrumb-area-2 .echo-author-content .echo-footer-social-media a:hover i {
  color: #fff;
}

/* Category 3 Style blog Shep */
.echo-ct-style-3-shep {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translate(-50%);
}
.echo-ct-style-3-shep p {
  font-size: 14px;
  line-height: 22px;
  background-color: #000;
  color: #fff;
  padding: 8px 18px;
  text-align: center;
  text-transform: uppercase;
}

.rts-dark-light {
  transition: all 0.4s;
  cursor: pointer;
  font-size: 20px;
}
.rts-dark-light i {
  transition: all 0.4s;
}

[data-theme=light] .rts-dark-light i.fa-sun {
  display: none;
}
[data-theme=light] .rts-dark-light i.fa-moon {
  display: block;
}

[data-theme=dark] .rts-dark-light i.fa-sun {
  display: block;
}
[data-theme=dark] .rts-dark-light i.fa-moon {
  display: none;
}

.search-input-area {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 200px 0;
  background: #fff;
  -webkit-box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 1100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-input-area.show {
  visibility: visible;
  -webkit-transform: inherit;
  transform: inherit;
  opacity: 1;
}
.search-input-area .search-input-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  justify-content: center;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.search-input-area .search-input-inner .input-div {
  width: 80%;
  position: relative;
}
.search-input-area .search-input-inner input {
  background: none;
  border: 1px solid rgba(94, 94, 94, 0.1);
  padding: 20px;
  padding-left: 40px;
  border-radius: 0;
  width: 100%;
  font-size: 15px;
  position: relative;
}
.search-input-area .search-input-inner input:focus {
  border: 1px solid var(--color-primary);
}
.search-input-area .search-input-inner .search-close-icon {
  width: 6%;
}
.search-input-area .search-input-inner .search-close-icon i {
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
  background: var(--color-primary);
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.home-one .rts-darkmode {
  position: relative;
}

.home-two .rts-darkmode {
  position: relative;
}

.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons {
  text-align: right;
  display: flex;
  justify-content: end;
  align-items: center;
}
.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode {
  position: relative;
  margin-left: 40px;
}
@media (max-width: 1200px) {
  .home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode {
    margin-left: 0;
    margin-right: 40px;
  }
}
@media (max-width: 400px) {
  .home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode {
    margin-left: 0;
    margin-right: 30px;
  }
}
.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  left: -20px;
  background-color: #fff;
}
@media (max-width: 991px) {
  .home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode::before {
    display: none;
  }
}
.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode i {
  color: #FFFFFF;
}
.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .echo-header-top-menu-bar {
  position: relative;
}
.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .echo-header-top-menu-bar::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  left: -20px;
  background-color: #fff;
}
@media (max-width: 400px) {
  .home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .echo-header-top-menu-bar::before {
    left: -15px;
  }
}
.home-three .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .echo-header-top-menu-bar svg path {
  fill: #FFFFFF;
}
.home-three .echo-header-area.header-sticky .echo-home-1-menu .echo-header-top-menu-bar {
  display: none;
}

.home-four .rts-darkmode {
  position: relative;
}
.home-four .rts-darkmode i {
  color: #FFFFFF;
}

.innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons {
  text-align: right;
  display: flex;
  justify-content: end;
  align-items: center;
}
.innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons ul {
  margin-right: 0;
}
.innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode {
  position: relative;
}
.innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  left: -20px;
  background-color: #181823;
}
.innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode i {
  color: #181823;
}
.innerpage .echo-header-top {
  padding: 10px 0;
  background: #181823;
}
.innerpage .echo-header-top .echo-meta-jobs-text span {
  color: #FFFFFF;
}
.innerpage .echo-header-top .echo-day-name,
.innerpage .echo-header-top .echo-date-time {
  color: #FFFFFF;
}
.innerpage .echo-header-top .echo-subscribe {
  position: relative;
}
.innerpage .echo-header-top .echo-subscribe a {
  padding: 5px 0;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.innerpage .echo-header-top .echo-subscribe a:hover {
  background: none;
  border-width: 0 0 1px 0 !important;
  border-color: #FFFFFF !important;
}
.innerpage .echo-header-top .echo-subscribe a i {
  margin-right: 5px;
}
.innerpage .echo-header-top .rts-dark-light i {
  color: #FFFFFF;
}
.innerpage .echo-header-top .echo-header-top-search-btn::after {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.innerpage .echo-header-top .echo-header-top-menu-bar svg path {
  fill: #FFFFFF;
}

html[data-theme=dark] .innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode::before {
  background-color: #FFFFFF;
}
html[data-theme=dark] .innerpage .echo-site-main-logo-menu-social .echo-home-1-social-media-icons .rts-darkmode i {
  color: #FFFFFF;
}

html[data-theme=light] .logo-dark {
  display: none;
}
html[data-theme=light] .logo-light {
  display: block;
}

html[data-theme=dark] .logo-dark {
  display: block;
}
html[data-theme=dark] .logo-light {
  display: none;
}

.echo-header-top-menu-bar svg {
  position: relative;
  margin-top: -4px;
}

.home-four .side-bar button {
  background: #FF4962;
}
.home-four .side-bar .inner-main-wrapper-desk .inner-content .newsletter-form .form-inner form button.subscribe-btn {
  background: #FF4962;
}
.home-four .side-bar .inner-main-wrapper-desk .inner-content .category-menu-area .category-area .item .content .recent-post-title:hover a {
  color: #FF4962;
}

.home-five .side-bar button {
  background: #D5225B;
}
.home-five .side-bar .inner-main-wrapper-desk .inner-content .newsletter-form .form-inner form button.subscribe-btn {
  background: #D5225B;
}
.home-five .side-bar .inner-main-wrapper-desk .inner-content .category-menu-area .category-area .item .content .recent-post-title:hover a {
  color: #D5225B;
}

input {
  transition: 0.3s;
}
input:focus {
  border: 1px solid var(--color-primary) !important;
}

textarea {
  transition: 0.3s;
}
textarea:focus {
  border: 1px solid var(--color-primary) !important;
}

.rt-treding-slider10 {
  height: 67px;
  line-height: 67px;
}

.img-transition-scales {
  overflow: hidden;
}
.img-transition-scales .img-hovers {
  transform: scale(100%);
  transition: 0.3s ease-in-out;
}
.img-transition-scales:hover .img-hovers {
  transform: scale(104%);
}

#form-messages.success {
  color: var(--color-primary);
}

.hm5-btn-1 {
  background-color: #D5225B;
  color: var(--color-white);
  font-family: var(--home-5-body-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  position: relative;
  padding: 25px 55px 23px 35px;
  border-radius: 15px;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .hm5-btn-1 {
    font-size: 16px;
    padding: 20px 50px 18px 30px;
  }
}
.hm5-btn-1:hover {
  background: #FFFFFF;
  color: #181823;
}
.hm5-btn-1:hover .arrow-1 {
  opacity: 0;
  transform: translate(10px, -50%);
}
.hm5-btn-1:hover .arrow-2 {
  opacity: 1;
  transform: translate(0, -50%);
}
.hm5-btn-1 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  transition: all 0.4s;
}
.hm5-btn-1 img.arrow-2 {
  opacity: 0;
  transform: translate(-10px, -50%);
}

.hm5-btn-2 {
  background-color: transparent;
  color: #999;
  font-family: var(--home-5-body-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.4s;
  padding: 18px 50px 16px 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #999999;
}
.hm5-btn-2:hover {
  background: #D5225B;
  border: 1px solid #D5225B;
  color: #FFFFFF;
}
.hm5-btn-2:hover .arrow-1 {
  opacity: 0;
  transform: translate(10px, -50%);
}
.hm5-btn-2:hover .arrow-2 {
  opacity: 1;
  transform: translate(0, -50%);
}
.hm5-btn-2 img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all 0.4s;
}
.hm5-btn-2 img.arrow-2 {
  opacity: 0;
  transform: translate(-10px, -50%);
}

.hm-5-title-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hm-5-title-btn .hm-5-main-title {
  width: 85%;
}
@media (max-width: 1460px) {
  .hm-5-title-btn .hm-5-main-title {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .hm-5-title-btn .hm-5-main-title {
    width: auto;
  }
}
.hm-5-title-btn .hm-5-main-title h2 {
  color: var(--color-white);
  font-family: var(--home-5-title-font);
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 991px) {
  .hm-5-title-btn .hm-5-main-title h2 {
    font-size: 56px;
    line-height: 1.1;
  }
}
@media (max-width: 768px) {
  .hm-5-title-btn .hm-5-main-title h2 {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .hm-5-title-btn .hm-5-main-title h2 {
    font-size: 42px;
  }
}
.hm-5-title-btn .hm-5-main-title h2::after {
  position: absolute;
  content: "";
  left: 35%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 1px;
  background-color: #999999;
}
@media (max-width: 1460px) {
  .hm-5-title-btn .hm-5-main-title h2::after {
    width: 55%;
    left: 50%;
  }
}
@media (max-width: 1200px) {
  .hm-5-title-btn .hm-5-main-title h2::after {
    display: none;
  }
}

.hm-5-container {
  max-width: 1706px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .hm-5-container {
    padding: 0 15px;
  }
}

.hm-6-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .hm-6-container {
    padding: 0 15px;
  }
}

.hm-7-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .hm-7-container {
    padding: 0 15px;
  }
}

.hm-9-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 15px;
}
.hm-5-meta-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-5-meta-box .hm-5-meta-btn span {
  background-color: #D5225B;
  padding: 7px 20px 5px 20px;
  text-align: center;
  color: var(--color-white);
  text-align: center;
  font-family: var(--home-5-title-font);
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  text-transform: uppercase;
}
.hm-5-meta-box .hm-5-meta-date span {
  color: #999;
  font-family: var(--home-5-title-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.hm7-btn-1 {
  color: #FE5301;
  font-family: "Inter", sans-serif;
  border: 1px solid #FE5301;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
  position: relative;
  display: block;
  padding: 15px 55px 13px 35px;
  border-radius: 0;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .hm7-btn-1 {
    font-size: 16px;
    padding: 20px 50px 18px 30px;
  }
}
.hm7-btn-1 i {
  color: #FE5301;
}
.hm7-btn-1:hover {
  color: #FE5301;
}
.hm7-btn-1:hover .arrow-1 {
  opacity: 0;
  transform: translate(10px, -50%);
}
.hm7-btn-1:hover .arrow-2 {
  opacity: 1;
  transform: translate(0, -50%);
}
.hm7-btn-1 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  transition: all 0.4s;
}
.hm7-btn-1 i.arrow-2 {
  opacity: 0;
  transform: translate(-10px, -50%);
}

.ui-state-default {
  text-decoration: none !important;
}

.calendar {
  padding: 8px;
  background: #ffffff;
  border-radius: 4px;
  font-size: 18px;
  border: 1px solid #333333;
  box-shadow: 0px 20px 40px rgba(59, 60, 56, 0.05);
}

.ui-datepicker {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0px 6px 41px -13px rgba(191, 138, 0, 0.75);
  -webkit-box-shadow: 0px 6px 41px -13px rgba(191, 138, 0, 0.75);
  -moz-box-shadow: 0px 6px 41px -13px rgba(191, 138, 0, 0.75);
}

.ui-datepicker-header {
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background: var(--color-primary);
  margin-bottom: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}

.ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}

.ui-datepicker-prev:after {
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}

.ui-datepicker-next {
  float: right;
  margin-right: 12px;
}

.ui-datepicker-next:after {
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
  border-color: #333333;
}

.ui-datepicker-title {
  text-align: center;
  font-size: 20px;
}

.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}

.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 40px;
  color: var(--color-primary);
  margin-bottom: 5px;
  font-size: 15px;
}

.ui-state-default {
  display: block;
  text-decoration: none;
  color: #333333;
  line-height: 40px;
  font-size: 16px;
  line-height: 27px;
  padding: 0 5px;
}

.ui-state-default:hover {
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 0;
  transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
  text-decoration: none;
}

.ui-state-highlight {
  color: #ffffff;
  background-color: var(--color-primary);
  border-radius: 0;
}

.ui-state-active {
  color: #ffffff;
  background-color: var(--color-primary);
  border-radius: 0;
}

.ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}

.icon-2 {
  margin-left: -30px;
  margin-top: -26px;
  position: relative;
  color: var(--color-primary);
  font-size: 20px;
}

.sub-title {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.sub-title img {
  margin-right: 10px;
}

.heading-title {
  color: var(--color-title);
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 50px;
}
@media only screen and (max-width: 575px) {
  .heading-title {
    font-size: 26px;
    line-height: 34px;
  }
}
.heading-title a {
  font-family: var(--title-font);
  background-size: 200% 2px;
}

.video-play-button {
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-play-button span.outer-text {
  border: none;
  font-family: "Bona Nova";
  font-size: 20px;
  min-width: max-content;
  margin-left: 75px;
  position: relative;
  margin-top: -12px;
  color: #FFFFFF;
  font-weight: 500;
}
.video-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 200ms;
  border: 0.5px solid #ffffff;
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
  display: none;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: block;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 14px solid var(--color-white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 47%;
}

.video-overlay iframe {
  width: 70%;
  height: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}

.rts-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 18px 53px;
  transition: all 0.3s;
  display: block;
  max-width: max-content;
  line-height: 1;
  height: 50px;
}
.rts-btn:hover {
  background: #a78448e0;
  color: var(--color-white);
}

.section-bg2 {
  background: #F6F6F6;
}

.cart-bar {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  width: 360px;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 100;
}

.cart-bar.show {
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.cart-bar .cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E7E7E7;
}

.cart-bar .cart-header .cart-heading {
  font-size: 17px;
  font-weight: 500;
  color: #404040;
}

.cart-bar .product-area3 .product-item .bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-bar .product-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #E7E7E7;
}

.cart-bar .product-item:last-child {
  margin-bottom: 0;
}

.cart-bar .product-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart-bar .product-detail span {
  display: inline-block;
  line-height: 19px !important;
}

.cart-bar .product-detail .product-thumb {
  margin-right: 15px;
  max-width: 75px;
}

.cart-bar .product-detail .product-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-title);
}

.cart-bar .product-detail .product-variation span {
  color: #868686;
  font-family: roboto;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}

.cart-bar .product-detail .product-qnty {
  margin-right: 5px;
}

.cart-bar .product-detail .product-qnty,
.cart-bar .product-detail .product-price {
  color: #404040;
  font-weight: 500;
  font-size: 13px;
  font-family: roboto;
}

.cart-bar .cart-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.cart-bar .cart-edit .item-wrapper {
  display: inline-block;
}

.cart-bar .cart-edit .quantity-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E7E7E7;
  padding: 3px 10px;
  border-radius: 5px;
  margin-bottom: 3px;
}

.cart-bar .cart-edit .quantity-edit input {
  text-align: center;
  max-width: 40px;
}

.cart-bar .cart-edit .quantity-edit button {
  background: none;
  font-size: 0;
}

.cart-bar .cart-edit .quantity-edit button i {
  font-size: 14px;
  color: #C0C0C0;
}

.cart-bar .cart-edit .product-edit {
  margin-right: 15px;
}

.cart-bar .cart-edit .product-edit i {
  font-size: 13px;
  color: #868686;
}

.cart-bar .cart-edit .delete-cart i {
  font-size: 16px;
  color: #4E4E4E;
  margin-top: 5px;
}

.cart-bar .cart-bottom-area {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cart-bar .cart-bottom-area .spend-shipping {
  margin-bottom: 30px;
  background: #F5F5F5;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #404040;
  text-align: center;
}

.cart-bar .cart-bottom-area .spend-shipping .amount {
  font-weight: 700;
  color: var(--color-title);
}

.cart-bar .cart-bottom-area .spend-shipping i {
  font-size: 15px;
  margin-right: 7px;
}

.cart-bar .cart-bottom-area .total-price {
  font-size: 18px;
  color: #868686;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-bar .cart-bottom-area .cart-btn {
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.cart-bar .cart-bottom-area .checkout-btn {
  border: 1px solid var(--color-title);
  margin-bottom: 10px;
}

.cart-bar .cart-bottom-area .checkout-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

.cart-bar .cart-bottom-area .view-btn {
  border: 1px solid transparent;
  background: var(--color-title);
  color: var(--color-white);
}

.cart-bar .cart-bottom-area .view-btn:hover {
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .cart-bar {
    width: 100%;
  }
}
.close-cart {
  cursor: pointer;
}

.anywere,
.anywere-home {
  background: #0E1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  visibility: hidden;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 99;
}

.anywere.show,
.anywere-home.show {
  visibility: visible;
  pointer-events: visible;
}

.anywere.bgshow,
.anywere-home.bgshow {
  cursor: url(../images/close.png), auto;
  background: #0E1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 99;
}

@media (max-width: 992px) {
  .order_md--2 {
    order: 2;
  }
}

.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #ffffff;
  --outer-line-color: #dca8a8;
  --middle-line-color: #ff0000;
  --inner-line-color: #cf1414;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  margin: -75px 0 0 -75px;
  z-index: 1001;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 5px solid transparent;
  border-top-color: var(--color-primary);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--color-white);
  width: 50%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loaded .loader-wrapper .loader-section.section-right {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/*!
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;
}

/*jump animation */
@keyframes jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
    transform: translate3d(0, 50px, 0) scale(0.7);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
    transform: translate3d(0, 20px, 0) scale(0.8);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-5 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-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;
}

@-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);
  }
}
@keyframes videobuttonpopup {
  0% {
    box-shadow: 0 0 0 0 #F0ECE9, 0 0 0 0 #F0ECE9;
  }
  80% {
    box-shadow: 0 0 0 20px #fff0, 0 0 0 40px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0, 0 0 0 0 #fff0;
  }
}
@keyframes videobuttonpopupsmall {
  0% {
    box-shadow: 0 0 0 0 #F0ECE9, 0 0 0 0 #F0ECE9;
  }
  80% {
    box-shadow: 0 0 0 10px #fff0, 0 0 0 12px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0, 0 0 0 0 #fff0;
  }
}
.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;
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 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 jump-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateIt2 {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shape-service-1 {
  0% {
    right: -40%;
    top: 30%;
  }
  100% {
    right: -23%;
    top: 0;
  }
}
@keyframes animate-floting {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-40%);
  }
  100% {
    transform: translateX(40%);
  }
}
@keyframes animate-floting-2 {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-40%);
  }
}
@keyframes animate-floting-3 {
  0% {
    transform: translateX(-20%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-20%);
  }
}
.floting-line {
  animation: animate-floting 15s linear infinite;
}
.floting-line:hover {
  animation-play-state: paused;
}

.floting-line-2 {
  animation: animate-floting-2 15s linear infinite;
}
.floting-line-2:hover {
  animation-play-state: paused;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@keyframes vsmorph {
  0% {
    border-radius: var(--morp-value);
  }
  50% {
    border-radius: var(--morp-md-value);
  }
  100% {
    border-radius: 40% 60%;
  }
}
@keyframes morpspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes slideInUp3 {
  from {
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    visibility: hidden;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee-2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@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;
  position: relative;
  margin-top: -20px;
}
.cd-headline.clip .cd-words-wrapper b {
  font-weight: 700;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-primary-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 area style  */
.golfy-header-area {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 100%;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
}
@media (max-width: 1366px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner {
    padding: 20px 25px;
  }
}
@media (max-width: 450px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner {
    padding: 20px;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-logo-area {
  flex-basis: 15%;
}
@media (max-width: 991px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-logo-area {
    flex-basis: auto;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area {
  flex-basis: 70%;
}
@media (max-width: 991px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area {
    display: none;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu {
  display: flex;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-height: 100%;
  overflow: visible;
  margin: 0;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item {
  margin: 0;
  color: var(--color-white);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 0 30px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item {
    padding: 0 20px;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .golfy-dropdown-main-element,
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .main-element {
  padding: 40px 0;
  position: relative;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .golfy-dropdown-main-element::after,
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .main-element::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 35px;
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item:hover .golfy-dropdown-main-element,
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item:hover .main-element {
  color: var(--color-white);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item:hover .golfy-dropdown-main-element::after,
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item:hover .main-element::after {
  width: 100%;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item.active .golfy-dropdown-main-element {
  color: var(--color-white);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item.active .golfy-dropdown-main-element::after {
  width: 100%;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-has-dropdown:hover .golfy-dropdown-main-element {
  color: var(--color-white);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-has-dropdown:hover .golfy-dropdown-main-element::after {
  width: 100%;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-has-dropdown:hover .golfy-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(37px);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  width: 250px;
  visibility: hidden;
  overflow: visible;
  transform: translateY(47px);
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
  background: var(--color-title);
  -webkit-box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
  box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item {
  margin: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item:hover a.nav-link {
  padding-left: 40px;
  color: var(--color-white);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item:hover a.nav-link::after {
  width: 12px;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item a.nav-link {
  display: block;
  text-transform: capitalize;
  color: #fff9;
  text-decoration: none;
  padding: 10px 20px;
  padding-right: 80px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-weight: 400;
  font-size: 15px;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item a.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item a.nav-link.active {
  padding-left: 40px;
  color: var(--color-white);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .golfy-submenu .nav-item a.nav-link.active::after {
  width: 12px;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn {
  flex-basis: 15%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
@media (max-width: 991px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn {
    flex-basis: auto;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area {
  position: relative;
  cursor: pointer;
}
@media (max-width: 576px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area {
    display: none;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area svg path {
  fill: var(--color-white);
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area .tag {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area .tag svg {
  display: block;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area .tag::after {
  content: "3";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-52%, -50%);
  font-size: 14px;
  color: var(--color-white);
}
@media (max-width: 576px) {
  .golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-search-area {
    display: none;
  }
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-search-area .golfy-search-btn svg path {
  stroke: var(--color-white);
  stroke-width: 2px;
}
.golfy-header-area .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-header-menu-bar svg rect {
  fill: var(--color-white);
}
@media (max-width: 1600px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner {
    padding: 20px 50px;
  }
}
@media (max-width: 1200px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner {
    padding: 20px 25px;
  }
}
.golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .nav-area {
  flex-basis: 40%;
  width: 40%;
}
@media (max-width: 1366px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .nav-area {
    flex-basis: 50%;
  }
}
.golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu {
  justify-content: left;
}
@media (max-width: 1600px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item {
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item {
    padding: 0 15px;
  }
}
.golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .golfy-logo-area {
  flex-basis: 20%;
  width: 20%;
  text-align: center;
}
@media (max-width: 991px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .golfy-logo-area {
    flex-basis: 50%;
    width: 50%;
    text-align: left;
  }
}
.golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn {
  flex-basis: 40%;
  width: 40%;
}
@media (max-width: 1366px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn {
    flex-basis: 30%;
  }
}
@media (max-width: 991px) {
  .golfy-header-area.header-2 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn {
    flex-basis: 50%;
    width: 50%;
  }
}
.golfy-header-area.header-3 {
  position: relative;
  background: var(--color-white);
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .golfy-dropdown-main-element,
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .main-element {
  color: var(--color-title);
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .golfy-dropdown-main-element::after,
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .nav-area .golfy-menu .golfy-desktop-menu .menu-item .main-element::after {
  background: var(--color-title);
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area {
  position: relative;
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area svg path {
  fill: #6F7073;
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area .tag {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area .tag svg {
  display: block;
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-cart-area .tag::after {
  content: "3";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-52%, -50%);
  font-size: 14px;
  color: var(--color-white);
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-search-area .golfy-search-btn svg path {
  stroke: #6F7073;
}
.golfy-header-area.header-3 .golfy-home-menu .golfy-home-menu-inner .golfy-menu-btn .golfy-header-menu-bar svg rect {
  fill: #6F7073;
}
.golfy-header-area.header-3.header-sticky {
  position: fixed;
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 465px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .side-bar {
    width: 315px;
  }
}
.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: center;
}
.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 60%;
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content {
  text-align: center;
  margin-top: 30px;
}
.side-bar .inner-main-wrapper-desk .inner-content p {
  max-width: 95%;
  text-align: center;
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content .title {
  font-weight: 600;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer {
  padding-top: 50px;
  margin-top: 40px;
  border-top: 1px solid #e8e8e8;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .title {
  font-weight: 500;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer a.rts-btn {
  margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar {
  margin-top: 50px;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .title {
  margin-bottom: 20px;
  font-size: 24px;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .single-info {
  margin: 15px 0;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .single-info a:hover {
  color: var(--color-primary);
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .rts-social-style-one {
  margin-top: 40px;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .rts-social-style-one ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  list-style: none;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .rts-social-style-one ul li {
  margin: 0;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .rts-social-style-one ul li a {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .rts-social-style-one ul li a:hover {
  background: var(--color-primary);
  border: 1px solid transparent;
  color: #fff;
}

.side-bar.show {
  right: 0;
  overflow-y: auto;
}

.side-bar button {
  max-width: max-content;
  margin-right: auto;
  margin-left: -53px;
  margin-top: 0;
  position: absolute;
}
.side-bar button i {
  color: #ffffff;
  height: 50px;
  width: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  margin-top: -53px;
  font-size: 27px;
  background: var(--color-primary);
}

#anywhere-home {
  cursor: url(../images/banner/shape/close.png), auto;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

#anywhere-home.bgshow {
  background: #0e1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  top: 0;
}

.metismenu .mm-collapse:not(.mm-show) {
  display: none;
}

.index-three .side-bar .inner-main-wrapper-desk {
  display: none !important;
}
.index-three .side-bar .mobile-menu-main {
  display: block !important;
}

#side-bar .inner-main-wrapper-desk {
  display: block;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .inner-main-wrapper-desk {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #side-bar .inner-main-wrapper-desk {
    display: none;
  }
}
#side-bar .mobile-menu-main {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}

.mobile-menu-main nav ul {
  padding: 0 0;
  display: block;
}
.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-menu-main nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}
.mobile-menu-main nav ul li.has-droupdown ul {
  padding: 0;
}
.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
}
.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: #fff;
  background: var(--color-primary) !important;
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
  content: "\f077";
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
  font-size: 10px;
  padding: 3px 10px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
  margin: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--color-primary);
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li a {
  display: block;
}
.mobile-menu-main .social-wrapper-one {
  margin-top: 50px;
}

@media screen and (max-width: 1024px) {
  .side-bar.header-two .inner-main-wrapper-desk, .side-bar.header-three .inner-main-wrapper-desk {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .side-bar.header-two .mobile-menu, .side-bar.header-three .mobile-menu {
    display: none !important;
  }
}

.header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown {
  position: relative;
}
.header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown:hover::after {
  color: var(--color-primary);
}
.header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 16px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.header-one .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown .third-lvl {
  margin-left: -4px;
}

.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page {
  padding: 15px 0;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown {
  position: relative;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown:hover::after {
  color: var(--color-primary);
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 16px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page .sub-dropdown .third-lvl {
  margin-left: -4px;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page li {
  margin: 0;
  width: 100%;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page li a {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.sub-dropdown {
  position: relative !important;
  display: block !important;
  transition: all 0.3s ease-in-out;
}
.sub-dropdown.active .sub-menu-link {
  color: var(--color-white) !important;
  padding-left: 40px !important;
}
.sub-dropdown.active .sub-menu-link::after {
  width: 12px !important;
}
.sub-dropdown.active::after {
  color: var(--color-white);
}
.sub-dropdown::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 6 Pro";
  transform: translateY(-50%);
  color: #fff9;
  transition: all 0.3s ease-in-out;
}
.sub-dropdown .golfy-submenu.third-lvl {
  opacity: 0 !important;
  min-width: 185px !important;
  left: 100% !important;
  top: -13% !important;
  margin: 0;
  border-radius: 0 !important;
  transform: translateY(25px) !important;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.sub-dropdown .golfy-submenu.third-lvl.base {
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.sub-dropdown .golfy-submenu.third-lvl li {
  display: block;
  margin: 0;
  position: relative;
}
.sub-dropdown .golfy-submenu.third-lvl li:hover a {
  padding-left: 40px;
  color: var(--color-white);
}
.sub-dropdown .golfy-submenu.third-lvl li:hover a::after {
  width: 12px;
}
.sub-dropdown .golfy-submenu.third-lvl li a {
  display: block !important;
  padding: 10px 20px;
  position: relative;
}
.sub-dropdown .golfy-submenu.third-lvl li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.sub-dropdown .golfy-submenu.third-lvl li a.active {
  padding-left: 40px;
  color: var(--color-white);
}
.sub-dropdown .golfy-submenu.third-lvl li a.active::after {
  width: 12px;
}
.sub-dropdown:hover::after {
  color: var(--color-white);
}
.sub-dropdown:hover .sub-menu-link {
  color: var(--color-primary);
}
.sub-dropdown:hover .golfy-submenu.third-lvl.base {
  visibility: visible;
  opacity: 1 !important;
  min-width: 185px !important;
  top: 0 !important;
  right: 3px;
  transform: translateY(5px) !important;
  pointer-events: all;
}

.header-three .sub-dropdown:hover .golfy-submenu.third-lvl.base {
  margin-left: -14px !important;
}

.header-two .header-main-wrapper .sub-dropdown:hover .golfy-submenu.third-lvl.base {
  margin-left: 90px !important;
}

header.heder-two .sub-dropdown:hover .golfy-submenu.third-lvl.base {
  opacity: 1 !important;
  min-width: 185px !important;
  top: 0 !important;
  right: 3px;
  display: block;
  margin-left: 0 !important;
}
header.heder-two .sub-dropdown::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 16px;
  right: 20px;
  top: 8px;
  color: #fff;
}
header.heder-two .sub-dropdown:hover a.sub-menu-link {
  color: var(--color-primary) !important;
}
header.heder-two .sub-dropdown:hover::after {
  color: var(--color-primary) !important;
}
header.heder-two .sub-dropdown .golfy-submenu.third-lvl.base {
  display: block;
}

header.header-three .sub-dropdown:hover .golfy-submenu.third-lvl.base {
  opacity: 1 !important;
  min-width: 185px !important;
  top: 0 !important;
  right: 3px;
  display: block;
  margin-left: 0 !important;
}
header.header-three .sub-dropdown::after {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 16px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
header.header-three .sub-dropdown:hover a.sub-menu-link {
  color: var(--color-primary) !important;
}
header.header-three .sub-dropdown:hover::after {
  color: var(--color-primary) !important;
}
header.header-three .sub-dropdown .golfy-submenu.third-lvl.base {
  display: block;
}

.header--sticky {
  transition: none !important;
  top: 0;
  z-index: 5;
  position: relative;
}

.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  width: 100%;
  box-shadow: 0px 7px 18px #1810100d;
  z-index: 1002;
  margin: auto;
  display: flex;
  align-items: center;
  border-radius: 0;
  transition: none !important;
}

.mobile-menu-main .rts-social-style-one ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
}
.mobile-menu-main .rts-social-style-one ul li {
  margin: 0;
}
.mobile-menu-main .rts-social-style-one ul li a {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #f3f3f3;
  transition: 0.3s;
}
.mobile-menu-main .rts-social-style-one ul li:hover a {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 479px) {
  .search-input-area {
    padding: 20px 0;
  }
}
.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}
.search-input-area .search-input-inner .input-div input {
  background: #F7F7F7;
  border-radius: 5px 0 0 5px;
  height: 55px;
}
.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18.5px;
  background: var(--color-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  border-radius: 0 5px 5px 0;
}
.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 18px;
  top: 12px;
}
@media (max-width: 500px) {
  .search-input-area .search-close-icon {
    display: none;
  }
}
.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--color-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: var(--color-primary-alta);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}
.search-input-area .search-close-icon:hover i {
  color: var(--color-primary);
}
.search-input-area .search-close-icon:hover i::after {
  background: var(--color-primary-alta);
}

.golfy-breadcrumb-area {
  background-image: url(../images/banner/breadcrumb-1.jpg);
  height: 480px;
  position: relative;
}
@media only screen and (max-width: 479px) {
  .golfy-breadcrumb-area {
    height: 350px;
  }
}
.golfy-breadcrumb-area .breadcrumb-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}
.golfy-breadcrumb-area .breadcrumb-inner .title {
  color: #FFF;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .golfy-breadcrumb-area .breadcrumb-inner .title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 479px) {
  .golfy-breadcrumb-area .breadcrumb-inner .title {
    font-size: 36px;
    margin-bottom: 0;
    line-height: 36px;
  }
}

.golfy-breadcrumb-area.wedding {
  background-image: url(../images/banner/breadcrumb-2.jpg);
}

.counter-up-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-up-area {
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-up-area {
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
  }
}

.rts-brand-area .section-inner .brand-image img {
  filter: grayscale(1);
  transition: 0.3s;
  cursor: pointer;
}

.rts-brand-area .section-inner .brand-image img:hover {
  filter: grayscale(0);
}

/* Hero area style */
@media (max-width: 1366px) {
  .rts-blog-area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.rts-blog-area .rts-section-title {
  max-width: 36%;
  margin: auto;
}
.rts-blog-area .rts-section-title .heading-title {
  margin-bottom: 60px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .rts-blog-area .rts-section-title {
    max-width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-blog-area .rts-section-title {
    max-width: 100%;
    margin: 0 15px 60px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-blog-area .rts-section-title {
    margin: 0;
  }
}
.rts-blog-area .section-inner .blog-wrapper .image-area {
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s;
}
.rts-blog-area .section-inner .blog-wrapper .image-area:hover img {
  transform: scale(110%);
}
.rts-blog-area .section-inner .blog-wrapper .image-area img {
  transform: scale(100%);
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .rts-blog-area .section-inner .blog-wrapper .image-area img {
    width: 100%;
  }
}
.rts-blog-area .section-inner .blog-wrapper .content .sub-title {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.rts-blog-area .section-inner .blog-wrapper .content .event-title a {
  color: var(--color-title);
  font-size: 24px;
  line-height: 1.2;
  font-family: var(--title-font);
  text-transform: capitalize;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-blog-area .section-inner .blog-wrapper .content .event-title a {
    font-size: 18px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-blog-area .section-inner .blog-wrapper .content .event-title a {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .rts-blog-area .section-inner .blog-wrapper .content .event-title a {
    font-size: 18px;
  }
}
.rts-blog-area .section-inner .blog-wrapper .content .read-more-btn {
  position: relative;
  padding-left: 30px;
  color: var(--color-title);
  transition: all 0.3s;
  display: block;
}
.rts-blog-area .section-inner .blog-wrapper .content .read-more-btn:hover {
  color: var(--color-primary);
}
.rts-blog-area .section-inner .blog-wrapper .content .read-more-btn:hover::before {
  width: 0;
  left: 22px;
}
.rts-blog-area .section-inner .blog-wrapper .content .read-more-btn:hover::after {
  width: 20px;
}
.rts-blog-area .section-inner .blog-wrapper .content .read-more-btn::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--color-title);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.rts-blog-area .section-inner .blog-wrapper .content .read-more-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-title);
  transition: all 0.3s;
}
.rts-blog-area.home-2 .section-inner .blog-wrapper .image-area {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .rts-blog-area.home-2 .section-inner .blog-wrapper .image-area img {
    width: 100%;
  }
}
.rts-blog-area.home-2 .section-inner .blog-wrapper .content {
  background: #F6F6F6;
  padding: 30px 30px 50px 30px;
}
@media (max-width: 450px) {
  .rts-blog-area.home-2 .section-inner .blog-wrapper .content {
    padding: 30px 15px 30px 15px;
  }
}
.rts-blog-area.home-2 .section-inner .blog-wrapper .content .content-bottom {
  display: flex;
  justify-content: space-between;
}
.rts-blog-area.home-2 .section-inner .blog-wrapper .content .content-bottom .date-time .date {
  font-size: 20px;
  color: var(--color-title);
  margin-bottom: 10px;
}
.rts-blog-area.home-2 .section-inner .blog-wrapper .content .content-bottom .rts-btn {
  width: max-content;
  height: max-content;
  padding: 10px 23px;
}
@media (max-width: 450px) {
  .rts-blog-area.home-2 .section-inner .blog-wrapper .content .content-bottom .rts-btn {
    padding: 8px 20px;
  }
}
.rts-blog-area.home-3 .section-inner .blog-wrapper .image-area {
  margin-bottom: 0;
}
.rts-blog-area.home-3 .section-inner .blog-wrapper .content {
  background: var(--color-white);
  padding: 40px 20px 40px 40px;
}
@media only screen and (max-width: 575px) {
  .rts-blog-area.home-3 .section-inner .blog-wrapper .content {
    padding: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-blog-area.home-3 .section-inner .blog-wrapper .content {
    padding: 15px;
  }
}

/* Hero area style */
.single-blog-list-style-one .thumbnail {
  display: block;
  overflow: hidden;
}
.single-blog-list-style-one .thumbnail img {
  min-width: 100%;
}
.single-blog-list-style-one .blog-body {
  padding: 40px;
  background: #F6F6F6;
}
@media only screen and (max-width: 767px) {
  .single-blog-list-style-one .blog-body {
    padding: 20px;
  }
}
.single-blog-list-style-one .blog-body .top {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 575px) {
  .single-blog-list-style-one .blog-body .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.single-blog-list-style-one .blog-body .top .single {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-blog-list-style-one .blog-body .top .single i {
  color: var(--color-primary);
}
.single-blog-list-style-one .blog-body .top .single span {
  color: #74787C;
}
.single-blog-list-style-one .blog-body .inner {
  margin-top: 25px;
}
.single-blog-list-style-one .blog-body .inner .title {
  color: #30373E;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  text-transform: capitalize;
  margin-bottom: 30px;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog-list-style-one .blog-body .inner .title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .single-blog-list-style-one .blog-body .inner .title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .single-blog-list-style-one .blog-body .inner .title {
    font-size: 20px;
    line-height: 34px;
  }
  .single-blog-list-style-one .blog-body .inner .title br {
    display: none;
  }
}
.single-blog-list-style-one .blog-body .inner .title:hover {
  color: var(--color-primary);
}
.single-blog-list-style-one .blog-body .inner .rts-btn {
  border-radius: 0;
  padding: 15px 50px;
}

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

.service-left-sidebar-wized {
  padding: 40px;
  background: #F6F6F6;
}
.service-left-sidebar-wized .search-area {
  position: relative;
}
.service-left-sidebar-wized .search-area input {
  width: 100%;
  background: #fff;
  height: 50px;
  padding-right: 50px;
}
.service-left-sidebar-wized .search-area i {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.service-left-sidebar-wized .recent-post-single {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-left-sidebar-wized .recent-post-single:last-child {
  margin-bottom: 0;
}
.service-left-sidebar-wized .recent-post-single .thumbnail {
  margin-right: 20px;
  overflow: hidden;
  max-width: max-content;
  width: 100%;
  border-radius: 0;
  display: block;
}
.service-left-sidebar-wized .recent-post-single .thumbnail img {
  height: auto;
  transition: 0.3s;
  min-width: max-content;
}
.service-left-sidebar-wized .recent-post-single .thumbnail:hover img {
  transform: scale(1.2);
}
.service-left-sidebar-wized .recent-post-single .user {
  display: flex;
  align-items: center;
}
.service-left-sidebar-wized .recent-post-single .user span {
  margin-left: 9px;
}
.service-left-sidebar-wized .recent-post-single .post-title .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1C2539;
  line-height: 26px;
  margin-top: 5px;
  transition: 0.3s;
}
@media only screen and (max-width: 479px) {
  .service-left-sidebar-wized .recent-post-single .post-title .title {
    font-size: 14px;
    line-height: 26px;
    margin-top: 0;
  }
}
.service-left-sidebar-wized .recent-post-single .post-title:hover .title {
  color: var(--color-primary);
}
.service-left-sidebar-wized .gallery-inner {
  display: flex;
  flex-direction: column;
}
.service-left-sidebar-wized .gallery-inner .single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-left-sidebar-wized .gallery-inner .single-row a {
  overflow: hidden;
  border-radius: 0;
}
@media only screen and (max-width: 479px) {
  .service-left-sidebar-wized .gallery-inner .single-row a {
    display: block;
    width: 100%;
  }
}
.service-left-sidebar-wized .gallery-inner .single-row a img {
  max-width: 86px;
  height: auto;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .service-left-sidebar-wized .gallery-inner .single-row a img {
    max-width: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-left-sidebar-wized .gallery-inner .single-row a img {
    min-width: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-left-sidebar-wized .gallery-inner .single-row a img {
    min-width: 193px;
  }
}
@media only screen and (max-width: 767px) {
  .service-left-sidebar-wized .gallery-inner .single-row a img {
    min-width: 135px;
  }
}
@media only screen and (max-width: 575px) {
  .service-left-sidebar-wized .gallery-inner .single-row a img {
    min-width: 140px;
  }
}
@media only screen and (max-width: 479px) {
  .service-left-sidebar-wized .gallery-inner .single-row a img {
    min-width: 80px;
  }
}
.service-left-sidebar-wized .gallery-inner .single-row a:hover img {
  transform: scale(1.2);
}
.service-left-sidebar-wized .gallery-inner .single-row.row-1 {
  margin-bottom: 20px;
}
.service-left-sidebar-wized .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.service-left-sidebar-wized .tags-wrapper a {
  padding: 5px 13px;
  background: #fff;
  border-radius: 0;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #1C2539;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.service-left-sidebar-wized .tags-wrapper a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px) scale(1.09);
}

.service-left-sidebar-wized {
  padding: 40px;
  background: #F6F6F6;
}
@media only screen and (max-width: 575px) {
  .service-left-sidebar-wized {
    padding: 20px;
  }
}
.service-left-sidebar-wized .topa-rea {
  margin-bottom: 40px;
}
.service-left-sidebar-wized .topa-rea span.pre {
  color: #30373E;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 44px;
}
.service-left-sidebar-wized .topa-rea .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #E3E3E3;
  color: #30373E;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}
.service-left-sidebar-wized .body .single-short-service {
  padding: 6px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF;
  margin-bottom: 10px;
  transition: 0.3s;
}
.service-left-sidebar-wized .body .single-short-service:last-child {
  margin-bottom: 0;
}
.service-left-sidebar-wized .body .single-short-service .number {
  color: #30373E;
  margin-bottom: 0;
  color: #30373E;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  transition: 0.3s;
  flex-basis: 6%;
}
.service-left-sidebar-wized .body .single-short-service p {
  margin-bottom: 0;
  color: #30373E;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  transition: 0.3s;
  flex-basis: 70%;
}
@media only screen and (max-width: 1199px) {
  .service-left-sidebar-wized .body .single-short-service p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .service-left-sidebar-wized .body .single-short-service p {
    font-size: 14px;
  }
}
.service-left-sidebar-wized .body .single-short-service i {
  color: #30373E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  transition: 0.3s;
}
.service-left-sidebar-wized .body .single-short-service:hover {
  background: var(--color-primary);
  transform: translateY(-2px) scale(1.01);
}
.service-left-sidebar-wized .body .single-short-service:hover .number {
  color: #fff;
}
.service-left-sidebar-wized .body .single-short-service:hover p {
  color: #fff;
}
.service-left-sidebar-wized .body .single-short-service:hover i {
  color: #fff;
}
.service-left-sidebar-wized .body form input {
  height: 50px;
  background: #FFFFFF;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 14px;
  border: 1px solid transparent;
}
.service-left-sidebar-wized .body form input:focus {
  border: 1px solid var(--color-primary);
}
.service-left-sidebar-wized .body form textarea {
  height: 130px;
  background: #fff;
  padding: 15px 15px;
  font-size: 14px;
  border: 1px solid transparent;
}
.service-left-sidebar-wized .body form textarea:focus {
  border: 1px solid var(--color-primary);
}
.service-left-sidebar-wized .body form button {
  display: block;
  min-width: 100%;
  border-radius: 0;
  padding: 15px;
  margin-top: 20px;
}

.blog-single-post-listing {
  margin-right: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .blog-single-post-listing {
    margin-right: 0;
  }
}
.blog-single-post-listing.details {
  border-radius: 0;
  background: #F6F6F6;
}
.blog-single-post-listing.details .thumbnail {
  border-radius: 0 0 0 0;
}
.blog-single-post-listing.details .thumbnail.details {
  border-radius: 0;
  width: 100%;
  max-width: max-content;
}
@media only screen and (max-width: 1199px) {
  .blog-single-post-listing.details .thumbnail.details {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-post-listing.details .thumbnail.details {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .thumbnail.details {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-single-post-listing.details .thumbnail.details {
    margin-bottom: 0;
  }
}
.blog-single-post-listing.details .rts-quote-area {
  padding: 30px 11px;
  background: #fff;
  border-radius: 0;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-post-listing.details .rts-quote-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .rts-quote-area {
    padding: 10px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 479px) {
  .blog-single-post-listing.details .rts-quote-area {
    margin-top: 15px;
  }
}
.blog-single-post-listing.details .rts-quote-area .title {
  color: #30373E;
  text-align: center;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.36px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media only screen and (max-width: 479px) {
  .blog-single-post-listing.details .rts-quote-area .title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.blog-single-post-listing.details .rts-quote-area .name {
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 700;
}
.blog-single-post-listing.details .rts-quote-area span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #5D666F;
}
.blog-single-post-listing.details .check-area-details .single-check {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.blog-single-post-listing.details .check-area-details .single-check i {
  margin-right: 15px;
  color: var(--color-primary);
}
@media only screen and (max-width: 479px) {
  .blog-single-post-listing.details .check-area-details .single-check i {
    margin-top: -26px;
  }
}
.blog-single-post-listing.details .check-area-details .single-check span {
  color: #5D666F;
}
.blog-single-post-listing.details .details-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 479px) {
  .blog-single-post-listing.details .details-tag {
    justify-content: flex-start;
    gap: 10px;
  }
}
.blog-single-post-listing.details .details-tag h6 {
  margin-bottom: 0;
  font-size: 18px;
  margin-right: 15px;
}
.blog-single-post-listing.details .details-tag button {
  padding: 8px 12px;
  background: #fff;
  max-width: max-content;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  color: #1C2539;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .blog-single-post-listing.details .details-tag button:last-child {
    margin-top: 10px;
    margin-left: -2px;
  }
}
.blog-single-post-listing.details .details-tag button:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}
.blog-single-post-listing.details .details-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-post-listing.details .details-share {
    justify-content: flex-start;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .details-share {
    justify-content: flex-start;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-single-post-listing.details .details-share {
    justify-content: flex-start;
    margin-top: 20px;
  }
}
.blog-single-post-listing.details .details-share button {
  max-width: max-content;
  position: relative;
  z-index: 1;
  margin-left: 23px;
  color: #1C2539;
  transition: 0.3s;
  font-size: 14px;
}
.blog-single-post-listing.details .details-share button::after {
  position: absolute;
  content: "";
  background: #F6F6F6;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}
.blog-single-post-listing.details .details-share button:hover {
  color: #fff;
  transform: scale(1.1);
}
.blog-single-post-listing.details .details-share button:hover::after {
  background: var(--color-primary);
}
.blog-single-post-listing.details .details-share h6 {
  font-size: 18px;
  margin-bottom: 0;
  margin-right: 15px;
}
.blog-single-post-listing.details .author-area {
  margin-top: 44px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #E6E9F0;
  border-bottom: 1px solid #E6E9F0;
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .author-area {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 575px) {
  .blog-single-post-listing.details .author-area {
    flex-wrap: wrap;
  }
}
.blog-single-post-listing.details .author-area .thumbnail {
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .author-area .thumbnail {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing.details .author-area .author-details {
    margin-left: 15px;
  }
}
.blog-single-post-listing.details .author-area .author-details h5 {
  margin-bottom: 10px;
}
.blog-single-post-listing.details .author-area .author-details p {
  line-height: 26px;
}
.blog-single-post-listing.inner {
  border: none;
  max-width: 950px;
  margin: 0 auto;
}
.blog-single-post-listing.inner2 .blog-listing-content .rts-quote-area {
  position: relative;
  background: #000;
  padding-top: 120px;
}
.blog-single-post-listing.inner2 .blog-listing-content .rts-quote-area::before {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translate(-50%, 0);
  content: "\f10d";
  font-family: "Font Awesome 5 Pro";
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 20px;
}
.blog-single-post-listing.inner2 .blog-listing-content .rts-quote-area .title {
  color: #f7f7f7;
}
.blog-single-post-listing .replay-area-details {
  margin-top: 40px;
}
.blog-single-post-listing .replay-area-details form input {
  height: 55px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid transparent;
  border: 1px solid #EAEAEA;
  box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.01);
  border-radius: 0;
}
.blog-single-post-listing .replay-area-details form input:focus {
  border: 1px solid var(--color-primary);
}
.blog-single-post-listing .replay-area-details form textarea {
  border-radius: 0;
  background: #fff;
  height: 140px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid transparent;
  border: 1px solid #EAEAEA;
  box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.01);
  border-radius: 0;
}
.blog-single-post-listing .replay-area-details form textarea:focus {
  border: 1px solid var(--color-primary);
}
.blog-single-post-listing .thumbnail {
  overflow: hidden;
}
.blog-single-post-listing .thumbnail img {
  transition: 0.3s;
  width: 100%;
}
.blog-single-post-listing .thumbnail:hover img {
  transform: scale(1.1);
}
.blog-single-post-listing .blog-listing-content {
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing .blog-listing-content {
    padding: 25px 10px;
  }
}
.blog-single-post-listing .blog-listing-content .user-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.blog-single-post-listing .blog-listing-content .user-info .single {
  margin-right: 30px;
  min-width: max-content;
}
@media only screen and (max-width: 767px) {
  .blog-single-post-listing .blog-listing-content .user-info .single {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-single-post-listing .blog-listing-content .user-info .single {
    margin-right: 5px;
  }
}
.blog-single-post-listing .blog-listing-content .user-info .single i {
  margin-right: 10px;
  color: var(--color-primary);
}
@media only screen and (max-width: 575px) {
  .blog-single-post-listing .blog-listing-content .user-info .single i {
    margin-right: 2px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-single-post-listing .blog-listing-content .user-info .single span {
    font-size: 13px;
  }
}
.blog-single-post-listing .blog-listing-content .blog-title {
  transition: 0.3s;
}
.blog-single-post-listing .blog-listing-content .blog-title .title {
  transition: 0.3s;
  margin-bottom: 16px;
}
.blog-single-post-listing .blog-listing-content .blog-title:hover .title {
  color: var(--color-primary);
}
.blog-single-post-listing .blog-listing-content p.disc {
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 479px) {
  .blog-single-post-listing .blog-listing-content p.disc {
    margin-bottom: 15px;
  }
}
.blog-single-post-listing .blog-listing-content a.rts-btn {
  margin-top: 35px;
  display: block;
  max-width: max-content;
  border-radius: 0;
  padding: 18px 35px;
}
@media only screen and (max-width: 479px) {
  .blog-single-post-listing .blog-listing-content a.rts-btn {
    margin-top: 20px;
  }
}

/* Benar area style */
.rts-banner-area {
  position: relative;
}
.rts-banner-area .banner-inner {
  position: relative;
}
.rts-banner-area .banner-inner .banner-single {
  background: url(../images/banner/banner-bg1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 980px;
  padding: 350px 0 280px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1600px) and (min-width: 1366px) {
  .rts-banner-area .banner-inner .banner-single {
    padding: 200px 0 0 0;
    height: 100vh;
  }
}
@media (max-width: 1024px) {
  .rts-banner-area .banner-inner .banner-single {
    padding: 200px 0 200px;
    height: auto;
  }
}
.rts-banner-area .banner-inner .banner-single::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.rts-banner-area .banner-inner .banner-single.banner-single-2 {
  background: url(../images/banner/banner-bg2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rts-banner-area .banner-inner .banner-single.banner-single-4 {
  background: url(../images/banner/banner-bg4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rts-banner-area .banner-inner .banner-single.banner-single-5 {
  background: url(../images/banner/banner-bg5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rts-banner-area .banner-inner .banner-single.banner-single-6 {
  background: url(../images/banner/banner-bg6.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rts-banner-area .banner-inner .banner-content {
  opacity: 0;
}
.rts-banner-area .banner-inner .banner-content .sub-title {
  color: var(--color-white);
  transition-delay: 1s;
  display: block;
  animation: none;
  opacity: 0;
  margin-bottom: 30px;
}
.rts-banner-area .banner-inner .banner-content .heading-title {
  color: var(--color-white);
  max-width: 60%;
  font-size: 80px;
  line-height: 90px;
  opacity: 0;
  transition-delay: 1.5s;
  display: block;
  animation: none;
}
@media (max-width: 1200px) {
  .rts-banner-area .banner-inner .banner-content .heading-title {
    max-width: 70%;
  }
}
@media (max-width: 991px) {
  .rts-banner-area .banner-inner .banner-content .heading-title {
    font-size: 60px;
    line-height: 74px;
  }
}
@media (max-width: 768px) {
  .rts-banner-area .banner-inner .banner-content .heading-title {
    max-width: 85%;
  }
}
@media (max-width: 576px) {
  .rts-banner-area .banner-inner .banner-content .heading-title {
    max-width: 100%;
    font-size: 50px;
    line-height: 64px;
  }
}
@media (max-width: 450px) {
  .rts-banner-area .banner-inner .banner-content .heading-title {
    font-size: 34px;
    line-height: 50px;
  }
}
.rts-banner-area .banner-inner .banner-content .heading-title a {
  color: var(--color-white);
  background-image: linear-gradient(to right, var(--color-white) 50%, transparent 50%);
}
.rts-banner-area .banner-inner .banner-content .banner-btn-area {
  transition-delay: 2.2s;
  display: block;
  animation: none;
  opacity: 0;
}
.rts-banner-area .banner-inner .banner-content .banner-btn {
  border: 1px solid var(--color-white);
  display: block;
  width: max-content;
  padding: 14px 53px 13px;
  color: var(--color-white);
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  transition: all 0.4s;
}
@media (max-width: 576px) {
  .rts-banner-area .banner-inner .banner-content .banner-btn {
    padding: 10px 30px 8px;
  }
}
.rts-banner-area .banner-inner .banner-content .banner-btn:hover {
  color: var(--color-title);
  background: var(--color-white);
}
.rts-banner-area .banner-inner .swiper-pagination {
  display: block;
  width: max-content;
  height: max-content;
  position: absolute;
  right: 50px;
  left: unset;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .rts-banner-area .banner-inner .swiper-pagination {
    display: none;
  }
}
.rts-banner-area .banner-inner .swiper-pagination .swiper-pagination-bullet {
  display: block;
  margin: 25px 0;
  background: var(--color-white);
  opacity: 1;
  position: relative;
}
.rts-banner-area .banner-inner .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rts-banner-area .banner-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.rts-banner-area .banner-inner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border: 1px solid var(--color-primary);
}
.rts-banner-area .banner-inner .swiper-wrapper .swiper-slide.swiper-slide-active .banner-content {
  opacity: 1;
}
@media (max-width: 1366px) {
  .rts-banner-area .banner-inner .swiper-wrapper .swiper-slide.swiper-slide-active .banner-content {
    padding: 0 15px;
  }
}
.rts-banner-area .banner-inner .swiper-wrapper .swiper-slide.swiper-slide-active .banner-content .sub-title {
  animation: slideInUp3 0.8s;
  animation-delay: 1s;
  display: block;
  opacity: 1;
}
.rts-banner-area .banner-inner .swiper-wrapper .swiper-slide.swiper-slide-active .banner-content .heading-title {
  animation: fadeInUp 0.8s;
  animation-delay: 1.5s;
  opacity: 1;
}
.rts-banner-area .banner-inner .swiper-wrapper .swiper-slide.swiper-slide-active .banner-content .banner-btn-area {
  animation: fadeInUp 0.5s;
  animation-delay: 2.2s;
  opacity: 1;
}
.rts-banner-area.home-2 .banner-inner .swiper-pagination-area {
  position: relative;
}
.rts-banner-area.home-2 .banner-inner .swiper-pagination-area .pagination-inner {
  position: absolute;
  left: 0;
  bottom: 75px;
  width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  gap: 12px;
}
@media (max-width: 1366px) {
  .rts-banner-area.home-2 .banner-inner .swiper-pagination-area .pagination-inner {
    left: 15px;
  }
}
.rts-banner-area.home-2 .banner-inner .swiper-pagination-area .pagination-inner .swiper-pagination {
  display: block;
  width: 70px;
  height: 3px;
  position: relative;
  right: unset;
  left: unset;
  top: unset;
  transform: none;
  background: #BFBFBF;
}
.rts-banner-area.home-2 .banner-inner .swiper-pagination-area .pagination-inner .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-white);
}
.rts-banner-area.home-2 .banner-inner .swiper-pagination-area .pagination-inner .slide-range {
  font-size: 16px;
  color: var(--color-white);
  font-family: var(--body-font);
  margin-bottom: 0;
}
.rts-banner-area.home-2 .banner-inner .banner-shape-area {
  position: absolute;
  right: 150px;
  bottom: 85px;
  z-index: 1;
}
@media (max-width: 768px) {
  .rts-banner-area.home-2 .banner-inner .banner-shape-area {
    display: none;
  }
}
.rts-banner-area.home-2 .banner-inner .banner-shape-area .round-img {
  animation: rotateIt2 25s linear infinite;
}
.rts-banner-area.home-2 .banner-inner .banner-shape-area .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rts-banner-area.home-2 .banner-inner .banner-content .heading-title {
  max-width: 70%;
}
@media (max-width: 991px) {
  .rts-banner-area.home-2 .banner-inner .banner-content .heading-title {
    font-size: 58px;
    line-height: 70px;
  }
}
@media (max-width: 768px) {
  .rts-banner-area.home-2 .banner-inner .banner-content .heading-title {
    max-width: 85%;
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .rts-banner-area.home-2 .banner-inner .banner-content .heading-title {
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .rts-banner-area.home-2 .banner-inner .banner-content .heading-title {
    font-size: 50px;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .rts-banner-area.home-2 .banner-inner .banner-content .heading-title {
    font-size: 32px;
    line-height: 50px;
  }
}
.rts-banner-area.home-3 .banner-inner {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area.home-3 .banner-inner {
    flex-direction: column-reverse;
  }
}
.rts-banner-area.home-3 .banner-inner .left-side-content {
  width: 50%;
  padding: 175px 120px 0 200px;
  background: url(../images/banner/bg-overlay.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content {
    padding: 155px 120px 0 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content {
    padding: 50px 100px 0 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content {
    padding: 50px 100px 120px 50px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content {
    padding: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content {
    padding: 50px 15px;
  }
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
  color: var(--color-title);
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: 94px;
  text-transform: capitalize;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    font-size: 80px;
    line-height: 85px;
  }
}
@media (max-width: 1599px) and (min-width: 1440px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 25px;
  }
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title img {
    max-width: 40%;
  }
}
@media (max-width: 1439px) and (min-width: 1200px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    font-size: 65px;
    line-height: 80px;
    margin-bottom: 25px;
  }
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title img {
    max-width: 50%;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    font-size: 52px;
    line-height: 65px;
    margin-bottom: 25px;
    max-width: 60%;
  }
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title img {
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    max-width: 82%;
  }
}
@media (max-width: 768px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    max-width: 100%;
  }
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title img {
    max-width: 40%;
  }
}
@media only screen and (max-width: 575px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 25px;
  }
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .title img {
    display: none;
  }
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner p.desc {
  color: #262626;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 80%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner p.desc {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner p.desc {
    max-width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner p.desc {
    max-width: 100%;
  }
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom {
    gap: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .rts-btn {
  background: none;
  border: 1px solid var(--color-title);
  color: var(--color-title);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  padding: 18px 53px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .rts-btn {
    padding: 18px 28px;
  }
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .golfy-social-media {
  display: flex;
  align-items: center;
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .golfy-social-media .tag {
  color: var(--color-title);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-right: 30px;
  position: relative;
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .golfy-social-media .tag::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: #D9D9D9;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .golfy-social-media a {
  font-size: 14px;
  text-align: center;
  margin: 0 12px;
  transition: all 0.3s ease;
  position: relative;
  color: #6F7073;
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .golfy-social-media a:nth-child(1) {
  margin-left: 0;
}
.rts-banner-area.home-3 .banner-inner .left-side-content .content-inner .content-bottom .golfy-social-media a:hover {
  color: var(--color-primary);
}
.rts-banner-area.home-3 .banner-inner .right-side-hero {
  width: 50%;
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area.home-3 .banner-inner .right-side-hero {
    width: 100%;
  }
}
.rts-banner-area.home-3 .banner-inner .right-side-hero .hero-image {
  background: var(--color-white);
}
.rts-banner-area.home-3 .banner-inner .right-side-hero .hero-image img {
  width: 100%;
}
.rts-banner-area.home-3 .banner-inner .swiper-btn {
  position: absolute;
  width: 70px;
  height: 10px;
  bottom: 60px;
  right: 60px;
}
@media (max-width: 1440px) and (min-width: 1200px) {
  .rts-banner-area.home-3 .banner-inner .swiper-btn {
    bottom: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-banner-area.home-3 .banner-inner .swiper-btn {
    bottom: 19px;
    right: 36px;
  }
}
.rts-banner-area.home-3 .banner-inner .swiper-btn .button {
  display: block;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: auto;
  margin: 0;
  color: #262626;
  transition: all 0.3s;
}
.rts-banner-area.home-3 .banner-inner .swiper-btn .button:hover {
  color: var(--color-primary);
}
.rts-banner-area.home-3 .banner-inner .swiper-btn .button::after {
  display: none;
}
.rts-banner-area.home-3 .banner-inner .swiper-btn .button.swiper-button-prev {
  left: 0;
  right: unset;
}
.rts-banner-area.home-3 .banner-inner .swiper-btn .button.swiper-button-next {
  right: 0;
  left: unset;
}
.rts-banner-area.home-3 .banner-inner .swiper-pagination-area {
  position: absolute;
  left: 20%;
  bottom: 40px;
  width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  gap: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-banner-area.home-3 .banner-inner .swiper-pagination-area {
    left: 7%;
  }
}
@media (max-width: 1440px) and (min-width: 1200px) {
  .rts-banner-area.home-3 .banner-inner .swiper-pagination-area {
    bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-banner-area.home-3 .banner-inner .swiper-pagination-area {
    left: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-banner-area.home-3 .banner-inner .swiper-pagination-area {
    display: none;
  }
}
.rts-banner-area.home-3 .banner-inner .swiper-pagination-area .swiper-pagination {
  display: block;
  width: 70px;
  height: 3px;
  position: relative;
  right: unset;
  left: unset;
  top: unset;
  transform: none;
  background: #BFBFBF;
}
.rts-banner-area.home-3 .banner-inner .swiper-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-primary);
}
.rts-banner-area.home-3 .banner-inner .swiper-pagination-area .slide-range {
  font-size: 16px;
  color: var(--color-title);
  font-family: var(--body-font);
  margin-bottom: 0;
}

.rts-reservation-area .reservation-inner {
  background: url(../images/banner/reservation-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
@media (max-width: 1366px) {
  .rts-reservation-area .reservation-inner {
    margin: 0 15px;
    margin-top: -100px;
  }
}
.rts-reservation-area form.appoinment-form {
  padding: 53px 60px;
  display: flex;
  align-items: end;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 991px) {
  .rts-reservation-area form.appoinment-form {
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  .rts-reservation-area form.appoinment-form {
    padding: 45px 30px;
  }
}
.rts-reservation-area form.appoinment-form .single-input {
  display: block;
  width: 25%;
}
@media (max-width: 991px) {
  .rts-reservation-area form.appoinment-form .single-input {
    width: 47%;
  }
}
@media (max-width: 768px) {
  .rts-reservation-area form.appoinment-form .single-input {
    width: 100%;
  }
}
.rts-reservation-area form.appoinment-form .single-input.phone {
  margin-top: 25px;
}
.rts-reservation-area form.appoinment-form .single-input.file {
  width: 100%;
}
.rts-reservation-area form.appoinment-form .single-input.file input {
  height: unset;
  padding: 20px;
}
.rts-reservation-area form.appoinment-form .single-input label {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 14px;
  margin: 0px 0px 20px 0px;
}
.rts-reservation-area form.appoinment-form .single-input label .indicator {
  color: #f00;
}
.rts-reservation-area form.appoinment-form .single-input input {
  height: 50px;
  background: none;
  display: block;
  padding: 0 30px;
  border: 1px solid #EAEAEA4a;
}
.rts-reservation-area form.appoinment-form .single-input input:focus {
  border: 1px solid var(--color-primary);
}
.rts-reservation-area form.appoinment-form .single-input input::placeholder {
  color: #ADADAD !important;
}
.rts-reservation-area form.appoinment-form .single-input button {
  height: 50px;
  width: 100%;
  max-width: 100%;
  display: block;
  background: var(--color-primary);
  font-family: var(--body-font);
  font-weight: 500;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-reservation-area form.appoinment-form .single-input button {
    padding: 18px 30px;
  }
}
@media (max-width: 500px) {
  .rts-reservation-area form.appoinment-form .single-input button {
    padding: 18px 30px;
  }
}
.rts-reservation-area form.appoinment-form .single-input button:hover {
  background: #a78448e0;
}
.rts-reservation-area form.appoinment-form .form-control {
  background: var(--color-primary);
  border: none;
  height: 120px;
  padding: 20px;
  font-size: 16px;
}
.rts-reservation-area form.appoinment-form .form-control:focus {
  border: none;
  box-shadow: none;
}

.rts-brand-area .section-inner .brand-image {
  text-align: center;
}

.rts-feature-area .feature-inner .feature-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 4px 20px 0px rgba(40, 40, 40, 0.06);
  z-index: 1;
  transition: all 0.6s;
}
.rts-feature-area .feature-inner .feature-wrapper:hover::after {
  transform: translateY(0);
}
.rts-feature-area .feature-inner .feature-wrapper:hover::before {
  transform: translateY(-100%);
}
.rts-feature-area .feature-inner .feature-wrapper:hover .bottom-content .icon svg path {
  fill: var(--color-white);
}
.rts-feature-area .feature-inner .feature-wrapper:hover .bottom-content .title {
  color: var(--color-white);
}
.rts-feature-area .feature-inner .feature-wrapper:hover .bottom-content p.desc {
  color: #BFBFBF;
}
.rts-feature-area .feature-inner .feature-wrapper:hover .bottom-content .feature-btn {
  color: var(--color-white);
}
.rts-feature-area .feature-inner .feature-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.6);
  z-index: 0;
  transform: translateY(101%);
  transition: all 0.6s;
}
.rts-feature-area .feature-inner .feature-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: var(--color-white);
  z-index: 0;
  transition: all 0.6s;
  transform: translateY(0);
}
.rts-feature-area .feature-inner .feature-wrapper .image-area {
  border-radius: 6px;
}
.rts-feature-area .feature-inner .feature-wrapper .image-area img {
  border-radius: 7px;
}
.rts-feature-area .feature-inner .feature-wrapper .bottom-content {
  position: absolute;
  bottom: 40px;
  text-align: center;
  z-index: 1;
}
@media (max-width: 576px) {
  .rts-feature-area .feature-inner .feature-wrapper .bottom-content {
    width: 100%;
  }
}
.rts-feature-area .feature-inner .feature-wrapper .bottom-content .icon {
  margin-bottom: 40px;
  transition: all 0.6s;
}
@media only screen and (max-width: 1199px) {
  .rts-feature-area .feature-inner .feature-wrapper .bottom-content .icon {
    margin-bottom: 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-feature-area .feature-inner .feature-wrapper .bottom-content .icon {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-feature-area .feature-inner .feature-wrapper .bottom-content .icon {
    margin-bottom: 40px;
  }
}
.rts-feature-area .feature-inner .feature-wrapper .bottom-content .icon svg path {
  transition: all 0.6s;
}
.rts-feature-area .feature-inner .feature-wrapper .bottom-content .title {
  color: var(--color-title);
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  transition: all 0.6s;
}
.rts-feature-area .feature-inner .feature-wrapper .bottom-content p.desc {
  color: #707070;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  margin: auto;
  margin-bottom: 20px;
  max-width: 90%;
  transition: all 0.6s;
}
.rts-feature-area .feature-inner .feature-wrapper .bottom-content .feature-btn {
  color: var(--color-title);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  transition: all 0.6s;
}
.rts-feature-area.home-3 .rts-section-title {
  max-width: 55%;
}
@media only screen and (max-width: 767px) {
  .rts-feature-area.home-3 .rts-section-title {
    max-width: 100%;
  }
}
.rts-feature-area.home-3 .rts-section-title .heading-title {
  margin-bottom: 40px;
}
.rts-feature-area.home-3 .section-inner .left-side-content .desc {
  max-width: 90%;
}
@media only screen and (max-width: 575px) {
  .rts-feature-area.home-3 .section-inner .left-side-content .desc {
    max-width: 100%;
  }
}
.rts-feature-area.home-3 .section-inner .right-side-inner .top-image {
  margin-bottom: 40px;
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area {
  padding: 0;
  margin: 0;
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper {
  list-style: none;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.6s;
  margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
  .rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper {
    height: 150px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper {
    height: 250px;
  }
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:hover::after {
  transform: translateX(0);
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:hover::before {
  transform: translateX(-100%);
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:hover .content-wrapper .content .icon svg path {
  fill: var(--color-white);
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:hover .content-wrapper .content .title {
  color: var(--color-white);
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:hover .content-wrapper .number span {
  color: var(--color-white);
  -webkit-text-stroke-color: var(--color-white);
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.6);
  z-index: 0;
  transition: all 0.6s;
  transform: translateX(100%);
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: var(--color-white);
  z-index: 0;
  transition: all 0.6s;
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 30px;
  z-index: 1;
  transition: all 0.6s;
}
@media only screen and (max-width: 479px) {
  .rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .content {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 50%;
  transition: all 0.6s;
}
@media only screen and (max-width: 575px) {
  .rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .content {
    width: 100%;
  }
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .content .icon svg path {
  fill: var(--color-primary);
  transition: all 0.6s;
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .content .title {
  font-size: 20px;
  line-height: 30px;
  color: var(--color-title);
  margin-bottom: 0;
  transition: all 0.6s;
}
@media only screen and (max-width: 575px) {
  .rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .content .title {
    font-size: 16px;
  }
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .number {
  width: 50%;
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper .content-wrapper .number span {
  font-size: 64px;
  font-weight: 800;
  line-height: 34px;
  text-transform: capitalize;
  color: #9c9c9c;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #9c9c9c;
  transition: all 0.6s;
}
.rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:nth-child(odd) .content-wrapper .number {
  text-align: right;
}
@media only screen and (max-width: 479px) {
  .rts-feature-area.home-3 .section-inner .right-side-inner ul.listed-image-area li.list-wrapper:nth-child(odd) .content-wrapper .number {
    text-align: left;
  }
}

.rts-marquee-area .section-inner .top-inner,
.rts-marquee-area .section-inner .bottom-inner {
  display: inline-block;
}
.rts-marquee-area .section-inner .top-inner ul.marquee,
.rts-marquee-area .section-inner .bottom-inner ul.marquee {
  padding: 0;
  margin: 0;
  will-change: transform;
  animation: marquee 65s linear infinite;
  align-items: center;
  display: flex;
  padding: 5px 0;
}
.rts-marquee-area .section-inner .top-inner ul.marquee li,
.rts-marquee-area .section-inner .bottom-inner ul.marquee li {
  list-style: none;
  flex: 0 0 auto;
  position: relative;
  text-align: center;
  margin: 0 20px;
}
.rts-marquee-area .section-inner .top-inner ul.marquee li h4,
.rts-marquee-area .section-inner .bottom-inner ul.marquee li h4 {
  margin-bottom: 0;
  color: var(--color-title);
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 70px;
  text-transform: capitalize;
}
.rts-marquee-area .section-inner .bottom-inner {
  background: #262626;
}
.rts-marquee-area .section-inner .bottom-inner ul.marquee {
  animation: marquee-2 65s linear infinite;
}
.rts-marquee-area .section-inner .bottom-inner ul.marquee li h4 {
  color: var(--color-white);
}
.rts-marquee-area .section-inner .bottom-inner ul.marquee li svg path {
  fill: var(--color-white);
}

.rts-playing-process-area .rts-section-title .heading-title {
  margin-bottom: 70px;
}
.rts-playing-process-area .section-inner .playing-process-inner .inner-separator {
  position: relative;
}
.rts-playing-process-area .section-inner .playing-process-inner .inner-separator::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 98%;
  height: 1px;
  background: #D9D9D9;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-playing-process-area .section-inner .playing-process-inner .inner-separator::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .rts-playing-process-area .section-inner .playing-process-inner .inner-separator::after {
    display: none;
  }
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper {
  position: relative;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper:hover::before {
  background: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper:hover .icon svg path {
  fill: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper:hover .title {
  color: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper:hover .book-now {
  color: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper.active::before {
  background: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper.active .icon svg path {
  fill: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper.active .title {
  color: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper.active .book-now {
  color: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -53px;
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 50%;
  transition: 0.3s;
  z-index: 2;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper::before {
  position: absolute;
  content: "";
  left: -4px;
  bottom: -57px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #D2D2D2;
  transition: 0.3s;
  z-index: 2;
  transition: all 0.3s;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper::before:hover {
  background: var(--color-primary);
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper .icon {
  margin-bottom: 30px;
  transition: all 0.3s;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper .icon svg path {
  fill: #000;
  transition: all 0.3s;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper .title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  text-transform: capitalize;
  transition: all 0.3s;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper .desc {
  color: #707070;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 90%;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.rts-playing-process-area .section-inner .playing-process-inner .item-wrapper .book-now {
  color: var(--color-title);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  transition: all 0.3s;
}

/* Contact Form */
.rts-contact-area .section-inner {
  display: flex;
}
@media (max-width: 991px) {
  .rts-contact-area .section-inner {
    display: block;
  }
}
.rts-contact-area .section-inner .map-area {
  width: 50%;
  flex: 1;
}
@media (max-width: 991px) {
  .rts-contact-area .section-inner .map-area {
    width: 100%;
    height: 500px;
  }
}
.rts-contact-area .section-inner .map-area iframe {
  height: 100%;
}
.rts-contact-area .section-inner .contact-form-wrapper {
  width: 50%;
  padding: 80px 80px 65px 80px;
}
@media (max-width: 991px) {
  .rts-contact-area .section-inner .contact-form-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .rts-contact-area .section-inner .contact-form-wrapper {
    padding: 60px 25px;
  }
}
.rts-contact-area .section-inner .contact-form-wrapper .rts-section-title {
  max-width: 60%;
  margin-bottom: 50px;
}
@media (max-width: 1600px) {
  .rts-contact-area .section-inner .contact-form-wrapper .rts-section-title {
    max-width: 70%;
  }
}
@media (max-width: 1400px) {
  .rts-contact-area .section-inner .contact-form-wrapper .rts-section-title {
    max-width: 90%;
  }
}
@media (max-width: 1200px) {
  .rts-contact-area .section-inner .contact-form-wrapper .rts-section-title {
    max-width: 100%;
  }
}
.rts-contact-area .section-inner .contact-form-wrapper .rts-section-title .heading-title {
  font-weight: 400;
  text-transform: none;
}
.rts-contact-area .section-inner .contact-form-wrapper .rts-section-title .heading-title span {
  font-weight: 700;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner {
  max-width: 60%;
}
@media (max-width: 1600px) {
  .rts-contact-area .section-inner .contact-form-wrapper .form-inner {
    max-width: 70%;
  }
}
@media (max-width: 1400px) {
  .rts-contact-area .section-inner .contact-form-wrapper .form-inner {
    max-width: 90%;
  }
}
@media (max-width: 1200px) {
  .rts-contact-area .section-inner .contact-form-wrapper .form-inner {
    max-width: 100%;
  }
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-input-flexing {
  margin-bottom: 30px;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-input-flexing label {
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-input-flexing input {
  padding: 15px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-title);
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-input-flexing input::placeholder {
  color: #74787C !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal !important;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-texting-fild label {
  color: #141414;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-texting-fild textarea {
  padding: 15px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  min-height: 100px;
  color: var(--color-title);
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form .golfy-contact-texting-fild textarea::placeholder {
  color: #74787C !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: normal !important;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form button {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  max-width: max-content;
  padding: 18px 27px;
  background: var(--color-primary);
  margin-top: 30px;
  transition: all 0.3s;
}
.rts-contact-area .section-inner .contact-form-wrapper .form-inner form button:hover {
  background: #a78448e0;
}

.contact-right-information .contact-info-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media only screen and (max-width: 479px) {
  .contact-right-information .contact-info-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.contact-right-information .contact-info-wrapper .single i {
  display: block;
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--color-primary);
}
.contact-right-information .contact-info-wrapper .single a {
  display: block;
}

.rts-contact-area.inner iframe {
  filter: grayscale(1);
}

/* About Form */
@media (max-width: 1366px) {
  .rts-about-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.rts-about-area .about-image-thumbnail-3 {
  position: relative;
}
@media (max-width: 768px) {
  .rts-about-area .about-image-thumbnail-3 .image-1 {
    width: 100%;
  }
}
.rts-about-area .about-image-thumbnail-3 .image-2 {
  position: absolute;
  bottom: -75px;
  right: -40px;
}
@media (max-width: 991px) {
  .rts-about-area .about-image-thumbnail-3 .image-2 {
    bottom: -60px;
    right: 120px;
  }
}
@media (max-width: 768px) {
  .rts-about-area .about-image-thumbnail-3 .image-2 {
    right: 0;
  }
}
@media (max-width: 576px) {
  .rts-about-area .about-image-thumbnail-3 .image-2 {
    display: none;
  }
}
.rts-about-area .about-image-thumbnail-3 .image-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(17, 17, 17, 0.5);
}
.rts-about-area .about-image-thumbnail-3 .year {
  position: absolute;
  bottom: -90px;
}
@media (max-width: 576px) {
  .rts-about-area .about-image-thumbnail-3 .year {
    display: none;
  }
}
.rts-about-area .about-image-thumbnail-3 .year p {
  color: var(--color-primary);
  font-size: 16px;
  line-height: 50px;
}
.rts-about-area .about-image-thumbnail-3 .year p span {
  color: var(--color-title);
  font-size: 50px;
  font-weight: 700;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-about-area .about-image-thumbnail-3 .year p span {
    font-size: 42px;
  }
}
.rts-about-area .about-three-wrapper {
  margin-left: 80px;
}
@media (max-width: 1200px) {
  .rts-about-area .about-three-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .rts-about-area .about-three-wrapper {
    margin-top: 150px;
  }
}
@media (max-width: 576px) {
  .rts-about-area .about-three-wrapper {
    margin-top: 50px;
  }
}
.rts-about-area .about-three-wrapper .rts-section-title .heading-title {
  max-width: 80%;
  margin-bottom: 25px;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-about-area .about-three-wrapper .rts-section-title .heading-title {
    max-width: 100%;
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .rts-about-area .about-three-wrapper .rts-section-title .heading-title {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .rts-about-area .about-three-wrapper .rts-section-title .heading-title {
    font-size: 36px;
  }
}
@media (max-width: 450px) {
  .rts-about-area .about-three-wrapper .rts-section-title .heading-title {
    font-size: 24px;
    line-height: 36px;
  }
}
.rts-about-area .about-three-wrapper .rts-tab-three-start {
  margin-top: 0;
}
.rts-about-area .about-three-wrapper .rts-tab-three-start ul {
  padding: 0;
  border: none;
  margin: 0 0 40px 0;
}
@media (max-width: 1200px) {
  .rts-about-area .about-three-wrapper .rts-tab-three-start ul {
    gap: 10px;
  }
}
.rts-about-area .about-three-wrapper .rts-tab-three-start ul li {
  padding: 0;
  margin: 0;
}
.rts-about-area .about-three-wrapper .rts-tab-three-start ul li button {
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  color: #171717;
  border: 1px solid #F0F0F0;
  width: 160px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  border-radius: 0;
}
@media (max-width: 450px) {
  .rts-about-area .about-three-wrapper .rts-tab-three-start ul li button {
    width: 120px;
  }
}
.rts-about-area .about-three-wrapper .rts-tab-three-start ul li button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.rts-about-area .about-three-wrapper .rts-tab-three-start ul li button[aria-selected=true] {
  background: var(--color-primary);
  color: var(--color-white);
}
.rts-about-area .about-three-wrapper .rts-tab-three-start .tab-content .tab-pane .single-tab-content-three .disc {
  color: #707070;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  max-width: 92%;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .rts-about-area .about-three-wrapper .rts-tab-three-start .tab-content .tab-pane .single-tab-content-three .disc {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .rts-about-area.home-2 .about-image-thumbnail-3 img {
    width: 100%;
  }
}
.rts-about-area.home-2 .about-three-wrapper {
  margin-left: 80px;
}
@media (max-width: 991px) {
  .rts-about-area.home-2 .about-three-wrapper {
    margin-left: 0;
    margin-top: 60px;
  }
}
.rts-about-area.home-2 .about-three-wrapper .rts-section-title {
  margin-bottom: 50px;
}
.rts-about-area.home-2 .about-three-wrapper .rts-section-title .heading-title {
  font-weight: 400;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-about-area.home-2 .about-three-wrapper .rts-section-title .heading-title {
    max-width: 90%;
    font-size: 36px;
  }
}
.rts-about-area.home-2 .about-three-wrapper .desc {
  max-width: 85%;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .rts-about-area.home-2 .about-three-wrapper .desc {
    max-width: 100%;
  }
}
.rts-about-area.home-2 .about-three-wrapper .banner-btn-area .rts-btn {
  padding: 15px 53px;
}
.rts-about-area.home-3 .about-image-thumbnail-3 {
  display: flex;
  align-items: end;
  gap: 20px;
}
.rts-about-area.home-3 .about-image-thumbnail-3 .thumbnail-left {
  width: 44%;
}
.rts-about-area.home-3 .about-image-thumbnail-3 .thumbnail-left .content {
  margin-bottom: 20px;
}
.rts-about-area.home-3 .about-image-thumbnail-3 .thumbnail-left .content .title {
  color: #262626;
  font-size: 24px;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .rts-about-area.home-3 .about-image-thumbnail-3 .thumbnail-left .content .title {
    font-size: 23px;
  }
}
.rts-about-area.home-3 .about-image-thumbnail-3 .thumbnail-left .content .year {
  position: unset;
  font-size: 96px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  color: #707070;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #707070;
}
.rts-about-area.home-3 .about-image-thumbnail-3 .image-1 {
  width: 56%;
}
.rts-about-area.home-3 .about-three-wrapper {
  margin-left: 0;
}
.rts-about-area.home-3 .about-three-wrapper .rts-section-title .heading-title {
  max-width: 100%;
  margin-bottom: 15px;
}
.rts-about-area.home-3 .about-three-wrapper .rts-section-title .sub-title {
  margin-bottom: 15px;
}
.rts-about-area.home-3 .about-three-wrapper .desc {
  max-width: 80%;
  margin-bottom: 25px;
}
@media only screen and (max-width: 575px) {
  .rts-about-area.home-3 .about-three-wrapper .desc {
    max-width: 100%;
  }
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 34px;
}
@media only screen and (max-width: 575px) {
  .rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress {
  display: flex;
  width: 50%;
  align-items: center;
  background: var(--color-white);
  padding: 20px 30px;
  gap: 16px;
}
@media only screen and (max-width: 575px) {
  .rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress {
    width: 100%;
  }
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .icon {
  width: 20%;
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .progress-right {
  width: 80%;
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .progress-right .top .name {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .progress-right .bottom {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .progress-right .bottom .progress {
  width: 65%;
  height: 3px;
  background: #d9d9d9;
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .progress-right .bottom .progress .progress-bar {
  background: var(--color-primary);
}
.rts-about-area.home-3 .about-three-wrapper .progress-wrapper-area .single-progress .progress-right .bottom .digit {
  color: #000;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
.rts-about-area.home-3 .about-three-wrapper .author-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
  border-top: 1px solid #D9D9D9;
}
@media only screen and (max-width: 575px) {
  .rts-about-area.home-3 .about-three-wrapper .author-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.rts-about-area.home-3 .about-three-wrapper .author-area .author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.rts-about-area.home-3 .about-three-wrapper .author-area .author .content .title {
  color: var(--color-title);
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}
.rts-about-area.home-3 .about-three-wrapper .author-area .author .content .author-desc {
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}
.rts-about-area.home-3 .about-three-wrapper .author-area .rts-btn {
  padding: 18px 55px;
  line-height: 1;
}

/* About Form */
:root {
  --calendar-border:#D5C9B2;
  --calendar-bg:#fff;
  --calendar-standout:rgb(40,40,59);
  --calendar-color:#A5A5A5;
  --calendar-fade-color:#c0c0c0;
}

.calender-real-time {
  position: relative;
}
.calender-real-time #btnPrev,
.calender-real-time #btnNext {
  position: absolute !important;
  max-width: max-content;
  top: 22px;
  color: #000 !important;
}
.calender-real-time #btnPrev {
  left: 15px;
}
.calender-real-time #btnNext {
  right: 15px;
}
.calender-real-time .days td {
  color: #707070;
}
.calender-real-time .group:after {
  content: "";
  display: table;
  clear: both;
}
.calender-real-time img {
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}
.calender-real-time a {
  text-decoration: none;
}
.calender-real-time .calendar-wrapper {
  border-radius: 5px;
  background: var(--calendar-bg);
}
.calender-real-time table {
  clear: both;
  width: 100%;
  border: 1px solid var(--calendar-border);
  border-radius: 3px;
  border-collapse: collapse;
  color: var(--calendar-color);
}
.calender-real-time td {
  height: 60px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid var(--calendar-border);
  border-top: 1px solid var(--calendar-border);
  width: 100%/7;
}
@media only screen and (max-width: 575px) {
  .calender-real-time td {
    padding: 0;
  }
}
.calender-real-time td.not-current {
  color: var(--calendar-fade-color);
}
.calender-real-time td.today {
  font-weight: 700;
  color: var(--calendar-standout);
  font-size: 1.5em;
  background: #C9A361;
  color: #fff;
}
.calender-real-time td.normal {
  background: var(--color-primary) !important;
  color: #fff;
}
.calender-real-time thead td {
  border: none;
  color: var(--calendar-standout);
  text-transform: capitalize;
  font-size: 24px;
  background: #FFF7E9;
  font-family: var(--title-font);
}
.calender-real-time #btnPrev {
  float: left;
  margin-bottom: 20px;
}
.calender-real-time #btnNext {
  float: right;
  margin-bottom: 20px;
}
.calender-real-time #btnPrev, .calender-real-time #btnNext {
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: var(--calendar-fade-color);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.calender-real-time #btnPrev:hover, .calender-real-time #btnNext:hover {
  color: var(--calendar-standout);
  font-weight: bold;
}

.course-success #customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #E6E6E6;
}
.course-success #customers td, .course-success #customers th {
  padding: 8px;
}
.course-success #customers tr:nth-child(even) {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E6E6E6 !important;
}
.course-success #customers tr:nth-child(odd) {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E6E6E6 !important;
}
.course-success #customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--color-primary);
  color: white;
}
.course-success .rts-btn {
  margin: auto;
}
.course-success td {
  padding: 10px 16px !important;
}

.course-details-left-wrapper .small-image-para-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 575px) {
  .course-details-left-wrapper .small-image-para-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .course-details-left-wrapper .small-image-para-wrapper img {
    width: 100%;
  }
}

/* Service area style */
@media (max-width: 1366px) {
  .rts-service-area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.rts-service-area .service-inner .service-wrapper {
  position: relative;
}
.rts-service-area .service-inner .service-wrapper .overlink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.rts-service-area .service-inner .service-wrapper .image-area {
  position: relative;
  z-index: 10;
  overflow: hidden;
  transition: all 0.6s;
}
.rts-service-area .service-inner .service-wrapper .image-area:hover .bottom-content {
  bottom: 40px;
}
@media (max-width: 1024px) and (min-width: 991px) {
  .rts-service-area .service-inner .service-wrapper .image-area:hover .bottom-content {
    bottom: 20px;
  }
}
.rts-service-area .service-inner .service-wrapper .image-area a img {
  width: 100%;
  transform: scale(100%);
}
.rts-service-area .service-inner .service-wrapper .image-area::before {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111 94.71%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.rts-service-area .service-inner .service-wrapper .image-area .bottom-content {
  position: absolute;
  width: 80%;
  height: max-content;
  left: 40px;
  bottom: -90px;
  transition: all 0.6s;
  z-index: 1;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content {
    width: 93%;
    left: 10px;
  }
}
@media (max-width: 768px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content {
    left: 25px;
  }
}
.rts-service-area .service-inner .service-wrapper .image-area .bottom-content .icon {
  width: max-content;
}
.rts-service-area .service-inner .service-wrapper .image-area .bottom-content .title {
  color: var(--color-white);
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 1366px) and (min-width: 991px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content .title {
    font-size: 22px;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content .title {
    margin-top: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content .title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content .title {
    margin-bottom: 30px;
  }
}
.rts-service-area .service-inner .service-wrapper .image-area .bottom-content .desc {
  color: var(--color-white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-service-area .service-inner .service-wrapper .image-area .bottom-content .desc {
    margin-bottom: 20px;
  }
}
.rts-service-area .service-inner .service-wrapper .image-area .bottom-content .service-btn {
  color: var(--color-white);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.rts-service-area .service-inner .service-wrapper .image-area .bottom-content .service-btn i {
  margin-left: 8px;
}
.rts-service-area.area-2 .service-inner .left-side-content .rts-section-title .heading-title {
  margin-bottom: 20px;
}
.rts-service-area.area-2 .service-inner .left-side-content .rts-section-title .desc {
  max-width: 80%;
}
.rts-service-area.area-2 .service-inner .left-side-content .service-wrapper {
  margin-top: 80px;
}
.rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li {
  display: flex;
  gap: 22px;
  align-items: center;
  width: 45%;
  margin: 0;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li {
    gap: 15px;
    width: 43%;
  }
}
@media (max-width: 576px) {
  .rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li {
    width: 100%;
  }
}
.rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li .icon {
  flex-basis: 20%;
}
@media (max-width: 576px) {
  .rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li .icon {
    flex-basis: auto;
  }
}
.rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li .service-title {
  flex-basis: 80%;
  color: var(--color-title);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li .service-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .rts-service-area.area-2 .service-inner .left-side-content .service-wrapper ul li .service-title br {
    display: none;
  }
}
.rts-service-area.area-2 .service-inner .right-side-hero {
  margin-left: 30px;
}
@media (max-width: 991px) {
  .rts-service-area.area-2 .service-inner .right-side-hero {
    margin-left: 0;
    margin-bottom: 60px;
  }
}
.rts-service-area.area-2 .service-bottom {
  margin-top: 100px;
}
@media (max-width: 1366px) {
  .rts-service-area.area-2 .service-bottom {
    margin: 100px 15px 0 15px;
  }
}
.rts-service-area.area-2 .service-bottom .counter-up-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .rts-service-area.area-2 .service-bottom .counter-up-area {
    gap: 60px;
    justify-content: left;
  }
}
.rts-service-area.area-2 .service-bottom .counter-up-area .rts-single-service-two {
  display: flex;
  align-items: center;
  gap: 25px;
}
.rts-service-area.area-2 .service-bottom .counter-up-area .rts-single-service-two .counter-wrapper .title-main {
  color: var(--color-title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.rts-service-area.home-2 .rts-section-title {
  max-width: 45%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .rts-service-area.home-2 .rts-section-title {
    max-width: 100%;
  }
}
@media (max-width: 1366px) {
  .rts-match-event-area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.rts-match-event-area .rts-section-title {
  max-width: 50%;
  margin: 0 auto 80px auto;
}
@media (max-width: 1200px) {
  .rts-match-event-area .rts-section-title {
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .rts-match-event-area .rts-section-title {
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  .rts-match-event-area .rts-section-title {
    max-width: 100%;
  }
  .rts-match-event-area .rts-section-title .heading-title {
    font-size: 32px;
    line-height: 45px;
  }
}
@media (max-width: 450px) {
  .rts-match-event-area .rts-section-title .heading-title {
    font-size: 24px;
    line-height: 40px;
  }
}
.rts-match-event-area .section-inner .event-wrapper {
  display: flex;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #D9D9D9;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper {
    display: block;
  }
}
.rts-match-event-area .section-inner .event-wrapper:hover .image-area img {
  transform: scale(110%);
}
.rts-match-event-area .section-inner .event-wrapper:first-child {
  padding-top: 0;
}
.rts-match-event-area .section-inner .event-wrapper:last-child {
  border: none;
  padding-bottom: 0;
}
.rts-match-event-area .section-inner .event-wrapper .image-area {
  flex-basis: 20%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .image-area {
    margin-bottom: 30px;
  }
}
.rts-match-event-area .section-inner .event-wrapper .image-area img {
  transform: scale(100%);
  transition: all 0.4s;
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .image-area img {
    width: 100%;
  }
}
.rts-match-event-area .section-inner .event-wrapper .content {
  flex-basis: 40%;
  padding-left: 60px;
}
@media (max-width: 1200px) {
  .rts-match-event-area .section-inner .event-wrapper .content {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .rts-match-event-area .section-inner .event-wrapper .content {
    flex-basis: 45%;
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .content {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.rts-match-event-area .section-inner .event-wrapper .content .event-single {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-single {
    gap: 15px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-single {
    display: block;
  }
}
.rts-match-event-area .section-inner .event-wrapper .content .event-single p {
  margin-bottom: 0;
}
.rts-match-event-area .section-inner .event-wrapper .content .event-single p img {
  margin-right: 10px;
}
.rts-match-event-area .section-inner .event-wrapper .content .event-single p.location {
  color: var(--color-title);
  font-weight: 500;
}
@media (max-width: 450px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-single p.location {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-single p {
    font-size: 14px;
  }
}
.rts-match-event-area .section-inner .event-wrapper .content .event-title {
  color: var(--color-title);
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
  max-width: 70%;
}
@media (max-width: 1200px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-title {
    max-width: 80%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .content .event-title {
    max-width: 100%;
  }
}
.rts-match-event-area .section-inner .event-wrapper .content .event-title a {
  font-family: var(--title-font);
}
.rts-match-event-area .section-inner .event-wrapper .ticket-area {
  flex-basis: 20%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .ticket-area {
    flex-basis: 17%;
    gap: 10px;
    justify-content: left;
  }
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .ticket-area {
    justify-content: left;
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .rts-match-event-area .section-inner .event-wrapper .ticket-area .icon {
    width: 40px;
  }
}
.rts-match-event-area .section-inner .event-wrapper .ticket-area .price {
  color: var(--color-title);
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  text-transform: capitalize;
  margin-bottom: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .ticket-area .price {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 450px) {
  .rts-match-event-area .section-inner .event-wrapper .ticket-area .price {
    font-size: 24px;
    line-height: 34px;
  }
}
.rts-match-event-area .section-inner .event-wrapper .button-area {
  flex-basis: 20%;
  text-align: end;
}
@media (max-width: 991px) and (min-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .button-area {
    flex-basis: 18%;
  }
  .rts-match-event-area .section-inner .event-wrapper .button-area .rts-btn {
    padding: 18px 25px;
  }
}
.rts-match-event-area .section-inner .event-wrapper .button-area .rts-btn {
  margin-left: auto;
}
@media (max-width: 768px) {
  .rts-match-event-area .section-inner .event-wrapper .button-area .rts-btn {
    margin-left: 0;
    margin-right: auto;
  }
}

.rts-testimonial-section .rts-section-title {
  max-width: 40%;
  margin: 0 auto 60px auto;
}
@media (max-width: 1200px) {
  .rts-testimonial-section .rts-section-title {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-testimonial-section .rts-section-title {
    max-width: 100%;
  }
}
.rts-testimonial-section .rts-section-title .heading-title {
  font-weight: 400;
}
.rts-testimonial-section .section-inner {
  position: relative;
}
@media (max-width: 1366px) {
  .rts-testimonial-section .section-inner {
    margin: 0 15px;
  }
}
.rts-testimonial-section .section-inner .testimonial-wrapper .desc {
  max-width: 60%;
  margin: auto;
  margin: 40px auto;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .rts-testimonial-section .section-inner .testimonial-wrapper .desc {
    max-width: 80%;
  }
}
@media (max-width: 576px) {
  .rts-testimonial-section .section-inner .testimonial-wrapper .desc {
    max-width: 100%;
  }
}
.rts-testimonial-section .section-inner .swiper-button-area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-prev,
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-title);
  transition: all 0.3s;
}
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-prev::after,
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-next::after {
  display: none;
}
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-prev:hover,
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-next:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
@media (max-width: 576px) {
  .rts-testimonial-section .section-inner .swiper-button-area .swiper-button-prev,
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-next {
    display: none;
  }
}
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-prev {
  left: 0;
}
@media (max-width: 1366px) {
  .rts-testimonial-section .section-inner .swiper-button-area .swiper-button-prev {
    left: 15px;
  }
}
.rts-testimonial-section .section-inner .swiper-button-area .swiper-button-next {
  right: 0;
}
@media (max-width: 1366px) {
  .rts-testimonial-section .section-inner .swiper-button-area .swiper-button-next {
    right: 15px;
  }
}
.rts-testimonial-section .section-inner .swiper-pagination3 {
  position: relative;
  width: 100px;
  text-align: center;
  margin: 60px auto 0 auto;
}
.rts-testimonial-section .section-inner .swiper-pagination3 .swiper-pagination-bullet {
  border: 1px solid var(--color-primary);
  opacity: 1;
  background: none;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s;
}
.rts-testimonial-section .section-inner .swiper-pagination3 .swiper-pagination-bullet:hover::after {
  opacity: 1;
}
.rts-testimonial-section .section-inner .swiper-pagination3 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.3s;
}
.rts-testimonial-section .section-inner .swiper-pagination3 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper {
  border-radius: 6px;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area {
  position: relative;
  border-radius: 6px;
  z-index: 1;
  overflow: hidden;
  transition: all 0.6s;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area:hover::after {
  transform: translateY(0);
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area:hover::before {
  transform: translateY(-100%);
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area:hover .quote {
  color: var(--color-white);
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area:hover .author-area .author-content .title {
  color: var(--color-white);
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area:hover .author-area .author-content .author-desc {
  color: #ccc;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area img {
  border-radius: 9px;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.65);
  z-index: 0;
  transform: translateY(101%);
  transition: all 0.6s;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: #F6F6F6;
  z-index: 0;
  transition: all 0.6s;
  transform: translateY(0);
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .image-area .testimonial-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 40px 50px 40px 40px;
  z-index: 1;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper ul.star-rating {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper ul.star-rating li {
  list-style: none;
  color: #FFB341;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .quote {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  transition: all 0.6s;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .author-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .author-area .author-content .title {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0;
  transition: all 0.6s;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .author-area .author-content .author-desc {
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  transition: all 0.6s;
}
.rts-testimonial-section.home-3 .section-inner .testimonial-wrapper .icon {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.rts-testimonial-section.home-3 .section-inner .swiper-pag {
  text-align: center;
  margin-top: 50px;
}
.rts-testimonial-section.home-3 .section-inner .swiper-pag .swiper-pagination-bullet {
  border: 1px solid var(--color-primary);
  opacity: 1;
  background: none;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s;
}
.rts-testimonial-section.home-3 .section-inner .swiper-pag .swiper-pagination-bullet:hover::after {
  opacity: 1;
}
.rts-testimonial-section.home-3 .section-inner .swiper-pag .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.3s;
}
.rts-testimonial-section.home-3 .section-inner .swiper-pag .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}

@media (max-width: 1366px) {
  .rts-pricing-area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.rts-pricing-area .rts-section-title {
  max-width: 42%;
  margin: 0 auto 60px auto;
}
@media (max-width: 1200px) {
  .rts-pricing-area .rts-section-title {
    max-width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-pricing-area .rts-section-title {
    max-width: 100%;
  }
}
.rts-pricing-area .rts-section-title .heading-title {
  font-weight: 400;
}
.rts-pricing-area .section-inner .pricing-wrapper-one {
  padding: 40px 50px 50px 40px;
  border: 1px solid #E3E3E3;
  margin: 0 30px;
}
@media (max-width: 1200px) {
  .rts-pricing-area .section-inner .pricing-wrapper-one {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .rts-pricing-area .section-inner .pricing-wrapper-one {
    padding: 40px 30px 50px 30px;
  }
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-header-start {
  margin-bottom: 30px;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-header-start .title {
  color: var(--color-title);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-header-start .price-area .title {
  color: var(--color-title);
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-header-start .price-area span {
  color: #6F7073;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: lowercase;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body {
  padding-top: 30px;
  border-top: 1px solid #D8D8D8;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body .description {
  margin-bottom: 25px;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body .description .disc {
  line-height: 26px;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body .single-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body .single-pricing i {
  color: var(--color-primary);
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body .rts-btn {
  margin-top: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px;
  color: var(--color-primary);
  background: none;
  border: 1px solid var(--color-primary);
  transition: all 0.3s;
}
.rts-pricing-area .section-inner .pricing-wrapper-one .pricing-body .rts-btn:hover {
  color: var(--color-white);
  background: var(--color-primary);
}
.rts-pricing-area .section-inner .pricing-wrapper-one.mid {
  background: #FFF4E1;
  border: 1px solid #FFF4E1;
}
.rts-pricing-area.home-2 .section-inner .faq-area .rts-section-title {
  max-width: 70%;
  margin: 0;
}
@media (max-width: 1200px) and (min-width: 991px) {
  .rts-pricing-area.home-2 .section-inner .faq-area .rts-section-title {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .rts-pricing-area.home-2 .section-inner .faq-area .rts-section-title {
    max-width: 100%;
  }
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two {
  margin-right: 60px;
}
@media (max-width: 991px) {
  .rts-pricing-area.home-2 .section-inner .faq-area .accordion-two {
    margin-right: 0;
  }
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two .accordion-item {
  background: none;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #E3E3E3;
  padding: 21px 0;
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two .accordion-item .accordion-button {
  background: none;
  border: none;
  box-shadow: none;
  font-size: 22px;
  padding: 0;
  color: var(--color-title);
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two .accordion-item .accordion-button::after {
  background: none;
  content: "+";
  transform: none;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 16px;
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two .accordion-item:last-child {
  border-bottom: 1px solid #E3E3E3;
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.rts-pricing-area.home-2 .section-inner .faq-area .accordion-two .accordion-item .accordion-body {
  padding: 1rem 0;
}
.rts-pricing-area.home-2 .pricing-inner .pricing-wrapper-one {
  margin: 0;
  border: none;
}
@media (max-width: 1200px) {
  .rts-pricing-area.home-2 .pricing-inner .pricing-wrapper-one {
    padding: 40px 20px 50px 20px;
  }
}
.rts-pricing-area.home-2 .pricing-inner .pricing-wrapper-one h5.title {
  border: 1px solid var(--color-primary);
  width: max-content;
  padding: 8px 12px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1;
}
.rts-pricing-area.home-2 .pricing-inner .pricing-wrapper-one.mid {
  background: #FFFBF3;
}
.rts-pricing-area.home-3 .container {
  max-width: 740px;
}
.rts-pricing-area.home-3 .section-inner .faq-area .rts-section-title {
  max-width: 100%;
  margin: 0 auto;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two {
  margin-right: 0;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two .accordion-item {
  border-color: #d5c9b259;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two .accordion-item .accordion-button {
  font-size: 22px;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two .accordion-item .accordion-button::after {
  color: #d5c9b296;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two .accordion-item .accordion-body .disc {
  max-width: 88%;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two .accordion-item:first-child {
  border-top: none;
}
.rts-pricing-area.home-3 .section-inner .faq-area .accordion-two .accordion-item:last-child {
  border-bottom: 1px solid #d5c9b296;
}

.rts-video-area .section-inner video {
  min-width: 100%;
  height: 650px;
  object-fit: cover;
}

.facility-details-step-2 p.disc {
  font-size: 16px;
  line-height: 26px;
}
.facility-details-step-2.inner {
  max-width: 900px;
  margin: 0 auto;
}

.facility-details-step-1 .thumbnail {
  margin-bottom: 45px;
}
.facility-details-step-1 .title {
  margin-bottom: 16px;
}
.facility-details-step-1 p.disc {
  margin-bottom: 23px;
  font-size: 16px;
  line-height: 26px;
}
.facility-details-step-1 .facility-details-card {
  padding: 30px;
  box-shadow: 0px 8px 30px #6a6a6a1a;
  display: flex;
  align-items: flex-start;
  border-left: 5px solid var(--color-primary);
}
.facility-details-step-1 .facility-details-card .thumbnail img {
  height: 29px;
  width: 74px;
}
.facility-details-step-1 .facility-details-card .details {
  margin-left: 20px;
}
.facility-details-step-1 .facility-details-card .details .title {
  margin-bottom: 5px;
  font-size: 20px;
}
.facility-details-step-1 .facility-details-card .details p {
  margin-bottom: 0;
}

.facility-details-step-2 .single-facility-step {
  background: #fff;
  padding: 40px 20px;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 6px 39px #0000000a;
}
.facility-details-step-2 .single-facility-step p.step {
  position: relative;
  color: #fff;
  z-index: 1;
  margin-bottom: 52px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 29px;
}
.facility-details-step-2 .single-facility-step p.step::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #DF0A0A;
  height: 60px;
  width: 60px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.facility-details-step-2 .single-facility-step p.step::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: #e81c2e1a;
  height: 90px;
  width: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.facility-details-step-2 .single-facility-step .title {
  margin-bottom: 8px;
}
.facility-details-step-2 .single-facility-step p.disc {
  font-size: 16px;
  line-height: 26px;
}

.facility-details-step-3 .title {
  margin-bottom: 8px;
}
.facility-details-step-3 p.disc {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.facility-details-step-3 .single-banifits {
  margin-bottom: 10px;
}
.facility-details-step-3 .single-banifits i {
  margin-right: 15px;
  color: var(--color-primary);
}

.rts-single-wized {
  background: #F6F6F6;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
}
.rts-single-wized:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 479px) {
  .rts-single-wized {
    padding: 20px;
  }
}
.rts-single-wized.service {
  border-radius: 0;
}
.rts-single-wized.service .single-categories li a {
  border-radius: 0;
}
.rts-single-wized.download {
  background: #1C2539;
}
.rts-single-wized.download .title {
  color: #fff;
}
.rts-single-wized.download .single-download-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #2E3951;
}
.rts-single-wized.download .single-download-area:first-child {
  padding-top: 0;
}
.rts-single-wized.download .single-download-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rts-single-wized.download .single-download-area .mid {
  margin-right: auto;
  margin-left: 15px;
}
.rts-single-wized.download .single-download-area .mid .title {
  margin-bottom: 0;
  font-size: 18px;
  font-family: var(--font-primary);
}
.rts-single-wized.download .single-download-area .mid span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
.rts-single-wized.download .single-download-area a.rts-btn {
  padding: 11px 15px;
  border-radius: 0;
}
.rts-single-wized.contact {
  background: #1C2539;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px;
}
@media only screen and (max-width: 479px) {
  .rts-single-wized.contact {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-single-wized.contact:last-child {
    margin-bottom: 0;
  }
}
.rts-single-wized.contact .wized-body {
  text-align: center;
}
.rts-single-wized.contact .wized-body .title {
  color: #fff;
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 40px;
}
.rts-single-wized.contact .wized-body a.rts-btn {
  display: block;
  max-width: max-content;
  margin: auto;
}
.rts-single-wized.contact .wized-body .contact-area {
  padding: 0;
  margin: 0;
}
.rts-single-wized.contact .wized-body .contact-area li {
  list-style: none;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0;
}
.rts-single-wized.contact .wized-body .contact-area li i {
  margin-right: 7px;
}
.rts-single-wized .wized-header .title {
  margin-bottom: 10px;
}
.rts-single-wized .wized-body {
  margin-top: 40px;
}
.rts-single-wized .single-categories {
  margin-bottom: 15px;
  padding: 0;
}
.rts-single-wized .single-categories:last-child {
  margin-bottom: 0;
}
.rts-single-wized .single-categories li {
  list-style: none;
}
.rts-single-wized .single-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: #fff;
  color: #5D666F;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 5px;
}
.rts-single-wized .single-categories li a i {
  color: var(--color-primary);
  transition: 0.3s;
}
.rts-single-wized .single-categories li a:hover {
  background: var(--color-primary);
  transform: translateY(-5px) scale(1.03);
  color: var(--color-white);
}
.rts-single-wized .single-categories li a:hover i {
  color: #fff;
}
.rts-single-wized .recent-post-single {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.rts-single-wized .recent-post-single:last-child {
  margin-bottom: 0;
}
.rts-single-wized .recent-post-single .thumbnail {
  margin-right: 20px;
  overflow: hidden;
  max-width: max-content;
  width: 100%;
  border-radius: 5px;
}
.rts-single-wized .recent-post-single .thumbnail img {
  min-width: 85px;
  height: auto;
  transition: 0.3s;
}
.rts-single-wized .recent-post-single .thumbnail:hover img {
  transform: scale(1.2);
}
.rts-single-wized .recent-post-single .user {
  display: flex;
  align-items: center;
}
.rts-single-wized .recent-post-single .user span {
  margin-left: 9px;
}
.rts-single-wized .recent-post-single .post-title .title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1C2539;
  line-height: 26px;
  margin-top: 5px;
  transition: 0.3s;
}
@media only screen and (max-width: 479px) {
  .rts-single-wized .recent-post-single .post-title .title {
    font-size: 14px;
    line-height: 26px;
    margin-top: 0;
  }
}
.rts-single-wized .recent-post-single .post-title:hover .title {
  color: var(--color-primary);
}
.rts-single-wized .gallery-inner {
  display: flex;
  flex-direction: column;
}
.rts-single-wized .gallery-inner .single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rts-single-wized .gallery-inner .single-row a {
  overflow: hidden;
  border-radius: 6px;
}
@media only screen and (max-width: 479px) {
  .rts-single-wized .gallery-inner .single-row a {
    display: block;
    width: 100%;
  }
}
.rts-single-wized .gallery-inner .single-row a img {
  max-width: 97px;
  height: auto;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rts-single-wized .gallery-inner .single-row a img {
    max-width: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-single-wized .gallery-inner .single-row a img {
    min-width: 269px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-single-wized .gallery-inner .single-row a img {
    min-width: 193px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-single-wized .gallery-inner .single-row a img {
    min-width: 135px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-single-wized .gallery-inner .single-row a img {
    min-width: 140px;
  }
}
@media only screen and (max-width: 479px) {
  .rts-single-wized .gallery-inner .single-row a img {
    min-width: 80px;
  }
}
.rts-single-wized .gallery-inner .single-row a:hover img {
  transform: scale(1.2);
}
.rts-single-wized .gallery-inner .single-row.row-1 {
  margin-bottom: 20px;
}
.rts-single-wized .tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.rts-single-wized .tags-wrapper a {
  padding: 5px 16px;
  background: #fff;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: #1C2539;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.rts-single-wized .tags-wrapper a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px) scale(1.09);
}

/* Gallery area style */
.rts-gallery-section .rts-section-title {
  max-width: 35%;
  margin: auto;
}
@media (max-width: 1200px) {
  .rts-gallery-section .rts-section-title {
    max-width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .rts-gallery-section .rts-section-title {
    max-width: 100%;
  }
}
.rts-gallery-section .rts-section-title .heading-title {
  font-weight: 400;
}
.rts-gallery-section .section-inner .gallery-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .rts-gallery-section .section-inner .gallery-wrapper img {
    width: 100%;
  }
}
.rts-gallery-section .section-inner .gallery-wrapper:hover .gallery-image img {
  transform: scale(110%);
}
.rts-gallery-section .section-inner .gallery-wrapper:hover .gallery-image .item-overlay {
  opacity: 1;
  visibility: visible;
}
.rts-gallery-section .section-inner .gallery-wrapper:hover .center-icon {
  opacity: 1;
}
.rts-gallery-section .section-inner .gallery-wrapper .gallery-image {
  overflow: hidden;
  display: block;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.rts-gallery-section .section-inner .gallery-wrapper .gallery-image .item-overlay {
  position: absolute;
  top: 0px;
  background: rgba(17, 17, 17, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.rts-gallery-section .section-inner .gallery-wrapper .gallery-image .item-overlay span {
  color: #ffff;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rts-gallery-section .section-inner .gallery-wrapper .center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 1;
}
.rts-gallery-section .section-inner .swiper-pagination2 {
  position: relative;
  width: 100px;
  margin: 60px auto 0 auto;
}
.rts-gallery-section .section-inner .swiper-pagination2 .swiper-pagination-bullet {
  border: 1px solid var(--color-primary);
  opacity: 1;
  background: none;
  width: 12px;
  height: 12px;
  position: relative;
  transition: all 0.3s;
}
.rts-gallery-section .section-inner .swiper-pagination2 .swiper-pagination-bullet:hover::after {
  display: block;
}
.rts-gallery-section .section-inner .swiper-pagination2 .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  display: none;
  transition: all 0.3s;
}
.rts-gallery-section .section-inner .swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  display: block;
}
@media (max-width: 1366px) {
  .rts-gallery-section.home-2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.rts-gallery-section.home-2 .section-inner {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .rts-gallery-section.home-2 .section-inner {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .rts-gallery-section.home-2 .section-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .rts-gallery-section.home-2 .section-inner .section-left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .rts-gallery-section.home-2 .section-inner .section-left {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .rts-gallery-section.home-2 .section-inner .section-left .image-area {
    width: 100%;
  }
}
.rts-gallery-section.home-2 .section-inner .section-left .image-area .gallery-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .rts-gallery-section.home-2 .section-inner .section-left .image-area .gallery-wrapper {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .rts-gallery-section.home-2 .section-inner .section-left .image-area .gallery-wrapper {
    width: 100%;
  }
  .rts-gallery-section.home-2 .section-inner .section-left .image-area .gallery-wrapper img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .rts-gallery-section.home-2 .section-inner .section-mid {
    width: 100%;
    margin-bottom: 10px;
  }
  .rts-gallery-section.home-2 .section-inner .section-mid img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .rts-gallery-section.home-2 .section-inner .section-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top,
.rts-gallery-section.home-2 .section-inner .section-right .section-right-bottom {
    width: 100%;
  }
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top .gallery-wrapper,
.rts-gallery-section.home-2 .section-inner .section-right .section-right-bottom .gallery-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
}
.rts-gallery-section.home-2 .section-inner .section-right .section-right-top .image-area,
.rts-gallery-section.home-2 .section-inner .section-right .section-right-bottom .image-area {
  display: flex;
  gap: 30px;
}
@media (max-width: 1200px) {
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top .image-area,
.rts-gallery-section.home-2 .section-inner .section-right .section-right-bottom .image-area {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top .image-area,
.rts-gallery-section.home-2 .section-inner .section-right .section-right-bottom .image-area {
    display: block;
  }
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top .image-area img,
.rts-gallery-section.home-2 .section-inner .section-right .section-right-bottom .image-area img {
    width: 100%;
  }
}
.rts-gallery-section.home-2 .section-inner .section-right .section-right-top {
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .rts-gallery-section.home-2 .section-inner .section-right .section-right-top img {
    width: 100%;
  }
}
.rts-gallery-section.home-2 .section-inner .gallery-wrapper .gallery-image .item-overlay .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 80%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.rts-gallery-section.home-2 .section-inner .gallery-wrapper .gallery-image .item-overlay .inner .content .sub-title {
  color: var(--color-white);
  margin-bottom: 5px;
}
.rts-gallery-section.home-2 .section-inner .gallery-wrapper .gallery-image .item-overlay .inner .content .title {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}
.rts-gallery-section.home-2 .section-inner .gallery-wrapper .gallery-image .item-overlay .inner span {
  position: unset;
  transform: none;
}

.rta-gallery-area-main .section-inner {
  height: 100%;
}
.rta-gallery-area-main .section-inner .gallery-wrapper {
  height: 100%;
}
.rta-gallery-area-main .section-inner .gallery-wrapper img {
  height: 100%;
}

.gallery-wrapper.main {
  position: relative;
}
.gallery-wrapper.main img {
  width: 100%;
}
.gallery-wrapper.main .item-overlay {
  position: absolute;
  top: 0px;
  background: rgba(17, 17, 17, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.gallery-wrapper.main .item-overlay .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 80%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.gallery-wrapper.main .item-overlay .inner span {
  position: unset;
  transform: none;
  color: #ffff;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 90% !important;
  transform: translate(-50%, -50%);
}
.gallery-wrapper.main .item-overlay .inner .content .sub-title {
  color: var(--color-white);
  margin-bottom: 5px;
}
.gallery-wrapper.main .item-overlay .inner .content .title {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
}
.gallery-wrapper.main:hover .item-overlay {
  opacity: 1;
  visibility: visible;
}
.gallery-wrapper.main:hover .item-overlay .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 80%;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Shop area style */
@media (max-width: 1366px) {
  .rts-shop-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.rts-shop-area .section-inner .product-item {
  position: relative;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.4s;
}
.rts-shop-area .section-inner .product-item:hover .social-area {
  opacity: 1;
  bottom: 150px;
}
.rts-shop-area .section-inner .product-item:hover .contents .product-action-area .product-price {
  transform: translateY(-25px);
  opacity: 0;
}
.rts-shop-area .section-inner .product-item:hover .contents .product-action-area .addto-cart {
  transform: translateY(-10px);
  opacity: 1;
}
.rts-shop-area .section-inner .product-item:hover .product-thumb img {
  transform: scale(110%);
}
.rts-shop-area .section-inner .product-item .product-thumb {
  display: block;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s;
}
.rts-shop-area .section-inner .product-item .product-thumb img {
  transition: all 0.3s;
  transform: scale(100%);
  width: 100%;
}
.rts-shop-area .section-inner .product-item .contents {
  margin-top: 30px;
}
.rts-shop-area .section-inner .product-item .contents .product-name {
  color: var(--color-title);
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-transform: capitalize;
}
.rts-shop-area .section-inner .product-item .contents .product-action-area {
  overflow: hidden;
  margin: 10px 0;
}
.rts-shop-area .section-inner .product-item .contents .product-action-area .product-price {
  color: var(--color-title);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: capitalize;
  transition: all 0.3s;
  transform: translateY(10px);
}
.rts-shop-area .section-inner .product-item .contents .product-action-area .addto-cart {
  color: var(--color-title);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: capitalize;
  transform: translateY(25px);
  display: block;
  transition: all 0.3s;
  opacity: 0;
}
.rts-shop-area .section-inner .product-item .star-rating-area {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 5px;
  padding: 0;
  margin: 0;
}
.rts-shop-area .section-inner .product-item .star-rating-area li {
  list-style: none;
  margin: 0;
  line-height: 20px;
}
.rts-shop-area .section-inner .product-item .star-rating-area li a {
  color: #FFB341;
  font-size: 15px;
  font-weight: 900;
  line-height: 26px;
}
.rts-shop-area .section-inner .product-item .social-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 220px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0;
  position: absolute;
  opacity: 0;
  bottom: 110px;
  gap: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.rts-shop-area .section-inner .product-item .social-area li {
  list-style: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  background: var(--color-white);
  border-radius: 50%;
  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.1));
  cursor: pointer;
  transition: all 0.3s;
}
.rts-shop-area .section-inner .product-item .social-area li:hover {
  background: var(--color-primary);
}
.rts-shop-area .section-inner .product-item .social-area li:hover svg path {
  fill: var(--color-white);
}

.single-shopping-product {
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.single-shopping-product:hover .button-cart-area .inner {
  transform: translateY(-28px);
}
.single-shopping-product .button-cart-area {
  height: 23px;
  overflow: hidden;
}
.single-shopping-product .button-cart-area .inner {
  transition: 0.3s;
}
.single-shopping-product .button-cart-area .pricing-area {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  justify-content: center;
  transition: 0.3s;
  width: 100%;
}
.single-shopping-product .button-cart-area .pricing-area .active {
  font-weight: 600;
  line-height: 26px;
  color: #1F1F25;
}
.single-shopping-product .button-cart-area .pricing-area .none {
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  color: #74787C;
  position: relative;
  max-width: max-content;
}
.single-shopping-product .button-cart-area .pricing-area .none::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background: #74787C;
  top: 50%;
  transform: translateY(-50%);
}
.single-shopping-product .button-cart-area .cart-btn {
  transition: 0.5s;
}
.single-shopping-product .button-cart-area .cart-btn i {
  color: #D01010;
}
.single-shopping-product:hover a.thumbnail img {
  transform: scale(1.2);
}
.single-shopping-product a.thumbnail {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  display: block;
}
.single-shopping-product a.thumbnail img {
  width: 100%;
  transition: 0.5s;
}
.single-shopping-product .inner-content {
  margin-top: 30px;
}
.single-shopping-product .inner-content .title {
  margin-bottom: 9px;
  transition: 0.3s;
}
.single-shopping-product .inner-content .title:hover {
  color: var(--color-primary);
}
.single-shopping-product .inner-content a.cart-btn {
  color: #1F1F25;
  font-weight: 600;
  line-height: 16px;
  transition: 0.3s;
}
.single-shopping-product .inner-content a.cart-btn i {
  margin-right: 8px;
}
.single-shopping-product .inner-content a.cart-btn:hover {
  color: var(--color-primary);
}
.single-shopping-product .invisible-btn {
  position: absolute;
  left: 50%;
  top: 35%;
  transition: 0.3s;
  transform: translateX(-50%) scale(0);
}
.single-shopping-product .invisible-btn ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}
.single-shopping-product .invisible-btn ul li {
  margin: 0 5px;
}
.single-shopping-product .invisible-btn ul li a {
  width: 40px;
  height: 40px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.single-shopping-product .invisible-btn ul li a i {
  color: var(--color-primary);
  transition: 0.3s;
}
.single-shopping-product .invisible-btn ul li a:hover {
  background: var(--color-primary);
}
.single-shopping-product .invisible-btn ul li a:hover i {
  color: #fff !important;
}

.single-category {
  position: relative;
  max-width: 100%;
}
.single-category .thumbnail {
  width: 100%;
  display: block;
}
.single-category .thumbnail img {
  width: 100%;
}
.single-category .single-category {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  text-align: center;
}
.single-category .single-category .title {
  min-width: max-content;
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
}
.single-category .single-category .arrow-btn-solari {
  display: flex;
  text-align: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  transition: 0.3s;
}
.single-category .single-category .arrow-btn-solari:hover {
  color: var(--color-primary);
}
.single-category .single-category .arrow-btn-solari i {
  margin-left: 5px;
}

@media only screen and (max-width: 575px) {
  .banner-shop-content-wrapper {
    padding-left: 15px;
  }
}

.rts-golfy-pagination ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}
.rts-golfy-pagination ul li {
  margin: 0;
  margin-right: 10px;
}
.rts-golfy-pagination ul li button {
  width: 50px;
  height: 50px;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  border: 1px solid #E9E9E9;
  transition: 0.3s;
}
.rts-golfy-pagination ul li button.active {
  background: var(--color-primary);
  color: #fff;
}
.rts-golfy-pagination ul li button:hover {
  background: var(--color-primary);
  color: #fff;
}

.woocommerce-result-count {
  font-size: 15px;
  line-height: 26px;
  color: #454545;
  font-weight: 400;
  margin-bottom: 35px !important;
}

.from-control {
  float: right;
  font-size: 15px;
  color: #454545;
  font-weight: 400;
  vertical-align: top;
  padding: 10px;
  border: 1px solid #E9E9E9;
  border-radius: 0;
  margin-bottom: 35px;
}
.from-control:hover {
  border: 1px solid var(--color-primary);
}

.single-shopping-product:hover .invisible-btn {
  transform: translateX(-50%) scale(1);
}

.ms-main {
  padding: 120px 0;
}
.ms-main .single-product .ms-single-product .banner-horizental {
  margin-bottom: 90px;
}
.ms-main .single-product .ms-single-product .banner-horizental .swiper {
  overflow: hidden;
}
.ms-main .single-product .ms-single-product .banner-horizental .swiper .swiper-wrapper .swiper-slide .slider-inner img {
  width: 100%;
}
.ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area {
  position: relative;
}
.ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area .swiper-pagination {
  bottom: -120px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area .swiper-pagination .swiper-pagination-bullet {
  width: 100px;
  height: 100px;
  border-radius: 0;
  background: url(../images/shop/product-06.png);
  border-width: 2px;
  border-style: solid;
  border-color: #f9f9f9;
  opacity: 1;
  background-size: cover;
  background-position: center;
  margin-right: 5px;
}
@media (max-width: 450px) {
  .ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area .swiper-pagination .swiper-pagination-bullet {
    width: 80px;
    height: 80px;
  }
}
.ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area .swiper-pagination .swiper-pagination-bullet:first-child {
  background: url(../images/shop/product-05.png) !important;
  background-size: cover !important;
  background-position: center !important;
}
.ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area .swiper-pagination .swiper-pagination-bullet:last-child {
  background: url(../images/shop/product-07.png) !important;
  background-size: cover !important;
  background-position: center !important;
}
.ms-main .single-product .ms-single-product .banner-horizental .slider-pagination-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--color-primary);
}
@media (max-width: 991px) {
  .ms-main .single-product .ms-single-product .ms-single-product__content {
    margin-top: 100px;
    padding-left: 0;
  }
}
.ms-main .single-product .ms-single-product .ms-single-product__content .cart .single_add_to_cart_button {
  line-height: 42px;
}
@media (max-width: 520px) {
  .ms-main .single-product .ms-single-product .tab-area .nav-tabs {
    justify-content: center;
  }
}
.ms-main .single-product .ms-single-product .tab-area .nav-tabs .nav-item {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .ms-main .single-product .ms-single-product .tab-area .nav-tabs .nav-item {
    margin-bottom: 10px;
  }
}
.ms-main .single-product .ms-single-product .tab-area .nav-tabs .nav-item .nav-link {
  color: #777777;
  padding: 8pt 20pt;
  border-color: #dee2e6 #dee2e6;
}
.ms-main .single-product .ms-single-product .tab-area .nav-tabs .nav-item .nav-link.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: #dee2e6 #dee2e6;
}
@media (max-width: 520px) {
  .ms-main .single-product .ms-single-product .tab-area .nav-tabs .nav-item .nav-link.active {
    border-color: #dee2e6 #dee2e6;
  }
}
.ms-main .single-product .ms-single-product .tab-area .tab-content {
  border: solid 1px #dee2e6;
  border-bottom-left-radius: 12pt;
  border-bottom-right-radius: 12pt;
  padding: 20pt;
  line-height: 1.8;
  margin-top: -1px;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .ms-heading-title {
  font-size: 24px;
  font-weight: 700;
  margin: 1rem 0;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane table tbody tr:last-child th {
  border-bottom: none;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane table tbody tr:last-child td {
  border-bottom: none;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane table tbody tr th {
  border-left: none;
  border-right: none;
  font-weight: 700;
  border: 1px solid #e2e2e2;
  border-left: 0;
  border-right: 0;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane table tbody tr td {
  border-left: none;
  border-right: none;
  border: 1px solid #e2e2e2;
  border-left: 0;
  border-right: 0;
  padding-top: 14px;
  padding-bottom: 12px;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .heading-title {
  font-size: 24px;
  font-weight: 700;
  margin: 1rem 0;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box {
  width: 100%;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box textarea {
  width: 100%;
  padding: 0.5em 1em 0.5em 1em;
  background: #F6F6F6 !important;
  border: 1px solid transparent;
  transition: all 0.4s;
  background: unset;
}
@media (max-width: 991px) {
  .ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box textarea {
    margin-bottom: 25px;
  }
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box textarea:hover {
  border: 1px solid var(--color-primary);
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box textarea:focus {
  outline: 0;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box textarea::placeholder {
  color: #000000;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box input {
  width: 100%;
  padding: 0.5em 1em 0.5em 1em;
  background: #F6F6F6 !important;
  height: 55px;
  margin-bottom: 25px;
  border: 1px solid transparent;
  border: 1px solid transparent;
  margin-bottom: 25px;
  transition: all 0.4s;
  background: unset;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box input:hover {
  border: 1px solid var(--color-primary);
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box input:focus {
  outline: 0;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-shadow);
  background-color: var(--color-bg);
  color: var(--color-contrast-higher);
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .input-box input::placeholder {
  color: var(--color-primary);
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .rating {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .rating p {
  margin-bottom: 0;
}
.ms-main .single-product .ms-single-product .tab-area .tab-content .tab-pane .woocommerce-Reviews .full-details-inner .reveiw-form .contact-form .btn {
  width: 100%;
  max-width: 100%;
  border: none;
  display: block;
  height: 45px;
  border-radius: 0;
  color: #fff;
}

.ms-single-product .ms-single-product__content {
  padding-left: 3rem;
  position: relative;
}

.ms-single-product .ms-single-product__content .ms-single-product_title {
  font-size: 28px;
  margin-bottom: 2rem;
}

.ms-single-product .ms-single-product__content .price {
  margin-bottom: 3rem;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: baseline;
  font-size: 36px;
}

.ms-single-product .ms-single-product__content .price bdi {
  font-weight: 700;
  letter-spacing: -1pt;
  color: var(--color-primary);
}

.ms-single-product .ms-single-product__content .ms-woocommerce-product-rating {
  display: flex;
  align-items: center;
  line-height: initial;
  margin-bottom: 2rem;
}
.ms-single-product .ms-single-product__content .ms-woocommerce-product-rating .woocommerce-review-link:hover {
  color: var(--color-primary);
}

.ms-single-product .ms-single-product__content .ms-woocommerce-product-rating .ms-rating-icon svg {
  fill: #FFB03B;
}

.ms-single-product .ms-single-product__content .stock, .ms-single-product .ms-single-product__content .woocommerce-product-details__short-description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.ms-single-product .ms-single-product__content .stock.in-stock {
  color: #2eb740;
}

.ms-single-product .ms-single-product__content .cart {
  display: flex;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.quantity-area {
  display: flex;
  margin-bottom: 30px;
}
.quantity-area .cart-edit .quantity-edit {
  background: #f7f7f7;
  padding: 11px 15px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .quantity-area .rts-btn {
    padding: 20px 25px;
  }
}
@media (max-width: 400px) {
  .quantity-area .rts-btn {
    padding: 20px;
  }
}
.quantity-area .single_add_to_cart_button {
  border-radius: 0;
  border: none;
  color: #FFFFFF;
  background-color: var(--color-primary);
  padding: 5px 12px;
  margin-left: 8pt;
  transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.product_meta {
  display: grid;
}
.product_meta span {
  margin-bottom: 15px;
}

.ms-single-product__content .shop_table th,
.ms-woocommerce-cart-form-wrapper .shop_table th {
  border-top: none;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  padding-left: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .ms-single-product__content .shop_table thead,
.ms-woocommerce-cart-form-wrapper .shop_table thead {
    display: none;
  }
}
.ms-single-product__content .shop_table td,
.ms-woocommerce-cart-form-wrapper .shop_table td {
  padding: 2rem 0;
  text-align: center;
  border-left: none;
  border-right: none;
  border: 1px solid #e2e2e2;
}
@media (max-width: 767px) {
  .ms-single-product__content .shop_table td,
.ms-woocommerce-cart-form-wrapper .shop_table td {
    border: none !important;
  }
}
.ms-single-product__content .shop_table th, .ms-single-product__content .shop_table td,
.ms-woocommerce-cart-form-wrapper .shop_table th,
.ms-woocommerce-cart-form-wrapper .shop_table td {
  border-left: none;
  border-right: none;
}
.ms-single-product__content .shop_table th,
.ms-woocommerce-cart-form-wrapper .shop_table th {
  padding: 15px 0;
}
.ms-single-product__content .shop_table tr,
.ms-woocommerce-cart-form-wrapper .shop_table tr {
  text-align: left;
}
@media (max-width: 767px) {
  .ms-single-product__content .shop_table tr,
.ms-woocommerce-cart-form-wrapper .shop_table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 40px;
  }
}
.ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
  font-size: 28px;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
    width: 100% !important;
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ms-single-product__content .product-remove svg,
.ms-woocommerce-cart-form-wrapper .product-remove svg {
    width: 32px;
  }
}
.ms-single-product__content .product-thumbnail,
.ms-woocommerce-cart-form-wrapper .product-thumbnail {
  width: 10rem;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-thumbnail,
.ms-woocommerce-cart-form-wrapper .product-thumbnail {
    width: 100%;
  }
}
.ms-single-product__content .product-thumbnail img,
.ms-woocommerce-cart-form-wrapper .product-thumbnail img {
  width: 7rem;
  border-radius: 0;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-thumbnail img,
.ms-woocommerce-cart-form-wrapper .product-thumbnail img {
    width: 100%;
  }
}
.ms-single-product__content .product-name,
.ms-woocommerce-cart-form-wrapper .product-name {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-name,
.ms-woocommerce-cart-form-wrapper .product-name {
    border: none !important;
    width: 100%;
    text-align: left !important;
    font-size: 22px;
  }
}
.ms-single-product__content .product-name a,
.ms-woocommerce-cart-form-wrapper .product-name a {
  color: #000000;
  transition: all 0.3s;
}
.ms-single-product__content .product-name a:hover,
.ms-woocommerce-cart-form-wrapper .product-name a:hover {
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .ms-single-product__content .product-price,
.ms-woocommerce-cart-form-wrapper .product-price {
    width: 50%;
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .ms-single-product__content .product-subtotal,
.ms-woocommerce-cart-form-wrapper .product-subtotal {
    width: 100%;
    text-align: left !important;
  }
}
.ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
  width: 3rem;
  padding-left: 0;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
    border: none !important;
  }
}
.ms-single-product__content .product-remove svg,
.ms-woocommerce-cart-form-wrapper .product-remove svg {
  fill: var(--color-contrast-higher);
  transition: fill 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ms-single-product__content .product-remove svg:hover,
.ms-woocommerce-cart-form-wrapper .product-remove svg:hover {
  fill: var(--color-error);
}
.ms-single-product__content .ms-quantity,
.ms-woocommerce-cart-form-wrapper .ms-quantity {
  position: relative;
  width: 8rem;
  display: flex;
}
.ms-single-product__content .ms-quantity .input-text,
.ms-woocommerce-cart-form-wrapper .ms-quantity .input-text {
  padding: 0.5em;
  height: 45px;
  border: none;
  width: 100%;
  text-align: center;
  color: #000000;
  background-color: #f7f7f7;
  appearance: none;
}
.ms-single-product__content .ms-quantity .input-text:focus-visible,
.ms-woocommerce-cart-form-wrapper .ms-quantity .input-text:focus-visible {
  outline: none;
}
.ms-single-product__content .ms-quantity input::-webkit-outer-spin-button,
.ms-single-product__content .ms-quantity input::-webkit-inner-spin-button,
.ms-woocommerce-cart-form-wrapper .ms-quantity input::-webkit-outer-spin-button,
.ms-woocommerce-cart-form-wrapper .ms-quantity input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.ms-single-product__content .ms-quantity .button-minus,
.ms-single-product__content .ms-quantity .button-plus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  background-color: var(--color-contrast-lower);
  transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ms-single-product__content .ms-quantity .button-minus svg,
.ms-single-product__content .ms-quantity .button-plus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus svg {
  width: 20px;
  stroke-width: 2pt;
  stroke: var(--color-contrast-higher);
}
.ms-single-product__content .ms-quantity .button-minus:hover,
.ms-single-product__content .ms-quantity .button-plus:hover,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus:hover,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus:hover {
  background-color: var(--color-contrast-low);
}
.ms-single-product__content .ms-quantity .button-minus:active,
.ms-single-product__content .ms-quantity .button-plus:active,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus:active,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus:active {
  transform: translateY(2px);
}
.ms-single-product__content .ms-quantity .button-minus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus {
  border-top-left-radius: 6pt;
  border-bottom-left-radius: 6pt;
  border-right: solid 1px var(--color-bg);
}
.ms-single-product__content .ms-quantity .button-minus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus svg {
  margin-left: 1pt;
}
.ms-single-product__content .ms-quantity .button-plus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus {
  border-top-right-radius: 6pt;
  border-bottom-right-radius: 6pt;
  border-left: solid 1px var(--color-bg);
}
.ms-single-product__content .ms-quantity .button-plus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus svg {
  margin-right: 1pt;
}
.ms-single-product__content .ms-actions-inner,
.ms-woocommerce-cart-form-wrapper .ms-actions-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ms-single-product__content .ms-actions-inner,
.ms-woocommerce-cart-form-wrapper .ms-actions-inner {
    display: block;
  }
}
.ms-single-product__content .coupon,
.ms-woocommerce-cart-form-wrapper .coupon {
  display: inline-flex;
  overflow: hidden;
  background-color: var(--color-contrast-lower);
}
@media (max-width: 767px) {
  .ms-single-product__content .coupon,
.ms-woocommerce-cart-form-wrapper .coupon {
    width: 100%;
  }
}
.ms-single-product__content .coupon .button,
.ms-woocommerce-cart-form-wrapper .coupon .button {
  border: none;
  padding: 15px 33px;
  color: var(--color-white);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  line-height: 1;
}
@media (max-width: 400px) {
  .ms-single-product__content .coupon .button,
.ms-woocommerce-cart-form-wrapper .coupon .button {
    width: 50%;
  }
}
.ms-single-product__content .coupon + .button,
.ms-woocommerce-cart-form-wrapper .coupon + .button {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  margin-right: 0;
  margin-left: auto;
  line-height: 2.4;
  font-size: 15px;
  border: solid 1px transparent;
  transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ms-single-product__content .coupon + .button:disabled,
.ms-woocommerce-cart-form-wrapper .coupon + .button:disabled {
  color: var(--color-contrast-high);
  background-color: transparent;
  border: solid 1px var(--color-contrast-high);
}
@media (max-width: 767px) {
  .ms-single-product__content .coupon + .button:disabled,
.ms-woocommerce-cart-form-wrapper .coupon + .button:disabled {
    display: none;
  }
}
.ms-single-product__content .coupon + .button:active,
.ms-woocommerce-cart-form-wrapper .coupon + .button:active {
  transform: translateY(2px);
}
.ms-single-product__content #coupon_code,
.ms-woocommerce-cart-form-wrapper #coupon_code {
  border: none;
  background-color: #f7f7f7;
  padding: 0.5em 1em 0.5em 1em;
  height: 45px;
}
@media (max-width: 400px) {
  .ms-single-product__content #coupon_code,
.ms-woocommerce-cart-form-wrapper #coupon_code {
    width: 50%;
  }
}
.ms-single-product__content #coupon_code:focus-visible,
.ms-woocommerce-cart-form-wrapper #coupon_code:focus-visible {
  outline: none;
}
.ms-single-product__content .ms-cart-totals,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals {
  margin-top: 6rem;
  margin-bottom: 6rem;
  background-color: #f7f7f7;
  padding: 2rem;
}
.ms-single-product__content .ms-cart-totals .cart-subtotal td,
.ms-single-product__content .ms-cart-totals .order-total td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .cart-subtotal td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .order-total td {
  text-align: right;
}
.ms-single-product__content .ms-cart-totals tr,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals tr {
  border-bottom: 1px solid #e2e2e2;
}
.ms-single-product__content .ms-cart-totals th, .ms-single-product__content .ms-cart-totals td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals th,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals td {
  border: none;
  padding: 0 0 1rem;
  text-align: start;
}
.ms-single-product__content .ms-cart-totals .order-total th, .ms-single-product__content .ms-cart-totals .order-total td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .order-total th,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .order-total td {
  padding: 1rem 0 1rem;
}
.ms-single-product__content .ms-cart-totals h3,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals h3 {
  margin-bottom: 2rem;
  font-size: 24px;
  font-weight: 700;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-methods,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-methods {
  padding-left: 0;
  list-style: none;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-destination,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-destination {
  margin: 4pt 0;
}
.ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout {
  margin-top: 3rem;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout {
    flex-direction: unset;
  }
}
.ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout a,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout a {
  padding: 0.5em 1.2em 0.5em 1.2em;
  height: 45px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout a:active,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout a:active {
  transform: translateY(2px);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form {
  text-align: left;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p {
  max-width: 100%;
  padding-top: 15px;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text {
  background-color: #f7f7f7;
  width: 100%;
  height: 45px;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0;
  color: #000000;
  transition: border-color 150ms var(--ease-in-out), box-shadow 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:hover,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:hover {
  border-color: var(--color-primary);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:focus-visible,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:focus-visible {
  z-index: 1;
  border-color: var(--color-primary);
  outline: 0;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single {
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 6pt;
  background-color: var(--color-bg);
  border: 1px solid #f7f7f7;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-contrast-higher);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 1rem;
  width: 100%;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  right: 8pt;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .button,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .button {
  height: 45px;
  padding: 0 1rem;
  border: none;
  color: #ffffff;
  border-radius: 6pt;
  float: right;
}
.ms-single-product__content .ms-cart-totals .shop_table td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .shop_table td {
  text-align: right;
}

.ms-woocommerce-MyAccount-content h3,
.ms-woocommerce-checkout h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 25px;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row label,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row label,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row label,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row label,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row label,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row label {
  font-size: 14px;
  margin-bottom: 4pt;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row label .required,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row label .required,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row label .required,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row label .required,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row label .required,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row label .required {
  text-decoration: none;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row .input-text,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row .input-text,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row .input-text,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row .input-text,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row .input-text,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row .input-text {
  width: 100%;
  padding: 0.5em 1.2em 0.5em 1.2em;
  height: 45px;
  border: none;
  border-radius: 0;
  color: #000000;
  background-color: #f7f7f7;
  transition: border-color 150ms var(--ease-in-out), box-shadow 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row .input-text:hover,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row .input-text:hover,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row .input-text:hover,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row .input-text:hover,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row .input-text:hover,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row .input-text:hover {
  border-color: var(--color-primary);
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row .input-text:focus-visible,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row .input-text:focus-visible,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row .input-text:focus-visible,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row .input-text:focus-visible,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row .input-text:focus-visible,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row .input-text:focus-visible {
  z-index: 1;
  border-color: var(--color-primary);
  outline: 0;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row select,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row select,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row select,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row select,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row select,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row select {
  background: #f7f7f7;
  padding: 1em 1.2em 1em 1.2em;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single {
  padding: 0.5em 1.2em 0.5em 1.2em;
  height: 45px;
  position: relative;
  border: solid 1px #e2e2e2;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 32px;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000;
  background-color: #f7f7f7;
  padding-left: 0;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single {
  background-color: #f7f7f7;
  transition: border-color 150ms var(--ease-in-out);
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single:hover {
  border-color: var(--color-primary);
}
.ms-woocommerce-MyAccount-content .woocommerce-additional-fields .form-row,
.ms-woocommerce-checkout .woocommerce-additional-fields .form-row {
  display: flex;
  flex-direction: column;
}
.ms-woocommerce-MyAccount-content .woocommerce-additional-fields .form-row label,
.ms-woocommerce-checkout .woocommerce-additional-fields .form-row label {
  margin-bottom: 8pt;
}
.ms-woocommerce-MyAccount-content .woocommerce-additional-fields .form-row .input-text,
.ms-woocommerce-checkout .woocommerce-additional-fields .form-row .input-text {
  width: 100%;
  border-radius: 0;
  padding: 0.5em 1.2em 0.5em 1.2em;
  margin-bottom: 2rem;
  background-color: #f7f7f7;
  color: #000000;
}

.woocommerce-form-coupon-toggle {
  margin-bottom: 3rem;
}

.wc_payment_methods {
  list-style: none;
  padding-left: 0;
}

.woocommerce-checkout-review-order .wc_payment_methods,
.woocommerce-checkout-review-order .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table {
  margin-bottom: 2rem;
}
.woocommerce-checkout-review-order .button {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  color: #fff;
  max-width: 100%;
  border-radius: 0;
}
@media (max-width: 767px) {
  .woocommerce-checkout-review-order .woocommerce-checkout-payment {
    margin-bottom: 50px;
  }
}

.woocommerce-info {
  padding: 2.5rem 2rem;
  border-radius: 6pt;
  background-color: #f7f7f7;
}
.woocommerce-info .showcoupon {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
}

.ms-checkout-review-order-table .ms-checkout-product {
  display: flex;
  align-items: center;
}
.ms-checkout-review-order-table .ms-checkout-product .ms-checkout-product__thumbnail img {
  width: 90px;
  margin-right: 20px;
}
.ms-checkout-review-order-table .ms-checkout-product .ms-checkout-product__content h5 {
  font-size: 16px;
}
.ms-checkout-review-order-table .ms-checkout-product .ms-checkout-product__content .woocommerce-Price-amount {
  color: var(--color-primary);
}
.ms-checkout-review-order-table .cart_item td {
  border: none;
  padding: 0;
  padding-bottom: 2rem;
}
.ms-checkout-review-order-table tfoot th {
  text-align: left;
  padding-left: 0;
}
.ms-checkout-review-order-table tfoot td {
  text-align: right;
  padding-right: 0;
}
.ms-checkout-review-order-table tfoot th, .ms-checkout-review-order-table tfoot td {
  border: none;
}
.ms-checkout-review-order-table tfoot tr {
  border-bottom: dotted 1px #e2e2e2;
}
.ms-checkout-review-order-table tfoot tr:last-child {
  border-bottom: none;
}
.ms-checkout-review-order-table tfoot .woocommerce-shipping-methods {
  list-style: none;
}

.checkout_coupon.woocommerce-form-coupon {
  margin-bottom: 2rem;
}
.checkout_coupon.woocommerce-form-coupon p:first-child {
  margin-bottom: 1rem;
}
.checkout_coupon.woocommerce-form-coupon .form-row-first,
.checkout_coupon.woocommerce-form-coupon .form-row-last {
  display: inline-flex;
}
.checkout_coupon.woocommerce-form-coupon .form-row-first input {
  border: none;
  border-radius: 6pt;
  background-color: #f7f7f7;
  padding: 0.5em 1.6em 0.5em 1em;
  height: 45px;
}
.checkout_coupon.woocommerce-form-coupon .form-row-first input:focus-visible {
  outline: none;
}
.checkout_coupon.woocommerce-form-coupon .form-row-last {
  margin-left: -12pt;
}
.checkout_coupon.woocommerce-form-coupon .form-row-last button {
  border: none;
  height: 45px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 6pt;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  line-height: 2.4;
}

.ms-woocommerce-order .ms-woocommerce-order-overview {
  list-style: none;
  padding-left: 0;
  display: flex;
  margin: 2rem 0 4rem;
}
.ms-woocommerce-order .ms-woocommerce-order-overview li {
  display: flex;
  flex-direction: column;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  color: #000000;
}
.ms-woocommerce-order .ms-woocommerce-order-overview li strong {
  margin-top: 4pt;
  color: #000000;
}
.ms-woocommerce-order .ms-woocommerce-order-overview li:last-child {
  border-right: none;
}
.ms-woocommerce-order .woocommerce-order-details h2 {
  margin: 2rem 0;
  font-weight: 700;
}
.ms-woocommerce-order .woocommerce-order-details thead, .ms-woocommerce-order .woocommerce-order-details tfoot {
  text-align: left;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details {
  margin-bottom: 4rem;
  background-color: #f7f7f7;
  border-radius: 12pt;
  overflow: hidden;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead > tr > th {
  font-weight: 700;
  font-size: 24px;
  border-bottom: solid 1px #e2e2e2;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr > th,
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr > td {
  padding: 1rem 2rem;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details a {
  font-weight: bold;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr, .ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details td, .ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details th {
  border: none;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr {
  border-bottom: solid 1px #e2e2e2;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot {
  border-top: solid 1px #e2e2e2;
  background-color: #f7f7f7;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child {
  font-weight: 700;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot th, .ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot td {
  padding-bottom: 0;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr:last-child th,
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr:last-child td {
  padding-bottom: 1rem;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr:last-child {
  border-bottom: none;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details td.woocommerce-table__product-total.product-total {
  display: flex;
}
.ms-woocommerce-order .woocommerce-columns--addresses {
  display: flex;
  flex-wrap: wrap;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address,
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--shipping-address {
  width: auto;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address address,
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--shipping-address address {
  font-style: italic;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address address .woocommerce-customer-details--email,
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--shipping-address address .woocommerce-customer-details--email {
  margin-top: 8pt;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address {
  margin-right: 4rem;
  margin-bottom: 2rem;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details strong.product-quantity {
  margin-left: 4pt;
  color: #000000;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta {
  list-style: none;
  padding-left: 0;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li {
  display: flex;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li strong {
  margin-right: 8pt;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li p {
  color: #000000;
}

.woocommerce-page.woocommerce-order-received .woocommerce {
  margin-bottom: 8vh;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.quantity-area {
  display: flex;
  margin-bottom: 30px;
}
.quantity-area .cart-edit .quantity-edit {
  background: #f7f7f7;
  padding: 11px 15px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .quantity-area .rts-btn {
    padding: 20px 25px;
  }
}
@media (max-width: 400px) {
  .quantity-area .rts-btn {
    padding: 20px;
  }
}
.quantity-area .single_add_to_cart_button {
  border-radius: 0;
  border: none;
  color: #FFFFFF;
  background-color: var(--color-primary);
  padding: 5px 12px;
  margin-left: 8pt;
  transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.product_meta {
  display: grid;
}
.product_meta span {
  margin-bottom: 15px;
}

.ms-single-product__content .shop_table th,
.ms-woocommerce-cart-form-wrapper .shop_table th {
  border-top: none;
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  padding-left: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .ms-single-product__content .shop_table thead,
.ms-woocommerce-cart-form-wrapper .shop_table thead {
    display: none;
  }
}
.ms-single-product__content .shop_table td,
.ms-woocommerce-cart-form-wrapper .shop_table td {
  padding: 2rem 0;
  text-align: center;
  border-left: none;
  border-right: none;
  border: 1px solid #e2e2e2;
}
@media (max-width: 767px) {
  .ms-single-product__content .shop_table td,
.ms-woocommerce-cart-form-wrapper .shop_table td {
    border: none !important;
  }
}
.ms-single-product__content .shop_table th, .ms-single-product__content .shop_table td,
.ms-woocommerce-cart-form-wrapper .shop_table th,
.ms-woocommerce-cart-form-wrapper .shop_table td {
  border-left: none;
  border-right: none;
}
.ms-single-product__content .shop_table th,
.ms-woocommerce-cart-form-wrapper .shop_table th {
  padding: 15px 0;
}
.ms-single-product__content .shop_table tr,
.ms-woocommerce-cart-form-wrapper .shop_table tr {
  text-align: left;
}
@media (max-width: 767px) {
  .ms-single-product__content .shop_table tr,
.ms-woocommerce-cart-form-wrapper .shop_table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 40px;
  }
}
.ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
  font-size: 28px;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
    width: 100% !important;
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .ms-single-product__content .product-remove svg,
.ms-woocommerce-cart-form-wrapper .product-remove svg {
    width: 32px;
  }
}
.ms-single-product__content .product-thumbnail,
.ms-woocommerce-cart-form-wrapper .product-thumbnail {
  width: 10rem;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-thumbnail,
.ms-woocommerce-cart-form-wrapper .product-thumbnail {
    width: 100%;
  }
}
.ms-single-product__content .product-thumbnail img,
.ms-woocommerce-cart-form-wrapper .product-thumbnail img {
  width: 7rem;
  border-radius: 0;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-thumbnail img,
.ms-woocommerce-cart-form-wrapper .product-thumbnail img {
    width: 100%;
  }
}
.ms-single-product__content .product-name,
.ms-woocommerce-cart-form-wrapper .product-name {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-name,
.ms-woocommerce-cart-form-wrapper .product-name {
    border: none !important;
    width: 100%;
    text-align: left !important;
    font-size: 22px;
  }
}
.ms-single-product__content .product-name a,
.ms-woocommerce-cart-form-wrapper .product-name a {
  color: #000000;
  transition: all 0.3s;
}
.ms-single-product__content .product-name a:hover,
.ms-woocommerce-cart-form-wrapper .product-name a:hover {
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .ms-single-product__content .product-price,
.ms-woocommerce-cart-form-wrapper .product-price {
    width: 50%;
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .ms-single-product__content .product-subtotal,
.ms-woocommerce-cart-form-wrapper .product-subtotal {
    width: 100%;
    text-align: left !important;
  }
}
.ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
  width: 3rem;
  padding-left: 0;
}
@media (max-width: 767px) {
  .ms-single-product__content .product-remove,
.ms-woocommerce-cart-form-wrapper .product-remove {
    border: none !important;
  }
}
.ms-single-product__content .product-remove svg,
.ms-woocommerce-cart-form-wrapper .product-remove svg {
  fill: var(--color-contrast-higher);
  transition: fill 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ms-single-product__content .product-remove svg:hover,
.ms-woocommerce-cart-form-wrapper .product-remove svg:hover {
  fill: var(--color-error);
}
.ms-single-product__content .ms-quantity,
.ms-woocommerce-cart-form-wrapper .ms-quantity {
  position: relative;
  width: 8rem;
  display: flex;
}
.ms-single-product__content .ms-quantity .input-text,
.ms-woocommerce-cart-form-wrapper .ms-quantity .input-text {
  padding: 0.5em;
  height: 45px;
  border: none;
  width: 100%;
  text-align: center;
  color: #000000;
  background-color: #f7f7f7;
  appearance: none;
}
.ms-single-product__content .ms-quantity .input-text:focus-visible,
.ms-woocommerce-cart-form-wrapper .ms-quantity .input-text:focus-visible {
  outline: none;
}
.ms-single-product__content .ms-quantity input::-webkit-outer-spin-button,
.ms-single-product__content .ms-quantity input::-webkit-inner-spin-button,
.ms-woocommerce-cart-form-wrapper .ms-quantity input::-webkit-outer-spin-button,
.ms-woocommerce-cart-form-wrapper .ms-quantity input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.ms-single-product__content .ms-quantity .button-minus,
.ms-single-product__content .ms-quantity .button-plus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  background-color: var(--color-contrast-lower);
  transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ms-single-product__content .ms-quantity .button-minus svg,
.ms-single-product__content .ms-quantity .button-plus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus svg {
  width: 20px;
  stroke-width: 2pt;
  stroke: var(--color-contrast-higher);
}
.ms-single-product__content .ms-quantity .button-minus:hover,
.ms-single-product__content .ms-quantity .button-plus:hover,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus:hover,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus:hover {
  background-color: var(--color-contrast-low);
}
.ms-single-product__content .ms-quantity .button-minus:active,
.ms-single-product__content .ms-quantity .button-plus:active,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus:active,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus:active {
  transform: translateY(2px);
}
.ms-single-product__content .ms-quantity .button-minus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus {
  border-top-left-radius: 6pt;
  border-bottom-left-radius: 6pt;
  border-right: solid 1px var(--color-bg);
}
.ms-single-product__content .ms-quantity .button-minus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-minus svg {
  margin-left: 1pt;
}
.ms-single-product__content .ms-quantity .button-plus,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus {
  border-top-right-radius: 6pt;
  border-bottom-right-radius: 6pt;
  border-left: solid 1px var(--color-bg);
}
.ms-single-product__content .ms-quantity .button-plus svg,
.ms-woocommerce-cart-form-wrapper .ms-quantity .button-plus svg {
  margin-right: 1pt;
}
.ms-single-product__content .ms-actions-inner,
.ms-woocommerce-cart-form-wrapper .ms-actions-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ms-single-product__content .ms-actions-inner,
.ms-woocommerce-cart-form-wrapper .ms-actions-inner {
    display: block;
  }
}
.ms-single-product__content .coupon,
.ms-woocommerce-cart-form-wrapper .coupon {
  display: inline-flex;
  overflow: hidden;
  background-color: var(--color-contrast-lower);
}
@media (max-width: 767px) {
  .ms-single-product__content .coupon,
.ms-woocommerce-cart-form-wrapper .coupon {
    width: 100%;
  }
}
.ms-single-product__content .coupon .button,
.ms-woocommerce-cart-form-wrapper .coupon .button {
  border: none;
  padding: 15px 33px;
  color: var(--color-white);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  line-height: 1;
}
@media (max-width: 400px) {
  .ms-single-product__content .coupon .button,
.ms-woocommerce-cart-form-wrapper .coupon .button {
    width: 50%;
  }
}
.ms-single-product__content .coupon + .button,
.ms-woocommerce-cart-form-wrapper .coupon + .button {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  margin-right: 0;
  margin-left: auto;
  line-height: 2.4;
  font-size: 15px;
  border: solid 1px transparent;
  transition: transform 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ms-single-product__content .coupon + .button:disabled,
.ms-woocommerce-cart-form-wrapper .coupon + .button:disabled {
  color: var(--color-contrast-high);
  background-color: transparent;
  border: solid 1px var(--color-contrast-high);
}
@media (max-width: 767px) {
  .ms-single-product__content .coupon + .button:disabled,
.ms-woocommerce-cart-form-wrapper .coupon + .button:disabled {
    display: none;
  }
}
.ms-single-product__content .coupon + .button:active,
.ms-woocommerce-cart-form-wrapper .coupon + .button:active {
  transform: translateY(2px);
}
.ms-single-product__content #coupon_code,
.ms-woocommerce-cart-form-wrapper #coupon_code {
  border: none;
  background-color: #f7f7f7;
  padding: 0.5em 1em 0.5em 1em;
  height: 50px;
}
@media (max-width: 400px) {
  .ms-single-product__content #coupon_code,
.ms-woocommerce-cart-form-wrapper #coupon_code {
    width: 50%;
  }
}
.ms-single-product__content #coupon_code:focus-visible,
.ms-woocommerce-cart-form-wrapper #coupon_code:focus-visible {
  outline: none;
}
.ms-single-product__content .ms-cart-totals,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals {
  margin-top: 6rem;
  margin-bottom: 6rem;
  background-color: #f7f7f7;
  padding: 2rem;
}
.ms-single-product__content .ms-cart-totals .cart-subtotal td,
.ms-single-product__content .ms-cart-totals .order-total td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .cart-subtotal td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .order-total td {
  text-align: right;
}
.ms-single-product__content .ms-cart-totals tr,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals tr {
  border-bottom: 1px solid #e2e2e2;
}
.ms-single-product__content .ms-cart-totals th, .ms-single-product__content .ms-cart-totals td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals th,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals td {
  border: none;
  padding: 0 0 1rem;
  text-align: start;
}
.ms-single-product__content .ms-cart-totals .order-total th, .ms-single-product__content .ms-cart-totals .order-total td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .order-total th,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .order-total td {
  padding: 1rem 0 1rem;
}
.ms-single-product__content .ms-cart-totals h3,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals h3 {
  margin-bottom: 2rem;
  font-size: 24px;
  font-weight: 700;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-methods,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-methods {
  padding-left: 0;
  list-style: none;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-destination,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-destination {
  margin: 4pt 0;
}
.ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout {
  margin-top: 3rem;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout {
    flex-direction: unset;
  }
}
.ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout a,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout a {
  padding: 0.5em 1.2em 0.5em 1.2em;
  height: 45px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.ms-single-product__content .ms-cart-totals .ms-proceed-to-checkout a:active,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .ms-proceed-to-checkout a:active {
  transform: translateY(2px);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form {
  text-align: left;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p {
  max-width: 100%;
  padding-top: 15px;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text {
  background-color: #f7f7f7;
  width: 100%;
  height: 45px;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 0;
  color: #000000;
  transition: border-color 150ms var(--ease-in-out), box-shadow 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:hover,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:hover {
  border-color: var(--color-primary);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:focus-visible,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .input-text:focus-visible {
  z-index: 1;
  border-color: var(--color-primary);
  outline: 0;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single {
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 6pt;
  background-color: var(--color-bg);
  border: 1px solid #f7f7f7;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-contrast-higher);
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 1rem;
  width: 100%;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  right: 8pt;
}
.ms-single-product__content .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .button,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .woocommerce-shipping-calculator .shipping-calculator-form p .button {
  height: 45px;
  padding: 0 1rem;
  border: none;
  color: #ffffff;
  border-radius: 6pt;
  float: right;
}
.ms-single-product__content .ms-cart-totals .shop_table td,
.ms-woocommerce-cart-form-wrapper .ms-cart-totals .shop_table td {
  text-align: right;
}

.ms-woocommerce-MyAccount-content h3,
.ms-woocommerce-checkout h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 25px;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row label,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row label,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row label,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row label,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row label,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row label {
  font-size: 14px;
  margin-bottom: 4pt;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row label .required,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row label .required,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row label .required,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row label .required,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row label .required,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row label .required {
  text-decoration: none;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row .input-text,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row .input-text,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row .input-text,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row .input-text,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row .input-text,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row .input-text {
  width: 100%;
  padding: 0.5em 1.2em 0.5em 1.2em;
  height: 45px;
  border: none;
  border-radius: 0;
  color: #000000;
  background-color: #f7f7f7;
  transition: border-color 150ms var(--ease-in-out), box-shadow 150ms var(--ease-in-out), -webkit-box-shadow 150ms var(--ease-in-out);
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row .input-text:hover,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row .input-text:hover,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row .input-text:hover,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row .input-text:hover,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row .input-text:hover,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row .input-text:hover {
  border-color: var(--color-primary);
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row .input-text:focus-visible,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row .input-text:focus-visible,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row .input-text:focus-visible,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row .input-text:focus-visible,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row .input-text:focus-visible,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row .input-text:focus-visible {
  z-index: 1;
  border-color: var(--color-primary);
  outline: 0;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm p.form-row select,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper p.form-row select,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper p.form-row select,
.ms-woocommerce-checkout .woocommerce-EditAccountForm p.form-row select,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper p.form-row select,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper p.form-row select {
  background: #f7f7f7;
  padding: 1em 1.2em 1em 1.2em;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single {
  padding: 0.5em 1.2em 0.5em 1.2em;
  height: 45px;
  position: relative;
  border: solid 1px #e2e2e2;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 32px;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000;
  background-color: #f7f7f7;
  padding-left: 0;
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single {
  background-color: #f7f7f7;
  transition: border-color 150ms var(--ease-in-out);
}
.ms-woocommerce-MyAccount-content .woocommerce-EditAccountForm .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-MyAccount-content .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-checkout .woocommerce-EditAccountForm .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-checkout .woocommerce-address-fields__field-wrapper .select2-container--default .select2-selection--single:hover,
.ms-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single:hover {
  border-color: var(--color-primary);
}
.ms-woocommerce-MyAccount-content .woocommerce-additional-fields .form-row,
.ms-woocommerce-checkout .woocommerce-additional-fields .form-row {
  display: flex;
  flex-direction: column;
}
.ms-woocommerce-MyAccount-content .woocommerce-additional-fields .form-row label,
.ms-woocommerce-checkout .woocommerce-additional-fields .form-row label {
  margin-bottom: 8pt;
}
.ms-woocommerce-MyAccount-content .woocommerce-additional-fields .form-row .input-text,
.ms-woocommerce-checkout .woocommerce-additional-fields .form-row .input-text {
  width: 100%;
  border-radius: 0;
  padding: 0.5em 1.2em 0.5em 1.2em;
  margin-bottom: 2rem;
  background-color: #f7f7f7;
  color: #000000;
}

.woocommerce-form-coupon-toggle {
  margin-bottom: 3rem;
}

.wc_payment_methods {
  list-style: none;
  padding-left: 0;
}

.woocommerce-checkout-review-order .wc_payment_methods,
.woocommerce-checkout-review-order .woocommerce-terms-and-conditions-wrapper,
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table {
  margin-bottom: 2rem;
}
.woocommerce-checkout-review-order .button {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  color: #fff;
  max-width: 100%;
  border-radius: 0;
}
@media (max-width: 767px) {
  .woocommerce-checkout-review-order .woocommerce-checkout-payment {
    margin-bottom: 50px;
  }
}

.woocommerce-info {
  padding: 2.5rem 2rem;
  border-radius: 6pt;
  background-color: #f7f7f7;
}
.woocommerce-info .showcoupon {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
}

.ms-checkout-review-order-table .ms-checkout-product {
  display: flex;
  align-items: center;
}
.ms-checkout-review-order-table .ms-checkout-product .ms-checkout-product__thumbnail img {
  width: 90px;
  margin-right: 20px;
}
.ms-checkout-review-order-table .ms-checkout-product .ms-checkout-product__content h5 {
  font-size: 16px;
}
.ms-checkout-review-order-table .ms-checkout-product .ms-checkout-product__content .woocommerce-Price-amount {
  color: var(--color-primary);
}
.ms-checkout-review-order-table .cart_item td {
  border: none;
  padding: 0;
  padding-bottom: 2rem;
}
.ms-checkout-review-order-table tfoot th {
  text-align: left;
  padding-left: 0;
}
.ms-checkout-review-order-table tfoot td {
  text-align: right;
  padding-right: 0;
}
.ms-checkout-review-order-table tfoot th, .ms-checkout-review-order-table tfoot td {
  border: none;
}
.ms-checkout-review-order-table tfoot tr {
  border-bottom: dotted 1px #e2e2e2;
}
.ms-checkout-review-order-table tfoot tr:last-child {
  border-bottom: none;
}
.ms-checkout-review-order-table tfoot .woocommerce-shipping-methods {
  list-style: none;
}

.checkout_coupon.woocommerce-form-coupon {
  margin-bottom: 2rem;
}
.checkout_coupon.woocommerce-form-coupon p:first-child {
  margin-bottom: 1rem;
}
.checkout_coupon.woocommerce-form-coupon .form-row-first,
.checkout_coupon.woocommerce-form-coupon .form-row-last {
  display: inline-flex;
}
.checkout_coupon.woocommerce-form-coupon .form-row-first input {
  border: none;
  border-radius: 6pt;
  background-color: #f7f7f7;
  padding: 0.5em 1.6em 0.5em 1em;
  height: 45px;
}
.checkout_coupon.woocommerce-form-coupon .form-row-first input:focus-visible {
  outline: none;
}
.checkout_coupon.woocommerce-form-coupon .form-row-last {
  margin-left: -12pt;
}
.checkout_coupon.woocommerce-form-coupon .form-row-last button {
  border: none;
  height: 45px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 6pt;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  line-height: 2.4;
}

.ms-woocommerce-order .ms-woocommerce-order-overview {
  list-style: none;
  padding-left: 0;
  display: flex;
  margin: 2rem 0 4rem;
}
.ms-woocommerce-order .ms-woocommerce-order-overview li {
  display: flex;
  flex-direction: column;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  color: #000000;
}
.ms-woocommerce-order .ms-woocommerce-order-overview li strong {
  margin-top: 4pt;
  color: #000000;
}
.ms-woocommerce-order .ms-woocommerce-order-overview li:last-child {
  border-right: none;
}
.ms-woocommerce-order .woocommerce-order-details h2 {
  margin: 2rem 0;
  font-weight: 700;
}
.ms-woocommerce-order .woocommerce-order-details thead, .ms-woocommerce-order .woocommerce-order-details tfoot {
  text-align: left;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details {
  margin-bottom: 4rem;
  background-color: #f7f7f7;
  border-radius: 12pt;
  overflow: hidden;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details thead > tr > th {
  font-weight: 700;
  font-size: 24px;
  border-bottom: solid 1px #e2e2e2;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr > th,
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr > td {
  padding: 1rem 2rem;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details a {
  font-weight: bold;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr, .ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details td, .ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details th {
  border: none;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr {
  border-bottom: solid 1px #e2e2e2;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot {
  border-top: solid 1px #e2e2e2;
  background-color: #f7f7f7;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child {
  font-weight: 700;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot th, .ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot td {
  padding-bottom: 0;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr:last-child th,
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr:last-child td {
  padding-bottom: 1rem;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tr:last-child {
  border-bottom: none;
}
.ms-woocommerce-order .woocommerce-order-details .woocommerce-table--order-details td.woocommerce-table__product-total.product-total {
  display: flex;
}
.ms-woocommerce-order .woocommerce-columns--addresses {
  display: flex;
  flex-wrap: wrap;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address,
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--shipping-address {
  width: auto;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address address,
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--shipping-address address {
  font-style: italic;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address address .woocommerce-customer-details--email,
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--shipping-address address .woocommerce-customer-details--email {
  margin-top: 8pt;
}
.ms-woocommerce-order .woocommerce-columns--addresses .woocommerce-column--billing-address {
  margin-right: 4rem;
  margin-bottom: 2rem;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details strong.product-quantity {
  margin-left: 4pt;
  color: #000000;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta {
  list-style: none;
  padding-left: 0;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li {
  display: flex;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li strong {
  margin-right: 8pt;
}
.ms-woocommerce-order .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li p {
  color: #000000;
}

.woocommerce-page.woocommerce-order-received .woocommerce {
  margin-bottom: 8vh;
}

.cart-bar {
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  width: 360px;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .cart-bar {
    width: 310px;
  }
}

.cart-bar.show {
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.cart-bar .cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E7E7E7;
}

.cart-bar .cart-header .cart-heading {
  font-size: 17px;
  font-weight: 600;
  color: #000000;
  font-family: var(--font-secondary);
}

.close-cart {
  cursor: pointer;
  margin-top: -11px;
}
.close-cart i {
  transition: 0.3s;
}
.close-cart:hover i {
  transform: scale(1.3);
  color: var(--color-primary);
}

.cart-bar .product-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #E7E7E7;
}

.product-item {
  margin-bottom: 65px;
  position: relative;
  overflow: hidden;
}

.cart-bar .product-item:last-child {
  margin-bottom: 0;
}

.cart-bar .product-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cart-bar .cart-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.cart-edit {
  margin-right: 20px;
}

.cart-bar .product-detail .product-thumb {
  margin-right: 15px;
  max-width: 75px;
}

.cart-bar .cart-edit .quantity-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E7E7E7;
  padding: 3px 10px;
  border-radius: 5px;
  margin-bottom: 3px;
}

.cart-edit .quantity-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 10px;
  border-radius: 5px;
}

.cart-bar .cart-edit .item-wrapper {
  display: inline-block;
}

.cart-bar .cart-edit .quantity-edit button {
  background: none;
  font-size: 0;
}

.cart-bar .cart-edit .quantity-edit button i {
  font-size: 14px;
  color: #C0C0C0;
}

.cart-edit .quantity-edit button i {
  font-size: 16px;
  color: #d3d3d3;
}

edit .quantity-edit button {
  background: none;
  font-size: 0;
}

.cart-edit .quantity-edit button {
  background: none;
  font-size: 0;
}

.cart-bar .cart-edit .quantity-edit button i {
  font-size: 14px;
  color: #000000;
}
.cart-bar .cart-edit .quantity-edit button i:hover {
  color: var(--color-primary);
}

.cart-edit .quantity-edit button i {
  font-size: 16px;
  color: #d3d3d3;
}

.cart-bar .cart-edit .quantity-edit input {
  text-align: center;
  max-width: 26px;
  padding: 0;
}

.cart-edit .quantity-edit input {
  text-align: center;
  max-width: 55px;
  font-size: 16px;
  font-weight: 700;
  color: #040404;
}

.cart-bar .cart-edit .product-edit {
  margin-right: 15px;
}

.cart-bar .product-detail .product-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
}

.cart-bar .product-detail span {
  display: inline-block;
  line-height: 19px !important;
}

.cart-bar .product-detail .product-variation span {
  color: #868686;
  font-family: roboto;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}

.cart-bar .product-detail .product-qnty, .cart-bar .product-detail .product-price {
  color: #404040;
  font-weight: 500;
  font-size: 13px;
  font-family: roboto;
}

.cart-bar .cart-bottom-area {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cart-bar .cart-bottom-area .spend-shipping {
  margin-bottom: 30px;
  background: #F5F5F5;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  text-align: center;
}

.cart-bar .cart-bottom-area .spend-shipping i {
  font-size: 15px;
  margin-right: 7px;
}

.cart-bar .cart-bottom-area .spend-shipping .amount {
  font-weight: 700;
  color: #040404;
}

.cart-bar .cart-bottom-area .total-price {
  font-size: 18px;
  color: #040404;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cart-bar .cart-bottom-area .total-price span {
  color: var(--color-primary);
}

.cart-bar .cart-bottom-area .checkout-btn {
  border: 1px solid var(--color-primary);
  margin-bottom: 10px;
  color: var(--color-primary);
}

.cart-bar .cart-bottom-area .cart-btn {
  width: 100%;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.cart-bar .cart-bottom-area .view-btn {
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #fff;
}

.cart-bar .cart-bottom-area .cart-btn {
  width: 100%;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.cart-bar .cart-bottom-area .checkout-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog-single-two-wrapper {
  border: 1px solid #E9E9E9;
}

.blog-single-two-wrapper .image-area {
  position: relative;
}

.blog-single-two-wrapper .image-area .thumbnail {
  overflow: hidden;
  display: block;
}

.blog-single-two-wrapper .image-area .thumbnail img {
  width: 100%;
  transition: 1.3s;
}

.blog-single-two-wrapper .inner {
  padding: 40px;
  margin-top: -9px;
}

.blog-single-two-wrapper.shop .inner .pre-tag {
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  color: var(--color-primary);
  margin-top: -5px;
}

.blog-single-two-wrapper .inner .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-top: 5px;
  transition: 0.3s;
  color: var(--color-title);
}

.blog-single-two-wrapper .inner a.btn-read-more-blog {
  color: var(--color-primary);
  align-items: center;
}

.blog-single-two-wrapper .inner a.btn-read-more-blog i {
  margin-left: 5px;
  position: relative;
}

.blog-single-two-wrapper .image-area .thumbnail:hover img {
  transform: scale(1.15);
}

.coupon-toggle .accordion .card {
  border: unset;
  border-top: 3px solid var(--color-primary);
  border-radius: 0;
}

.coupon-toggle .accordion .card .card-header {
  border: none;
  margin: 0;
  border-radius: unset;
  padding: 15px 10px;
}

.coupon-toggle .accordion .card .card-header .card-title {
  margin: 0;
}

.coupon-toggle .accordion .card .card-header .card-title span i {
  margin-right: 10px;
}

.coupon-toggle .accordion .card .card-header .card-title button {
  background: unset;
  width: unset;
  border: none;
  color: var(--color-primary);
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

.coupon-toggle .accordion .card .card-header .card-title button:hover {
  color: var(--color-primary);
}

.coupon-toggle .accordion .card .card-body {
  border: 1px solid #d3ced2;
  padding: 20px 20px 50px 20px;
  margin-top: 2em;
  text-align: left;
}

.coupon-toggle .accordion .card .card-body .coupon-code-input {
  width: 47%;
  float: left;
}

.coupon-toggle .accordion .card .card-body .coupon-code-input input {
  width: 100%;
  height: 50px;
  outline: none;
  padding: 10px 18px;
  color: #454545;
  background: #f7f7f7;
}

.full-grid {
  margin-top: 25px;
}

.full-grid .form-content-box {
  margin-bottom: 50px;
}

.full-grid .form-content-box .form-group label {
  line-height: 2;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.full-grid .form-content-box .form-group select {
  color: #666666;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f7f7f7;
  border-radius: 0;
  height: 45px;
  line-height: 45px;
  cursor: pointer;
  width: 100%;
  outline: none;
}

.full-grid .form-content-box .form-group textarea {
  height: 4em;
  line-height: 1.5;
  display: block;
  box-shadow: none;
  width: 100%;
  padding: 10px 18px;
  background: #f7f7f7;
  margin: 0;
  outline: none;
}

.full-grid .form-content-box .form-group .form-control-mod {
  height: 45px;
  padding: 10px 18px;
  background: #f7f7f7;
  width: 100%;
  margin: 0;
  outline: none;
  line-height: normal;
  border-radius: unset;
  border: 1px solid #EAEAEA;
  box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.01);
  border-radius: 2px;
  height: 50px;
  background: #fff;
  margin-top: 20px;
  padding: 15px;
  margin-bottom: 20px;
}
.full-grid .form-content-box .form-group .form-control-mod:focus {
  border: 1px solid var(--color-primary);
}

.full-grid .form-content-box .form-group select,
.full-grid .form-content-box .form-group textarea {
  border: 1px solid #EAEAEA;
  box-shadow: 0px 4px 47px rgba(0, 0, 0, 0.01);
  border-radius: 2px;
  height: 50px;
  background: #fff;
  margin-top: 20px;
  padding: 15px;
  margin-bottom: 20px;
}
.full-grid .form-content-box .form-group select:focus,
.full-grid .form-content-box .form-group textarea:focus {
  border: 1px solid var(--color-primary);
}

.full-grid .form-content-box .form-group textarea {
  height: 150px;
}

.full-grid .form-content-box .form-group .form-control-mod.margin-bottom {
  margin-bottom: 10px !important;
}

.full-grid .ordered-product table {
  width: 100%;
}

.full-grid .ordered-product table tr th {
  border: 1px solid #ccc;
  padding: 9px 12px;
}

.full-grid .ordered-product table tr td {
  border: 1px solid #ccc;
  padding: 6px 12px;
}

.full-grid .payment-method .top-area {
  border-bottom: 1px solid #d3ced2;
}

.full-grid .payment-method .top-area .payment-co {
  margin-bottom: 20px;
}

.full-grid .payment-method .top-area .payment-co span {
  font-weight: 600;
  margin-right: 10px;
}

.full-grid .payment-method .top-area .p-msg {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0 2em;
  font-size: 0.92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #f9f9f9;
}

.full-grid .payment-method .top-area .p-msg:before {
  content: "";
  display: block;
  border: 1em solid #f9f9f9;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

/* Team area style */
@media (max-width: 1366px) {
  .rts-team-area {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.rts-team-area .section-inner .rts-section-title .heading-title {
  margin: auto;
  margin-bottom: 30px;
  max-width: 50%;
}
.rts-team-area .section-inner .rts-section-title .desc {
  max-width: 60%;
  margin: auto;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .rts-team-area .section-inner .rts-section-title .desc {
    max-width: 85%;
  }
}
@media only screen and (max-width: 575px) {
  .rts-team-area .section-inner .rts-section-title .desc {
    max-width: 100%;
  }
}
.rts-team-area .section-inner .slider-area {
  position: relative;
}
.rts-team-area .section-inner .team-wrapper .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s;
}
.rts-team-area .section-inner .team-wrapper .image-area img {
  width: 100%;
}
.rts-team-area .section-inner .team-wrapper .image-area:hover .social-wrapper {
  right: 20px;
}
.rts-team-area .section-inner .team-wrapper .image-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 33.53%, #111 100%);
  top: 0;
  left: 0;
  z-index: 0;
}
.rts-team-area .section-inner .team-wrapper .image-area .content {
  position: absolute;
  width: max-content;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.rts-team-area .section-inner .team-wrapper .image-area .content .title {
  color: var(--color-white);
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 5px;
}
.rts-team-area .section-inner .team-wrapper .image-area .content p {
  color: var(--color-white);
  font-weight: 400;
  text-transform: capitalize;
}
.rts-team-area .section-inner .team-wrapper .image-area .social-wrapper {
  position: absolute;
  top: 20px;
  right: -30px;
  padding: 0;
  margin: 0;
  transition: all 0.3s;
}
.rts-team-area .section-inner .team-wrapper .image-area .social-wrapper li {
  list-style: none;
  margin-bottom: 8px;
}
.rts-team-area .section-inner .team-wrapper .image-area .social-wrapper li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: var(--color-white);
  color: var(--color-primary);
  display: block;
  text-align: center;
  font-size: 14px;
  transition: all 0.3s;
}
.rts-team-area .section-inner .team-wrapper .image-area .social-wrapper li a:hover {
  color: var(--color-white);
  background: var(--color-primary);
}
.rts-team-area .section-inner .swiper-progress {
  bottom: -10px;
  top: unset;
  z-index: 1;
  background: #E5E5E5;
}
.rts-team-area .section-inner .swiper-progress .swiper-pagination-progressbar-fill {
  background: var(--color-primary);
}
.rts-team-area .section-inner .team-btn-area .rts-btn {
  margin: auto;
  margin-top: 50px;
}

.rts-single-coach-area .img-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
.rts-single-coach-area .img-thumb .thumbnail img {
  width: 100%;
  transition: 0.3s;
}
.rts-single-coach-area .img-thumb .social-team {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  transition: 0.3s;
}
.rts-single-coach-area .img-thumb .social-team li {
  padding: 0;
  margin: 0;
}
.rts-single-coach-area .img-thumb .social-team li a {
  width: 40px;
  height: 40px;
  display: flex;
  background: var(--color-primary);
  align-items: center;
  justify-content: center;
}
.rts-single-coach-area .img-thumb .social-team li a i {
  color: #fff;
}
.rts-single-coach-area .inner-content {
  margin-top: 20px;
}
.rts-single-coach-area .inner-content .title {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.rts-single-coach-area .inner-content .name {
  color: #6F7073;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  text-transform: capitalize;
}
.rts-single-coach-area:hover .social-team {
  bottom: 50px;
}

.bg_light-little {
  background: #F6F6F6;
}

.team-details-right-top-conent .single-experience {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.team-details-right-top-conent .single-experience .info .title {
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 2px;
}

.single-about-skill-inner-team-details .title {
  margin-bottom: 55px;
  color: #111;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 15px;
}
.single-about-skill-inner-team-details .title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #F1F1F1;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details {
  margin-top: 50px;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details .single-progress {
  margin-bottom: 30px;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details .single-progress .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details .single-progress .top span {
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details .single-progress .top span.digit {
  color: #A78448;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details .single-progress .progress {
  height: 6px;
  border-radius: 0;
}
.single-about-skill-inner-team-details .progress-wrapper-area-two.team-details .single-progress .progress .progress-bar {
  background-color: var(--color-primary);
}

.education-skill-profeccional-area .single-experience {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}
.education-skill-profeccional-area .single-experience .info .title {
  color: #111;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 2px;
  margin-bottom: 5px;
  padding-bottom: 0;
}
.education-skill-profeccional-area .single-experience .info .title::after {
  display: none;
}
.education-skill-profeccional-area .single-experience .info span::after {
  display: none;
}

.booking-time-line {
  display: flex;
  align-items: center;
  gap: 60px;
}
.booking-time-line .title {
  color: #111;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 10px;
}
.booking-time-line span {
  color: #707070;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
  display: block;
}

.golfy-social-media-with-line {
  display: flex;
  align-items: center;
}
.golfy-social-media-with-line .tag {
  color: #707070;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-right: 30px;
  position: relative;
}
.golfy-social-media-with-line .tag::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: #111;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.golfy-social-media-with-line a {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  margin: 0 12px;
  transition: all 0.3s ease;
  position: relative;
  color: var(--color-primary);
}

.thumbnail-team-details-left img {
  width: 100%;
}

/* course area style */
.course-details .large-img {
  width: 100%;
}
.course-details .title {
  color: #111;
}

.contact-form-main-wrapper-course-details {
  text-align: center;
  max-width: 740px;
  margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-main-wrapper-course-details {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .contact-form-main-wrapper-course-details {
    max-width: 100%;
  }
}
.contact-form-main-wrapper-course-details .title {
  color: #111;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
.contact-form-main-wrapper-course-details form {
  margin-top: 60px;
}
.contact-form-main-wrapper-course-details form input {
  height: 50px;
  background: #F6F6F6;
  margin-bottom: 30px;
  padding: 10px 20px;
}
.contact-form-main-wrapper-course-details form textarea {
  height: 100px;
  background: #F6F6F6;
  padding: 15px 20px;
}
.contact-form-main-wrapper-course-details form button {
  margin-top: 30px;
}

.available-appoinment-card {
  padding: 30px;
  text-align: center;
  border: 1px solid #D5C9B2;
}
@media only screen and (max-width: 575px) {
  .available-appoinment-card {
    padding: 10px;
  }
}
.available-appoinment-card .title-main {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
}
.available-appoinment-card .single-appoinemnt-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #D5C9B2;
}
.available-appoinment-card .single-appoinemnt-booking:nth-child(3) {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.available-appoinment-card .single-appoinemnt-booking .left .title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.available-appoinment-card .single-appoinemnt-booking .left .icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.available-appoinment-card .single-appoinemnt-booking .left .icon i {
  color: #9C9C9C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.available-appoinment-card .single-appoinemnt-booking .left .icon span {
  color: #9C9C9C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.available-appoinment-card .single-appoinemnt-booking .right .rts-btn {
  padding: 12px 35px !important;
  transition: 0.3s;
  border: 1px solid transparent;
  height: 42px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .available-appoinment-card .single-appoinemnt-booking .right .rts-btn {
    padding: 17px 35px !important;
  }
}
@media only screen and (max-width: 767px) {
  .available-appoinment-card .single-appoinemnt-booking .right .rts-btn {
    padding: 17px 35px !important;
  }
}
.available-appoinment-card .single-appoinemnt-booking .right .rts-btn:hover {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.booking-page-top-left .thumbnail img {
  width: 100%;
}

.home-one .contact-form-main-wrapper-course-details form input,
.home-one .contact-form-main-wrapper-course-details form textarea {
  background: var(--color-white);
}

/* cta area style */
.call-to-action-small {
  background-image: url(../images/course-details/03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center, center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
@media only screen and (max-width: 575px) {
  .call-to-action-small {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.call-to-action-small .title {
  margin-bottom: 0;
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
@media only screen and (max-width: 575px) {
  .call-to-action-small .title {
    font-size: 26px;
    line-height: 36px;
  }
}
.call-to-action-small .rts-btn {
  height: max-content;
  background: #fff;
  color: var(--color-primary);
}

/* cta area style */
.even-list-headed {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .even-list-headed {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .even-list-headed {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.even-list-headed .left-head {
  display: flex;
  align-items: center;
  gap: 30px;
}
.even-list-headed span.day-current {
  display: block;
  padding: 9px 18px;
  max-width: max-content;
  background: #F6F6F6;
}
.even-list-headed select {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  max-width: max-content;
  padding: 10px 30px 10px 15px;
  cursor: pointer;
}
.even-list-headed select:focus {
  box-shadow: none !important;
  border: 1px solid var(--color-primary);
}
@media only screen and (max-width: 767px) {
  .even-list-headed .right-head {
    width: 100%;
  }
}
.even-list-headed .right-head form {
  position: relative;
}
.even-list-headed .right-head form input {
  border-bottom: 1px solid #D9D9D9;
  height: 60px;
  width: 600px;
  padding-right: 170px;
}
@media only screen and (max-width: 767px) {
  .even-list-headed .right-head form input {
    width: 100%;
  }
}
.even-list-headed .right-head form input:focus {
  border: none !important;
  border-bottom: 1px solid var(--color-primary) !important;
}
.even-list-headed .right-head form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 30px;
}

.single-even-list-style {
  margin-top: 70px;
}
.single-even-list-style:first-child .month-date {
  display: none;
}
.single-even-list-style .month-date {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  display: block;
  position: relative;
  padding-top: 1px;
}
.single-even-list-style .month-date::after {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 1px;
  background: #D9D9D9;
  content: "";
}
.single-even-list-style .inner-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
  gap: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-even-list-style .inner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .single-even-list-style .inner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-even-list-style .inner-content .left {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  min-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-even-list-style .inner-content .left {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .single-even-list-style .inner-content .left {
    min-width: 100%;
    flex-direction: column-reverse;
  }
}
.single-even-list-style .inner-content .left .date-day {
  min-width: max-content;
  padding: 15px 21px;
  border: 1px solid #D9D9D9;
  text-align: center;
}
.single-even-list-style .inner-content .left .date-day span {
  color: #707070;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: 0;
}
.single-even-list-style .inner-content .left .date-day .year {
  color: #111;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
}
.single-even-list-style .inner-content .left img {
  min-width: max-content;
  display: block;
}
@media only screen and (max-width: 767px) {
  .single-even-list-style .inner-content .left img {
    min-width: 100%;
  }
}
.single-even-list-style .inner-content .right .title {
  color: #111;
  transition: 0.3s;
}
.single-even-list-style .inner-content .right .title:hover {
  color: var(--color-primary);
}
.single-even-list-style .inner-content .right p.disc {
  margin-bottom: 25px;
}
.single-even-list-style .inner-content .right .bottom-info {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 575px) {
  .single-even-list-style .inner-content .right .bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.single-even-list-style .inner-content .right .bottom-info > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-even-list-style .inner-content .right .bottom-info > div i {
  color: var(--color-primary);
}
.single-even-list-style .inner-content .right .bottom-price {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 20px;
}
.single-even-list-style .inner-content .right .bottom-price .price .icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-even-list-style .inner-content .right .bottom-price .price h4 {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.single-even-list-style .inner-content .right .bottom-price a {
  color: #A78448;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
}
.single-even-list-style .inner-content .right .bottom-price a i {
  margin-left: 5px;
  font-size: 13px;
}

.event-details-wrapper-1 {
  margin-top: 40px;
}
.event-details-wrapper-1 .title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 108.333% */
  text-transform: capitalize;
}
.event-details-wrapper-1 p.disc {
  margin-bottom: 25px;
}

.event-table-wrapper {
  display: block;
  align-items: center;
  margin-top: 0;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-table-wrapper {
    flex-wrap: wrap;
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .event-table-wrapper {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .event-table-wrapper {
    flex-wrap: wrap;
  }
}
.event-table-wrapper > div {
  flex-basis: 33.33%;
  border: 1px solid #D9D9D9;
  margin-bottom: 30px;
  background: #F6F6F6;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .event-table-wrapper > div {
    flex-basis: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .event-table-wrapper > div {
    flex-basis: 100%;
  }
}
.event-table-wrapper > div:last-child {
  border: 1px solid #D9D9D9;
}
.event-table-wrapper > div .title {
  padding: 22px 32px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 0;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}
.event-table-wrapper > div .body {
  padding: 22px 25px;
}
.event-table-wrapper > div .body .single {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.event-table-wrapper > div .body .single:last-child {
  padding-bottom: 0;
}
.event-table-wrapper > div .body .single > .name {
  flex-basis: 32%;
}
.event-table-wrapper > div .body .single .name {
  color: #111;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
}
.event-table-wrapper > div .body .single .info {
  margin-bottom: 0;
}

.next-prev-main-wrapper-event-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #D9D9D9;
}
.next-prev-main-wrapper-event-details .prev-area {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.next-prev-main-wrapper-event-details .prev-area p {
  margin: 0;
  transition: 0.3s;
}
.next-prev-main-wrapper-event-details .prev-area i {
  color: 0.3s;
}
.next-prev-main-wrapper-event-details .prev-area:hover p {
  color: var(--color-primary);
}
.next-prev-main-wrapper-event-details .prev-area:hover i {
  color: var(--color-primary);
}

/* wedding area style */
.wedding-top-swiper-area {
  position: relative;
}
.wedding-top-swiper-area .swiper-button-next,
.wedding-top-swiper-area .swiper-button-prev {
  color: #fff;
  font-size: 24px;
}
.wedding-top-swiper-area .swiper-button-next::after,
.wedding-top-swiper-area .swiper-button-prev::after {
  font-size: 24px;
}
.wedding-top-swiper-area .parallax-bg {
  height: 600px;
}

.promissing-couple {
  text-align: center;
  padding: 0 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promissing-couple {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .promissing-couple {
    padding: 0 0;
  }
}
.promissing-couple .title {
  color: #111;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
}
.promissing-couple p.disc {
  color: #6F7073;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.promissing-couple .nav-couple {
  position: relative;
}
.promissing-couple .nav-couple ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 121px;
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promissing-couple .nav-couple ul {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .promissing-couple .nav-couple ul {
    gap: 20px;
  }
}
.promissing-couple .nav-couple ul li a {
  color: #111;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  text-transform: capitalize;
  transition: 0.3s;
}
@media only screen and (max-width: 575px) {
  .promissing-couple .nav-couple ul li a {
    font-size: 16px;
  }
}
.promissing-couple .nav-couple ul li a:hover {
  color: var(--color-primary);
}
.promissing-couple .nav-couple .leaf-area .img-left-b {
  position: absolute;
  left: 50px;
  bottom: -100%;
}
@media only screen and (max-width: 1199px) {
  .promissing-couple .nav-couple .leaf-area .img-left-b {
    left: -50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promissing-couple .nav-couple .leaf-area .img-left-b {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .promissing-couple .nav-couple .leaf-area .img-left-b {
    display: none;
  }
}
.promissing-couple .nav-couple .leaf-area .img-right-b {
  position: absolute;
  right: 50px;
  bottom: -100%;
}
@media only screen and (max-width: 1199px) {
  .promissing-couple .nav-couple .leaf-area .img-right-b {
    right: -50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promissing-couple .nav-couple .leaf-area .img-right-b {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .promissing-couple .nav-couple .leaf-area .img-right-b {
    display: none;
  }
}

.g-140 {
  --bs-gutter-y: 140px;
  --bs-gutter-x: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .g-140 {
    --bs-gutter-y: 40px;
    --bs-gutter-x: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .g-140 {
    --bs-gutter-y: 30px;
    --bs-gutter-x: 30px;
  }
}

.single-wedding-start p.disc {
  width: 73%;
}
@media only screen and (max-width: 575px) {
  .single-wedding-start p.disc {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-wedding-start img {
    width: 100%;
  }
}

.wedding-page .rts-gallery-area-main .gallery-wrapper.main .inner {
  top: 0;
  left: 50%;
  width: auto;
}
.wedding-page .rts-gallery-area-main .gallery-wrapper.main .inner span {
  left: 44%;
  bottom: auto;
}

/* booking area style */
.booking-page-top-left .booking-time-line {
  align-items: flex-start;
}
@media only screen and (max-width: 575px) {
  .booking-page-top-left .booking-time-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.booking-page-top-left .booking-time-line .right a.number {
  margin-bottom: 10px;
  display: block;
}
.booking-page-top-left .booking-time-line .right .add {
  color: #6F7073;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 575px) {
  .booking-page-top-left .booking-time-line .right .add br {
    display: none;
  }
}
.booking-page-top-left .booking-time-line .right .mail {
  color: #707070;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* Footer area style */
.golfy-footer-area {
  padding-top: 90px;
  background-color: var(--color-title);
  position: relative;
}
@media (max-width: 1200px) {
  .golfy-footer-area {
    padding: 90px 20px 0 20px;
  }
}
@media (max-width: 576px) {
  .golfy-footer-area {
    padding: 60px 15px 0 15px;
  }
}
.golfy-footer-area .golfy-get-in-touch .footer-logo {
  margin-bottom: 40px;
}
.golfy-footer-area .golfy-get-in-touch h4 {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}
.golfy-footer-area .golfy-get-in-touch .desc {
  color: #6F7073;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.golfy-footer-area .golfy-row {
  display: flex;
  padding-bottom: 100px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .golfy-footer-area .golfy-row {
    gap: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .golfy-footer-area .golfy-row {
    gap: 15px;
  }
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 {
  width: 36%;
}
@media (max-width: 991px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-1 {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-1 {
    width: 100%;
  }
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address p.desc {
  color: #6F7073;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  max-width: 65%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address p.desc {
    max-width: 80%;
  }
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address span {
  display: block;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address span i {
  margin-right: 15px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address .golfy-footer-social-media {
  display: flex;
  align-items: center;
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address .golfy-footer-social-media .tag {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-right: 30px;
  position: relative;
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address .golfy-footer-social-media .tag::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--color-white);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address .golfy-footer-social-media a {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  margin: 0 12px;
  transition: all 0.3s ease;
  position: relative;
  color: var(--color-white);
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address .golfy-footer-social-media a:nth-child(1) {
  margin-left: 0;
}
.golfy-footer-area .golfy-row .golfy-footer-content-1 .golfy-footer-address .golfy-footer-social-media a:hover {
  color: var(--color-primary);
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 {
  width: 19%;
}
@media (max-width: 991px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-2 {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-2 {
    width: 100%;
  }
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 .golfy-footer-most-popular ul {
  margin: 0;
  padding: 0;
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 .golfy-footer-most-popular ul li {
  width: 38%;
  transition: all ease 0.3s;
  margin-bottom: 12px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 .golfy-footer-most-popular ul li:hover a {
  color: var(--color-primary);
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 .golfy-footer-most-popular ul li a {
  color: #6F7073;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: all ease 0.3s;
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 .golfy-footer-most-popular ul li:nth-child(1) {
  margin-top: 0;
}
.golfy-footer-area .golfy-row .golfy-footer-content-2 .golfy-footer-most-popular ul li:nth-child(2) {
  margin-top: 0;
}
.golfy-footer-area .golfy-row .golfy-footer-content-3 {
  width: 20%;
}
@media (max-width: 991px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-3 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-3 {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 479px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-3 {
    margin-bottom: 0;
  }
}
.golfy-footer-area .golfy-row .golfy-footer-content-3 .golfy-footer-help ul {
  margin: 0;
  padding: 0;
}
.golfy-footer-area .golfy-row .golfy-footer-content-3 .golfy-footer-help ul li {
  margin-bottom: 12px;
  transition: all ease 0.3s;
}
.golfy-footer-area .golfy-row .golfy-footer-content-3 .golfy-footer-help ul li:hover a {
  color: var(--color-primary);
}
.golfy-footer-area .golfy-row .golfy-footer-content-3 .golfy-footer-help ul li a {
  color: #6F7073;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transition: all ease 0.3s;
}
.golfy-footer-area .golfy-row .golfy-footer-content-3 .golfy-footer-help ul li:nth-child(1) {
  margin-top: 0;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 {
  width: 25%;
}
@media (max-width: 991px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-4 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-row .golfy-footer-content-4 {
    width: 100%;
  }
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-footer-news-text {
  margin-bottom: 18px;
  max-width: 95%;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-footer-news-text p {
  color: #6F7073;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 30px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form {
  position: relative;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-subscribe-input-fill {
  position: relative;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-subscribe-input-fill input {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: var(--color-white);
  padding: 12px 0 12px 20px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-subscribe-input-fill input::placeholder {
  color: #fff;
  font-size: 15px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-subscribe-input-fill .check-box {
  position: absolute;
  bottom: -50px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-subscribe-input-fill .check-box label {
  color: #6F7073;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-footer-area-subscribe-button {
  width: max-content;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  margin: 0;
  display: block;
}
.golfy-footer-area .golfy-row .golfy-footer-content-4 .golfy-subscribe-box-button form .golfy-footer-area-subscribe-button button {
  background-color: var(--color-primary);
  padding: 9px 13px 6px;
  text-align: center;
  color: var(--color-white);
  font-size: 16px;
  position: relative;
  border: 1px solid transparent;
}
.golfy-footer-area .golfy-footer-copyright-area {
  padding: 30px 0 20px;
  border-top: 1px solid #181818;
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner {
    display: block;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-content {
    margin: 20px 0;
  }
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-content .title {
  color: var(--color-white);
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-content .title a {
  color: var(--color-primary);
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 576px) {
  .golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-menu {
    justify-content: center;
  }
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-menu li {
  list-style: none;
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-menu li a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
  transition: all 0.3s;
}
.golfy-footer-area .golfy-footer-copyright-area .copyright-area-inner .copyright-menu li a:hover {
  color: var(--color-primary);
}
.golfy-footer-area.footer-two::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 90%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #181818;
}
@media only screen and (max-width: 1199px) {
  .golfy-footer-area.footer-two .golfy-row {
    gap: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .golfy-footer-area.footer-two .golfy-row {
    gap: 15px;
    padding-bottom: 50px;
  }
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 {
  flex-basis: 60%;
}
@media only screen and (max-width: 1199px) {
  .golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 {
    flex-basis: 100%;
  }
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-get-in-touch h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-get-in-touch h2 {
    font-size: 28px;
    line-height: 15px;
  }
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-footer-news-text {
  margin-bottom: 40px;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-footer-news-text p {
  font-size: 15px;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-subscribe-box-button {
  max-width: 410px;
  position: relative;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-subscribe-box-button .golfy-subscribe-input-fill input {
  padding: 10px 0;
  border-bottom: 1px solid #262626;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-subscribe-box-button .golfy-subscribe-input-fill input:focus {
  border-width: 0 0 1px !important;
  border-color: var(--color-primary) !important;
  border-style: solid;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-subscribe-box-button .golfy-footer-area-subscribe-button {
  width: max-content;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: var(--color-primary);
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-1 .golfy-subscribe-box-button .golfy-footer-area-subscribe-button button {
  color: var(--color-white);
  padding: 6px 10px;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-2 {
  flex-basis: 15%;
}
@media only screen and (max-width: 1199px) {
  .golfy-footer-area.footer-two .golfy-row .golfy-footer-content-2 {
    flex-basis: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .golfy-footer-area.footer-two .golfy-row .golfy-footer-content-2 {
    flex-basis: 100%;
  }
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 {
  flex-basis: 25%;
}
@media only screen and (max-width: 1199px) {
  .golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 {
    flex-basis: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 {
    flex-basis: 100%;
  }
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-address .phone {
  color: #6F7073;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  transition: all 0.3s;
  display: block;
  margin-bottom: 10px;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-address .phone:hover {
  color: var(--color-primary);
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-address .desc {
  max-width: 75%;
  margin-bottom: 20px;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-social-media {
  display: flex;
  align-items: center;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-social-media .tag {
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-right: 30px;
  position: relative;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-social-media .tag::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--color-white);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-social-media a {
  font-size: 16px;
  border-radius: 50%;
  text-align: center;
  margin: 0 12px;
  transition: all 0.3s ease;
  position: relative;
  color: var(--color-white);
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-social-media a:nth-child(1) {
  margin-left: 0;
}
.golfy-footer-area.footer-two .golfy-row .golfy-footer-content-3 .golfy-footer-social-media a:hover {
  color: var(--color-primary);
}

.scroll-top-btn {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 150;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
  display: none;
  border: none;
}
.scroll-top-btn i {
  font-size: 22px;
}

/* Footer area style */
.faq .rts-pricing-area.home-3 .container {
  max-width: 1290px;
}
.faq .rts-pricing-area.home-3 .container .accordion-item {
  border-radius: 0 !important;
  padding: 25px 0 !important;
}
/*# sourceMappingURL=../maps/style.css.map */
