/*---------------------------
 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-one
13. mobile menu
14. breadcrumb
14. Button
15. banner
16. working-process
17. counterup
18. about
19. contact
20. service
21. back-totop
22. team-area
22. produsct
23. portfolio
24. testimonial
25. blog
26. brand-area
27. cta
28. footer-one
29. vedio-button
30. faq
31. accordion
32. pricing
33. appoinment
33. preloader
35. Dark Version style



/* Default  */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
:root {
    --color-primary: #AF733B;
    --color-secondary: #111D5E;
    --color-terciary: #90FF03;
    --color-body: #6F737B;
    --color-heading-1: #1C2539;
    --background-color-1: #181C25;
    --bg-dark-one: #27272e;
    --bg-dark-two: #212121;
    --color-white: #fff;
    --color-light-heading: #181c32;
    --color-light-body: #65676b;
    --color-border-white: #00000024;
    --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-bold: 500;
    --s-extra-bold: 800;
    --s-black: 900;
    --transition: 0.3s;
    --font-primary: "DM Sans", sans-serif;
    /*--font-primary: "Open Sans Regular", sans-serif;*/
    /*--font-secondary: "Urbanist", sans-serif;*/
    --font-secondary: "Open Sans Regular", sans-serif;
    --font-size-b1: 14px;
    --font-size-b2: 16px;
    --font-size-b3: 28px;
    --line-height-b1: 26px;
    --line-height-b2: 30px;
    --line-height-b3: 1.7;
    --h1: 66px;
    --h2: 56px;
    --h3: 48px;
    --h4: 36px;
    --h5: 24px;
    --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;
  /*font-family: "DM Sans", sans-serif;*/
  font-family: "Open Sans Regular", sans-serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
}
@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;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: "Urbanist", sans-serif;
  line-height: 1.4074;
  color: var(--color-heading-1);
}

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: "Urbanist", 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: 120px 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: 120px;
}
@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-gap-2 {
  padding: 150px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap-2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap-2 {
    padding: 60px 0;
  }
}

.rts-section-gap2Bottom {
  padding-bottom: 150px;
}
@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: 150px;
}
@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;
  }
}

.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;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

address {
  margin: 0 0 24px;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

mark {
  background: var(--color-primary);
  color: #ffffff;
}

code,
kbd,
pre,
samp {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}

kbd,
ins {
  color: #ffffff;
}

pre {
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}

small {
  font-size: smaller;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl {
  margin-top: 0;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

dt {
  font-weight: bold;
  color: var(--color-heading);
}

menu,
ol,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

li > ul,
li > ol {
  margin: 0;
}

ol ul {
  margin-bottom: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid var(--color-border);
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

caption,
th,
td {
  font-weight: normal;
}

th {
  font-weight: 500;
  text-transform: uppercase;
}

td,
.wp-block-calendar tfoot td {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

del {
  color: #333;
}

ins {
  background: rgba(255, 47, 47, 0.4);
  text-decoration: none;
}

hr {
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}

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

dt {
  font-weight: bold;
  margin-bottom: 10px;
}

dd {
  margin: 0 15px 15px;
}

caption {
  caption-side: top;
}

kbd {
  background: var(--heading-color);
}

dfn,
cite,
em {
  font-style: italic;
}

/* BlockQuote  */
blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

blockquote {
  font-size: var(--font-size-b1);
  font-style: italic;
  font-weight: var(--p-light);
  margin: 24px 40px;
}

blockquote blockquote {
  margin-right: 0;
}

blockquote cite,
blockquote small {
  font-size: var(--font-size-b3);
  font-weight: normal;
}

blockquote strong,
blockquote b {
  font-weight: 700;
}

/* ========= Forms Styles ========= */
input,
button,
select,
textarea {
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}
input:focus, input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
  /* -- Placeholder -- */
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type=text].p-holder__active, .input-active input[type=text], input[type=text].input-active,
input[type=password].p-holder__active,
.input-active input[type=password],
input[type=password].input-active,
input[type=email].p-holder__active,
.input-active input[type=email],
input[type=email].input-active,
input[type=number].p-holder__active,
.input-active input[type=number],
input[type=number].input-active,
input[type=tel].p-holder__active,
.input-active input[type=tel],
input[type=tel].input-active,
textarea.p-holder__active,
textarea.input-active {
  border-color: var(--color-primary);
  /* -- Placeholder -- */
}
input[type=text].p-holder__active::placeholder, .input-active input[type=text]::placeholder, input[type=text].input-active::placeholder,
input[type=password].p-holder__active::placeholder,
.input-active input[type=password]::placeholder,
input[type=password].input-active::placeholder,
input[type=email].p-holder__active::placeholder,
.input-active input[type=email]::placeholder,
input[type=email].input-active::placeholder,
input[type=number].p-holder__active::placeholder,
.input-active input[type=number]::placeholder,
input[type=number].input-active::placeholder,
input[type=tel].p-holder__active::placeholder,
.input-active input[type=tel]::placeholder,
input[type=tel].input-active::placeholder,
textarea.p-holder__active::placeholder,
textarea.input-active::placeholder {
  color: var(--color-primary);
  /* Firefox */
  opacity: 1;
}
input[type=text].p-holder__active:-ms-input-placeholder, .input-active input[type=text]:-ms-input-placeholder, input[type=text].input-active:-ms-input-placeholder,
input[type=password].p-holder__active:-ms-input-placeholder,
.input-active input[type=password]:-ms-input-placeholder,
input[type=password].input-active:-ms-input-placeholder,
input[type=email].p-holder__active:-ms-input-placeholder,
.input-active input[type=email]:-ms-input-placeholder,
input[type=email].input-active:-ms-input-placeholder,
input[type=number].p-holder__active:-ms-input-placeholder,
.input-active input[type=number]:-ms-input-placeholder,
input[type=number].input-active:-ms-input-placeholder,
input[type=tel].p-holder__active:-ms-input-placeholder,
.input-active input[type=tel]:-ms-input-placeholder,
input[type=tel].input-active:-ms-input-placeholder,
textarea.p-holder__active:-ms-input-placeholder,
textarea.input-active:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-primary);
}
input[type=text].p-holder__active::-ms-input-placeholder, .input-active input[type=text]::-ms-input-placeholder, input[type=text].input-active::-ms-input-placeholder,
input[type=password].p-holder__active::-ms-input-placeholder,
.input-active input[type=password]::-ms-input-placeholder,
input[type=password].input-active::-ms-input-placeholder,
input[type=email].p-holder__active::-ms-input-placeholder,
.input-active input[type=email]::-ms-input-placeholder,
input[type=email].input-active::-ms-input-placeholder,
input[type=number].p-holder__active::-ms-input-placeholder,
.input-active input[type=number]::-ms-input-placeholder,
input[type=number].input-active::-ms-input-placeholder,
input[type=tel].p-holder__active::-ms-input-placeholder,
.input-active input[type=tel]::-ms-input-placeholder,
input[type=tel].input-active::-ms-input-placeholder,
textarea.p-holder__active::-ms-input-placeholder,
textarea.input-active::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color-primary);
}
input[type=text].p-holder__error, .input-error input[type=text], input[type=text].input-error,
input[type=password].p-holder__error,
.input-error input[type=password],
input[type=password].input-error,
input[type=email].p-holder__error,
.input-error input[type=email],
input[type=email].input-error,
input[type=number].p-holder__error,
.input-error input[type=number],
input[type=number].input-error,
input[type=tel].p-holder__error,
.input-error input[type=tel],
input[type=tel].input-error,
textarea.p-holder__error,
textarea.input-error {
  border-color: #f4282d;
  /* -- Placeholder -- */
}
input[type=text].p-holder__error::placeholder, .input-error input[type=text]::placeholder, input[type=text].input-error::placeholder,
input[type=password].p-holder__error::placeholder,
.input-error input[type=password]::placeholder,
input[type=password].input-error::placeholder,
input[type=email].p-holder__error::placeholder,
.input-error input[type=email]::placeholder,
input[type=email].input-error::placeholder,
input[type=number].p-holder__error::placeholder,
.input-error input[type=number]::placeholder,
input[type=number].input-error::placeholder,
input[type=tel].p-holder__error::placeholder,
.input-error input[type=tel]::placeholder,
input[type=tel].input-error::placeholder,
textarea.p-holder__error::placeholder,
textarea.input-error::placeholder {
  color: #f4282d;
  /* Firefox */
  opacity: 1;
}
input[type=text].p-holder__error:-ms-input-placeholder, .input-error input[type=text]:-ms-input-placeholder, input[type=text].input-error:-ms-input-placeholder,
input[type=password].p-holder__error:-ms-input-placeholder,
.input-error input[type=password]:-ms-input-placeholder,
input[type=password].input-error:-ms-input-placeholder,
input[type=email].p-holder__error:-ms-input-placeholder,
.input-error input[type=email]:-ms-input-placeholder,
input[type=email].input-error:-ms-input-placeholder,
input[type=number].p-holder__error:-ms-input-placeholder,
.input-error input[type=number]:-ms-input-placeholder,
input[type=number].input-error:-ms-input-placeholder,
input[type=tel].p-holder__error:-ms-input-placeholder,
.input-error input[type=tel]:-ms-input-placeholder,
input[type=tel].input-error:-ms-input-placeholder,
textarea.p-holder__error:-ms-input-placeholder,
textarea.input-error:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #f4282d;
}
input[type=text].p-holder__error::-ms-input-placeholder, .input-error input[type=text]::-ms-input-placeholder, input[type=text].input-error::-ms-input-placeholder,
input[type=password].p-holder__error::-ms-input-placeholder,
.input-error input[type=password]::-ms-input-placeholder,
input[type=password].input-error::-ms-input-placeholder,
input[type=email].p-holder__error::-ms-input-placeholder,
.input-error input[type=email]::-ms-input-placeholder,
input[type=email].input-error::-ms-input-placeholder,
input[type=number].p-holder__error::-ms-input-placeholder,
.input-error input[type=number]::-ms-input-placeholder,
input[type=number].input-error::-ms-input-placeholder,
input[type=tel].p-holder__error::-ms-input-placeholder,
.input-error input[type=tel]::-ms-input-placeholder,
input[type=tel].input-error::-ms-input-placeholder,
textarea.p-holder__error::-ms-input-placeholder,
textarea.input-error::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #f4282d;
}
input[type=text].p-holder__error:focus, .input-error input[type=text]:focus, input[type=text].input-error:focus,
input[type=password].p-holder__error:focus,
.input-error input[type=password]:focus,
input[type=password].input-error:focus,
input[type=email].p-holder__error:focus,
.input-error input[type=email]:focus,
input[type=email].input-error:focus,
input[type=number].p-holder__error:focus,
.input-error input[type=number]:focus,
input[type=number].input-error:focus,
input[type=tel].p-holder__error:focus,
.input-error input[type=tel]:focus,
input[type=tel].input-error:focus,
textarea.p-holder__error:focus,
textarea.input-error:focus {
  border-color: #f4282d;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
  position: absolute;
}
input[type=checkbox] ~ label,
input[type=radio] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type=checkbox] ~ label::before,
input[type=radio] ~ label::before {
  content: " ";
  position: absolute;
  top: 1 px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #5d5d7e;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type=checkbox] ~ label::after,
input[type=radio] ~ label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type=checkbox]:checked ~ label::after,
input[type=radio]:checked ~ label::after {
  opacity: 1;
}

input:checked ~ .rn-check-box-label::before {
  background: var(--color-primary) !important;
}

input[type=radio] ~ label::before {
  border-radius: 50%;
}
input[type=radio] ~ label::after {
  width: 8px;
  height: 8px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
}

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

    @media only screen and (max-width: 767px) {
        .bg_image--1 {
            background-image: url(../images/bg/Hero-Banner-Mobile-1.png);
        }
        .bg_image--2 {
            background-image: url(../images/bg/Hero-Banner-Mobile-2.png);
        }
    }
    @media only screen and (min-width: 767px) {
        .bg_image--1 {
            background-image: url(../images/bg/Hero-Banner-1.png);
        }

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

    /* 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: #ffffff;
        overflow-x: hidden;
    }

    /*------------------------
    Header Sticky 
--------------------------*/
    .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.svg);
            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.png);
        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.png);
            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;
    }

    .header--sticky {
        transition: 0.3s;
        top: 0;
        z-index: 999;
        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;
            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;
    }

    /*!
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);
        }
    }

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

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

    .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 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  */
    header .active-dark {
        display: none;
    }

    .header-one {
        position: absolute;
        width: 100%;
        z-index: 5;
    }

        .header-one.two .rts-btn.btn-secondary.call-btn::before {
            border-radius: 13px;
            background: #ffffff;
        }

    @media (max-width: 500px) {
        .header-one.two .rts-btn.btn-secondary.call-btn.seven {
            display: none;
        }
    }

    .header-one.two .rts-btn.btn-secondary.call-btn.seven::before {
        background: #F3F3FB;
    }

    .header-one.two .rts-btn.btn-secondary.menu-btn::before {
        border-radius: 13px;
        background: #F3F3FB;
    }

    .header-one.three {
        position: relative;
        background: #ffffff;
    }

        .header-one.three .rts-btn.btn-secondary.call-btn {
            border: 1px solid #E5E5F0;
        }

            .header-one.three .rts-btn.btn-secondary.call-btn::before {
                border-radius: 13px;
            }

        .header-one.three .rts-btn.btn-secondary.menu-btn::before {
            border-radius: 13px;
            background: #F3F3FB;
            border-radius: 13px;
        }

    .header-one .thumbnail img {
        padding: 36px 0;
    }

    @media only screen and (max-width: 575px) {
        .header-one .thumbnail img {
            padding: 14px 0;
        }
    }

    .header-one .main-header {
        display: flex;
        justify-content: center;
        margin-right: -70px;
    }

        .header-one .main-header .main-nav .mainmenu {
            margin: 0;
            display: flex;
        }

            .header-one .main-header .main-nav .mainmenu li {
                margin: 0 17px;
            }

                .header-one .main-header .main-nav .mainmenu li a {
                    padding: 20px 0 20px 0;
                    display: inline-block;
                    color: #111A2E;
                    font-weight: 500;
                    font-size: 16px;
                    font-family: var(--font-primary);
                }

                .header-one .main-header .main-nav .mainmenu li.current a {
                    color: var(--color-primary);
                }

    .header-one .header-right {
        display: flex;
        align-items: center;
        padding: 33px 0;
        justify-content: flex-end;
    }

    @media only screen and (max-width: 575px) {
        .header-one .header-right {
            padding: 12px 0;
        }
    }

    .header-one .header-right .call-btn svg {
        margin-left: 7px;
    }

        .header-one .header-right .call-btn svg path {
            transition: var(--transition);
        }

    .header-one .header-right .call-btn:hover svg path {
        fill: #fff;
    }

    .header-one .header-right .menu-btn {
        margin-left: 20px;
        padding: 18px 18px;
    }

        .header-one .header-right .menu-btn:hover svg rect {
            fill: #fff;
        }

    .sticky .header-right .rts-btn::before {
        background: #EFEFFE !important;
        border-radius: 11px !important;
    }

    .sticky.header-one .thumbnail img {
        padding: 17px 0;
    }

    .sticky.header-one .main-header .main-nav .mainmenu li a {
        padding: 29px 0;
    }

    .sticky.header-one .header-right {
        padding: 14px 0;
    }

    .header-top-start.header-three {
        background: var(--color-primary);
        padding: 6px 0;
    }

        .header-top-start.header-three .left {
            display: flex;
            align-items: center;
        }

            .header-top-start.header-three .left p {
                color: #fff;
                font-weight: 500;
                font-size: 14px;
                line-height: 18px;
            }

                .header-top-start.header-three .left p a {
                    transition: 0.3s;
                }

                    .header-top-start.header-three .left p a:hover {
                        color: #000;
                    }

        .header-top-start.header-three .right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

            .header-top-start.header-three .right p {
                margin-bottom: 0;
                color: #fff;
                font-size: 14px;
            }

                .header-top-start.header-three .right p a {
                    transition: 0.3s;
                }

                    .header-top-start.header-three .right p a:hover {
                        color: #000;
                    }

                .header-top-start.header-three .right p.mail {
                    margin-left: 30px;
                }

    @media only screen and (max-width: 1199px) {
        .header-one.three .header-right {
            display: flex;
            align-items: center;
            padding: 11px 0;
            justify-content: flex-end;
        }
    }

    @media only screen and (max-width: 1199px) {
        .header-one.three .thumbnail img {
            padding: 18px 0;
        }
    }

    @media only screen and (max-width: 479px) {
        header .header-right .rts-btn {
            padding: 12px;
        }
    }

    @media only screen and (max-width: 479px) {
        header .header-right #menu-btn {
            padding: 12px;
        }
    }

    .header-top-start.header-three.header-four {
        background: #F4F4F4;
    }

        .header-top-start.header-three.header-four .left {
            display: flex;
        }

            .header-top-start.header-three.header-four .left .mail-area {
                margin-right: 25px;
            }

            .header-top-start.header-three.header-four .left i {
                font-weight: 400;
                font-size: 14px;
                line-height: 14px;
                color: #3B38EB;
                margin-right: 7px;
            }

            .header-top-start.header-three.header-four .left a {
                color: #000000;
                transition: 0.3s;
            }

                .header-top-start.header-three.header-four .left a:hover {
                    color: var(--color-primary);
                }

        .header-top-start.header-three.header-four .right .map-area {
            display: flex;
            align-items: center;
        }

            .header-top-start.header-three.header-four .right .map-area i {
                font-weight: 400;
                font-size: 14px;
                line-height: 14px;
                color: #3B38EB;
                margin-right: 7px;
            }

            .header-top-start.header-three.header-four .right .map-area p.map {
                color: #000000;
                transition: 0.3s;
            }

    .header-one.three.four .header-right .rts-btn.btn-secondary.call-btn {
        color: #fff;
        transition: 0.3s;
        background: #fff;
    }

        .header-one.three.four .header-right .rts-btn.btn-secondary.call-btn:focus {
            border: 1px solid #E5E5F0 !important;
        }

        .header-one.three.four .header-right .rts-btn.btn-secondary.call-btn svg path {
            fill: #fff;
            transition: 0.3s;
        }

        .header-one.three.four .header-right .rts-btn.btn-secondary.call-btn::before {
            background: var(--color-primary);
        }

        .header-one.three.four .header-right .rts-btn.btn-secondary.call-btn:hover {
            color: var(--color-primary);
        }

            .header-one.three.four .header-right .rts-btn.btn-secondary.call-btn:hover svg path {
                fill: var(--color-primary);
            }

    .header-one.three.four.sticky .header-right .rts-btn.btn-secondary.call-btn {
        color: #fff;
        transition: 0.3s;
        background: #fff !important;
    }

        .header-one.three.four.sticky .header-right .rts-btn.btn-secondary.call-btn:focus {
            border: 1px solid #E5E5F0 !important;
        }

        .header-one.three.four.sticky .header-right .rts-btn.btn-secondary.call-btn svg path {
            fill: #fff;
            transition: 0.3s;
        }

        .header-one.three.four.sticky .header-right .rts-btn.btn-secondary.call-btn::before {
            background: var(--color-primary) !important;
        }

        .header-one.three.four.sticky .header-right .rts-btn.btn-secondary.call-btn:hover {
            color: var(--color-primary);
        }

            .header-one.three.four.sticky .header-right .rts-btn.btn-secondary.call-btn:hover svg path {
                fill: var(--color-primary);
            }

    .header-one.five a.thumbnail .logo-1 {
        display: block;
    }

    .header-one.five a.thumbnail .logo-2 {
        display: none;
    }

    .header-one.five.sticky a.thumbnail .logo-1 {
        display: none;
    }

    .header-one.five.sticky a.thumbnail .logo-2 {
        display: block;
    }

    .header-one.five .main-header .main-nav .mainmenu li a {
        color: #fff;
    }

    .header-one.five .main-header .main-nav .mainmenu li .submenu li a {
        color: #111A2E;
    }

    .header-one.five .header-right a.call-btn {
        color: #fff;
        background: #fff;
    }

        .header-one.five .header-right a.call-btn svg path {
            fill: #fff;
        }

        .header-one.five .header-right a.call-btn::before {
            background: var(--color-primary);
        }

        .header-one.five .header-right a.call-btn:hover {
            color: var(--color-primary);
        }

            .header-one.five .header-right a.call-btn:hover svg path {
                fill: var(--color-primary);
            }

    .header-one.five.sticky .header-right a.rts-btn.call-btn {
        color: #fff;
        transition: 0.3s;
        background: #EFEFFE !important;
    }

        .header-one.five.sticky .header-right a.rts-btn.call-btn::before {
            background: var(--color-primary) !important;
        }

        .header-one.five.sticky .header-right a.rts-btn.call-btn:hover {
            color: var(--color-primary);
        }

            .header-one.five.sticky .header-right a.rts-btn.call-btn:hover svg path {
                fill: var(--color-primary);
            }

    .container-2 {
        max-width: 1620px;
        margin: auto;
    }

    .header-one.five.sticky .mainmenu li a {
        color: #000000 !important;
    }

    ul.submenu {
        box-shadow: 0px 7px 18px #1810100d;
    }

        ul.submenu.home-mega {
            display: flex !important;
            align-items: center;
            justify-content: flex-start;
            width: 430px;
        }

            ul.submenu.home-mega .multiple {
                width: 210px;
                position: relative;
            }

                ul.submenu.home-mega .multiple li {
                    margin-top: 5px;
                    margin-bottom: 5px;
                }

                ul.submenu.home-mega .multiple::after {
                    position: absolute;
                    right: 10px;
                    height: 100%;
                    background: #EBEBEB;
                    width: 1px;
                    content: "";
                    top: 0;
                }

            ul.submenu.home-mega .single {
                width: 220px;
            }

        ul.submenu.home-mega2 {
            width: 660px;
            left: -350px !important;
        }

            ul.submenu.home-mega2::after {
                display: none;
            }

            ul.submenu.home-mega2 .multiple {
                width: 210px;
                position: relative;
            }

                ul.submenu.home-mega2 .multiple li {
                    margin-top: 5px;
                    margin-bottom: 5px;
                }

                ul.submenu.home-mega2 .multiple.last::after {
                    display: none;
                }

            ul.submenu.home-mega2 .single {
                width: 220px;
            }

    header a .stickys {
        display: none;
    }

    header.sticky a .normal {
        display: none;
    }

    header.sticky a .stickys {
        display: block;
    }

    .side-bar .logo-1 {
        display: block;
    }

    .side-bar .logo-2 {
        display: none;
    }

    .header-one .main-header .main-nav .mainmenu li.current a {
        color: var(--color-primary) !important;
    }

    .header-one.five.sticky .mainmenu li a:hover {
        color: var(--color-primary) !important;
    }

    .header-one.five.sticky .mainmenu li.has-droupdown a:hover {
        color: var(--color-primary) !important;
    }

    .container-full-screen {
        width: 100%;
        padding: 0 50px;
    }

    @media (max-width: 500px) {
        .container-full-screen {
            padding: 0 25px;
        }
    }

    @media (max-width: 400px) {
        .index-six .call-btn {
            display: none;
        }
    }

    body {
        position: relative;
    }

    .side-bar {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: -100%;
        width: 365px;
        padding: 50px;
        padding-top: 50px;
        height: 100%;
        display: block;
        background-color: white;
        backdrop-filter: blur(7px);
        z-index: 1900;
        transition: all 600ms ease;
        box-shadow: -5px 0 20px -5px rgba(149, 22, 22, 0.12);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    @media only screen and (max-width: 575px) {
        .side-bar {
            width: 315px;
            padding: 40px;
        }
    }

    .side-bar.show {
        right: 0;
    }

    .side-bar button {
        max-width: max-content;
    }

        .side-bar button i {
            color: #fff;
            height: 45px;
            width: 45px;
            border-radius: 5px;
            background: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -8px;
            margin-top: -3px;
            border-radius: 50%;
        }

    .rts-sidebar-menu-desktop a .logo {
        margin-top: 50px;
    }

    .rts-sidebar-menu-desktop .body p.disc {
        margin-top: 25px;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }

    .rts-sidebar-menu-desktop .get-in-touch .title {
        margin-bottom: 30px;
        font-weight: 900;
    }

    .rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
        color: var(--color-primary);
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .rts-sidebar-menu-desktop .social-area {
        margin-top: 40px;
    }

        .rts-sidebar-menu-desktop .social-area li a i {
            color: var(--color-primary);
            transition: 0.3s;
        }

        .rts-sidebar-menu-desktop .social-area li a::after {
            background: transparent;
            transition: 0.3s;
        }

        .rts-sidebar-menu-desktop .social-area li a:hover::after {
            background: transparent;
        }

    .rts-sidebar-menu-desktop .social-area {
        margin-top: 20px;
        margin-left: 0;
    }

    #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: 60;
        }

    .mainmenu .has-droupdown {
        margin-right: 33px !important;
    }

        .mainmenu .has-droupdown > a {
            position: relative;
        }

            .mainmenu .has-droupdown > a::after {
                position: absolute;
                content: "\f078";
                right: -18px;
                top: 34%;
                font-family: "Font Awesome 5 pro";
                font-size: 14px;
            }

        .mainmenu .has-droupdown:hover > a {
            color: var(--color-primary) !important;
        }

        .mainmenu .has-droupdown.mm-active a::after {
            content: "\f077";
        }

        .mainmenu .has-droupdown .submenu a::after {
            display: none;
        }

    .mainmenu li a:hover {
        color: var(--color-primary) !important;
    }

    .sticky .mainmenu .has-droupdown > a::after {
        top: 36%;
    }

    .mainmenu li {
        position: relative;
    }

        .mainmenu li .submenu {
            min-width: 230px;
            height: auto;
            position: absolute;
            top: 90%;
            left: 0;
            z-index: 90;
            opacity: 0;
            visibility: hidden;
            text-align: left;
            padding: 12px 0;
            transition: 0.3s;
            border-radius: 0 0 10px 10px;
            background-color: #fff;
            border-left: 1px solid #ffffff14;
            border-bottom: 1px solid #ffffff14;
            border-right: 1px solid #ffffff14;
            border-top: 4px solid var(--color-primary);
            display: inline-block;
        }

            .mainmenu li .submenu.home-mega {
                padding-left: 0;
            }

                .mainmenu li .submenu.home-mega li.m-1::after {
                    display: none;
                }

                .mainmenu li .submenu.home-mega li.m-1 ul {
                    padding-left: 0;
                }

                    .mainmenu li .submenu.home-mega li.m-1 ul li:hover a.multi {
                        margin-left: 18px;
                    }

            .mainmenu li .submenu li {
                position: relative;
            }

                .mainmenu li .submenu li a {
                    transition: 0.3s;
                    padding: 5px 0 !important;
                }

                .mainmenu li .submenu li::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 51%;
                    transform: translateY(-50%);
                    height: 2px;
                    width: 0px;
                    background: var(--color-primary);
                    opacity: 0;
                    transition: all 0.3s;
                }

                .mainmenu li .submenu li:hover a.single {
                    margin-left: 18px;
                    color: var(--color-primary) !important;
                }

                .mainmenu li .submenu li:hover .mobile-menu-link {
                    transform: translateX(13px);
                }

                .mainmenu li .submenu li:hover::after {
                    opacity: 1;
                    width: 10px;
                    height: 1px;
                }

            .mainmenu li .submenu::after {
                top: -20px;
                left: 10%;
                transform: translateX(-50%);
                position: absolute;
                content: "";
                border: 8px solid transparent;
                border-bottom-color: var(--color-primary);
            }

        .mainmenu li:hover .submenu {
            opacity: 1;
            visibility: visible;
            top: 100%;
        }

    .body-mobile .mainmenu {
        padding-left: 0;
    }

        .body-mobile .mainmenu li a {
            display: block;
            padding: 10px 15px;
            box-shadow: 0px 14px 46px #e8eef9;
        }

            .body-mobile .mainmenu li a.tag {
                padding-left: 0;
                box-shadow: none;
                font-size: 18px;
                font-weight: 500;
            }

        .body-mobile .mainmenu li .submenu {
            position: relative;
            padding-left: 30px;
            min-width: 100%;
            background: #cfdefe2e;
            opacity: 1;
            visibility: visible;
        }

            .body-mobile .mainmenu li .submenu li {
                margin: 3px 0;
            }

                .body-mobile .mainmenu li .submenu li a {
                    box-shadow: none;
                }

        .body-mobile .mainmenu .has-droupdown {
            margin-right: 0 !important;
        }

            .body-mobile .mainmenu .has-droupdown a::after {
                top: 24%;
                right: 5%;
            }

        .body-mobile .mainmenu .submenu {
            border-top: none;
        }

        .body-mobile .mainmenu .submenu::after {
            display: none;
        }


    @media only screen and (min-width: 768px) {
        .breadcrumb-bg {
            background-image: url(../images/lokasi/Banner-Lokasi.png);
        }
        .breadcrumb-bg-tipeunit {
            background-image: url(../images/tipeunit/Banner-Tipe-Unit.png);
        }
        .breadcrumb-bg-fasilitas {
            background-image: url(../images/fasilitas/Banner-Fasilitas.png);
        }
        .breadcrumb-bg-developer {
            background-image: url(../images/developer/Banner-Developer.png);
        }
    }
    @media only screen and (max-width: 767px) {
        .breadcrumb-1 {
            text-align: center;
        }

        .breadcrumb-bg {
            background-image: url(../images/lokasi/Banner-Mobile-Lokasi.png);
        }
        .breadcrumb-bg-tipeunit {
            background-image: url(../images/tipeunit/Banner-Mobile-Tipe-Unit.png);
        }

        .breadcrumb-bg-fasilitas {
            background-image: url(../images/fasilitas/Banner-Mobile-Fasilitas.png);
        }

        .breadcrumb-bg-developer {
            background-image: url(../images/developer/Banner-Developer-Mobile.png);
        }
    }

    .rts-breadcrumb-area {
        padding-top: 212px;
        padding-bottom: 119px;
    }

    @media only screen and (max-width: 767px) {
        .rts-breadcrumb-area {
            padding-bottom: 80px;
            padding-top: 140px;
        }
    }

    .rts-breadcrumb-area .title {
        color: #000;
        margin-bottom: 0;
    }

    @media only screen and (max-width: 767px) {
        .rts-breadcrumb-area .title {
            font-size: 30px;
        }
    }

    .rts-breadcrumb-area .bread-tag {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 12px 30px;
        background: #fff;
        border-radius: 31px;
        box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
        max-width: max-content;
        margin-left: auto;
    }

    @media only screen and (max-width: 767px) {
        .rts-breadcrumb-area .bread-tag {
            margin: auto;
            margin-top: 20px;
        }
    }

    .rts-breadcrumb-area .bread-tag a {
        margin-right: 5px;
        font-weight: 700;
    }

        .rts-breadcrumb-area .bread-tag a.active {
            margin-left: 5px;
            color: #1C2539;
            margin-right: 0;
        }

    .rts-breadcrumb-area .bread-tag span {
        color: var(--color-primary);
    }

    /* elements area style  */
    .rts-btn {
        padding: 18px 29px;
        font-size: 16px;
        line-height: 19px;
        font-weight: 700;
        font-family: var(--font-secondary);
        border-radius: 15px;
        display: inline-block;
        vertical-align: middle;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

        .rts-btn:active {
            border: none !important;
            box-shadow: none !important;
        }

        .rts-btn::before {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            -webkit-transform: scaleX(1);
            transform: scaleX(1);
            -webkit-transform-origin: 50%;
            transform-origin: 50%;
            -webkit-transition-property: transform;
            transition-property: transform;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
            border-radius: 14px;
        }

        .rts-btn:hover::before {
            -webkit-transform: scaleX(0);
            transform: scaleX(0);
        }

        .rts-btn:focus {
            box-shadow: none;
            border: none;
        }

        .rts-btn.btn-primary {
            color: #fff;
            background: #111A2E;
        }

            .rts-btn.btn-primary::before {
                background: var(--color-primary);
            }

            .rts-btn.btn-primary:hover {
                background: #111A2E;
                color: #fff;
            }

        .rts-btn.btn-secondary {
            color: var(--color-primary);
            background: var(--color-primary);
        }

            .rts-btn.btn-secondary::before {
                background: #fff;
            }

            .rts-btn.btn-secondary:hover {
                background: var(--color-primary);
                color: #fff;
            }

        .rts-btn.hover-title::before {
            background: var(--color-primary) !important;
        }

        .rts-btn.hover-title:hover {
            background: #111A2E;
            color: #fff;
        }

    .btn-watch-video {
        line-height: 32px;
        height: 40px;
        border-radius: 22px;
        display: inline-block;
        color: white;
        text-decoration: none;
        padding: 4px 46px 5px 20px;
        position: relative;
        box-sizing: border-box;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 1px;
        transition: all 200ms ease-in;
        position: relative;
    }

    @media only screen and (max-width: 575px) {
        .btn-watch-video {
            margin-left: 0 !important;
            margin-top: 37px;
        }
    }

    .btn-watch-video span.icon {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 14px solid var(--color-primary);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 147%;
    }

    .btn-watch-video span.text {
        position: absolute;
        display: block;
        right: -100px;
        top: 12px;
        color: #111A2E;
        font-weight: 700;
        font-size: 16px;
        line-height: 21px;
        text-transform: capitalize;
    }

    .btn-watch-video::before {
        content: "";
        position: absolute;
        z-index: 0;
        left: -32%;
        top: -110%;
        display: block;
        width: 130px;
        height: 130px;
        background: transparent;
        border-radius: 50%;
        border: 1px solid #a096f8;
        animation: waves 3s ease-in-out infinite;
    }

    .btn-watch-video::after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 57px;
        height: 57px;
        background: #fff;
        border-radius: 50%;
        transition: all 200ms;
    }

    .banner-wrapper.button {
        display: flex;
        align-items: center;
    }

    @media only screen and (max-width: 575px) {
        .banner-wrapper.button {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    .banner-one-content-wrapper {
        margin-top: 110px;
    }

    @media only screen and (max-width: 1199px) {
        .banner-one-content-wrapper {
            margin-top: 0;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-one-content-wrapper {
            margin-top: 30px;
        }
    }

    .banner-one-content-wrapper span.pre-title {
        padding: 10px 29px;
        background: #3b38eb0d;
        border: 1px solid #3b38eb1f;
        border-radius: 8px;
        font-size: 14px;
        color: var(--color-primary);
        letter-spacing: 0.1em;
        font-weight: 700;
        text-transform: uppercase;
    }

    @media only screen and (max-width: 479px) {
        .banner-one-content-wrapper span.pre-title {
            font-size: 12px;
        }
    }

    .banner-one-content-wrapper h1.title-banner {
        margin-top: 30px;
        font-weight: 700;
        font-size: 72px;
        line-height: 82px;
        color: #111A2E;
        margin-bottom: 24px;
    }

    @media only screen and (max-width: 1199px) {
        .banner-one-content-wrapper h1.title-banner {
            font-size: 46px;
            line-height: 55px;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-one-content-wrapper h1.title-banner {
            font-size: 32px;
            line-height: 42px;
        }
    }

    .banner-area {
        overflow: hidden;
    }

    .banner-shape-one {
        position: relative;
        z-index: 1;
    }

        .banner-shape-one::before {
            position: absolute;
            content: "";
            top: 0%;
            left: -20%;
            background-image: url(../images/banner/shape/02.png);
            background-size: cover;
            height: 52px;
            width: 52px;
            z-index: -1;
            animation: jump-3 5s linear infinite;
        }

    .banner-shape-area-one {
        position: relative;
        height: 100%;
        width: 100%;
    }

    @media only screen and (max-width: 1199px) {
        .banner-shape-area-one {
            height: 55%;
            width: 75%;
        }
    }

    .banner-shape-area-one img {
        position: absolute;
        top: -350px;
        right: -70%;
    }

    .shape-line {
        position: relative;
        z-index: 1;
    }

        .shape-line::after {
            position: absolute;
            content: "";
            top: -64%;
            left: -70%;
            background-image: url(../images/banner/shape/03.png);
            height: 800px;
            width: 100%;
            background-size: cover;
            animation: jump-3 8s linear infinite;
            z-index: -1;
            background-repeat: no-repeat;
        }

    @media only screen and (min-width: 1200px) and (max-width: 1599px) {
        .shape-line::after {
            top: -64%;
            left: -57%;
        }
    }

    @media only screen and (max-width: 1199px) {
        .shape-line::after {
            top: -56%;
            left: -16%;
        }
    }

    .shape-line::before {
        position: absolute;
        content: "";
        bottom: -35%;
        left: -18%;
        background-image: url(../images/banner/shape/04.png);
        height: 406.93px;
        width: 935.04px;
        background-size: contain;
        animation: jump-3 15s linear infinite;
        z-index: 3;
        background-repeat: no-repeat;
        z-index: -1;
    }

    @media only screen and (max-width: 1199px) {
        .shape-line::before {
            bottom: -48%;
        }
    }

    .banner-shape-red {
        position: relative;
    }

        .banner-shape-red::after {
            position: absolute;
            content: "";
            bottom: 0;
            left: -8%;
            background-image: url(../images/banner/shape/05.png);
            width: 88px;
            height: 88px;
            background-repeat: no-repeat;
            animation: jump-1 5s linear infinite;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-shape-red::after {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-shape-red::after {
            display: none;
        }
    }

    .banner-shape-red::before {
        position: absolute;
        content: "";
        bottom: 29%;
        left: -21%;
        background-image: url(../images/banner/shape/06.png);
        width: 28px;
        height: 28px;
        background-repeat: no-repeat;
        animation: jump-3 5s linear infinite;
    }

    a.rts-read-more {
        color: var(--color-primary);
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
    }

        a.rts-read-more i {
            font-size: 13px;
            margin-left: 5px;
            transition: 0.3s;
        }

        a.rts-read-more:hover i {
            margin-left: 13px;
        }

    .vedio-area-home-two a::before {
        display: none;
    }

    .banner-two-parent {
        position: relative;
        z-index: 1;
    }

        .banner-two-parent::after {
            position: absolute;
            content: "";
            background-image: url(../images/banner/shape/07.png);
            left: -21%;
            top: -7%;
            height: 100%;
            width: 100%;
            background-repeat: no-repeat;
            animation: jump-1 5s linear infinite;
            z-index: -1;
            pointer-events: none;
        }

        .banner-two-parent::before {
            position: absolute;
            content: "";
            background-image: url(../images/banner/shape/08.png);
            right: -64%;
            top: 15%;
            height: 100%;
            width: 100%;
            background-repeat: no-repeat;
            animation: jump-2 3s linear infinite;
            z-index: -1;
            pointer-events: none;
        }

    .banner-wrapper-two {
        position: relative;
        z-index: 1;
    }

        .banner-wrapper-two .banner-morp {
            position: absolute;
            left: 38%;
            top: 20% !important;
            z-index: 1;
            --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
            --morp-time: 12s;
            --morp-spin-time: 16s;
            width: 1270px;
            height: 1270px;
            margin: -485px 0 0 -485px;
            -webkit-animation-delay: 8s;
            animation-delay: 8s;
            z-index: -1;
        }

            .banner-wrapper-two .banner-morp::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: #F4F3FD;
                opacity: 0.9;
                border-radius: 66% 24% 44% 56%/44% 24% 70% 56%;
                animation: vsmorph 12s ease-in-out infinite both alternate;
            }

        .banner-wrapper-two .morp-ani {
            --morp-value: 66% 24% 44% 56% / 44% 24% 70% 56%;
            --morp-md-value: 43% 38% 39% 35% / 44% 39% 43% 56%;
            --morp-time: 8s;
            --morp-spin-time: 20s;
            animation: morpspin var(--morp-spin-time) linear infinite reverse;
        }

        .banner-wrapper-two .thumbnail-banner {
            margin-top: 70px;
        }

            .banner-wrapper-two .thumbnail-banner img {
                width: 100%;
                padding-right: 30px;
            }

        .banner-wrapper-two .banner-content-area {
            padding-top: 180px;
            padding-left: 30px;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-wrapper-two .banner-content-area {
            padding-top: 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-wrapper-two .banner-content-area {
            padding-top: 30px;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-wrapper-two .banner-content-area {
            padding-left: 15px;
        }
    }

    .banner-wrapper-two .banner-content-area .sub-title {
        font-weight: 700;
        font-size: 14px;
        line-height: 17px;
    }

        .banner-wrapper-two .banner-content-area .sub-title p {
            color: #3B38EB;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;
            font-family: var(--font-secondary);
        }

            .banner-wrapper-two .banner-content-area .sub-title p span {
                text-transform: uppercase;
                color: #fff;
                background: #111A2E;
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 6px;
                padding: 5px 10px;
                margin-right: 8px;
            }

    .banner-wrapper-two .banner-content-area .banner-title {
        font-weight: 700;
        font-size: 72px;
        line-height: 78px;
        color: #111A2E;
        margin-top: 18px;
        margin-bottom: 30px;
    }

    @media only screen and (max-width: 767px) {
        .banner-wrapper-two .banner-content-area .banner-title {
            font-size: 46px;
            line-height: 47px;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-wrapper-two .banner-content-area .banner-title {
            font-size: 29px;
            line-height: 10px;
        }
    }

    .banner-wrapper-two .banner-content-area .banner-title span {
        font-weight: 400;
        font-size: 56px;
        line-height: 78px;
        color: #111A2E;
    }

    @media only screen and (max-width: 575px) {
        .banner-wrapper-two .banner-content-area .banner-title span {
            font-size: 34px;
        }
    }

    .banner-wrapper-two .banner-content-area p.disc {
        color: #6F737B;
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .banner-wrapper-two .banner-content-area .rts-btn {
        padding: 18px 36px;
    }

    .banner-area.banner-two-parent {
        overflow: visible;
    }

    .rts-banner-area.three {
        height: 750px;
        position: relative;
        z-index: 1;
    }

    @media only screen and (max-width: 767px) {
        .rts-banner-area.three {
            height: 550px;
        }
    }

    .rts-banner-area.three::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        z-index: -1;
        left: 0;
        background: linear-gradient(180deg, rgba(0, 0, 28, 0.5) 0%, rgba(0, 0, 12, 0.75) 100%);
    }

    .rts-banner-area.three .banner-three-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    @media only screen and (max-width: 575px) {
        .rts-banner-area.three .banner-three-wrapper {
            width: 100%;
        }
    }

    .rts-banner-area.three .banner-three-wrapper .inner span {
        position: relative;
    }

        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            position: absolute;
            left: -18%;
            line-height: 198px;
            width: 100%;
            top: 0%;
            font-size: 100px;
            font-weight: 800;
            -webkit-background-clip: text;
            -webkit-text-stroke: 2px transparent;
            font-size: 150px;
            height: 128px;
            max-height: max-content;
            min-width: max-content;
            font-weight: 700;
            z-index: 0;
            display: flex;
            align-items: center;
            opacity: 0.25;
            font-family: var(--font-secondary);
            z-index: -1;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke-width: 0.25px;
            -webkit-text-stroke-color: white;
            text-transform: uppercase;
            font-size: 280px;
        }

    @media only screen and (min-width: 1200px) and (max-width: 1599px) {
        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            left: -41%;
            font-size: 240px;
        }
    }

    @media only screen and (max-width: 1199px) {
        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            font-size: 180px;
            left: -37%;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            font-size: 140px;
            left: -28%;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            font-size: 120px;
            left: -24%;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            font-size: 80px;
            left: 11%;
        }
    }

    @media only screen and (max-width: 479px) {
        .rts-banner-area.three .banner-three-wrapper .inner span.background-text {
            font-size: 60px;
            left: 7%;
        }
    }

    .rts-banner-area.three .banner-three-wrapper .inner p.sub-title {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        color: #fff;
        margin-bottom: 0;
        display: block;
    }

    .rts-banner-area.three .banner-three-wrapper .inner .title {
        font-weight: 700;
        font-size: 72px;
        line-height: 82px;
        color: #fff;
        margin-top: 17px;
    }

    @media only screen and (max-width: 1199px) {
        .rts-banner-area.three .banner-three-wrapper .inner .title {
            font-size: 50px;
            line-height: 70px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-banner-area.three .banner-three-wrapper .inner .title {
            font-size: 36px;
            line-height: 46px;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-banner-area.three .banner-three-wrapper .inner .title {
            font-size: 36px;
            line-height: 46px;
        }
    }

    @media only screen and (max-width: 479px) {
        .rts-banner-area.three .banner-three-wrapper .inner .title {
            font-size: 30px;
            line-height: 40px;
        }
    }

    .rts-banner-area.three .banner-three-wrapper .inner a.rts-btn {
        margin-top: 25px;
    }

    .banner-three-swiper .swiper-slide-active p {
        animation: fadeInUp 1.5s;
    }

    .banner-three-swiper .swiper-slide-active .title {
        animation: fadeInUp2 1.5s;
    }

    .banner-three-swiper .swiper-slide-active a.rts-btn {
        animation: fadeInUp 3s;
    }

    .rts-banner-three .wrapper-three {
        position: relative;
        overflow: hidden;
    }

        .rts-banner-three .wrapper-three .shape {
            position: absolute;
            z-index: 6;
        }

        .rts-banner-three .wrapper-three .image-1 {
            position: absolute;
            top: -31%;
            left: -10%;
            pointer-events: none;
            animation: jump-3 5s linear infinite;
        }

        .rts-banner-three .wrapper-three .image-2 {
            position: absolute;
            right: -12%;
            bottom: -14%;
            animation: jump-2 5s linear infinite;
            pointer-events: none;
        }

    .fixed-images {
        background-attachment: fixed;
    }

    .rts-banner-four {
        position: relative;
        z-index: 1;
        overflow: hidden;
        height: 820px;
    }

    @media only screen and (max-width: 767px) {
        .rts-banner-four {
            height: 610px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-banner-four {
            height: 500px;
        }
    }

    @media only screen and (max-width: 479px) {
        .rts-banner-four {
            height: 420px;
        }
    }

    .rts-banner-four .shape-area {
        position: absolute;
        bottom: -70%;
        left: -8%;
        z-index: -1;
        animation: jump-3 20s linear infinite;
    }

        .rts-banner-four .shape-area img {
            width: 1117px;
            height: 1117px;
        }

    .rts-banner-four::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.75);
        z-index: -1;
    }

    .banner-four-content {
        display: flex;
        justify-content: space-between;
        margin-top: 40%;
    }

    @media only screen and (max-width: 1199px) {
        .banner-four-content {
            flex-direction: column;
            justify-content: flex-start;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-four-content {
            margin-top: 20%;
        }
    }

    @media only screen and (max-width: 479px) {
        .banner-four-content {
            margin-top: 29%;
        }
    }

    .banner-four-content .title {
        font-weight: 800;
        font-size: 80px;
        line-height: 90px;
        color: #FFFFFF;
        text-transform: uppercase;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-four-content .title {
            font-size: 46px;
            line-height: 60px;
        }
    }

    @media only screen and (max-width: 767px) {
        .banner-four-content .title {
            font-size: 46px;
            line-height: 60px;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-four-content .title {
            font-size: 26px;
            line-height: 40px;
        }
    }

    .banner-four-content .title span {
        font-weight: 100;
    }

    .banner-four-content .button-area {
        margin-left: auto;
    }

    @media only screen and (max-width: 1199px) {
        .banner-four-content .button-area {
            margin-left: 0;
        }
    }

    .banner-four-content .button-area button {
        position: relative;
        transition: 0.3s;
    }

    @media only screen and (max-width: 1199px) {
        .banner-four-content .button-area button {
            max-width: max-content;
        }
    }

    @media only screen and (max-width: 479px) {
        .banner-four-content .button-area button {
            width: 47%;
        }
    }

    .banner-four-content .button-area button span {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        min-width: max-content;
        font-family: var(--font-secondary);
        transition: 0.3s;
    }

    .banner-four-content .button-area button:hover {
        transform: scale(0.9);
    }

        .banner-four-content .button-area button:hover span {
            transform: translate(-50%, -50%) scale(0.9);
        }

    .title-area.digital .title {
        letter-spacing: 0.2em;
        font-weight: 700;
        font-size: 48px;
        line-height: 58px;
        text-transform: uppercase;
    }

    @media only screen and (max-width: 575px) {
        .title-area.digital .title {
            font-size: 24px;
            line-height: 32px;
        }
    }

    .marquee_text {
        font-weight: 100;
        font-size: 230px;
        line-height: 276px;
        letter-spacing: 0.015em;
        text-transform: uppercase;
        font-family: var(--font-secondary);
        color: #111A2E;
        opacity: 0.06;
        overflow-x: hidden;
    }

    @media only screen and (max-width: 767px) {
        .marquee_text {
            font-size: 150px;
            line-height: 150px;
        }
    }

    @media only screen and (max-width: 575px) {
        .marquee_text {
            font-size: 100px;
            line-height: 100px;
        }
    }

    .rts-banner-five {
        height: 880px;
        position: relative;
        z-index: 1;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-banner-five {
            height: 700px;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-banner-five {
            height: 700px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-banner-five {
            height: 500px;
        }
    }

    .rts-banner-five::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(23, 23, 23, 0.65);
        z-index: -1;
    }

    .banner-five-content {
        display: flex;
        margin-top: 37%;
    }

        .banner-five-content .inner {
            max-width: 700px;
        }

            .banner-five-content .inner .title {
                color: #fff;
                font-weight: 700;
                font-size: 80px;
                line-height: 90px;
            }

    @media only screen and (max-width: 767px) {
        .banner-five-content .inner .title {
            font-size: 50px;
            line-height: 35px;
            margin-bottom: 30px;
            display: block;
        }
    }

    @media only screen and (max-width: 575px) {
        .banner-five-content .inner .title {
            font-size: 36px;
            line-height: 45px;
        }
    }

    .banner-five-content .inner .title span {
        font-weight: 300;
        font-size: 48px;
        line-height: 90px;
    }

    @media only screen and (max-width: 575px) {
        .banner-five-content .inner .title span {
            font-size: 36px;
            line-height: 36px;
        }
    }

    .banner-five-content .inner p.disc {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
    }

    .rts-banner-five-area .swiper-button-wrapper .swiper-button-next {
        right: 16%;
        top: 83%;
    }

        .rts-banner-five-area .swiper-button-wrapper .swiper-button-next svg path {
            fill: rgba(255, 255, 255, 0.2);
            transition: 0.3s;
            transition: 0.3s;
        }

        .rts-banner-five-area .swiper-button-wrapper .swiper-button-next svg:hover path {
            fill: #fff;
        }

    @media only screen and (max-width: 1199px) {
        .rts-banner-five-area .swiper-button-wrapper .swiper-button-next {
            top: 71%;
        }
    }

    .rts-banner-five-area .swiper-button-wrapper .swiper-button-next::after {
        content: "";
        background: transparent;
        background-image: url(../images/banner/shape/arrow-r.svg);
        color: #fff;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 40px;
        height: 65px;
        display: none;
    }

    .rts-banner-five-area .swiper-button-wrapper .swiper-button-prev {
        right: 21%;
        top: 83%;
        left: auto;
    }

        .rts-banner-five-area .swiper-button-wrapper .swiper-button-prev svg path {
            fill: rgba(255, 255, 255, 0.2);
            transition: 0.3s;
        }

        .rts-banner-five-area .swiper-button-wrapper .swiper-button-prev svg:hover path {
            fill: #fff;
        }

    @media only screen and (max-width: 1199px) {
        .rts-banner-five-area .swiper-button-wrapper .swiper-button-prev {
            top: 71%;
        }
    }

    .rts-banner-five-area .swiper-button-wrapper .swiper-button-prev::after {
        content: "";
        background: transparent;
        background-image: url(../images/banner/shape/arrow-l.svg);
        color: #fff;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        width: 40px;
        height: 65px;
        display: none;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-banner-five-area .swiper-button-wrapper {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-banner-five-area .swiper-button-wrapper {
            display: none;
        }
    }

    .swiper-container-h .swiper-wrapper .swiper-slide {
        position: relative;
        display: flex;
        justify-content: center;
        text-align: left;
        flex-direction: column;
        overflow: hidden;
    }

        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner {
            background: #000;
        }

            .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner img {
                object-fit: cover;
                width: 100%;
                height: 100vh;
            }

            .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content {
                position: absolute;
                top: 40%;
                left: 50px;
                z-index: 0;
            }

    @media (max-width: 500px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content {
            left: 25px;
        }
    }

    .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content .title-area .title {
        margin-top: 50px;
        color: #fff;
        font-size: 90px;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 50px;
        cursor: url(../images/logo/tap.png), auto;
    }

    @media screen and (max-width: 1250px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content .title-area .title {
            font-size: 80px;
            margin-top: 30px;
            margin-bottom: 15px;
        }
    }

    @media only screen and (max-width: 767px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content .title-area .title {
            font-size: 54px;
            margin-bottom: 10px;
            margin-top: 20px;
        }
    }

    @media (max-width: 500px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content .title-area .title {
            font-size: 42px;
        }
    }

    @media (max-width: 400px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content .title-area .title {
            font-size: 34px;
        }
    }

    .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content p.disc {
        color: #fff;
        font-weight: 200;
        font-size: 20px;
        width: 50%;
        margin-top: 15px;
    }

    @media screen and (max-width: 1250px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content p.disc {
            font-size: 16px;
            width: 80%;
        }
    }

    @media only screen and (max-width: 767px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content p.disc {
            width: 100%;
            font-size: 14px;
            line-height: 21px;
        }
    }

    .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content.vedio-content {
        padding-top: 310px;
    }

    @media screen and (max-width: 1018px) {
        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content.vedio-content {
            padding-top: 0;
        }
    }

    .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content a.read-more-full-screen {
        color: #fff;
        font-size: 22px;
        line-height: 22px;
        display: flex;
        align-items: center;
        transition: 0.3s;
        margin-left: 5px;
        display: inline;
    }

        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content a.read-more-full-screen i {
            font-size: 14px;
            line-height: 14px;
            padding: 10px;
            border-radius: 50%;
            transition: 0.3s;
            background: #fff;
            color: #000;
            margin-right: 10px;
        }

        .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content a.read-more-full-screen:hover {
            letter-spacing: 2px;
        }

            .swiper-container-h .swiper-wrapper .swiper-slide .slider-inner .swiper-content a.read-more-full-screen:hover i {
                font-size: 14px;
                line-height: 14px;
                padding: 10px;
                border-radius: 50%;
                transition: 0.3s;
                background: var(--color-primary);
                color: white;
                margin-right: 10px;
            }

    .swiper-container-h .swiper-wrapper .swiper-slide .vedio-background {
        position: absolute;
        width: 100%;
        height: 100vh;
    }

        .swiper-container-h .swiper-wrapper .swiper-slide .vedio-background video {
            height: 100vh;
            object-fit: cover;
            width: 100%;
        }

            .swiper-container-h .swiper-wrapper .swiper-slide .vedio-background video source {
                height: 100vh;
            }

    .swiper-container-h .swiper-button-next,
    .swiper-container-h .swiper-button-prev {
        bottom: 5%;
        top: unset;
        transform: scale(1);
        transition: all 0.4s;
    }

        .swiper-container-h .swiper-button-next:hover::after,
        .swiper-container-h .swiper-button-prev:hover::after {
            background: none;
            transform: scale(1.2);
        }

        .swiper-container-h .swiper-button-next::after,
        .swiper-container-h .swiper-button-prev::after {
            background: none;
            color: #ffffff;
            font-size: 24px;
        }

        .swiper-container-h .swiper-button-next::after {
            content: "\f061";
        }

        .swiper-container-h .swiper-button-prev::after {
            content: "\f060";
        }

    .swiper-container-h .swiper-pagination {
        bottom: 5%;
        max-width: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    @media (max-width: 575px) {
        .swiper-container-h .swiper-pagination {
            max-width: 100%;
        }
    }

    .swiper-container-h .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        background: #ffffff;
        opacity: 1;
        position: relative;
        margin: 0 20px;
        transition: all 0.4s;
    }

    @media (max-width: 575px) {
        .swiper-container-h .swiper-pagination .swiper-pagination-bullet {
            margin: 0 10px;
        }
    }

    .swiper-container-h .swiper-pagination .swiper-pagination-bullet::before {
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        border: 1px solid #fff;
        left: 0;
        transform: scale(1);
    }

    .swiper-container-h .swiper-pagination .swiper-pagination-bullet:hover::before {
        transform: scale(1.9);
    }

    .swiper-container-h .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 6px;
        height: 6px;
        background: #ffffff;
        opacity: 1;
    }

        .swiper-container-h .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
            transform: scale(1.9);
        }

    .swiper-container-h .swiper-horizontal > .swiper-scrollbar,
    .swiper-container-h .swiper-scrollbar.swiper-scrollbar-horizontal {
        background: transparent;
    }

        .swiper-container-h .swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag,
        .swiper-container-h .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
            background: var(--color-primary);
            border-radius: 0;
        }

    .swiper-container-h .swiper-horizontal > .swiper-scrollbar,
    .swiper-container-h .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 50;
        height: 5px;
        width: 100%;
        border-radius: 15px;
    }

    .banner-horizental-2 {
        padding: 200px 0 120px 0;
    }

    @media (max-width: 991px) {
        .banner-horizental-2 {
            padding: 120px 0 60px 0;
        }
    }

    .banner-horizental-2 .banner-inner {
        padding: 0;
    }

        .banner-horizental-2 .banner-inner .item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            transition: all 0.4s;
            cursor: pointer;
        }

    @media (max-width: 768px) {
        .banner-horizental-2 .banner-inner .item {
            justify-content: center;
        }
    }

    .banner-horizental-2 .banner-inner .item:hover .image-title {
        -webkit-text-stroke: 1px rgba(84, 87, 238, 0.7);
    }

        .banner-horizental-2 .banner-inner .item:hover .image-title::before {
            height: 100%;
        }

    .banner-horizental-2 .banner-inner .item:hover .portfolio-button i {
        transform: rotate(0deg);
    }

    .banner-horizental-2 .banner-inner .item .pos {
        font-size: 60px;
        font-weight: 600;
        color: transparent;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.7);
    }

    @media (max-width: 991px) {
        .banner-horizental-2 .banner-inner .item .pos {
            font-size: 38px;
        }
    }

    @media (max-width: 768px) {
        .banner-horizental-2 .banner-inner .item .pos {
            display: none;
        }
    }

    .banner-horizental-2 .banner-inner .item .image-title {
        font-size: 100px;
        line-height: 1.1;
        position: relative;
        display: inline-block;
        font-weight: 700;
        z-index: 2;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.7);
        color: transparent;
        transition: all 0.4s;
        opacity: 1;
    }

    @media (max-width: 1200px) {
        .banner-horizental-2 .banner-inner .item .image-title {
            font-size: 84px;
        }
    }

    @media (max-width: 991px) {
        .banner-horizental-2 .banner-inner .item .image-title {
            font-size: 60px;
        }
    }

    @media (max-width: 576px) {
        .banner-horizental-2 .banner-inner .item .image-title {
            font-size: 38px;
        }
    }

    @media (max-width: 401px) {
        .banner-horizental-2 .banner-inner .item .image-title {
            font-size: 28px;
        }
    }

    .banner-horizental-2 .banner-inner .item .image-title::before {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        content: attr(data-letters);
        overflow: hidden;
        white-space: nowrap;
        transition: height 1s;
        color: var(--color-primary);
        height: 0;
        z-index: 999;
    }

    .banner-horizental-2 .banner-inner .item .portfolio-button {
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        text-align: center;
        display: block;
        transition: all 0.4s;
        background: #EFEFFE;
        color: var(--color-primary);
        transition: all 0.4s;
    }

        .banner-horizental-2 .banner-inner .item .portfolio-button:hover {
            background: var(--color-primary);
            color: #fff;
        }

        .banner-horizental-2 .banner-inner .item .portfolio-button i {
            transform: rotate(-45deg);
            transition: all 0.4s;
        }

    @media (max-width: 768px) {
        .banner-horizental-2 .banner-inner .item .portfolio-button {
            display: none;
        }
    }

    .banner-horizental-2 .rts-img-reveal-wrapper {
        width: 350px;
        height: 370px;
    }

    .banner-horizental-2 .rts-hover-wrapper {
        display: none;
    }

    .single-working-process-one {
        background-image: url(../images/working-process/01.png);
        height: 304px;
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
    }

        .single-working-process-one:hover .inner img.logo {
            transform: translateY(-10px) scale(1.02);
        }

        .single-working-process-one::after {
            position: absolute;
            content: "";
            left: 50%;
            top: 55%;
            transform: translate(-50%, -50%);
            height: 100%;
            width: 100%;
            background: #00000030;
            filter: blur(70px);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.35;
        }

        .single-working-process-one .inner {
            padding: 60px 30px 30px 30px;
        }

            .single-working-process-one .inner img.logo {
                margin-bottom: 26px;
                transition: 0.3s;
            }

            .single-working-process-one .inner .title {
                margin-bottom: 8px;
            }

            .single-working-process-one .inner p.disc {
                font-weight: 400;
                font-size: 16px;
                line-height: 26px;
            }

    .container-custom-2 {
        max-width: 1680px;
        margin: auto;
    }

        .container-custom-2.bg-vedio-image {
            background-image: url(../images/vedio/01.jpg);
            height: 671px;
        }

    @media only screen and (max-width: 575px) {
        .container-custom-2.bg-vedio-image {
            background-image: url(../images/vedio/01.jpg);
            /* height: max-content; */
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            height: auto;
            height: 471px;
        }
    }

    .counter-bg {
        /*background-image: url(../images/counter-up/01.jpg);*/
        background-image: url(../images/bg-aksesibilitas.jpg);
        background-size: cover;
    }

    .counter-up-wrapper-one {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .counter-up-wrapper-one .counter-single {
            margin-right: 30px;
            margin-bottom: 30px;
        }

            .counter-up-wrapper-one .counter-single:last-child {
                margin-bottom: 0;
            }
    }

    @media only screen and (max-width: 767px) {
        .counter-up-wrapper-one .counter-single {
            margin-right: 10px;
            margin-bottom: 10px;
        }

            .counter-up-wrapper-one .counter-single:last-child {
                margin-bottom: 0;
            }
    }

    .counter-up-wrapper-one .counter-single h2 {
        font-weight: 700;
        font-size: 60px;
        line-height: 72px;
        color: #fff;
        max-width: max-content;
        margin-bottom: 0;
    }

        .counter-up-wrapper-one .counter-single h2 span {
            position: relative;
        }

            .counter-up-wrapper-one .counter-single h2 span::after {
                position: absolute;
                content: "+";
                font-size: 60px;
                right: -40px;
                top: 50%;
                transform: translateY(-50%);
            }

            .counter-up-wrapper-one .counter-single h2 span.k-plus::after {
                content: "k+";
                right: -70px;
            }

    .counter-up-wrapper-one .counter-single p.disc {
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
        color: #fff;
    }

    .counter-up-wrapper-two {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    @media only screen and (max-width: 767px) {
        .counter-up-wrapper-two {
            justify-content: center;
        }
    }

    .counter-up-wrapper-two .counter-single {
        text-align: center;
        border: 1px solid #3B38EB;
        width: 230px;
        height: 230px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    @media only screen and (max-width: 1199px) {
        .counter-up-wrapper-two .counter-single {
            width: 215px;
            height: 215px;
        }
    }

    @media only screen and (max-width: 767px) {
        .counter-up-wrapper-two .counter-single {
            margin-bottom: 30px;
        }
    }

    .counter-up-wrapper-two .counter-single .title {
        font-style: italic;
        font-weight: 400;
        font-size: 60px;
        line-height: 72px;
        color: #3B38EB;
        margin-bottom: 2px;
    }

    .counter-up-wrapper-two .counter-single p.disc {
        color: #111A2E;
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
    }

    .about-right-one-area {
        margin-left: -20px;
    }

    @media screen and (max-width: 1399px) {
        .about-right-one-area {
            margin-left: 20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .about-right-one-area {
            margin-left: 0;
            margin-top: 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .about-right-one-area {
            margin-left: 0;
            margin-top: 30px;
        }
    }

    .about-right-one-area p.disc {
        margin-bottom: 20px;
    }

    .about-right-one-area a.rts-btn {
        margin-top: 15px;
    }

    .image-inner-area-wrapper-three {
        position: relative;
    }

        .image-inner-area-wrapper-three .inetial {
            margin-left: 53px;
        }

    @media only screen and (max-width: 479px) {
        .image-inner-area-wrapper-three .inetial {
            margin-left: 0;
        }
    }

    .image-inner-area-wrapper-three .not-fix {
        position: relative;
        border-radius: 20px;
    }

        .image-inner-area-wrapper-three .not-fix.one {
            left: 0;
            margin-top: -200px;
        }

    @media only screen and (max-width: 575px) {
        .image-inner-area-wrapper-three .not-fix.one {
            width: 250px;
            height: auto;
        }
    }

    @media only screen and (max-width: 479px) {
        .image-inner-area-wrapper-three .not-fix.one {
            width: 200px;
            height: auto;
        }
    }

    .image-inner-area-wrapper-three .not-fix.one.two {
        right: 0;
        bottom: 80px;
        right: 0;
        margin-left: 60px;
        position: absolute;
        left: auto;
        animation: jump-1 5s linear infinite;
    }

    @media only screen and (max-width: 575px) {
        .image-inner-area-wrapper-three .not-fix.one.two {
            width: 150px;
            height: auto;
        }
    }

    @media only screen and (max-width: 479px) {
        .image-inner-area-wrapper-three .not-fix.one.two {
            bottom: 40px;
            width: 120px;
        }
    }

    .rts-vedio-area.vedio-area-home-two {
        position: relative;
    }

        .rts-vedio-area.vedio-area-home-two .vedio-icone {
            position: absolute;
            top: 63%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    @media only screen and (max-width: 575px) {
        .rts-vedio-area.vedio-area-home-two .vedio-icone {
            top: 51%;
        }
    }

    .rts-vedio-area.vedio-area-home-two .vedio-icone a::after {
        background-image: url(../images/banner/shape/11.png);
        width: 180px;
        height: 180px;
        animation: rotateIt2 8s linear infinite;
        left: -63%;
        top: -171%;
        transform: none;
    }

    .rts-vedio-area.vedio-area-home-two .vedio-icone a::before {
        z-index: 5;
    }

    .rts-vedio-area.vedio-area-home-two .vedio-icone a span.icon {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 17px solid #111A2E;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 116%;
    }

    .about-success-wrapper .single {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
        align-items: flex-start;
    }

        .about-success-wrapper .single i {
            padding: 4px;
            background: var(--color-primary);
            border-radius: 50%;
            color: #fff;
            font-size: 12px;
            margin-right: 15px;
            margin-top: 5px;
        }

        .about-success-wrapper .single p.details {
            font-size: 16px;
            color: #1C2539;
            font-weight: 500;
        }

    .about-founder-wrapper .author-inner {
        display: flex;
        align-items: center;
        position: relative;
    }

        .about-founder-wrapper .author-inner::after {
            position: absolute;
            content: "";
            right: 11%;
            top: 50%;
            transform: translateY(-50%);
            height: 70px;
            width: 1px;
            background: #EBEBEB;
        }

    @media only screen and (max-width: 1199px) {
        .about-founder-wrapper .author-inner::after {
            display: none;
        }
    }

    .about-founder-wrapper .author-inner .founder-details a .title {
        margin-bottom: 1px;
        transition: 0.3s;
    }

    .about-founder-wrapper .author-inner .founder-details a:hover .title {
        color: var(--color-title);
    }

    .about-founder-wrapper .author-inner .founder-details span {
        font-size: 14px;
        color: var(--color-primary);
        font-weight: 400;
    }

    .about-founder-wrapper .author-inner a.thumbnail {
        display: block;
        overflow: hidden;
        border-radius: 50%;
        margin-right: 16px;
    }

        .about-founder-wrapper .author-inner a.thumbnail img {
            transition: 0.3s;
        }

        .about-founder-wrapper .author-inner a.thumbnail:hover img {
            transform: scale(1.1);
        }

    .about-founder-wrapper .author-call-option {
        display: flex;
        align-items: center;
    }

        .about-founder-wrapper .author-call-option img {
            padding: 12px;
            background: var(--color-primary);
            border-radius: 14px;
            margin-right: 16px;
        }

        .about-founder-wrapper .author-call-option span {
            color: #5D666F;
            font-size: 14px;
        }

        .about-founder-wrapper .author-call-option .title {
            margin-bottom: 0;
            margin-top: 2px;
            transition: 0.3s;
            min-width: max-content;
        }

            .about-founder-wrapper .author-call-option .title:hover {
                color: var(--color-primary);
            }

    .contact-map-area-fluid {
        position: relative;
    }

        .contact-map-area-fluid .contact-map {
            width: 100%;
            height: 580px;
        }

        .contact-map-area-fluid .location {
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 5;
            transform: translate(-50%, -50%);
            max-width: 100px;
            height: auto;
        }

    .rts-contact-fluid {
        box-shadow: 0px 24px 39px rgba(0, 0, 0, 0.05);
    }

        .rts-contact-fluid .form-wrapper {
            width: 80%;
            margin: auto;
        }

    @media only screen and (max-width: 575px) {
        .rts-contact-fluid .form-wrapper {
            width: 90%;
        }
    }

    .rts-contact-fluid .form-wrapper .error {
        color: var(--color-primary);
        margin-bottom: 15px;
    }

    .rts-contact-fluid .form-wrapper .success {
        color: green;
        margin-bottom: 15px;
    }

    .rts-contact-fluid .form-wrapper form .name-email {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    @media only screen and (max-width: 767px) {
        .rts-contact-fluid .form-wrapper form .name-email {
            flex-direction: column;
        }
    }

    .rts-contact-fluid .form-wrapper form .name-email input {
        width: 48.8%;
        padding-left: 25px;
    }

    @media only screen and (max-width: 767px) {
        .rts-contact-fluid .form-wrapper form .name-email input {
            width: 100%;
        }
    }

    .rts-contact-fluid .form-wrapper input {
        background: #F6F6F6;
        height: 55px;
        border-radius: 15px;
        margin-bottom: 25px;
        border: 1px solid transparent;
        padding-left: 25px;
    }

        .rts-contact-fluid .form-wrapper input:focus {
            border: 1px solid var(--color-primary);
        }

    .rts-contact-fluid .form-wrapper textarea {
        height: 150px;
        background: #F6F6F6;
        border-radius: 15px;
        padding: 15px 15px;
        border: 1px solid transparent;
        padding-left: 25px;
    }

        .rts-contact-fluid .form-wrapper textarea:focus {
            border: 1px solid var(--color-primary);
        }

    .rts-contact-fluid .rts-btn {
        display: block;
        max-width: max-content;
        margin: auto;
        margin-top: 30px;
    }

    .rts-send-message-area-h4 {
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        .rts-send-message-area-h4 .thumbnail {
            position: absolute;
            left: 50%;
            top: -20%;
            transform: translateX(-50%);
            z-index: -1;
        }

        .rts-send-message-area-h4 .content .title {
            text-align: center;
            padding-top: 140px;
            font-size: 90px;
            font-weight: 100;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-send-message-area-h4 .content .title {
            font-size: 54px;
            padding-top: 60px;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-send-message-area-h4 .content .title {
            font-size: 42px;
            padding-top: 38px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-send-message-area-h4 .content .title {
            font-size: 36px;
            padding-top: 38px;
        }
    }

    @media only screen and (max-width: 479px) {
        .rts-send-message-area-h4 .content .title {
            font-size: 26px;
            padding-top: 38px;
        }
    }

    .rts-send-message-area-h4 .content .title span.bold {
        color: #111A2E;
        font-weight: 700;
        line-height: 100px;
    }

    .rts-send-message-area-h4 .content .title span.italic {
        font-style: italic;
        font-weight: 400;
        color: #3B38EB;
    }

    .rts-send-message-area-h4 .content .button-area {
        display: flex;
        justify-content: center;
    }

        .rts-send-message-area-h4 .content .button-area button {
            position: relative;
            transition: 0.3s;
            width: max-content;
        }

            .rts-send-message-area-h4 .content .button-area button span {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                color: #fff;
                font-weight: 600;
                font-size: 16px;
                line-height: 19px;
                min-width: max-content;
                font-family: var(--font-secondary);
                transition: 0.3s;
            }

            .rts-send-message-area-h4 .content .button-area button:hover {
                transform: scale(0.9);
            }

                .rts-send-message-area-h4 .content .button-area button:hover span {
                    transform: translate(-50%, -50%) scale(0.9);
                }

    .rts--service-area {
        background: #ECF2F6;
    }

    .rts-single-service-one {
        padding: 40px;
        background: #fff;
        border-radius: 15px;
        transition: 0.3s;
        box-shadow: 0px 14px 46px #E8EEF9;
        height: 100%;
    }

    @media only screen and (max-width: 767px) {
        .rts-single-service-one {
            padding: 20px;
        }
    }

    .rts-single-service-one.home-three {
        box-shadow: 0px 19px 29px rgba(0, 0, 0, 0.07);
    }

    .rts-single-service-one .icon {
        margin-bottom: 24px;
    }

    .rts-single-service-one a .title {
        margin-bottom: 10px;
        transition: 0.3s;
    }

    .rts-single-service-one a:hover .title {
        color: var(--color-primary);
    }

    .rts-single-service-one p.disc {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .rts-single-service-one:hover {
        transform: translateY(-10px);
    }

    @media only screen and (max-width: 575px) {
        .rts-single-service-one .icon img {
            max-width: 50px;
        }
    }

    .appoinment-area-one {
        background: #FFFFFF;
        box-shadow: 0px 14px 46px #E8EEF9;
        border-radius: 20px;
        padding: 100px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .appoinment-area-one {
            padding: 40px;
        }
    }

    @media only screen and (max-width: 767px) {
        .appoinment-area-one {
            padding: 30px;
        }
    }

    @media only screen and (max-width: 575px) {
        .appoinment-area-one {
            padding: 20px;
        }
    }

    .appoinment-area-one .appoinment-left {
        padding-right: 20px;
    }

        .appoinment-area-one .appoinment-left .communicate-area {
            display: flex;
            align-items: center;
        }

            .appoinment-area-one .appoinment-left .communicate-area .details-area {
                margin-left: 20px;
            }

                .appoinment-area-one .appoinment-left .communicate-area .details-area span {
                    display: block;
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 19px;
                    color: #6F737B;
                    margin-bottom: 5px;
                }

                .appoinment-area-one .appoinment-left .communicate-area .details-area a {
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 24px;
                    color: #111A2E;
                    transition: 0.3s;
                }

    @media only screen and (max-width: 575px) {
        .appoinment-area-one .appoinment-left .communicate-area .details-area a {
            font-size: 14px;
        }
    }

    .appoinment-area-one .appoinment-left .communicate-area .details-area a:hover {
        color: var(--color-primary);
    }

    .appoinment-area-one .appoinment-left p.disc {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 33px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .appoinment-area-one .appoinment-right {
            margin-top: 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .appoinment-area-one .appoinment-right {
            margin-top: 30px;
        }
    }

    .appoinment-area-one .appoinment-right .single-input label {
        color: #111A2E;
        font-weight: 600;
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 18px;
    }

    .appoinment-area-one .appoinment-right .single-input input {
        height: 55px;
        border: 1px solid #E8EAF0;
        border-radius: 15px;
    }

        .appoinment-area-one .appoinment-right .single-input input:focus {
            border: 1px solid var(--color-primary);
        }

    .appoinment-area-one .appoinment-right .single-input textarea {
        height: 130px;
        border: 1px solid #E8EAF0;
        border-radius: 15px;
        padding: 15px;
    }

        .appoinment-area-one .appoinment-right .single-input textarea:focus {
            border: 1px solid var(--color-primary);
        }

    .appoinment-area-one .appoinment-right a.rts-btn {
        display: block;
        text-align: center;
    }

    .service-bg_shape {
        position: relative;
        z-index: 1;
    }

        .service-bg_shape.service-inner::before {
            display: none;
        }

        .service-bg_shape.service-inner::after {
            display: none;
        }

        .service-bg_shape::after {
            position: absolute;
            left: 0;
            top: 100px;
            /*background-image: url(../images/service/shape/01.png);*/
            height: 483px;
            width: 180px;
            background-size: cover;
            content: "";
            z-index: -1;
        }

        .service-bg_shape::before {
            position: absolute;
            animation: shape-service-1 1s;
            /*background-image: url(../images/service/shape/02.png);*/
            height: 604px;
            width: 949.83px;
            background-size: contain;
            content: "";
            background-repeat: no-repeat;
            z-index: -1;
            right: -23%;
            top: 0;
        }

    .appoinment-shape {
        position: relative;
    }

        .appoinment-shape .shape {
            position: absolute;
            z-index: -1;
        }

        .appoinment-shape .shape-1 {
            left: -39%;
            bottom: 107px;
        }

    @media only screen and (min-width: 1200px) and (max-width: 1599px) {
        .appoinment-shape .shape-1 {
            left: -10%;
        }
    }

    .appoinment-shape .shape-2 {
        left: -15%;
        bottom: 465px;
    }

    .bg-business-solution-service {
        background: #F7F7F7;
        padding-top: 450px;
        margin-top: -336px;
    }

    .rts-read-more.two {
        color: #111A2E;
        font-weight: 700;
        font-size: 16px;
        line-height: 19px;
        font-family: var(--font-secondary);
    }

        .rts-read-more.two:hover {
            color: var(--color-primary);
        }

    .rts-single-service-wrapper-two {
        margin-right: 55px;
    }

        .rts-single-service-wrapper-two .icon-wrapper {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 1px solid #3B38EB;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 33px;
            z-index: 1;
            overflow: hidden;
        }

            .rts-single-service-wrapper-two .icon-wrapper .icon {
                margin-left: 10px;
                margin-top: 10px;
                transition: 0.3s;
            }

                .rts-single-service-wrapper-two .icon-wrapper .icon::after {
                    content: "";
                    position: absolute;
                    width: 117px;
                    height: 117px;
                    background: rgba(99, 96, 235, 0.1);
                    border-radius: 50%;
                    right: 0;
                    bottom: 0;
                    transition: 0.3s;
                    z-index: -1;
                }

            .rts-single-service-wrapper-two .icon-wrapper:hover .icon {
                margin-left: 0;
                margin-top: 0;
            }

                .rts-single-service-wrapper-two .icon-wrapper:hover .icon::after {
                    width: 130px;
                    height: 130px;
                }

        .rts-single-service-wrapper-two .main-title .title {
            transition: 0.3s;
            margin-bottom: 15px;
        }

        .rts-single-service-wrapper-two .main-title:hover .title {
            color: var(--color-primary);
        }

        .rts-single-service-wrapper-two p.disc {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 20px;
        }

    .service-bg-color {
        background: #F7FAFF;
    }

    .service-detials-step-1 .service-details-card {
        padding: 30px;
        box-shadow: 0px 8px 30px #6a6a6a1a;
        display: flex;
        align-items: flex-start;
        border-left: 5px solid var(--color-primary);
    }

    .service-detials-step-2 .single-service-step {
        background: #fff;
        padding: 40px 20px;
        border: 1px solid #EEEEEE;
        box-shadow: 0px 6px 39px #0000000a;
    }

        .service-detials-step-2 .single-service-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;
        }

            .service-detials-step-2 .single-service-step p.step::before {
                position: absolute;
                content: "";
                left: 50%;
                top: 50%;
                background: #3b38eb10;
                height: 90px;
                width: 90px;
                transform: translate(-50%, -50%);
                z-index: -1;
                border-radius: 50%;
            }

            .service-detials-step-2 .single-service-step p.step::after {
                position: absolute;
                content: "";
                left: 50%;
                top: 50%;
                background: var(--color-primary);
                height: 60px;
                width: 60px;
                transform: translate(-50%, -50%);
                z-index: -1;
                border-radius: 50%;
            }

    .service-detials-step-1 .service-details-card .details {
        margin-left: 20px;
    }

    .single-download-area a.rts-btn.btn-primary::before {
        border-radius: 0 !important;
    }

    .rts-progress-area .thumbnail {
        display: block;
        overflow: hidden;
        max-width: max-content;
    }

        .rts-progress-area .thumbnail img {
            transition: 0.3s;
        }

        .rts-progress-area .thumbnail:hover img {
            transform: scale(0.95);
        }

    .single-progress-area-h4 {
        margin-top: 30px;
    }

        .single-progress-area-h4:first-child {
            margin-top: 0;
        }

        .single-progress-area-h4 .page-wrapper {
            width: calc(100% - 100px);
            margin: 100px auto 200px;
        }

        .single-progress-area-h4 .progress {
            height: 5px;
            position: relative;
            margin-top: 14px;
            border-radius: 0;
        }

            .single-progress-area-h4 .progress .bg--primary {
                background: var(--color-primary);
                border-radius: 0;
            }

        .single-progress-area-h4 .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
        }

        .single-progress-area-h4 .progress-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .single-progress-area-h4 .progress-top p {
                margin-bottom: 0;
                text-transform: uppercase;
                font-weight: 100;
                font-size: 30px;
                line-height: 36px;
                color: #111A2E;
            }

            .single-progress-area-h4 .progress-top span.parcent {
                font-weight: 700;
                font-size: 16px;
                line-height: 19px;
                color: #111A2E;
            }

    .title-area.ho-4 .title {
        font-weight: 700;
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 0.2em;
        margin-bottom: 0;
        color: #FFFFFF;
        text-transform: uppercase;
        padding-bottom: 25px;
    }

    @media only screen and (max-width: 575px) {
        .title-area.ho-4 .title {
            font-size: 24px;
            line-height: 32px;
        }
    }

    .bg_service-h4 {
        background: #18191B;
        position: relative;
        z-index: 1;
    }

        .bg_service-h4 .separator {
            position: absolute;
            height: 1px;
            background: #222326;
            width: 100%;
            display: block;
            z-index: -1;
        }

    .service-tab-h4 {
        padding-right: 100px;
    }

    @media only screen and (max-width: 767px) {
        .service-tab-h4 {
            padding-right: 0;
        }
    }

    .service-tab-h4 .nav {
        border: none;
        padding-top: 40px;
    }

    @media only screen and (max-width: 575px) {
        .service-tab-h4 .nav {
            padding-top: 0;
        }
    }

    .service-tab-h4 .nav button {
        background-color: transparent;
        border: none;
        margin-bottom: 30px;
        font-weight: 700;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        font-size: 16px;
        text-align: left;
        transition: 0.3s;
        display: block;
    }

    @media only screen and (max-width: 575px) {
        .service-tab-h4 .nav button {
            margin-bottom: 15px;
        }
    }

    .service-tab-h4 .nav button span {
        display: none;
        transition: 0.3s;
        text-transform: capitalize;
        margin-top: 15px;
        visibility: hidden;
        margin-left: -17px;
    }

    .service-tab-h4 .nav button[aria-selected=true] {
        position: relative;
        margin-left: 15px;
        transition: 0.3s;
        color: #fff;
    }

        .service-tab-h4 .nav button[aria-selected=true] span {
            display: block;
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            color: #ffffff4d;
            visibility: visible;
            margin-left: -17px;
        }

        .service-tab-h4 .nav button[aria-selected=true]::after {
            content: "";
            position: absolute;
            left: -10px;
            top: 10px;
            height: 8px;
            width: 8px;
            border-radius: 50%;
            background: var(--color-primary);
        }

    .service-tab-h4 .nav button:last-child {
        margin-bottom: 0;
    }

    .service-tab-h4 .nav button:hover {
        border: none;
    }

    .service-tab-h4 .nav button:focus {
        border: none;
    }

    .service-tab-h4 .nav button.active {
        background-color: transparent !important;
        border: none;
    }

    .service-tab-h4-right .thumbnail {
        padding-top: 45px;
        transition: 0.3s;
    }

        .service-tab-h4-right .thumbnail:hover {
            transform: scale(0.95);
        }

    .progress-wrap {
        position: fixed;
        right: 30px;
        bottom: 30px;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        border-radius: 50px;
        z-index: 10000;
        opacity: 1;
        visibility: hidden;
        transform: translateY(15px);
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
    }

        .progress-wrap.active-progress {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .progress-wrap::after {
            position: absolute;
            font-family: "unicons";
            content: "\e84b";
            text-align: center;
            line-height: 46px;
            font-size: 24px;
            color: var(--color-primary);
            left: 0;
            top: 0;
            height: 46px;
            width: 46px;
            cursor: pointer;
            display: block;
            z-index: 1;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
            border: 2px solid var(--color-primary);
            box-shadow: none;
            border-radius: 50% !important;
            border-radius: 5px;
        }

        .progress-wrap:hover::after {
            opacity: 1;
            content: "\e84b";
            border: 2px solid var(--color-primary);
        }

        .progress-wrap::before {
            position: absolute;
            font-family: "unicons";
            content: "\e84b";
            text-align: center;
            line-height: 46px;
            font-size: 24px;
            opacity: 0;
            background: var(--color-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            left: 0;
            top: 0;
            height: 46px;
            width: 46px;
            cursor: pointer;
            display: block;
            z-index: 2;
            -webkit-transition: all 200ms linear;
            transition: all 200ms linear;
        }

        .progress-wrap:hover::before {
            opacity: 0;
        }

        .progress-wrap svg path {
            fill: none;
        }

        .progress-wrap svg {
            color: var(--color-primary);
            border-radius: 50%;
            background: #fff;
        }

            .progress-wrap svg.progress-circle path {
                stroke: var(--color-primary);
                stroke-width: 34px;
                box-sizing: border-box;
                -webkit-transition: all 200ms linear;
                transition: all 200ms linear;
            }

    .home-blue .progress-wrap svg.progress-circle path {
        stroke: var(--color-primary-2);
    }

    .home-blue .progress-wrap::after {
        border-color: var(--color-primary-2);
        box-shadow: 0px 3px 20px 6px #0742e952;
        color: var(--color-primary-2);
    }

    .container.container-2 {
        max-width: 1679px;
    }

    .single-team-one {
        position: relative;
    }

        .single-team-one .inner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            transition: all 0.5s;
        }

            .single-team-one .inner-content .main-wrapper {
                text-align: center;
                position: relative;
                z-index: 1;
                transform: scale(0);
                transition: 0.5s;
            }

                .single-team-one .inner-content .main-wrapper::after {
                    position: absolute;
                    content: "";
                    width: 353px;
                    height: 354px;
                    background: #fff;
                    opacity: 0.9;
                    border-radius: 50%;
                    display: flex;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: -1;
                }

                .single-team-one .inner-content .main-wrapper a .title {
                    color: #111A2E;
                    font-weight: 700;
                    font-size: 24px;
                    line-height: 29px;
                    margin-bottom: 1px;
                    transition: 0.3s;
                }

                .single-team-one .inner-content .main-wrapper a:hover .title {
                    color: var(--color-primary);
                }

                .single-team-one .inner-content .main-wrapper .social-wrapper {
                    list-style: none;
                    padding-left: 0;
                    display: flex;
                    justify-content: center;
                    margin: 0;
                }

                    .single-team-one .inner-content .main-wrapper .social-wrapper li {
                        margin-left: 15px;
                        margin-right: 15px;
                        margin-top: 15px;
                        margin-bottom: 0;
                    }

                        .single-team-one .inner-content .main-wrapper .social-wrapper li a {
                            position: relative;
                            z-index: 1;
                        }

                            .single-team-one .inner-content .main-wrapper .social-wrapper li a i {
                                font-size: 12px;
                                color: #111A2E;
                                transition: 0.3s;
                            }

                            .single-team-one .inner-content .main-wrapper .social-wrapper li a::after {
                                position: absolute;
                                content: "";
                                width: 30px;
                                height: 30px;
                                background: #E6E6E6;
                                left: 50%;
                                top: 60%;
                                transform: translate(-50%, -50%);
                                z-index: -1;
                                border-radius: 50%;
                                transition: 0.3s;
                            }

                            .single-team-one .inner-content .main-wrapper .social-wrapper li a:hover i {
                                color: #fff;
                            }

                            .single-team-one .inner-content .main-wrapper .social-wrapper li a:hover::after {
                                background: var(--color-primary);
                            }

        .single-team-one:hover .inner-content .main-wrapper {
            transform: scale(1);
        }

    .single-contact-one-inner {
        background: #FFFFFF;
        border: 1px solid #F0F0F0;
        border-radius: 15px;
        height: 100%;
    }

        .single-contact-one-inner .thumbnail {
            display: block;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }

            .single-contact-one-inner .thumbnail img {
                width: 100%;
                transition: 0.3s;
            }

            .single-contact-one-inner .thumbnail:hover img {
                transform: scale(1.1);
            }

        .single-contact-one-inner .content {
            display: flex;
            align-items: center;
            padding: 40px;
        }

    @media only screen and (max-width: 767px) {
        .single-contact-one-inner .content {
            padding: 15px;
        }
    }

    .single-contact-one-inner .content .icone {
        margin-right: 20px;
    }

    .single-contact-one-inner .content .info span {
        margin-bottom: 0;
        color: var(--color-primary);
        font-weight: 500;
    }

    .single-contact-one-inner .content .info a h5 {
        margin-bottom: 0;
        transition: 0.3s;
    }

    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .single-contact-one-inner .content .info a h5 {
            font-size: 18px;
        }
    }

    @media only screen and (max-width: 767px) {
        .single-contact-one-inner .content .info a h5 {
            font-size: 18px;
        }
    }

    .single-contact-one-inner .content .info a:hover h5 {
        color: var(--color-primary);
    }

    .team-single-one-start {
        background: #fff;
        border-radius: 8px;
        transition: 0.3s;
        box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    }

        .team-single-one-start:hover {
            transform: translateY(-20px);
        }

        .team-single-one-start .team-image-area a {
            overflow: hidden;
            display: block;
            position: relative;
            border-radius: 8px 8px 0 0;
        }

            .team-single-one-start .team-image-area a:hover img {
                transform: scale(1.1);
            }

            .team-single-one-start .team-image-area a img {
                width: 100%;
                transition: 0.3s;
            }

            .team-single-one-start .team-image-area a .team-social {
                position: absolute;
                bottom: 30px;
                right: 30px;
            }

                .team-single-one-start .team-image-area a .team-social .main i {
                    padding: 16px;
                    background: #fff;
                    border-radius: 50%;
                    font-size: 16px;
                    line-height: 12px;
                    font-weight: 500;
                    color: var(--color-primary);
                    transition: 0.3s;
                }

                .team-single-one-start .team-image-area a .team-social:hover .main i {
                    background: var(--color-primary);
                    color: #fff;
                }

                .team-single-one-start .team-image-area a .team-social .team-social-one {
                    display: flex;
                    flex-direction: column;
                    position: absolute;
                    transform: translateY(50px);
                    transition: 1s;
                    opacity: 0;
                }

                    .team-single-one-start .team-image-area a .team-social .team-social-one i {
                        background: #fff;
                        border-radius: 60%;
                        font-size: 16px;
                        line-height: 23px;
                        font-weight: 500;
                        color: var(--color-primary);
                        transition: 0.3s;
                        margin-bottom: 10px;
                        height: 45px;
                        width: 45px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                        .team-single-one-start .team-image-area a .team-social .team-social-one i:hover {
                            background: var(--color-primary);
                            color: #fff;
                        }

                .team-single-one-start .team-image-area a .team-social:hover .main {
                    opacity: 0;
                }

                .team-single-one-start .team-image-area a .team-social:hover .team-social-one {
                    transform: translateY(-96%);
                    z-index: 2;
                    opacity: 1;
                }

        .team-single-one-start .single-details {
            padding: 28px 30px 27px 30px;
        }

            .team-single-one-start .single-details a .title {
                margin-bottom: 0px;
                transition: 0.3s;
            }

            .team-single-one-start .single-details a:hover .title {
                color: var(--color-primary);
            }

            .team-single-one-start .single-details p {
                color: var(--color-primary);
                font-size: 16px;
            }

    .team-details-support-wrapper {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

        .team-details-support-wrapper i {
            height: 60px;
            width: 60px;
            border-radius: 15px;
            border: 1px solid #EDEDED;
            box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 400;
            font-size: 20px;
            line-height: 20px;
            color: var(--color-primary);
        }

        .team-details-support-wrapper .support-innner {
            margin-left: 20px;
        }

            .team-details-support-wrapper .support-innner span {
                margin-bottom: 5px;
                color: #5D666F;
                font-size: 16px;
                font-weight: 400;
            }

            .team-details-support-wrapper .support-innner a .title {
                margin-bottom: 0;
                transition: 0.3s;
            }

    @media only screen and (max-width: 479px) {
        .team-details-support-wrapper .support-innner a .title {
            font-size: 14px;
        }
    }

    .team-details-support-wrapper .support-innner a:hover .title {
        color: var(--color-primary);
    }

    p.disc {
        font-size: 16px;
        line-height: 26px;
    }

    .details-right-inner .title-area {
        margin-bottom: 16px;
    }

        .details-right-inner .title-area span {
            color: #5D666F;
            font-weight: 500;
            font-size: 16px;
        }

        .details-right-inner .title-area .title {
            margin-top: 0px;
            margin-bottom: 12px;
            font-size: 40px;
        }

    .details-right-inner p.disc {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 33px;
        color: #5D666F;
    }

    .details-right-inner .rts-btn {
        margin-top: 30px;
        display: block;
        max-width: max-content;
    }

    .single-about-skill-inner .title {
        position: relative;
        margin-bottom: 40px;
    }

        .single-about-skill-inner .title::after {
            content: "";
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #F1F1F1;
        }

    .rts-progress-one-wrapper .meter {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
        display: block;
        height: 8px;
        margin-bottom: 10px;
        position: relative;
    }

        .rts-progress-one-wrapper .meter > span {
            display: block;
            height: 100%;
            background-color: var(--color-primary);
            position: relative;
            overflow: hidden;
            transition: width 2s ease-out;
        }

    .rts-progress-one-wrapper .orange > span {
        background-color: var(--color-primary);
    }

    .rts-progress-one-wrapper .red > span {
        background-color: var(--color-primary);
    }

    .rts-progress-one-wrapper .cadetblue > span {
        background-color: var(--color-primary);
    }

    .rts-progress-one-wrapper .single-progress {
        margin-bottom: 20px;
        border-bottom: 1px solid #F1F1F1;
    }

    .rts-progress-one-wrapper .progress-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

        .rts-progress-one-wrapper .progress-top p {
            margin-bottom: 0;
            color: var(--color-primary);
            font-weight: 500;
            font-size: 16px;
        }

        .rts-progress-one-wrapper .progress-top .persectage {
            color: var(--color-primary);
            font-weight: 500;
            font-size: 16px;
        }

    .education-skill-wrapper {
        display: flex;
        box-shadow: 0px 13px 21px rgba(0, 0, 0, 0.03);
        flex-wrap: wrap;
    }

        .education-skill-wrapper .number-area {
            position: absolute;
            height: 60px;
            width: 60px;
            background: var(--color-primary);
            border-radius: 50%;
            left: -4%;
            top: -10%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .education-skill-wrapper .number-area p {
                font-size: 22px;
                color: #fff;
                margin-left: auto;
                margin-top: auto;
                margin-right: 12px;
                margin-bottom: 8px;
            }

                .education-skill-wrapper .number-area p span {
                    font-size: 12px;
                    color: #fff;
                    margin-left: -3px;
                }

        .education-skill-wrapper .single-skill {
            padding: 30px 60px;
            border: 1px solid #F1F1F1;
            width: 50%;
            position: relative;
            overflow: hidden;
            transition: 0.3s;
            background: #fff;
        }

    @media only screen and (min-width: 1200px) and (max-width: 1599px) {
        .education-skill-wrapper .single-skill {
            padding: 30px 11px 30px 50px;
        }
    }

    @media only screen and (max-width: 1199px) {
        .education-skill-wrapper .single-skill {
            padding: 30px 10px 30px 40px;
            width: 100%;
        }
    }

    @media only screen and (max-width: 767px) {
        .education-skill-wrapper .single-skill {
            padding: 30px 10px 30px 50px;
        }
    }

    .education-skill-wrapper .single-skill .experience {
        margin-bottom: 3px;
    }

    .education-skill-wrapper .single-skill .date span {
        color: var(--color-primary);
    }

    .education-skill-wrapper .single-skill:hover {
        transform: scale(1.05);
    }

    .bg-team {
        background: #F7F7F7;
    }

    .single-team-two {
        padding: 40px;
        background: #fff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        box-shadow: 0px 18px 33px rgba(15, 15, 45, 0.05);
        height: 100%;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-team-two {
            align-items: flex-start;
            padding: 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .single-team-two {
            flex-direction: column;
            justify-content: flex-start;
            padding: 20px;
            align-items: flex-start;
        }
    }

    .single-team-two .thumbnail {
        overflow: hidden;
        display: block;
        border-radius: 15px;
    }

    @media only screen and (max-width: 767px) {
        .single-team-two .thumbnail {
            width: 100%;
        }
    }

    .single-team-two .thumbnail img {
        transition: 0.3s;
        border-radius: 15px;
    }

    @media only screen and (max-width: 767px) {
        .single-team-two .thumbnail img {
            width: 100%;
        }
    }

    .single-team-two .thumbnail:hover img {
        transform: scale(1.2);
    }

    .single-team-two .inner {
        margin-left: 30px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-team-two .inner {
            margin-left: 15px;
        }
    }

    @media only screen and (max-width: 767px) {
        .single-team-two .inner {
            margin-left: 0;
            margin-top: 15px;
        }
    }

    .single-team-two .inner span {
        color: #6F737B;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
    }

    .single-team-two .inner a h5 {
        margin-bottom: 0;
        color: #111A2E;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-team-two .inner a h5 {
            font-size: 20px;
        }
    }

    .social-wrapper-two ul {
        list-style: none;
        display: flex;
        padding-left: 0;
        margin-top: 20px;
        margin-bottom: 0;
    }

        .social-wrapper-two ul li {
            margin: 0;
            padding: 0;
        }

            .social-wrapper-two ul li a {
                transition: 0.3s;
            }

                .social-wrapper-two ul li a i {
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--color-primary);
                    margin-right: 7px;
                    background: #FFFFFF;
                    transition: 0.3s;
                    box-shadow: 0px 10px 12px rgba(179, 179, 179, 0.21), inset 1px 4px 5px rgba(174, 172, 243, 0.3);
                }

                .social-wrapper-two ul li a:hover i {
                    color: #fff;
                    transform: translateY(-5px);
                    box-shadow: 0px 10px 12px rgba(28, 82, 205, 0.37), inset 1px 4px 5px rgba(0, 0, 0, 0.3);
                    background: var(--color-primary);
                }

    .team-single-digital {
        overflow: hidden;
        position: relative;
    }

        .team-single-digital a.thumbnail {
            position: relative;
            height: 100%;
            display: block;
            z-index: 1;
        }

            .team-single-digital a.thumbnail::after {
                position: absolute;
                content: "";
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                z-index: 0;
                transition: 0.4s;
                background: linear-gradient(180deg, #0000005d 0%, #000 100%);
            }

            .team-single-digital a.thumbnail img {
                width: 100%;
            }

            .team-single-digital a.thumbnail .inner {
                position: absolute;
                transition: 0.3s;
                transition: 0.3s;
                left: 30px;
                top: 100%;
                z-index: 5;
            }

                .team-single-digital a.thumbnail .inner .title {
                    color: #fff;
                    margin-bottom: 0px;
                }

                .team-single-digital a.thumbnail .inner span {
                    color: rgba(255, 255, 255, 0.308);
                }

            .team-single-digital a.thumbnail:hover::after {
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
            }

            .team-single-digital a.thumbnail:hover .inner {
                left: 30px;
                top: 72%;
            }

    .mt-dec-40 {
        margin-top: -47px;
    }

    .title-area.team-h5 span {
        font-weight: 300;
        font-size: 30px;
        line-height: 70px;
        color: #6F737B;
        font-family: var(--font-secondary);
    }

    .title-area.team-h5 .title {
        font-weight: 400;
        font-size: 60px;
        line-height: 70px;
        color: #111A2E;
        margin-top: 0;
    }

    @media only screen and (max-width: 575px) {
        .title-area.team-h5 .title {
            font-size: 43px;
            line-height: 41px;
        }
    }

    .title-area.team-h5 a.call-btn {
        color: #fff;
        background: #EFEFFE !important;
    }

        .title-area.team-h5 a.call-btn svg path {
            fill: #fff;
            transition: 0.3s;
        }

        .title-area.team-h5 a.call-btn::before {
            background: var(--color-primary);
        }

        .title-area.team-h5 a.call-btn:hover {
            color: var(--color-primary);
        }

            .title-area.team-h5 a.call-btn:hover svg path {
                fill: var(--color-primary);
            }

    .title-area.ho-5 span {
        font-weight: 300;
        font-size: 30px;
        line-height: 70px;
        color: #6F737B;
        font-family: var(--font-secondary);
    }

    .title-area.ho-5 .title {
        font-weight: 400;
        font-size: 60px;
        line-height: 70px;
        color: #111A2E;
        margin-top: 0;
    }

    @media only screen and (max-width: 575px) {
        .title-area.ho-5 .title {
            font-size: 43px;
            line-height: 41px;
        }
    }

    .rts-team-area.style-3 {
        background: #f6f6f6;
        padding-top: 70px;
    }

        .rts-team-area.style-3 .team-inner-two {
            background: #fff;
            margin-bottom: 15px;
        }

            .rts-team-area.style-3 .team-inner-two:hover .thumbnail .social {
                right: 0;
            }

            .rts-team-area.style-3 .team-inner-two .thumbnail {
                border-radius: 0;
                position: relative;
                overflow: hidden;
            }

                .rts-team-area.style-3 .team-inner-two .thumbnail img {
                    width: 100%;
                }

                .rts-team-area.style-3 .team-inner-two .thumbnail .social {
                    position: absolute;
                    right: -50px;
                    bottom: 0;
                    display: inline-grid;
                    background: var(--color-primary);
                    padding: 12px 0;
                    width: 50px;
                    text-align: center;
                    color: #fff;
                    transition: all 0.4s;
                }

                    .rts-team-area.style-3 .team-inner-two .thumbnail .social a {
                        margin: 5px 0;
                        transition: all 0.4s;
                    }

                        .rts-team-area.style-3 .team-inner-two .thumbnail .social a:hover {
                            color: #0B101C;
                        }

            .rts-team-area.style-3 .team-inner-two .inner-content {
                padding: 30px;
                text-align: center;
            }

                .rts-team-area.style-3 .team-inner-two .inner-content .header .title {
                    margin-bottom: 5px;
                }

                .rts-team-area.style-3 .team-inner-two .inner-content .header span {
                    color: var(--color-primary);
                }

    .rts-team-area.style-4 .team-inner-two {
        position: relative;
        width: 100%;
        transition: all 0.6s;
    }

        .rts-team-area.style-4 .team-inner-two.inner {
            margin-bottom: 100px;
        }

        .rts-team-area.style-4 .team-inner-two:hover .acquaintance-area .team-desc {
            max-height: 400px;
            transform: scaleY(1);
            transition: all 0.4s, max-height 1.5s;
            padding: 15px 0;
        }

        .rts-team-area.style-4 .team-inner-two a.thumbnail {
            overflow: hidden;
            display: block;
            border-radius: 15px;
        }

            .rts-team-area.style-4 .team-inner-two a.thumbnail img {
                width: 100%;
                transition: 0.3s;
            }

            .rts-team-area.style-4 .team-inner-two a.thumbnail:hover img {
                transform: scale(1.15);
            }

        .rts-team-area.style-4 .team-inner-two .acquaintance-area {
            position: absolute;
            right: 50%;
            left: unset;
            width: 85%;
            padding: 20px;
            transform: translateX(50%);
            bottom: -20%;
            background: #fff;
            border-radius: 15px;
            transition: all 0.6s;
            box-shadow: 0px 4px 27px #00000012;
            text-align: center;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-team-area.style-4 .team-inner-two .acquaintance-area {
            bottom: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-team-area.style-4 .team-inner-two .acquaintance-area {
            bottom: 0;
        }
    }

    .rts-team-area.style-4 .team-inner-two .acquaintance-area .header {
        padding: 0 0 5px 0;
        border: 0;
    }

    @media only screen and (max-width: 1199px) {
        .rts-team-area.style-4 .team-inner-two .acquaintance-area .header {
            padding: 20px 62px;
        }
    }

    .rts-team-area.style-4 .team-inner-two .acquaintance-area .header .title {
        font-size: 22px;
        margin-bottom: 5px;
    }

    @media only screen and (max-width: 1199px) {
        .rts-team-area.style-4 .team-inner-two .acquaintance-area .header .title {
            font-size: 20px;
        }
    }

    .rts-team-area.style-4 .team-inner-two .acquaintance-area .header span {
        color: var(--color-primary);
        font-weight: 400;
        font-size: 16px;
    }

    .rts-team-area.style-4 .team-inner-two .acquaintance-area .team-desc {
        font-size: 14px;
        margin-bottom: 0;
        color: #777;
        position: relative;
        padding: 5px 0;
        z-index: 1;
        max-height: 0;
        opacity: 1;
        line-height: 24px;
        overflow: hidden;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: all 0.8s, max-height 0.8s;
    }

        .rts-team-area.style-4 .team-inner-two .acquaintance-area .team-desc::before {
            content: "";
            position: absolute;
            background: var(--color-primary);
            width: 50px;
            height: 2px;
            right: 50%;
            top: 3px;
            transform: translateX(50%);
        }

    .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social {
        padding: 5px 84px 5px 84px;
        margin-right: -30px;
    }

    @media only screen and (max-width: 1199px) {
        .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social {
            padding: 20px 62px;
            margin-right: -30px;
        }
    }

    .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a {
        position: relative;
        z-index: 1;
        transition: 0.3s;
        margin-right: 30px;
    }

        .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a i {
            font-size: 14px;
            color: var(--color-primary);
            transition: 0.3s;
        }

        .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a::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;
        }

        .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a:hover i {
            color: #fff;
        }

        .rts-team-area.style-4 .team-inner-two .acquaintance-area .acquaintance-social a:hover::after {
            background: var(--color-primary);
        }

    .rts-team-area.style-5 .team-inner-two {
        margin-bottom: 30px;
    }

        .rts-team-area.style-5 .team-inner-two .thumbnail {
            border-radius: 50%;
        }

        .rts-team-area.style-5 .team-inner-two .team-content {
            text-align: center;
            margin-top: 30px;
        }

            .rts-team-area.style-5 .team-inner-two .team-content .header .title {
                margin-bottom: 5px;
            }

            .rts-team-area.style-5 .team-inner-two .team-content .header span {
                color: var(--color-primary);
            }

            .rts-team-area.style-5 .team-inner-two .team-content .acquaintance-social {
                margin-top: 10px;
            }

                .rts-team-area.style-5 .team-inner-two .team-content .acquaintance-social a {
                    margin-right: 5px;
                    background: #fff;
                    color: #4a4a4a;
                    width: 35px;
                    height: 35px;
                    display: inline-block;
                    line-height: 35px;
                    transition: all 0.3s;
                }

                    .rts-team-area.style-5 .team-inner-two .team-content .acquaintance-social a:hover {
                        background: var(--color-primary);
                        color: #fff;
                    }

    .title-area-product {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    @media only screen and (max-width: 767px) {
        .title-area-product {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    .title-area-product .title-area .title {
        color: #fff;
        font-weight: 700;
    }

    .product-tab-button-area {
        margin-top: 0;
        border-bottom: none;
    }

        .product-tab-button-area li {
            margin: 0;
            margin-right: 28px;
        }

    @media only screen and (max-width: 767px) {
        .product-tab-button-area li {
            margin-right: 15px;
        }
    }

    .product-tab-button-area li:last-child {
        margin-right: 0;
    }

    .product-tab-button-area li button.active {
        background: transparent !important;
        border: none !important;
        /*color: #3B38EB !important;*/
        font-weight: 700;
        font-size: 18px;
        line-height: 23px;
    }

    .product-tab-button-area li button {
        background: transparent !important;
        border: none !important;
        /*color: #FFFFFF !important;*/
        font-weight: 700;
        font-size: 18px;
        line-height: 23px;
    }

    .shape-image-product {
        position: relative;
        z-index: -1;
    }

        .shape-image-product img {
            position: absolute;
            left: -45%;
            z-index: -2;
            top: 550px;
        }

    .single-product-one .thumbnail {
        overflow: hidden;
        display: block;
        border-radius: 20px 20px 0 0;
    }

        .single-product-one .thumbnail img {
            border-radius: 20px 20px 0 0;
            transition: 0.5s;
            width: 100%;
        }

        .single-product-one .thumbnail:hover img {
            transform: scale(1.2);
        }

    .single-product-one .inner-content {
        padding: 50px;
        background: #fff;
        border-radius: 0 0 20px 20px;
    }

    @media only screen and (max-width: 575px) {
        .single-product-one .inner-content {
            padding: 20px;
        }
    }

    .single-product-one .inner-content span {
        color: #6F737B;
        font-size: 16px;
        font-weight: 500;
        line-height: 19px;
    }

    .single-product-one .inner-content a .title {
        font-size: 30px;
        margin-bottom: 11px;
        margin-top: 5px;
        transition: 0.3s;
    }

    @media only screen and (max-width: 767px) {
        .single-product-one .inner-content a .title {
            font-size: 26px;
        }
    }

    @media only screen and (max-width: 575px) {
        .single-product-one .inner-content a .title {
            font-size: 20px;
        }
    }

    .single-product-one .inner-content a:hover .title {
        color: var(--color-primary);
    }

    .rts-project-area-one {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

        .rts-project-area-one::after {
            position: absolute;
            content: "";
            right: -5%;
            bottom: -1%;
            height: 500px;
            width: 500px;
            background-size: contain;
            background-repeat: no-repeat;
            background-image: url(../images/product/shape/02.png);
            z-index: -1;
            animation: jump-3 5s linear infinite;
        }

    .title-area-btn-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    @media only screen and (max-width: 575px) {
        .title-area-btn-wrapper {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    .container-fluid.custom {
        padding: 0;
    }

    .single-product-wrapper-h2 {
        position: relative;
    }

        .single-product-wrapper-h2 a.thumbnail {
            overflow: hidden;
            display: block;
            border-radius: 20px;
        }

            .single-product-wrapper-h2 a.thumbnail img {
                width: 100%;
                transition: 0.3s;
                border-radius: 20px;
            }

            .single-product-wrapper-h2 a.thumbnail:hover img {
                transform: scale(1.2);
                border-radius: 20px;
            }

        .single-product-wrapper-h2 .inner {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 85%;
            text-align: left;
            background: #FFFFFF;
            border-radius: 20px;
            padding: 38px 40px;
        }

            .single-product-wrapper-h2 .inner a .title {
                margin-bottom: 5px;
                transition: 0.3s;
            }

            .single-product-wrapper-h2 .inner a:hover .title {
                color: var(--color-primary);
            }

            .single-product-wrapper-h2 .inner span.desig {
                color: #3B38EB;
                font-weight: 600;
                font-size: 14px;
                line-height: 17px;
                font-family: VAR(--font-secondary);
            }

    .container-fluid.custom {
        position: relative;
    }

        .container-fluid.custom .project-h2-slider {
            padding-bottom: 100px;
        }

        .container-fluid.custom .swiper-pagination {
            padding: 10px;
        }

            .container-fluid.custom .swiper-pagination .swiper-pagination-bullet {
                margin-right: 12px;
                margin-left: 12px;
                opacity: 1;
            }

                .container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next {
                    transform: scale(0.8);
                }

                .container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next {
                    transform: scale(0.8);
                }

                .container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev {
                    transform: scale(0.8);
                }

                .container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev {
                    transform: scale(0.8);
                }

                .container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
                    background: transparent;
                    position: relative;
                }

                    .container-fluid.custom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main::after {
                        content: "";
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        height: 30px;
                        width: 30px;
                        position: absolute;
                        /*background-image: url(../images/product/shape/navigation.png);*/
                        background-size: contain;
                    }

    .testimonials-h2 .swiper-pagination {
        padding: 10px;
    }

        .testimonials-h2 .swiper-pagination .swiper-pagination-bullet {
            margin-right: 12px;
            margin-left: 12px;
            opacity: 1;
            background: #fff;
        }

            .testimonials-h2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next {
                transform: scale(0.8);
            }

            .testimonials-h2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next {
                transform: scale(0.8);
            }

            .testimonials-h2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev {
                transform: scale(0.8);
            }

            .testimonials-h2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev {
                transform: scale(0.8);
            }

            .testimonials-h2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
                background: transparent;
                position: relative;
            }

                .testimonials-h2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main::after {
                    content: "";
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    height: 20px;
                    width: 20px;
                    position: absolute;
                    background-image: url(../images/product/shape/navigation-white.png);
                    background-size: contain;
                }

    .swiper.testimonials-h2.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
        padding-bottom: 107px;
    }

    .swiper.testimonials-h2 {
        padding-bottom: 80px;
    }

    .bgproject-area {
        background: #F1F4FC;
    }

        .bgproject-area .rts-product-one {
            box-shadow: 0px 21px 27px rgba(0, 0, 0, 0.03);
            height: 100%;
            background: #fff;
        }

    .tab-button-area-one .nav {
        justify-content: center;
        border-bottom: none;
        margin-left: -20px;
        margin-top: 0;
    }

        .tab-button-area-one .nav li {
            margin-left: 20px;
            margin-top: 0;
        }

            .tab-button-area-one .nav li button {
                background: #FFFFFF;
                color: #1C2539;
                padding: 12px 28px;
                border: 1px solid #EDEFF3;
                box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
                border-radius: 15px;
                display: inline-block;
                font-size: 16px;
                font-weight: 700;
            }

    @media only screen and (max-width: 479px) {
        .tab-button-area-one .nav li button {
            padding: 10px 20px;
            font-size: 14px;
        }
    }

    .tab-button-area-one .nav li button.active {
        background: var(--color-primary);
        color: #fff;
    }

    .rts-product-one {
        border: 1px solid #EDEFF3;
        border-radius: 15px;
    }

    @media only screen and (max-width: 479px) {
        .rts-product-one {
            padding: 15px;
        }
    }

    .rts-product-one .thumbnail-area {
        position: relative;
        overflow: hidden;
        border-radius: 15px 15px 0 0;
    }

        .rts-product-one .thumbnail-area::after {
            position: absolute;
            content: "";
            height: 200%;
            width: 170%;
            background: #0B4DF5;
            opacity: 0.4;
            left: 0;
            top: 0;
            transform: rotate(-45deg) translateY(126%);
            transition: 0.7s;
            z-index: 0;
        }

        .rts-product-one .thumbnail-area img {
            width: 100%;
        }

        .rts-product-one .thumbnail-area a.rts-btn {
            position: absolute;
            left: 50%;
            top: 50%;
            height: 60px;
            width: 60px;
            line-height: 60px;
            text-align: center;
            display: block;
            transform: translate(-50%, -50%) scale(0);
            z-index: 5;
            border-radius: 50% !important;
            padding: 0;
            transition: all 0.4s;
        }

            .rts-product-one .thumbnail-area a.rts-btn::before {
                border-radius: 50%;
            }

        .rts-product-one .thumbnail-area:hover::after {
            transform: rotate(-53deg) translateY(-20%);
        }

    .rts-product-one .product-contact-wrapper {
        padding: 30px 30px 30px 35px;
    }

    @media only screen and (max-width: 767px) {
        .rts-product-one .product-contact-wrapper {
            padding: 10px;
        }
    }

    .rts-product-one .product-contact-wrapper span {
        margin-bottom: 15px;
    }

    .rts-product-one .product-contact-wrapper .title {
        margin-bottom: 8px;
        transition: 0.3s;
    }

    .rts-product-one:hover .thumbnail-area a.rts-btn {
        transform: translate(-50%, -50%) scale(1);
    }

    .rts-product-one:hover .product-contact-wrapper a .title {
        color: var(--color-primary);
    }

    .big-bg-porduct-details {
        position: relative;
    }

        .big-bg-porduct-details img {
            width: 100%;
            border-radius: 16px;
        }

        .big-bg-porduct-details .project-info {
            position: absolute;
            right: 0;
            bottom: 0;
            background: #fff;
            width: 386px;
            box-shadow: 0px 10px 21px rgba(27, 18, 18, 0.05);
            border-radius: 15px 0 15px 0;
        }

    @media only screen and (max-width: 1199px) {
        .big-bg-porduct-details .project-info {
            bottom: -66px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .big-bg-porduct-details .project-info {
            position: relative;
            width: 100%;
            border-radius: 15px;
            margin-bottom: 30px;
            margin-top: -33px;
        }
    }

    @media only screen and (max-width: 767px) {
        .big-bg-porduct-details .project-info {
            position: relative;
            width: 100%;
            border-radius: 15px;
            margin-bottom: 30px;
            margin-top: -33px;
        }
    }

    .big-bg-porduct-details .project-info .info-head {
        padding: 24px 40px;
        background: var(--color-primary);
        border-radius: 15px 0 0 0;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .big-bg-porduct-details .project-info .info-head {
            border-radius: 15px 15px 0 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .big-bg-porduct-details .project-info .info-head {
            border-radius: 15px 15px 0 0;
        }
    }

    @media only screen and (max-width: 479px) {
        .big-bg-porduct-details .project-info .info-head {
            padding: 12px 14px;
        }
    }

    .big-bg-porduct-details .project-info .info-head .title {
        color: #fff;
        margin-bottom: 0;
    }

    @media only screen and (max-width: 479px) {
        .big-bg-porduct-details .project-info .info-head .title {
            font-size: 18px;
        }
    }

    .big-bg-porduct-details .project-info .info-body {
        padding: 15px 40px;
    }

    @media only screen and (max-width: 479px) {
        .big-bg-porduct-details .project-info .info-body {
            padding: 15px 10px;
        }
    }

    .big-bg-porduct-details .project-info .info-body .single-info {
        display: flex;
        align-items: center;
        padding: 24px 0;
        border-bottom: 1px solid #E9E9E9;
    }

    @media only screen and (max-width: 479px) {
        .big-bg-porduct-details .project-info .info-body .single-info {
            padding: 15px 0;
        }
    }

    .big-bg-porduct-details .project-info .info-body .single-info:last-child {
        border-bottom: none;
    }

    .big-bg-porduct-details .project-info .info-body .single-info .info-ico i {
        height: 50px;
        width: 50px;
        background: #F0F0FF;
        color: var(--color-primary);
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .big-bg-porduct-details .project-info .info-body .single-info .info-details {
        margin-left: 20px;
    }

        .big-bg-porduct-details .project-info .info-body .single-info .info-details span {
            margin-bottom: 5px;
        }

        .big-bg-porduct-details .project-info .info-body .single-info .info-details .name {
            font-size: 18px;
            margin-bottom: 0;
            margin-top: 3px;
        }

    @media only screen and (max-width: 479px) {
        .product-details-main-inner {
            padding: 0 10px;
        }
    }

    .product-details-main-inner span {
        color: var(--color-primary);
        font-weight: 500;
    }

    .product-details-main-inner .title {
        margin-bottom: 20px;
    }

    .product-details-main-inner p.disc {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .product-details-main-inner p.italic {
        font-size: 20px;
        font-style: italic;
        color: #1C2539;
        font-weight: 400;
        margin-bottom: 10px;
        line-height: 30px;
    }

    .single-project-details-challenge {
        margin-bottom: 20px;
        display: flex;
    }

        .single-project-details-challenge .details {
            color: #1C2539;
            line-height: 26px;
            font-weight: 400;
            font-size: 16px;
        }

        .single-project-details-challenge:last-child {
            margin-bottom: 0;
        }

        .single-project-details-challenge .icon {
            margin-right: 15px;
        }

            .single-project-details-challenge .icon i {
                width: max-content;
                border-radius: 50%;
                color: var(--color-primary);
                font-size: 19px;
                margin-top: 4px;
            }

    .rts-product-area .thumbnail {
        max-width: max-content;
        overflow: hidden;
        display: block;
        position: relative;
        cursor: url(../images/product/shape/zoom.png), auto;
    }

        .rts-product-area .thumbnail:hover img.img-1 {
            -webkit-clip-path: inset(15px);
            clip-path: inset(15px);
        }

        .rts-product-area .thumbnail:hover .icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: 0.3s;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-product-area .thumbnail {
            max-width: 100%;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-product-area .thumbnail {
            max-width: 100%;
        }
    }

    .rts-product-area .thumbnail img.img-1 {
        display: inline-block !important;
        transition: -webkit-clip-path 1s cubic-bezier(0.39, 0.58, 0.57, 1);
        transition: clip-path 1s cubic-bezier(0.39, 0.58, 0.57, 1);
        transition: clip-path 1s cubic-bezier(0.39, 0.58, 0.57, 1), -webkit-clip-path 1s cubic-bezier(0.39, 0.58, 0.57, 1);
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-product-area .thumbnail img.img-1 {
            max-width: 100%;
            width: 100%;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-product-area .thumbnail img.img-1 {
            max-width: 100%;
            width: 100%;
        }
    }

    .rts-product-area .thumbnail .icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: 0.3s;
    }

    .rts-product-area .thumbnail:hover .icon {
        transform: translate(-50%, -50%) scale(1);
    }

    .rts-product-area .inner {
        margin-top: 30px;
    }

        .rts-product-area .inner span {
            margin-bottom: 8px;
            display: block;
            color: #3B38EB;
        }

        .rts-product-area .inner .title {
            font-weight: 700;
            font-size: 24px;
            line-height: 29px;
            text-transform: uppercase;
            color: #111A2E;
            transition: 0.3s;
        }

        .rts-product-area .inner a:hover .title {
            color: var(--color-primary);
        }

    .rts-product-area.inner {
        display: flex;
        justify-content: flex-end;
        margin-top: 0;
    }

    @media only screen and (max-width: 1199px) {
        .rts-product-area.inner {
            display: block;
        }
    }

    .portfolio-area.style-3 .portfolio-wrapper2 {
        position: relative;
        z-index: 1;
        transition: all 0.4s;
        margin-bottom: 40px;
        margin-right: 15px;
    }

        .portfolio-area.style-3 .portfolio-wrapper2:hover .img-fluid::before {
            height: 100%;
            bottom: 0;
        }

        .portfolio-area.style-3 .portfolio-wrapper2:hover .img-fluid .portfolio-content {
            transform: translate(-50%, -50%) scale(1);
        }

        .portfolio-area.style-3 .portfolio-wrapper2::before {
            pointer-events: none;
        }

        .portfolio-area.style-3 .portfolio-wrapper2:hover .portfolio-content a {
            transform: scale(1.5);
        }

        .portfolio-area.style-3 .portfolio-wrapper2:hover .portfolio-text .p-title a {
            text-decoration: underline !important;
        }

        .portfolio-area.style-3 .portfolio-wrapper2::before {
            background: #0000007A;
        }

        .portfolio-area.style-3 .portfolio-wrapper2 .img-fluid {
            position: relative;
            transition: all 0.3s;
        }

            .portfolio-area.style-3 .portfolio-wrapper2 .img-fluid::before {
                content: "";
                position: absolute;
                background-color: var(--color-primary);
                opacity: 0.8;
                width: 100%;
                height: 0;
                top: 0;
                border-radius: 15px;
                transition: all 0.4s;
            }

            .portfolio-area.style-3 .portfolio-wrapper2 .img-fluid img {
                width: 100%;
            }

            .portfolio-area.style-3 .portfolio-wrapper2 .img-fluid .portfolio-content {
                position: absolute;
                color: #fff;
                font-size: 16px;
                font-weight: 700;
                line-height: 1;
                padding: 15px 30px;
                border: 2px solid rgba(255, 255, 255, 0.1);
                display: inline-block;
                z-index: 2;
                left: 50%;
                top: 50%;
                transition: all 0.4s;
                transform: translate(-50%, -50%) scale(0);
            }

                .portfolio-area.style-3 .portfolio-wrapper2 .img-fluid .portfolio-content a {
                    font-size: 14px;
                    left: 39%;
                    bottom: 55%;
                    padding: 2px 15px;
                    transition: all 0.4s ease-out 0s;
                }

        .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text {
            padding: 18px 0 0;
        }

            .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-category {
                margin-bottom: 10px;
            }

                .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-category a {
                    color: #040404;
                    font-size: 14px;
                }

            .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title {
                color: #040404;
                font-size: 22px;
                font-weight: 700;
                transition: all 0.4s;
            }

    @media (max-width: 767px) {
        .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title {
            font-size: 20px;
        }
    }

    .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title:hover {
        color: var(--color-primary) !important;
    }

    .portfolio-area.style-4 .item {
        position: relative;
        margin: 0 10px 30px 0;
        transition: all 0.4s;
    }

    @media (max-width: 768px) {
        .portfolio-area.style-4 .item {
            margin: 0 0 30px 0;
        }
    }

    .portfolio-area.style-4 .item:hover::before {
        height: 100%;
    }

    .portfolio-area.style-4 .item:hover .portfolio-wrapper .single-portfolio {
        transform: scale(1);
    }

    .portfolio-area.style-4 .item:hover .portfolio-wrapper .pf-btn {
        transform: scale(1);
    }

    .portfolio-area.style-4 .item::before {
        content: "";
        position: absolute;
        background: var(--color-primary);
        opacity: 0.9;
        width: 100%;
        height: 0;
        left: 0;
        bottom: 0;
        z-index: 1;
        transition: all 0.3s ease 0s;
        clip-path: polygon(0% -65%, 0% 100%, 99% 100%);
        border-radius: 15px 15px 0 0;
    }

    .portfolio-area.style-4 .item .img-fluid img {
        width: 100%;
    }

    .portfolio-area.style-4 .item .portfolio-wrapper {
        position: relative;
    }

        .portfolio-area.style-4 .item .portfolio-wrapper .single-portfolio {
            position: absolute;
            bottom: 10%;
            left: 8%;
            transform: scale(0);
            transition: all 0.4s;
            z-index: 1;
        }

            .portfolio-area.style-4 .item .portfolio-wrapper .single-portfolio span {
                color: #fff;
                font-size: 14px;
                font-weight: 400;
            }

            .portfolio-area.style-4 .item .portfolio-wrapper .single-portfolio .portfolio-title {
                font-size: 22px;
                font-weight: 700;
            }

        .portfolio-area.style-4 .item .portfolio-wrapper .pf-btn {
            background-color: #fff;
            color: #000;
            width: 50px;
            height: 50px;
            line-height: 50px;
            text-align: center;
            display: block;
            border-radius: 50%;
            position: absolute;
            bottom: 12%;
            right: 7%;
            transform: scale(0);
            transition: all 0.4s;
            z-index: 1;
        }

    .portfolio-area.style-5 .item {
        position: relative;
        margin-bottom: 20px;
        margin-right: 10px;
    }

    @media (max-width: 768px) {
        .portfolio-area.style-5 .item {
            margin-right: 0;
        }
    }

    .portfolio-area.style-5 .item:hover::before {
        background: #1c2539;
        opacity: 0.902;
        clip-path: polygon(0 54.6%, 0% 100%, 45.5% 100%);
    }

    .portfolio-area.style-5 .item:hover::after {
        visibility: visible;
        height: 100%;
    }

    .portfolio-area.style-5 .item:hover .portfolio-wrapper .single-portfolio {
        top: 8%;
        bottom: unset;
    }

    .portfolio-area.style-5 .item:hover .portfolio-wrapper .pf-btn {
        transform: scale(1);
    }

    .portfolio-area.style-5 .item::before {
        content: "";
        position: absolute;
        background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.70196) 0%, rgba(0, 0, 0, 0) 100%);
        width: 100%;
        height: 100%;
        transition: all 0.4s ease 0s;
        left: 0;
        bottom: 0;
        z-index: 1;
        border-radius: 15px;
    }

    .portfolio-area.style-5 .item::after {
        content: "";
        position: absolute;
        background-color: #df0a0a;
        opacity: 0.902;
        clip-path: polygon(100% 0, 100% 100%, 45.5% 100%, 0% 55%, 0 0);
        width: 100%;
        height: 0;
        transition: all 0.4s ease 0s;
        left: 0;
        top: 0;
        border-radius: 15px 15px 0 0;
        z-index: 1;
    }

    .portfolio-area.style-5 .item .portfolio-wrapper .img-fluid img {
        width: 100%;
    }

    .portfolio-area.style-5 .item .portfolio-wrapper .single-portfolio {
        position: absolute;
        bottom: 10%;
        left: 15%;
        transform: scale(1);
        transition: all 0.4s;
        z-index: 9;
    }

        .portfolio-area.style-5 .item .portfolio-wrapper .single-portfolio span {
            color: #fff;
            font-size: 14px;
            font-weight: 400;
        }

        .portfolio-area.style-5 .item .portfolio-wrapper .single-portfolio .portfolio-title {
            font-size: 22px;
            font-weight: 700;
        }

    .portfolio-area.style-5 .item .portfolio-wrapper .pf-btn {
        background-color: #fff;
        color: #000;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        display: block;
        border-radius: 50%;
        position: absolute;
        bottom: 16%;
        left: 15%;
        transform: scale(0);
        transition: all 0.4s;
        z-index: 9;
    }

    .bg-light-testimonial {
        background: #F7F7F7;
        padding: 120px 0;
        max-width: 1680px;
        margin: auto;
    }

    @media only screen and (max-width: 767px) {
        .bg-light-testimonial {
            padding: 80px 0;
        }
    }

    @media only screen and (max-width: 575px) {
        .bg-light-testimonial {
            padding: 60px 0;
        }
    }

    .slide-div {
        width: 130%;
    }

    @media only screen and (max-width: 767px) {
        .slide-div {
            width: 100%;
        }
    }

    .single-testimonial-one {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
    }

    @media only screen and (max-width: 575px) {
        .single-testimonial-one {
            padding: 20px;
        }
    }

    .single-testimonial-one .header-area {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    @media only screen and (max-width: 575px) {
        .single-testimonial-one .header-area {
            margin-bottom: 15px;
        }
    }

    .single-testimonial-one .header-area img {
        margin-right: 23px;
    }

    .single-testimonial-one .header-area .name-desig a h6 {
        margin-bottom: 1px;
        color: #111A2E;
        transition: 0.3s;
    }

    .single-testimonial-one .header-area .name-desig a:hover h6 {
        color: var(--color-primary);
    }

    .single-testimonial-one .header-area .name-desig p {
        font-weight: 400;
        font-family: var(--font-secondary);
        font-size: 16px;
    }

        .single-testimonial-one .header-area .name-desig p span {
            font-weight: 600;
            font-size: 16px;
            color: var(--color-primary);
        }

    .single-testimonial-one .body {
        padding-bottom: 30px;
        border-bottom: 2px solid #EFEFEF;
    }

        .single-testimonial-one .body p.disc {
            font-weight: 400;
            font-size: 20px;
            line-height: 30px;
        }

    @media only screen and (max-width: 575px) {
        .single-testimonial-one .body {
            margin-bottom: 0px;
            padding-bottom: 15px;
        }
    }

    .single-testimonial-one .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 17px;
    }

        .single-testimonial-one .footer .stars-area ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
            display: flex;
        }

            .single-testimonial-one .footer .stars-area ul li {
                margin: 0;
                margin-right: 5px;
            }

                .single-testimonial-one .footer .stars-area ul li a i {
                    color: var(--color-primary);
                }

    .swiper-button-next,
    .swiper-button-prev {
        width: 55px;
        display: flex;
    }

    @media only screen and (max-width: 575px) {
        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
    }

    .swiper-button-next:hover::after,
    .swiper-button-prev:hover::after {
        background: var(--color-primary);
        color: #fff;
    }

    .swiper-button-next::after {
        content: "\f324";
        font-family: "Font Awesome 5 Pro";
        font-size: 16px;
        color: #1C2539;
        padding: 10px;
        background: #fff;
        box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
        border-radius: 8px;
        transition: 0.3s;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .swiper-button-prev::after {
        content: "\f323";
        font-family: "Font Awesome 5 Pro";
        font-size: 16px;
        color: #1C2539;
        padding: 10px;
        background: #fff;
        box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
        border-radius: 8px;
        transition: 0.3s;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .title-area-testi {
        position: relative;
    }

        .title-area-testi .swiper-button-prev {
            right: 80px;
            left: auto;
        }

    .bg_testimonials-h2 {
        background-image: url(../images/testimonials/bg-01.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .testimonials-area-h2 span {
        color: #fff;
    }

    .testimonials-area-h2 .title {
        color: #fff;
    }

    .single-testimonials-h2 {
        background: #fff;
        padding: 50px;
        border-radius: 15px;
    }

    @media only screen and (max-width: 575px) {
        .single-testimonials-h2 {
            padding: 15px;
        }
    }

    .single-testimonials-h2 .body {
        padding-bottom: 20px;
        border-bottom: 1px solid #ECECF2;
    }

        .single-testimonials-h2 .body .title {
            color: var(--color-primary);
        }

    .single-testimonials-h2 .footer {
        margin-top: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .single-testimonials-h2 .footer .left {
            display: flex;
            align-items: center;
        }

            .single-testimonials-h2 .footer .left .thumbnail {
                overflow: hidden;
                display: block;
                border-radius: 15px;
            }

                .single-testimonials-h2 .footer .left .thumbnail img {
                    width: 46px;
                    transition: 0.3s;
                    height: 46px;
                }

                .single-testimonials-h2 .footer .left .thumbnail:hover img {
                    transform: scale(1.2);
                }

            .single-testimonials-h2 .footer .left .desig {
                margin-left: 15px;
            }

                .single-testimonials-h2 .footer .left .desig a .title {
                    margin-bottom: 2px;
                    font-size: 20px;
                    transition: 0.3s;
                }

    @media only screen and (max-width: 479px) {
        .single-testimonials-h2 .footer .left .desig a .title {
            font-size: 13px;
        }
    }

    .single-testimonials-h2 .footer .left .desig a:hover .title {
        color: var(--color-primary);
    }

    .single-testimonials-h2 .footer .left .desig p {
        font-weight: 400;
        font-size: 14px;
        line-height: 18px;
    }

        .single-testimonials-h2 .footer .left .desig p span {
            color: #3B38EB;
            font-weight: 700;
            font-size: 14px;
            line-height: 18px;
        }

    .single-testimonials-h2 .footer .right .stars-area ul {
        list-style: none;
        display: flex;
        margin: 0;
    }

    @media only screen and (max-width: 479px) {
        .single-testimonials-h2 .footer .right .stars-area ul {
            padding-left: 0;
        }
    }

    .single-testimonials-h2 .footer .right .stars-area ul li {
        margin: 0;
    }

        .single-testimonials-h2 .footer .right .stars-area ul li a i {
            font-weight: 900;
            font-size: 16px;
            line-height: 16px;
            color: #3B38EB;
            margin-left: 5px;
        }

    .single-testimonials-h2 .body p.disc {
        font-weight: 400;
        font-size: 18px;
        line-height: 32px;
    }

    .testimonial-5-bg {
        background-image: url(../images/testimonials/bg-02.jpg);
    }

    .testimonials-h5-wrapper .inner-wrapper-h5 p.disc {
        font-weight: 400;
        font-size: 36px;
        line-height: 50px;
        color: #111A2E;
        text-transform: uppercase;
        margin-top: 35px;
        margin-bottom: 30px;
    }

    @media only screen and (max-width: 575px) {
        .testimonials-h5-wrapper .inner-wrapper-h5 p.disc {
            font-size: 14px;
            line-height: 24px;
        }
    }

    .testimonials-h5-wrapper .inner-wrapper-h5 span.name {
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        color: var(--color-primary);
        font-family: var(--font-secondary);
        text-transform: uppercase;
    }

    .testimonials-h5-wrapper .swiper-button-wrapper .swiper-button-next::after {
        background: transparent;
        box-shadow: none;
        background-image: url(../images/testimonials/logo/right.svg);
        background-repeat: no-repeat;
        background-position: center;
        content: "";
    }

    .testimonials-h5-wrapper .swiper-button-wrapper .swiper-button-prev::after {
        background: transparent;
        box-shadow: none;
        background-image: url(../images/testimonials/logo/left.svg);
        background-repeat: no-repeat;
        background-position: center;
        content: "";
    }

    .testimonials-h5-wrapper .swiper-button-wrapper .swiper-button-next, .testimonials-h5-wrapper .swiper-button-wrapper .swiper-button-prev {
        top: 57%;
    }

    .rts-blog-post-area-one {
        padding: 30px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0px 8px 37px rgba(0, 0, 0, 0.07);
    }

    @media only screen and (max-width: 575px) {
        .rts-blog-post-area-one {
            padding: 15px;
        }
    }

    .rts-blog-post-area-one a {
        margin-bottom: 21px;
    }

        .rts-blog-post-area-one a.thumbnail {
            overflow: hidden;
            display: block;
            border-radius: 20px;
        }

            .rts-blog-post-area-one a.thumbnail img {
                width: 100%;
                transition: 0.3s;
                height: auto;
            }

            .rts-blog-post-area-one a.thumbnail:hover img {
                transform: scale(1.2);
            }

        .rts-blog-post-area-one a .title {
            font-weight: 700;
            font-size: 24px;
            line-height: 30px;
            padding-bottom: 18px;
            border-bottom: 1px solid #E8E8E8;
            transition: 0.3s;
        }

    @media only screen and (max-width: 479px) {
        .rts-blog-post-area-one a .title {
            font-size: 18px;
            line-height: 26px;
        }
    }

    .rts-blog-post-area-one a:hover .title {
        color: var(--color-primary);
    }

    .rts-blog-post-area-one .blog-footer {
        display: flex;
        align-items: center;
    }

        .rts-blog-post-area-one .blog-footer .time {
            display: flex;
            align-items: center;
        }

            .rts-blog-post-area-one .blog-footer .time i {
                color: var(--color-primary);
            }

            .rts-blog-post-area-one .blog-footer .time span {
                color: #6F737B;
                font-weight: 500;
                font-size: 16px;
                line-height: 21px;
                margin-left: 8px;
            }

    @media only screen and (max-width: 479px) {
        .rts-blog-post-area-one .blog-footer .time span {
            font-size: 13px;
            margin-bottom: -4px;
        }
    }

    .rts-blog-post-area-one .blog-footer .time.user {
        margin-left: 20px;
    }

    .shape-blog-one {
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        .shape-blog-one::after {
            position: absolute;
            z-index: -1;
            content: "";
            top: -15%;
            left: 55%;
            height: 500px;
            width: 500px;
            animation: jump-3 5s linear infinite;
            background-size: contain;
            /*background-image: url(../images/blog/shape/01.png);*/
        }

    .blog-single-two-wrapper {
        background: #FFFFFF;
        box-shadow: 0px 8px 37px rgba(0, 0, 0, 0.07);
        border-radius: 20px;
        height: 100%;
    }

        .blog-single-two-wrapper .thumbnail {
            position: relative;
            overflow: hidden;
            display: block;
            border-radius: 20px 20px 0px 0px;
            z-index: 1;
        }

            .blog-single-two-wrapper .thumbnail img {
                border-radius: 20px 20px 0px 0px;
                transition: 1s;
                width: 100%;
            }

            .blog-single-two-wrapper .thumbnail:hover img {
                transform: scale(1.2);
            }

            .blog-single-two-wrapper .thumbnail span.badge-one {
                position: absolute;
                top: 30px;
                left: 30px;
                font-weight: 700;
                font-size: 14px;
                line-height: 17px;
                color: #fff;
                text-transform: uppercase;
                display: block;
                padding: 9px 15px;
                background: #3B38EB;
                border-radius: 8px;
                z-index: 0;
            }

        .blog-single-two-wrapper .inner {
            padding: 25px 40px 40px 40px;
        }

    @media only screen and (max-width: 575px) {
        .blog-single-two-wrapper .inner {
            padding: 15px;
        }
    }

    .blog-single-two-wrapper .inner .admin-area {
        padding-bottom: 25px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #EEEEEE;
    }

        .blog-single-two-wrapper .inner .admin-area img {
            width: 50px;
            height: 50px;
        }

        .blog-single-two-wrapper .inner .admin-area .details {
            margin-left: 10px;
        }

            .blog-single-two-wrapper .inner .admin-area .details span {
                margin-bottom: 0;
            }

            .blog-single-two-wrapper .inner .admin-area .details p {
                margin-bottom: 0;
                margin-top: -5px;
                color: #111A2E;
                font-weight: 700;
                font-size: 16px;
                font-family: var(--font-secondary);
            }

    .blog-single-two-wrapper .inner .body {
        padding-top: 25px;
    }

        .blog-single-two-wrapper .inner .body .date {
            margin-bottom: 15px;
        }

            .blog-single-two-wrapper .inner .body .date i {
                color: var(--color-primary);
                font-weight: 900;
                font-size: 16px;
                line-height: 16px;
            }

            .blog-single-two-wrapper .inner .body .date span {
                color: #6F737B;
                font-weight: 600;
                font-size: 16px;
                line-height: 19px;
                margin-left: 10px;
                font-family: var(--font-secondary);
            }

        .blog-single-two-wrapper .inner .body a .title {
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .blog-single-two-wrapper .inner .body a:hover .title {
            color: var(--color-primary);
        }

    .blog-single-post-listing {
        margin-right: 30px;
        border: 1px solid #E6E9F0;
        margin-bottom: 50px;
    }

    @media only screen and (max-width: 1199px) {
        .blog-single-post-listing {
            margin-right: 0;
        }
    }

    .blog-single-post-listing.details {
        border-radius: 15px;
    }

        .blog-single-post-listing.details .thumbnail {
            border-radius: 15px 15px 0 0;
        }

            .blog-single-post-listing.details .thumbnail.details {
                border-radius: 15px;
                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: 50px;
        background: #F6F6F6;
        border-radius: 15px;
        margin-bottom: 40px;
    }

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

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

    .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: #F6F6F6;
        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.2);
        }

            .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 .replay-area-details {
        margin-top: 40px;
    }

        .blog-single-post-listing .replay-area-details form input {
            height: 55px;
            border-radius: 15px;
            background: #F6F6F6;
            border: 1px solid transparent;
        }

            .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: 15px;
            background: #F6F6F6;
            height: 140px;
            margin-top: 20px;
            padding: 15px;
            border: 1px solid transparent;
        }

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

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

    @media only screen and (max-width: 479px) {
        .blog-single-post-listing .blog-listing-content a.rts-btn {
            margin-top: 20px;
        }
    }

    .rts-single-wized {
        background: #F6F6F6;
        border-radius: 0;
        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: 22px;
            line-height: 32px;
        }

        .rts-single-wized.contact .wized-body a.rts-btn {
            display: block;
            max-width: max-content;
            margin: auto;
        }

    .rts-single-wized .wized-header .title {
        margin-bottom: 10px;
    }

    .rts-single-wized .wized-body {
        margin-top: 30px;
    }

        .rts-single-wized .wized-body .rts-search-wrapper {
            position: relative;
        }

            .rts-single-wized .wized-body .rts-search-wrapper input {
                background: #fff;
                height: 55px;
                border-radius: 5px;
                padding-right: 70px;
                padding-left: 25px;
                border: 1px solid transparent;
            }

                .rts-single-wized .wized-body .rts-search-wrapper input:focus {
                    border: 1px solid var(--color-primary);
                }

            .rts-single-wized .wized-body .rts-search-wrapper button {
                position: absolute;
                max-width: max-content;
                height: 55px;
                width: 55px;
                border-radius: 5px;
                background: var(--color-primary);
                display: inline-block;
                padding: 0 19px;
                right: 0;
            }

                .rts-single-wized .wized-body .rts-search-wrapper button i {
                    color: #fff;
                    font-size: 16px;
                    line-height: 16px;
                }

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

    .rts-blog-list-area .pagination {
        margin-top: 10px;
        max-width: max-content;
    }

        .rts-blog-list-area .pagination button {
            padding: 15px;
            border: 1px solid #EBEBEB;
            border-radius: 15px;
            margin-right: 10px;
            color: #1C2539;
            font-weight: 700;
            height: 50px;
            width: 50px;
            line-height: 18px;
        }

            .rts-blog-list-area .pagination button i {
                font-size: 20px;
            }

            .rts-blog-list-area .pagination button.active {
                background: var(--color-primary);
                color: #ffff;
            }

            .rts-blog-list-area .pagination button:hover {
                background: var(--color-primary);
                color: #ffff;
            }

    .rts-blog-grid-area .pagination {
        margin-top: 10px;
        max-width: max-content;
    }

        .rts-blog-grid-area .pagination button {
            padding: 15px;
            border: 1px solid #EBEBEB;
            border-radius: 15px;
            margin-right: 10px;
            color: #1C2539;
            font-weight: 700;
            height: 50px;
            width: 50px;
            line-height: 18px;
        }

            .rts-blog-grid-area .pagination button i {
                font-size: 20px;
            }

            .rts-blog-grid-area .pagination button.active {
                background: var(--color-primary);
                color: #ffff;
            }

            .rts-blog-grid-area .pagination button:hover {
                background: var(--color-primary);
                color: #ffff;
            }

    .blog-grid-inner {
        border: 1px solid #E6E9F0;
        border-radius: 15px;
    }

        .blog-grid-inner .blog-header {
            position: relative;
        }

        .blog-grid-inner .thumbnail {
            overflow: hidden;
            border-radius: 15px 15px 0 0;
            width: 100%;
            display: block;
        }

            .blog-grid-inner .thumbnail img {
                width: 100%;
                transition: 0.3s;
            }

        .blog-grid-inner .blog-header .blog-info {
            position: absolute;
            display: flex;
            align-items: center;
            padding: 7px 30px;
            bottom: 0;
            background: #1C2539;
            width: 100%;
            left: 0;
        }

        .blog-grid-inner .thumbnail:hover img {
            transform: scale(1.2);
        }

        .blog-grid-inner .blog-header .blog-info .user {
            margin-right: 25px;
        }

            .blog-grid-inner .blog-header .blog-info .user i {
                color: #fff;
            }

        .blog-grid-inner .blog-header .date {
            position: absolute;
            padding: 10px 20px;
            border-radius: 15px;
            right: 20px;
            bottom: 20px;
            background: #fff;
        }

            .blog-grid-inner .blog-header .date .title {
                margin-bottom: 0;
                color: var(--color-primary);
                line-height: 1;
            }

        .blog-grid-inner .blog-header .blog-info .user span {
            color: #fff;
            font-size: 16px;
            font-weight: 400;
            margin-left: 8px;
        }

        .blog-grid-inner .blog-body {
            padding: 30px;
        }

            .blog-grid-inner .blog-body a:hover .title {
                color: var(--color-primary);
            }

    .blog-lg-inner {
        box-shadow: 0px 18px 33px rgba(15, 15, 45, 0.05);
        border-radius: 15px;
    }

        .blog-lg-inner.single-blog-sm {
            margin-bottom: 24px;
        }

            .blog-lg-inner.single-blog-sm a.thumbnail {
                border-radius: 15px 15px 0px 0px;
                overflow: hidden;
                display: block;
            }

                .blog-lg-inner.single-blog-sm a.thumbnail img {
                    transition: 0.3s;
                    width: 100%;
                }

                .blog-lg-inner.single-blog-sm a.thumbnail:hover img {
                    transform: scale(1.2);
                }

            .blog-lg-inner.single-blog-sm .inner {
                padding: 35px;
            }

                .blog-lg-inner.single-blog-sm .inner .date-area {
                    display: flex;
                    align-items: center;
                    margin-bottom: 10px;
                }

                    .blog-lg-inner.single-blog-sm .inner .date-area i {
                        color: var(--color-primary);
                        margin-right: 7px;
                        font-weight: 900;
                        font-size: 16px;
                    }

                    .blog-lg-inner.single-blog-sm .inner .date-area span {
                        color: #6F737B;
                        font-weight: 500;
                        font-size: 16px;
                        margin-bottom: -3px;
                    }

                .blog-lg-inner.single-blog-sm .inner a.title .title {
                    transition: 0.3s;
                    margin-bottom: 13px;
                }

                .blog-lg-inner.single-blog-sm .inner a.title:hover .title {
                    color: var(--color-primary);
                }

                .blog-lg-inner.single-blog-sm .inner p.disc {
                    margin-bottom: 14px;
                }

                .blog-lg-inner.single-blog-sm .inner a.rts-read-more {
                    color: var(--color-primary);
                    font-weight: 700;
                    font-size: 16px;
                }

        .blog-lg-inner a.thumbnail {
            border-radius: 15px 15px 0px 0px;
            overflow: hidden;
            position: relative;
            display: block;
        }

            .blog-lg-inner a.thumbnail span {
                padding: 8px 15px;
                background: #FFFFFF;
                border-radius: 15px;
                position: absolute;
                z-index: 0;
                top: 30px;
                left: 30px;
                color: var(--color-primary);
                text-transform: uppercase;
                font-weight: 800;
                font-size: 12px;
                line-height: 14px;
                font-family: var(--font-secondary);
            }

            .blog-lg-inner a.thumbnail img {
                transition: 0.3s;
                width: 100%;
            }

            .blog-lg-inner a.thumbnail:hover img {
                transform: scale(1.2);
            }

        .blog-lg-inner .inner {
            padding: 35px;
        }

            .blog-lg-inner .inner .date-area {
                display: flex;
                align-items: center;
                margin-bottom: 13px;
            }

                .blog-lg-inner .inner .date-area i {
                    color: var(--color-primary);
                    margin-right: 7px;
                    font-weight: 900;
                    font-size: 16px;
                }

                .blog-lg-inner .inner .date-area span {
                    color: #6F737B;
                    font-weight: 500;
                    font-size: 16px;
                    margin-bottom: -3px;
                }

            .blog-lg-inner .inner a.title .title {
                transition: 0.3s;
                margin-bottom: 15px;
            }

            .blog-lg-inner .inner a.title:hover .title {
                color: var(--color-primary);
            }

            .blog-lg-inner .inner p.disc {
                margin-bottom: 16px;
            }

            .blog-lg-inner .inner a.rts-read-more {
                color: var(--color-primary);
                font-weight: 700;
                font-size: 16px;
            }

    .blog-bg-h5 {
        background: #F4F4F4;
    }

    .rts-blog-area-h5-single {
        display: flex;
        align-items: center;
        background: #fff;
    }

    @media only screen and (max-width: 767px) {
        .rts-blog-area-h5-single {
            flex-direction: column;
        }
    }

    .rts-blog-area-h5-single a {
        display: block;
        overflow: hidden;
    }

    @media only screen and (max-width: 767px) {
        .rts-blog-area-h5-single a {
            width: 100%;
            max-width: 100%;
        }
    }

    .rts-blog-area-h5-single a img {
        transition: 1s;
        width: 441px;
        height: 290px;
        object-fit: cover;
    }

    @media only screen and (max-width: 767px) {
        .rts-blog-area-h5-single a img {
            width: 100%;
        }
    }

    .rts-blog-area-h5-single a:hover img {
        transform: scale(1.2);
    }

    .rts-blog-area-h5-single .inner-area {
        padding: 40px 30px 40px 30px;
    }

    @media only screen and (max-width: 575px) {
        .rts-blog-area-h5-single .inner-area {
            margin-left: 20px;
            padding: 20px 20px 20px 0;
        }
    }

    .rts-blog-area-h5-single .inner-area .title {
        font-weight: 700;
        font-size: 24px;
        line-height: 34px;
        color: #111A2E;
        font-family: var(--font-secondary);
        margin-bottom: 0;
        padding-bottom: 12px;
        border-bottom: 1px solid #E8E8E8;
        margin-bottom: 15px;
        transition: 0.3s;
    }

    @media only screen and (max-width: 767px) {
        .rts-blog-area-h5-single .inner-area .title {
            font-size: 20px;
            line-height: 30px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-blog-area-h5-single .inner-area .title {
            font-size: 18px;
            line-height: 26px;
        }
    }

    .rts-blog-area-h5-single .inner-area .title:hover {
        color: var(--color-primary);
    }

    .rts-blog-area-h5-single .inner-area .social-area {
        margin-left: 0;
        margin-bottom: 10px;
    }

        .rts-blog-area-h5-single .inner-area .social-area .time-area i {
            color: var(--color-primary);
            font-weight: 400;
            font-size: 16px;
            line-height: 16px;
        }

        .rts-blog-area-h5-single .inner-area .social-area .time-area.admin {
            margin-left: 12px;
        }

    .rts-blog-area-h5-single .inner-area p.disc {
        margin-bottom: 0;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-blog-area-h5-single .inner-area p.disc {
            font-size: 14px;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-blog-area-h5-single .inner-area p.disc {
            font-size: 14px;
        }
    }

    .brand-one-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .brand-one-wrapper a img {
            transition: 0.3s;
            max-height: 100px;
        }

        .brand-one-wrapper a:hover img {
            transform: scale(1.2);
        }

    .mt-dec-brand {
        margin-top: -10px;
    }

    .swiper.brand-1.swiper-initialized.swiper-horizontal.swiper-pointer-events {
        padding: 9px 0;
    }

    .bg_brand--two {
        background-image: url(../images/blog/bg-01.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .brand-wrapper-two {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cta-bg-one {
        background-image: url(../images/cta/01.png);
        background-repeat: no-repeat;
        background-color: #231FE4;
        background-blend-mode: multiply;
        overflow: hidden;
        background-position: center;
        object-fit: contain;
        background-size: cover;
    }

    .cta-wrapper-one span.sub-title {
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
    }

    .cta-wrapper-one .title {
        font-weight: 700;
        font-size: 48px;
        line-height: 58px;
        color: #fff;
        margin-bottom: 40px;
        margin-top: 10px;
    }

    .cta-bg-h2 {
        background-image: url(../images/cta/02.jpg);
        overflow: hidden;
        z-index: 1;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        z-index: 1;
        height: 100%;
    }

        .cta-bg-h2::after {
            position: absolute;
            z-index: -1;
            background-image: url(../images/cta/shape/02.png);
            content: "";
            left: 69%;
            top: 40%;
            height: 167%;
            width: 91%;
            transform: translate(-50%, -50%);
            background-repeat: no-repeat;
            background-size: contain;
        }

    @media only screen and (min-width: 1200px) and (max-width: 1599px) {
        .cta-bg-h2::after {
            left: 60%;
        }
    }

    @media only screen and (max-width: 1199px) {
        .cta-bg-h2::after {
            left: 89%;
            top: 57%;
            height: 210%;
            width: 182%;
            background-size: contain;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .cta-bg-h2::after {
            left: 93%;
            top: 57%;
            height: 210%;
            width: 182%;
            background-size: contain;
        }
    }

    @media only screen and (max-width: 767px) {
        .cta-bg-h2::after {
            left: 69%;
            top: 46%;
            height: 210%;
            width: 182%;
            background-size: contain;
        }
    }

    @media only screen and (max-width: 575px) {
        .cta-bg-h2::after {
            left: 60%;
            top: 41%;
            height: 210%;
            width: 182%;
            background-size: contain;
        }
    }

    @media only screen and (max-width: 479px) {
        .cta-bg-h2::after {
            left: 32%;
            top: 45%;
            height: 184%;
            width: 170%;
            transform: translate(-50%, -50%);
            background-repeat: no-repeat;
            background-size: cover;
        }
    }

    .cta-bg-h4 {
        background-image: url(../images/cta/04.jpg);
        background-color: #231FE4;
        background-blend-mode: multiply;
        overflow: hidden;
        z-index: 1;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        z-index: 1;
        height: 100%;
    }

        .cta-bg-h4 .title-area span {
            color: #fff;
        }

        .cta-bg-h4 .title-area h3 {
            color: #fff;
        }

        .cta-bg-h4 .title-area .button-area .btn-primary {
            color: #231FE4;
            background: #231FE4;
        }

            .cta-bg-h4 .title-area .button-area .btn-primary:hover {
                color: #fff;
            }

            .cta-bg-h4 .title-area .button-area .btn-primary::before {
                background: #fff;
            }

    .cta-wrapper.home-two .title {
        color: #fff;
    }

    .cta-wrapper.home-two p.disc {
        color: #fff;
    }

    .rts-callto-acation-area4 {
        background-image: url(../images/cta/05.jpg);
        background-repeat: no-repeat;
        background-position: center;
        object-fit: contain;
        background-size: cover;
    }

        .rts-callto-acation-area4 .container .cta-two-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 90px 0;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper {
            flex-direction: column;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper {
            flex-direction: column;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .title-area {
            text-align: center;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .title-area {
            text-align: center;
        }
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .title-area span {
        color: #fff;
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .title-area .title {
        text-transform: none;
        font-size: 48px;
        color: #fff;
        margin-bottom: 0;
    }

    @media (max-width: 1200px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .title-area .title br {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .title-area .title {
            line-height: 61px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .title-area .title {
            font-size: 30px;
            line-height: 40px;
        }
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 15px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box {
            margin-top: 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box {
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box {
            flex-direction: column;
        }
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .left-side {
        padding: 40px;
        border-right: 1px solid #EBEDF8;
    }

    @media only screen and (max-width: 575px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .left-side {
            border-right: none;
            padding: 25px;
        }
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .left-side p {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 17px;
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .left-side .email {
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        color: #000;
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .right-side {
        padding: 40px;
    }

    @media only screen and (max-width: 575px) {
        .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .right-side {
            padding: 25px;
            padding-top: 0;
            width: 100%;
        }
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .right-side p {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 17px;
    }

    .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .right-side .phone {
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        color: #000;
    }

    .case-study-area .item {
        position: relative;
        overflow: hidden;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
        margin-bottom: 30px;
        margin-right: 20px;
    }

        .case-study-area .item:hover .read-more {
            color: #fff;
        }

            .case-study-area .item:hover .read-more::before {
                background-color: var(--color-primary);
                height: 100%;
                bottom: 0;
            }

        .case-study-area .item .item-image {
            padding: 25px;
            overflow: hidden;
        }

            .case-study-area .item .item-image img {
                width: 100%;
            }

        .case-study-area .item .item-content {
            padding: 0 25px 25px 25px;
        }

            .case-study-area .item .item-content h6 {
                color: #999;
                font-size: 14px;
                margin-bottom: 15px;
                font-weight: 400;
            }

            .case-study-area .item .item-content .text-heding3 {
                color: #1c2539;
                font-family: "Red Hat Display", Sans-serif;
                font-size: 22px;
                font-weight: 700;
            }

            .case-study-area .item .item-content p {
                font-size: 16px;
                font-weight: 400;
            }

        .case-study-area .item .read-more {
            background: #fff;
            border-top: 1px solid #f1f1f1;
            padding: 16px 20px;
            display: block;
            transition: all 0.3s ease 0s;
            font-size: 14px;
            font-weight: 700;
            position: relative;
            z-index: 2;
            color: #999;
        }

            .case-study-area .item .read-more::before {
                content: "";
                position: absolute;
                background-color: #040404;
                width: 100%;
                height: 0;
                transition: all 0.3s ease 0s;
                left: 0;
                top: 0;
                z-index: -1;
            }

            .case-study-area .item .read-more span {
                float: right;
            }

    .footer-one-bg {
        background: #1C1C1C;
    }

    .footer-one-left a.logo img {
        margin-bottom: 30px;
    }

    .footer-one-left p.disc {
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #949494;
        margin-bottom: 25px;
        padding-right: 30px;
    }

    .rts-footer-area-one {
        overflow: hidden;
    }

    .social-area {
        padding-left: 0;
        display: flex;
        list-style: none;
        margin-left: 15px;
    }

        .social-area li {
            margin-right: 37px;
        }

            .social-area li a {
                position: relative;
                z-index: 1;
            }

                .social-area li a i {
                    color: #fff;
                    font-size: 14px;
                }

                .social-area li a::after {
                    position: absolute;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: #292929;
                    content: "";
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: -1;
                    transition: 0.3s;
                }

                .social-area li a:hover i {
                    color: #fff;
                }

                .social-area li a:hover::after {
                    background: var(--color-primary);
                }

    .footer-right-one {
        padding-left: 100px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    @media only screen and (max-width: 479px) {
        .footer-right-one {
            flex-direction: column;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .footer-right-one {
            padding-left: 0;
            margin-top: 25px;
        }
    }

    @media only screen and (max-width: 767px) {
        .footer-right-one {
            padding-left: 0;
            margin-top: 25px;
        }
    }

    @media only screen and (max-width: 1199px) {
        .footer-right-one.four {
            padding-left: 0;
        }
    }

    .footer-right-one .single-wized-footer .title-heading {
        color: #fff;
        font-size: 22px;
    }

    .footer-right-one .single-wized-footer .list {
        list-style: none;
        padding-left: 0;
    }

        .footer-right-one .single-wized-footer .list li {
            margin-bottom: 17px;
        }

            .footer-right-one .single-wized-footer .list li a {
                color: #949494;
                font-weight: 400;
                font-size: 18px;
                transition: 0.3s;
            }

                .footer-right-one .single-wized-footer .list li a:hover {
                    color: #fff;
                }

    .bg-footer-one-shape {
        position: relative;
        z-index: 1;
    }

    @media only screen and (max-width: 767px) {
        .bg-footer-one-shape {
            display: none;
        }
    }

    .bg-footer-one-shape .wrapper {
        position: absolute;
        width: 100%;
    }

        .bg-footer-one-shape .wrapper img {
            position: absolute;
            z-index: -1;
        }

            .bg-footer-one-shape .wrapper img.small {
                left: -30%;
                top: 50px;
            }

            .bg-footer-one-shape .wrapper img.large {
                right: -30%;
                top: -190px;
            }

    .rts-copyright-area {
        background: #292929;
    }

        .rts-copyright-area.seven p {
            color: #949494;
        }

            .rts-copyright-area.seven p a {
                color: #ffffff;
                font-weight: 500;
                transition: all 0.4s;
            }

                .rts-copyright-area.seven p a:hover {
                    color: var(--color-primary);
                }

        .rts-copyright-area .copyu-right-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    @media only screen and (max-width: 575px) {
        .rts-copyright-area .copyu-right-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: left;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-copyright-area .copyu-right-wrapper .single {
            flex-basis: 33%;
        }
    }

    .rts-copyright-area .copyu-right-wrapper .single a {
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        transition: 0.3s;
    }

        .rts-copyright-area .copyu-right-wrapper .single a:hover {
            color: var(--color-primary);
        }

    .rts-copyright-area .copyu-right-wrapper .single p {
        color: #949494;
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
    }

    .rts-footer-left-two {
        padding-right: 50px;
    }

        .rts-footer-left-two a img {
            margin-bottom: 30px;
        }

            .rts-footer-left-two a img.dark-logo-fooetr {
                display: none;
            }

        .rts-footer-left-two p.disc {
            margin-bottom: 20px;
        }

        .rts-footer-left-two .social-area.two li a i {
            color: #6F737B;
            transition: 0.3s;
        }

        .rts-footer-left-two .social-area.two li a::after {
            border: 1px solid #E2E2E2;
            background: #fff;
        }

        .rts-footer-left-two .social-area.two li a:hover i {
            color: #fff;
        }

        .rts-footer-left-two .social-area.two li a:hover::after {
            background: var(--color-primary);
        }

    .rts-footer-right-two {
        padding-left: 20px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    @media only screen and (max-width: 575px) {
        .rts-footer-right-two {
            flex-direction: column;
        }
    }

    @media only screen and (max-width: 1199px) {
        .rts-footer-right-two {
            padding-left: 0;
            margin-top: 30px;
        }
    }

    @media only screen and (max-width: 1199px) {
        .rts-footer-right-two .single-wized {
            margin-right: 10px;
        }
    }

    @media only screen and (max-width: 575px) {
        .rts-footer-right-two .single-wized {
            margin-bottom: 15px;
        }

            .rts-footer-right-two .single-wized:last-child {
                margin-bottom: 0;
            }
    }

    .rts-footer-right-two .single-wized .title-footer {
        position: relative;
        margin-bottom: 30px;
    }

        .rts-footer-right-two .single-wized .title-footer::after {
            position: absolute;
            left: 3px;
            bottom: -20px;
            height: 2px;
            width: 40px;
            background: var(--color-primary);
            content: "";
        }

    .rts-footer-right-two .single-wized .nav {
        display: flex;
        flex-direction: column;
    }

    .rts-footer-right-two .single-wized .contact-info {
        margin-top: 41px;
    }

        .rts-footer-right-two .single-wized .contact-info .rts-contact-info-single {
            display: flex;
            align-items: center;
        }

            .rts-footer-right-two .single-wized .contact-info .rts-contact-info-single i {
                width: 45px;
                height: 45px;
                background: transparent;
                border-radius: 50%;
                border: 1px solid #3B38EB;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--color-primary);
                margin-right: 15px;
            }

            .rts-footer-right-two .single-wized .contact-info .rts-contact-info-single .number {
                display: flex;
                flex-direction: column;
            }

                .rts-footer-right-two .single-wized .contact-info .rts-contact-info-single .number a {
                    color: #6F737B;
                    font-style: normal;
                    font-weight: 400;
                    font-size: 16px;
                }

                    .rts-footer-right-two .single-wized .contact-info .rts-contact-info-single .number a:hover {
                        color: var(--color-primary);
                    }

    .rts-copyright-two {
        border-top: 1px solid #E8E8E8;
        padding: 30px 0;
    }

        .rts-copyright-two .nav {
            margin: 0;
            padding: 0;
        }

    @media only screen and (max-width: 767px) {
        .rts-copyright-two .nav {
            justify-content: center;
            margin-bottom: 10px;
        }
    }

    .rts-copyright-two .nav li {
        margin: 0;
        padding: 0;
        margin-right: 30px;
    }

        .rts-copyright-two .nav li a {
            color: #111A2E;
            font-family: "DM Sans";
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 21px;
        }

    .rts-copyright-two .copy-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    @media only screen and (max-width: 767px) {
        .rts-copyright-two .copy-right {
            justify-content: center;
        }
    }

    .rts-copyright-two .copy-right p.disc {
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        color: #111A2E;
    }

    .footer-three-bg {
        background: #0A101F;
    }

    .single-footer-three-wized .header {
        position: relative;
        padding-bottom: 10px;
        height: 70px;
        display: flex;
        align-items: center;
    }

        .single-footer-three-wized .header::after {
            position: absolute;
            bottom: 0;
            content: "";
            height: 1px;
            width: 100%;
            background: #111A2E;
            left: 0;
        }

    @media only screen and (max-width: 1199px) {
        .single-footer-three-wized .header::after {
            display: none;
        }
    }

    .single-footer-three-wized .header::before {
        position: absolute;
        bottom: 0;
        content: "";
        height: 100%;
        width: 1px;
        background: #111A2E;
        right: 0;
    }

    @media only screen and (max-width: 1199px) {
        .single-footer-three-wized .header::before {
            display: none;
        }
    }

    .single-footer-three-wized .header .title {
        color: #fff;
        padding-left: 50px;
        margin-bottom: 0;
    }

    @media only screen and (max-width: 1199px) {
        .single-footer-three-wized .header .title {
            padding-left: 10px;
        }
    }

    .single-footer-three-wized .body {
        position: relative;
        padding-top: 25px;
        height: 227px;
    }

    @media only screen and (max-width: 767px) {
        .single-footer-three-wized .body {
            height: auto;
        }
    }

    .single-footer-three-wized .body::after {
        position: absolute;
        bottom: 0;
        content: "";
        height: 1px;
        width: 100%;
        background: #111A2E;
        left: 0;
    }

    @media only screen and (max-width: 1199px) {
        .single-footer-three-wized .body::after {
            display: none;
        }
    }

    .single-footer-three-wized .body::before {
        position: absolute;
        bottom: 0;
        content: "";
        height: 100%;
        width: 1px;
        background: #111A2E;
        right: 0;
    }

    @media only screen and (max-width: 1199px) {
        .single-footer-three-wized .body::before {
            display: none;
        }
    }

    .single-footer-three-wized .body.left {
        padding-right: 50px;
        height: 227px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-footer-three-wized .body.left {
            height: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .single-footer-three-wized .body.left {
            height: auto;
        }
    }

    .single-footer-three-wized .body.left p.disc {
        color: #fff;
        margin-bottom: 20px;
    }

    .single-footer-three-wized .body.left ul li a::after {
        background: #111A2E;
    }

    .single-footer-three-wized .body.left ul li a:hover::after {
        background: var(--color-primary);
    }

    .single-footer-three-wized .body ul.list {
        list-style: none;
        margin: 0;
        margin-top: -10px;
        padding-left: 0;
    }

        .single-footer-three-wized .body ul.list li {
            margin-bottom: 5px;
        }

            .single-footer-three-wized .body ul.list li a {
                color: #fff;
                transition: 0.3s;
            }

                .single-footer-three-wized .body ul.list li a i {
                    margin-right: 15px;
                    transition: all 0.3s;
                }

                .single-footer-three-wized .body ul.list li a:hover {
                    color: var(--color-primary);
                }

                    .single-footer-three-wized .body ul.list li a:hover i {
                        color: #fff;
                    }

    .footer-right-three {
        display: flex;
        justify-content: space-between;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .footer-right-three {
            flex-wrap: wrap;
        }
    }

    @media only screen and (max-width: 767px) {
        .footer-right-three {
            flex-wrap: wrap;
        }
    }

    @media only screen and (max-width: 575px) {
        .footer-right-three {
            flex-direction: column;
        }
    }

    .footer-right-three .single-footer-three-wized .header.right::before {
        display: none;
    }

    .footer-right-three .single-footer-three-wized .body {
        padding: 25px 50px;
    }

    @media only screen and (min-width: 1200px) and (max-width: 1599px) {
        .footer-right-three .single-footer-three-wized .body {
            padding: 25px 26px;
        }
    }

    @media only screen and (max-width: 1199px) {
        .footer-right-three .single-footer-three-wized .body {
            padding: 25px 10px;
        }
    }

    .footer-right-three .single-footer-three-wized .body .rts-footer-contact {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

        .footer-right-three .single-footer-three-wized .body .rts-footer-contact a {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            transition: 0.3s;
            color: #fff;
        }

            .footer-right-three .single-footer-three-wized .body .rts-footer-contact a:hover {
                color: var(--color-primary);
            }

        .footer-right-three .single-footer-three-wized .body .rts-footer-contact .icon i {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #202A3F;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 15px;
        }

    .footer-right-three .single-footer-three-wized .body form {
        position: relative;
        max-width: max-content;
    }

        .footer-right-three .single-footer-three-wized .body form input {
            background: #FFFFFF;
            border-radius: 15px;
            height: 54px;
            width: 295px;
            border: 1px solid transparent;
            color: #000;
            padding-left: 25px;
        }

            .footer-right-three .single-footer-three-wized .body form input:focus {
                border: 1px solid var(--color-primary);
            }

        .footer-right-three .single-footer-three-wized .body form i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-primary);
        }

    .footer-right-three .single-footer-three-wized .body.right {
        padding-right: 0;
    }

        .footer-right-three .single-footer-three-wized .body.right p {
            color: #fff;
        }

        .footer-right-three .single-footer-three-wized .body.right::before {
            display: none;
        }

        .footer-right-three .single-footer-three-wized .body.right p {
            margin-bottom: 20px;
            font-weight: 400;
            font-size: 16px;
        }

    .rts-copyright-area-three {
        background: #0A101F;
        padding: 35px 0;
    }

        .rts-copyright-area-three .wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    @media only screen and (max-width: 575px) {
        .rts-copyright-area-three .wrapper {
            flex-direction: column;
        }
    }

    .rts-copyright-area-three .wrapper .left a {
        color: #fff;
        transition: 0.3s;
    }

        .rts-copyright-area-three .wrapper .left a:last-child {
            margin-left: 10px;
        }

    @media only screen and (max-width: 767px) {
        .rts-copyright-area-three .wrapper .left a:last-child {
            margin-left: 0;
        }
    }

    .rts-copyright-area-three .wrapper .left a:hover {
        color: var(--color-primary);
    }

    .rts-copyright-area-three .wrapper .right a {
        color: #fff;
        transition: 0.3s;
    }

        .rts-copyright-area-three .wrapper .right a:first-child {
            margin-right: 10px;
        }

        .rts-copyright-area-three .wrapper .right a:hover {
            color: var(--color-primary);
        }

    .rts-copyright-area-three .wrapper .mid p {
        font-weight: 400;
        font-size: 16px;
        line-height: 21px;
        color: #6F778A;
    }

        .rts-copyright-area-three .wrapper .mid p a {
            font-weight: 600;
            color: #fff;
            transition: 0.3s;
        }

            .rts-copyright-area-three .wrapper .mid p a:hover {
                color: var(--color-primary);
            }

    .footer-four-bg {
        background: #18191B;
    }

    .footer-one-left.four .contact-area span {
        display: block;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        text-transform: uppercase;
        color: #FFFFFF;
        font-family: var(--font-secondary);
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .footer-one-left.four .contact-area a {
        font-weight: 400;
        font-size: 30px;
        line-height: 36px;
        color: #fff;
        font-family: var(--font-secondary);
    }

    .footer-one-left.four .social-area {
        margin-top: 22px;
    }

        .footer-one-left.four .social-area li {
            margin-right: 42px;
        }

            .footer-one-left.four .social-area li a::after {
                background: transparent;
                border: 1px solid #2C2C2C;
                width: 44px;
                height: 44px;
                transition: 0.3s;
            }

            .footer-one-left.four .social-area li a:hover::after {
                background: var(--color-primary);
                border: 1px solid var(--color-primary);
            }

    .footer-right-one.four .single-wized-footer .list {
        margin-left: 20px;
    }

        .footer-right-one.four .single-wized-footer .list li a {
            position: relative;
        }

            .footer-right-one.four .single-wized-footer .list li a::after {
                position: absolute;
                content: "";
                left: -18px;
                top: 50%;
                transform: translateY(-50%);
                height: 6px;
                width: 6px;
                border-radius: 50%;
                background: #6F737B;
            }

    .rts-copyright-area.footer-four {
        background: #18191B;
        border-top: 1px solid #222326;
    }

        .rts-copyright-area.footer-four .left.single {
            color: #fff;
            font-weight: 400;
            font-size: 16px;
            line-height: 21px;
        }

    @media only screen and (max-width: 575px) {
        .rts-copyright-area.footer-four .left.single {
            padding: 10px 0;
        }
    }

    .vedio-icone {
        position: relative;
        top: -5%;
        margin-top: -4%;
        left: -17%;
    }

    .video-play-button {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        box-sizing: content-box;
        display: block;
        width: 32px;
        height: 44px;
        border-radius: 50%;
        padding: 18px 20px 18px 28px;
        display: flex;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .video-play-button {
            right: -70%;
            left: auto;
        }
    }

    .video-play-button span.outer-text {
        border: none;
        min-width: max-content;
        margin-left: 75px;
        position: relative;
        margin-top: -12px;
        color: var(--color-primary);
        font-weight: 500;
    }

    .video-play-button:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: -32%;
        top: -31%;
        display: block;
        width: 130px;
        height: 130px;
        background: transparent;
        border-radius: 50%;
        border: 1px solid #3a37eb;
        animation: waves 3s ease-in-out infinite;
    }

    .video-play-button::after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 57px;
        height: 57px;
        background: #3a37eb0a;
        border-radius: 50%;
        transition: all 200ms;
    }

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

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

    .video-play-button span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 14px solid #3B38EB;
        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%);
    }

    .vedio-area-home-two {
        position: relative;
        z-index: 4;
    }

    .digital-home-vedio {
        height: 650px;
        position: relative;
        background-attachment: fixed;
        z-index: 1;
    }

    @media only screen and (max-width: 767px) {
        .digital-home-vedio {
            height: 500px;
        }
    }

    @media only screen and (max-width: 479px) {
        .digital-home-vedio {
            height: 400px;
        }
    }

    .digital-home-vedio img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    @media only screen and (max-width: 575px) {
        .digital-home-vedio img {
            height: 28%;
            width: 18%;
        }
    }

    @media only screen and (max-width: 479px) {
        .digital-home-vedio img {
            height: 22%;
            width: 25%;
            top: 41%;
        }
    }

    .digital-home-vedio::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .digital-home-vedio .btn-watch-video {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transition: 0.3s;
        cursor: url(../images/banner/shape/icon-play.png), auto;
    }

        .digital-home-vedio .btn-watch-video::after {
            display: none;
        }

        .digital-home-vedio .btn-watch-video:hover img {
            opacity: 0;
        }

    .thumbnail-faq-h2 {
        position: relative;
        z-index: 1;
    }

        .thumbnail-faq-h2::after {
            content: "";
            position: absolute;
            left: -5%;
            top: 10%;
            height: 100%;
            width: 100%;
            /*background-image: url(../images/faq/shape/01.png);*/
            background-repeat: no-repeat;
            z-index: -1;
            animation: jump-1 5s linear infinite;
            background-size: contain;
        }

        .thumbnail-faq-h2.thumbnail-faq-inner::after {
            display: none;
        }

    .rts-faq-area-one {
        border-bottom: 1px solid #EBEBEB;
    }

    .accordion-wrapper-area .accordion .accordion-item {
        border: none;
    }

        .accordion-wrapper-area .accordion .accordion-item .accordion-header button {
            height: 60px;
            font-weight: 600;
            font-size: 17px;
            line-height: 20px;
            padding: 0 25px;
        }

    @media only screen and (max-width: 575px) {
        .accordion-wrapper-area .accordion .accordion-item .accordion-header button {
            font-size: 14px;
        }
    }

    .accordion-wrapper-area .accordion .accordion-item .accordion-header button::after {
        background-image: none;
        content: "\f078";
        font-family: "Font Awesome 5 Pro" !important;
        transform: none;
        margin-top: -10px;
    }

    .accordion-wrapper-area .accordion .accordion-item .accordion-header button[aria-expanded=true] {
        background: #FFFFFF;
        box-shadow: 0px 13px 46px rgba(0, 0, 0, 0.07);
        border-radius: 15px;
        height: 60px;
        font-weight: 600;
        font-size: 17px;
        line-height: 20px;
        color: #111A2E;
    }

    @media only screen and (max-width: 575px) {
        .accordion-wrapper-area .accordion .accordion-item .accordion-header button[aria-expanded=true] {
            font-size: 14px;
        }
    }

    .accordion-wrapper-area .accordion .accordion-item .accordion-header button[aria-expanded=true]::after {
        content: "\f077";
        color: var(--color-primary);
    }

    .accordion-wrapper-area .accordion .accordion-item .accordion-header button:focus {
        box-shadow: 0px 13px 46px rgba(0, 0, 0, 0.07);
        border-radius: 15px;
    }

    .accordion-wrapper-area .accordion .accordion-item .accordion-body {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #6F737B;
        padding: 25px;
    }

    .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item {
        box-shadow: 0px 12px 52px rgba(46, 44, 165, 0.1);
        border-radius: 15px;
        margin-bottom: 20px;
    }

        .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item .accordion-header button {
            border-radius: 15px;
        }

            .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item .accordion-header button span {
                color: var(--color-primary);
                margin-right: 5px;
            }

            .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item .accordion-header button[aria-expanded=true] {
                box-shadow: none;
            }

            .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item .accordion-header button:focus {
                box-shadow: none;
                border-radius: 15px;
            }

        .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item .accordion-body {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            color: #6F737B;
            padding: 25px;
        }

    .single-pricing-area-h2 {
        background: #FFFFFF;
        box-shadow: 0px 8px 37px rgba(0, 0, 0, 0.07);
        border-radius: 20px;
    }

        .single-pricing-area-h2 .pricing-head {
            padding: 18px 50px;
            background: rgba(59, 56, 235, 0.1);
            border-radius: 20px 20px 0px 0px;
        }

    @media only screen and (max-width: 575px) {
        .single-pricing-area-h2 .pricing-head {
            padding: 18px 15px;
        }
    }

    .single-pricing-area-h2 .pricing-head .title {
        margin-bottom: 0;
        color: #3B38EB;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;
    }

    .single-pricing-area-h2 .pricing-body {
        padding: 35px 50px;
    }

    @media only screen and (max-width: 575px) {
        .single-pricing-area-h2 .pricing-body {
            padding: 18px 15px;
        }
    }

    .single-pricing-area-h2 .pricing-body .title {
        font-weight: 700;
        font-size: 40px;
        line-height: 48px;
    }

        .single-pricing-area-h2 .pricing-body .title span {
            font-weight: 700;
            font-size: 16px;
            line-height: 19px;
            margin-left: -10px;
        }

    .single-pricing-area-h2 .pricing-body p.disc {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #ECECEC;
        margin-bottom: 30px;
    }

    .single-pricing-area-h2 .pricing-body .feature-area .single-feature {
        display: flex;
        align-items: center;
    }

        .single-pricing-area-h2 .pricing-body .feature-area .single-feature span {
            font-weight: 500;
            font-size: 16px;
            line-height: 34px;
            color: #111A2E;
            margin-left: 10px;
        }

        .single-pricing-area-h2 .pricing-body .feature-area .single-feature i {
            color: #3B38EB;
            font-weight: 900;
            font-size: 16px;
            line-height: 34px;
        }

    .single-pricing-area-h2 .pricing-body a.rts-btn {
        margin-top: 30px;
        border: 1px solid #3B38EB;
        display: block;
        text-align: center;
    }

    .single-pricing-area-h2.standared .pricing-head {
        background: #3B38EB;
    }

        .single-pricing-area-h2.standared .pricing-head .title {
            color: #fff;
        }

    .single-pricing-area-h2.standared a.rts-btn {
        background: #fff;
        color: #fff;
    }

        .single-pricing-area-h2.standared a.rts-btn::before {
            background: var(--color-primary);
        }

        .single-pricing-area-h2.standared a.rts-btn:hover {
            color: var(--color-primary);
        }

    .rts-appoinment-bg {
        background-image: url(../images/appoinment/bg-01.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .rts-appoinment-form {
        position: relative;
    }

        .rts-appoinment-form .inner {
            padding: 60px;
            box-shadow: 0px 11px 35px rgba(22, 21, 40, 0.05);
            border-radius: 15px;
            background: #fff;
            position: absolute;
        }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .rts-appoinment-form .inner {
            position: relative;
        }
    }

    @media only screen and (max-width: 767px) {
        .rts-appoinment-form .inner {
            position: relative;
            padding: 20px;
        }
    }

    .rts-appoinment-form .inner input {
        border: 1px solid #E7E7F3;
        border-radius: 15px;
        height: 55px;
        margin-bottom: 20px;
        padding-left: 25px;
    }

        .rts-appoinment-form .inner input:focus {
            border: 1px solid var(--color-primary);
        }

    .rts-appoinment-form .inner button {
        margin-top: 10px;
    }

    .appoinment-right {
        margin-top: 0;
    }

        .appoinment-right .title-area span {
            color: #fff;
        }

        .appoinment-right .title-area .title {
            color: #fff;
        }

        .appoinment-right .counter-wrapper-appoinment {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 48px;
        }

    @media only screen and (max-width: 479px) {
        .appoinment-right .counter-wrapper-appoinment {
            flex-direction: column;
            align-items: flex-start;
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 479px) {
        .appoinment-right .counter-wrapper-appoinment .counter-single {
            margin-bottom: 20px;
        }

            .appoinment-right .counter-wrapper-appoinment .counter-single:last-child {
                margin-bottom: 0;
            }
    }

    .appoinment-right .counter-wrapper-appoinment .counter-single .title {
        color: #fff;
        font-weight: 700;
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 0;
    }

        .appoinment-right .counter-wrapper-appoinment .counter-single .title .plus {
            position: relative;
        }

            .appoinment-right .counter-wrapper-appoinment .counter-single .title .plus::after {
                position: absolute;
                content: "+";
                font-size: 40px;
                right: -26px;
                top: 50%;
                transform: translateY(-50%);
                color: #fff;
            }

    .appoinment-right .counter-wrapper-appoinment .counter-single p {
        color: #fff;
    }

    .single-circle-progress-inner {
        background-image: url(../images/appoinment/01.png);
        height: 320px;
        background-repeat: no-repeat;
        width: 100%;
        display: flex;
        background-size: contain;
        align-items: center;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-circle-progress-inner {
            height: 369px;
        }
    }

    @media only screen and (max-width: 767px) {
        .single-circle-progress-inner {
            height: 265px;
        }
    }

    @media only screen and (max-width: 575px) {
        .single-circle-progress-inner {
            height: 495px;
        }
    }

    @media screen and (max-width: 569px) {
        .single-circle-progress-inner {
            height: 600px;
        }
    }

    @media screen and (max-width: 510px) {
        .single-circle-progress-inner {
            height: 525px;
        }
    }

    @media screen and (max-width: 460px) {
        .single-circle-progress-inner {
            height: 490px;
        }
    }

    @media screen and (max-width: 430px) {
        .single-circle-progress-inner {
            height: 440px;
        }
    }

    @media screen and (max-width: 390px) {
        .single-circle-progress-inner {
            height: 400px;
        }
    }

    @media screen and (max-width: 365px) {
        .single-circle-progress-inner {
            height: 330px;
        }
    }

    .single-circle-progress-inner .title {
        margin-top: 85px;
        color: #fff;
    }

    @media only screen and (max-width: 767px) {
        .single-circle-progress-inner .title {
            margin-top: 63px;
        }
    }

    @media screen and (max-width: 569px) {
        .single-circle-progress-inner .title {
            margin-top: 200px !important;
        }
    }

    @media screen and (max-width: 469px) {
        .single-circle-progress-inner .title {
            margin-top: 160px !important;
        }
    }

    @media screen and (max-width: 466px) {
        .single-circle-progress-inner .title {
            margin-top: 130px !important;
        }
    }

    @media screen and (max-width: 350px) {
        .single-circle-progress-inner .title {
            margin-top: 130px !important;
        }
    }

    .single-circle-progress-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    @media screen and (max-width: 360px) {
        .single-circle-progress-inner {
            margin-left: 12px;
        }
    }

    @media screen and (max-width: 340px) {
        .single-circle-progress-inner {
            margin-left: 7px;
        }
    }

    .single-circle-progress-inner .progress {
        width: 150px;
        height: 150px !important;
        float: left;
        line-height: 150px;
        background: none;
        margin: 20px;
        box-shadow: none;
        position: relative;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-73%);
    }

        .single-circle-progress-inner .progress:after {
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 8px solid #434653;
            position: absolute;
            top: 0;
            left: 0;
        }

        .single-circle-progress-inner .progress > span {
            width: 50%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            z-index: 1;
        }

        .single-circle-progress-inner .progress .progress-left {
            left: 0;
        }

        .single-circle-progress-inner .progress .progress-bar {
            width: 100%;
            height: 100%;
            background: none;
            border-width: 8px;
            border-style: solid;
            position: absolute;
            top: 0;
        }

        .single-circle-progress-inner .progress .progress-left .progress-bar {
            left: 100%;
            border-top-right-radius: 80px;
            border-bottom-right-radius: 80px;
            border-left: 0;
            -webkit-transform-origin: center left;
            transform-origin: center left;
        }

        .single-circle-progress-inner .progress .progress-right {
            right: 0;
        }

            .single-circle-progress-inner .progress .progress-right .progress-bar {
                left: -100%;
                border-top-left-radius: 80px;
                border-bottom-left-radius: 80px;
                border-right: 0;
                -webkit-transform-origin: center right;
                transform-origin: center right;
                animation: loading-1 1.8s linear forwards;
            }

        .single-circle-progress-inner .progress .progress-value {
            width: 90%;
            height: 90%;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0);
            font-size: 35px;
            color: #fff;
            line-height: 135px;
            text-align: center;
            position: absolute;
            top: 5%;
            left: 5%;
        }

        .single-circle-progress-inner .progress.red .progress-bar {
            border-color: var(--color-primary);
        }

        .single-circle-progress-inner .progress.red .progress-left .progress-bar {
            animation: loading-2 1.5s linear forwards 1.8s;
        }

        .single-circle-progress-inner .progress.yellow .progress-bar {
            border-color: #fdba04;
        }

        .single-circle-progress-inner .progress.yellow .progress-right .progress-bar {
            animation: loading-3 1.8s linear forwards;
        }

        .single-circle-progress-inner .progress.yellow .progress-left .progress-bar {
            animation: none;
        }

    @keyframes loading-1 {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }
    }

    @keyframes loading-2 {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(125deg);
            transform: rotate(125deg);
        }
    }

    @keyframes loading-3 {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
        }
    }

    .background-contact-appoinment {
        background: #F6F6F6;
    }

        .background-contact-appoinment .contact-form-area-one {
            background-image: url(../images/appoinment/03.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center left;
            background-color: rgba(255, 255, 255, 0);
            padding: 165px 120px 120px 120px;
            margin-left: -26px;
        }

    @media only screen and (max-width: 575px) {
        .background-contact-appoinment .contact-form-area-one {
            padding: 60px;
        }
    }

    @media only screen and (max-width: 479px) {
        .background-contact-appoinment .contact-form-area-one {
            padding: 60px 10px 60px 40px;
        }
    }

    .background-contact-appoinment .contact-form-area-one .title {
        color: #fff;
    }

    .background-contact-appoinment .contact-form-area-one input {
        background: #212329;
        color: #fff;
    }

        .background-contact-appoinment .contact-form-area-one input::-webkit-input-placeholder {
            color: #fff !important;
            font-weight: 400 !important;
            font-size: 16px !important;
            line-height: 21px !important;
        }

    .background-contact-appoinment .contact-form-area-one textarea {
        color: #fff;
        background: #212329;
    }

        .background-contact-appoinment .contact-form-area-one textarea::-webkit-input-placeholder {
            color: #fff !important;
            font-weight: 400 !important;
            font-size: 16px !important;
            line-height: 21px !important;
        }

    .contact-image-one.appoinment {
        margin-right: -123px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .contact-image-one.appoinment img {
            width: 100%;
        }
    }

    @media only screen and (max-width: 767px) {
        .contact-image-one.appoinment img {
            width: 100%;
        }
    }

    .rts-contact-area.contact-one.appoinment::after {
        display: none;
    }

    .appoinment-team {
        padding-bottom: 210px;
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .appoinment-team {
            padding-bottom: 80px;
        }
    }

    @media only screen and (max-width: 767px) {
        .appoinment-team {
            padding-bottom: 60px;
        }
    }

    .rts-title-area {
        position: relative;
        z-index: 1;
    }

        .rts-title-area p.pre-title {
            color: var(--color-primary);
            margin-bottom: 0;
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: -5px;
        }

    .contact-form-area-one form {
        margin-top: 45px;
    }

        .contact-form-area-one form .name-email {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

    .background-contact-appoinment .contact-form-area-one input {
        background: #212329;
        color: #fff;
        font-size: var(--font-size-b2);
        font-weight: 400;
        line-height: 28px;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0 15px;
        outline: none;
        border: var(--border-width) solid var(--color-border);
        border-radius: var(--radius);
        height: 55px;
        width: 48.8%;
        margin-bottom: 20px;
        border-radius: 15px;
        padding: 0 25px;
        border: 1px solid transparent;
    }

    .contact-form-area-one form input:focus {
        border: 1px solid var(--color-primary);
    }

    .contact-form-area-one form textarea:focus {
        border: 1px solid var(--color-primary);
    }

    .background-contact-appoinment .contact-form-area-one textarea {
        color: #fff;
        background: #212329;
        border-radius: 15px;
        height: 150px;
        padding: 15px 25px;
        border: 1px solid transparent;
    }

    .contact-form-area-one .rts-btn {
        display: block;
        max-width: max-content;
        margin-top: 30px;
    }

    .team-inner-two {
        position: relative;
        width: 100%;
    }

    .rts-title-area.team .title {
        margin-bottom: 24px;
    }

    .team-inner-two a.thumbnail {
        overflow: hidden;
        display: block;
        border-radius: 15px;
    }

        .team-inner-two a.thumbnail img {
            width: 100%;
            transition: 0.3s;
        }

        .team-inner-two a.thumbnail:hover img {
            transform: scale(1.15);
        }

    .team-inner-two .acquaintance-area {
        position: absolute;
        left: 0;
        bottom: -20%;
        background: #fff;
        border-radius: 0 15px 15px 15px;
        box-shadow: 0px 4px 27px #00000012;
        text-align: center;
    }

        .team-inner-two .acquaintance-area .header {
            padding: 30px 82px 22px 82px;
            border-bottom: 1px solid #F0F0F0;
        }

            .team-inner-two .acquaintance-area .header .title {
                margin-bottom: 5px;
            }

            .team-inner-two .acquaintance-area .header span {
                color: var(--color-primary);
                font-weight: 400;
                font-size: 16px;
            }

        .team-inner-two .acquaintance-area .acquaintance-social {
            padding: 27px 84px 36px 84px;
            margin-right: -30px;
        }

            .team-inner-two .acquaintance-area .acquaintance-social a {
                position: relative;
                z-index: 1;
                transition: 0.3s;
                margin-right: 30px;
            }

                .team-inner-two .acquaintance-area .acquaintance-social a:hover::after {
                    background: var(--color-primary);
                }

                .team-inner-two .acquaintance-area .acquaintance-social a:hover i {
                    color: #fff;
                }

                .team-inner-two .acquaintance-area .acquaintance-social a::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;
                }

                .team-inner-two .acquaintance-area .acquaintance-social a i {
                    font-size: 14px;
                    color: #1C2539;
                    transition: 0.3s;
                }

    /* Loader Styles start here */
    .loader-wrapper {
        --line-width: .5px;
        --curtain-color: #f5f7ff;
        --outer-line-color: #7883e6;
        --middle-line-color: #46459d;
        --inner-line-color: var(--color-primary);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
    }

    .loader {
        display: block;
        position: relative;
        top: 50%;
        left: 50%;
        /*   transform: translate(-50%, -50%); */
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
        border: var(--line-width) solid transparent;
        border-top-color: var(--outer-line-color);
        border-radius: 100%;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        z-index: 1001;
    }

        .loader:before {
            content: "";
            position: absolute;
            top: 4px;
            left: 4px;
            right: 4px;
            bottom: 4px;
            border: var(--line-width) solid transparent;
            border-top-color: var(--inner-line-color);
            border-radius: 100%;
            -webkit-animation: spin 3s linear infinite;
            animation: spin 3s linear infinite;
        }

        .loader:after {
            content: "";
            position: absolute;
            top: 14px;
            left: 14px;
            right: 14px;
            bottom: 14px;
            border: var(--line-width) solid transparent;
            border-top-color: var(--middle-line-color);
            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(--curtain-color);
        width: 51%;
        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 {
        transform: translateX(-100%);
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .loaded .loader-wrapper .loader-section.section-right {
        transform: translateX(100%);
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

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

    ::-moz-selection {
        /* Code for Firefox */
        color: #fff;
        background: var(--color-primary);
    }

    ::selection {
        color: #fff;
        background: var(--color-primary);
    }

    #box {
        height: 500px;
        width: 500px;
        border: 2px solid red;
        position: relative;
    }

    #tooltip {
        opacity: 0;
        position: absolute;
        background-color: black;
        color: white;
        top: 10px;
        left: 0;
    }

    #box:hover #tooltip {
        opacity: 1;
    }

    .mouse-hover #listcontainer .li1 {
        display: block;
        width: 210px;
        height: 130px;
        border: 1px solid red;
        position: relative;
    }

    .mouse-hover .li1 span {
        position: absolute;
        top: 140px;
        left: 0px;
        right: 0;
        width: 220px;
        padding: 2px 0;
        background-color: #000;
        background-color: rgba(0, 0, 0, 0.65);
        color: #fff;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        text-align: center;
        font-family: Arial;
        font-size: 14px;
    }

    .mouse-hover .li1:hover span {
        opacity: 1;
    }

        .mouse-hover .li1:hover span:hover {
            opacity: 0;
        }

    .tp-img-reveal-wrapper {
        width: auto;
        height: auto;
    }

    .rts-hover-wrapper {
        border-radius: 10px;
        display: inline-block;
    }

        .rts-hover-wrapper .rts-hover-title {
            color: #fff !important;
            margin-bottom: 6px;
            font-size: 24px;
            line-height: 24px;
            padding: 7px 20px;
            background-color: rgba(0, 0, 0, 0.788);
            margin-bottom: 3px;
        }

        .rts-hover-wrapper .rts-hover-subtitle {
            color: #fff !important;
            margin-bottom: 10px;
            padding: 7px 20px;
            background-color: rgba(0, 0, 0, 0.726);
            font-size: 14px;
            max-width: max-content;
        }

        .rts-hover-wrapper p {
            display: none;
        }

    .modal-sidebar-scroll ul li:hover span {
        visibility: visible;
        opacity: 1;
    }

    .modal-sidebar-scroll {
        position: fixed;
        top: 50%;
        -webkit-transform: translateY(-65%);
        transform: translateY(-65%);
        text-align: center;
        z-index: 10;
        right: 0;
        left: auto;
    }

        .modal-sidebar-scroll ul {
            list-style: none;
            margin: 0;
            padding-left: 0;
        }

            .modal-sidebar-scroll ul li {
                margin: 10px 0;
                position: relative;
                font-size: 20px;
            }

                .modal-sidebar-scroll ul li span {
                    position: absolute;
                    background-color: var(--color-primary);
                    color: #fff;
                    white-space: nowrap;
                    padding: 5px 20px;
                    font-size: 13px;
                    top: 0;
                    right: 100%;
                    margin-right: 12px;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transition: all 0.3s linear 0ms;
                    transition: all 0.3s linear 0ms;
                }

                    .modal-sidebar-scroll ul li span::after {
                        content: "";
                        border-style: solid;
                        border-color: transparent transparent transparent var(--color-primary);
                        border-width: 6px;
                        position: absolute;
                        top: 50%;
                        right: -12px;
                        -webkit-transform: translate(0, -50%);
                        -khtml-transform: translate(0, -50%);
                        transform: translate(0, -50%);
                    }

                .modal-sidebar-scroll ul li i {
                    cursor: pointer;
                    color: #000;
                    padding: 10px 10px;
                    display: block;
                    -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
                    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
                    border-radius: 5px 0 0 5px;
                    background: #fff;
                    transition: 0.3s;
                }

                    .modal-sidebar-scroll ul li i:hover {
                        background: var(--color-primary);
                        color: #fff;
                    }

    html.rts-dark .header-one .main-header .main-nav .mainmenu li a {
        color: #fff !important;
    }

    html.rts-dark .header--sticky.sticky {
        background: #27272e;
    }

    html.rts-dark ul.submenu.home-mega .multiple::after {
        background: #505050;
        right: 15px;
    }

    html.rts-dark .mainmenu li .submenu {
        background: #27272e;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    }

    html.rts-dark .banner-one-content-wrapper span.pre-title {
        padding: 10px 29px;
        background: #0000003b;
        border: 1px solid #ffffff1f;
        border-radius: 8px;
        font-size: 14px;
        color: #acacac;
        letter-spacing: 0.1em;
        font-weight: 700;
        text-transform: uppercase;
    }

    html.rts-dark .banner-shape-red::before {
        opacity: 0.05;
    }

    html.rts-dark .banner-shape-red::after {
        opacity: 0.05;
    }

    html.rts-dark .btn-watch-video span.text {
        color: #fff;
    }

    html.rts-dark .banner-one-content-wrapper h1.title-banner {
        color: #fff;
    }

    html.rts-dark .title {
        color: #fff;
    }

    html.rts-dark .bg_image--1 {
        background-image: none;
        background: #212121;
    }

    html.rts-dark .banner-shape-area-one {
        opacity: 0.05;
    }

    html.rts-dark .banner-shape-one::before {
        opacity: 0.05;
    }

    html.rts-dark .shape-line::after {
        opacity: 0.05;
    }

    html.rts-dark .shape-line::before {
        opacity: 0.05;
    }

    html.rts-dark .btn-watch-video::before {
        border: 1px solid #000;
    }

    html.rts-dark .btn-watch-video::after {
        background: #000;
    }

    html.rts-dark .btn-watch-video span.icon {
        border-left: 14px solid #fff;
    }

    html.rts-dark .rts-working-process-area {
        background: #27272e;
    }

    html.rts-dark .single-working-process-one {
        background-image: url(../images/working-process/02.png);
    }

    html.rts-dark .single-testimonials-h2 .body {
        border-bottom: 1px solid #3c3c3d;
    }

        html.rts-dark .single-working-process-one .inner p.disc,
        html.rts-dark p,
        html.rts-dark .banner-wrapper-two .banner-content-area p.disc,
        html.rts-dark .accordion-wrapper-area .accordion .accordion-item .accordion-body,
        html.rts-dark .single-testimonials-h2 .body p.disc,
        html.rts-dark .rts-product-one .product-contact-wrapper span {
            color: #a5a4a4;
        }

    html.rts-dark .title-area span {
        color: #c2c2c2;
    }

    html.rts-dark .rts-about-us-area .thumbnail img {
        border-radius: 20px;
    }

    html.rts-dark .rts-about-us-area {
        background: var(--bg-dark-one);
    }

    html.rts-dark .bg-light {
        background-color: var(--bg-dark-two) !important;
    }

    html.rts-dark .service-bg_shape::before {
        opacity: 0.05;
    }

    html.rts-dark .appoinment-shape .shape {
        opacity: 0.05;
    }

    html.rts-dark .rts-single-service-one {
        background: var(--bg-dark-one);
        box-shadow: 0px 14px 46px #0202024f;
    }

    html.rts-dark .appoinment-area-one {
        background: var(--bg-dark-one);
        box-shadow: 0px 14px 46px #0202024f;
    }

        html.rts-dark .appoinment-area-one .appoinment-right .single-input label,
        html.rts-dark .rts-send-message-area-h4 .content .title span.bold {
            color: #fff;
        }

        html.rts-dark .appoinment-area-one .appoinment-right .single-input input {
            border: 1px solid #646464;
        }

        html.rts-dark .appoinment-area-one .appoinment-right .single-input textarea {
            border: 1px solid #646464;
        }

        html.rts-dark .appoinment-area-one .appoinment-left .communicate-area .details-area a {
            color: var(--color-primary);
        }

        html.rts-dark .appoinment-area-one .appoinment-left .communicate-area .details-area span {
            color: #fff;
        }

    html.rts-dark .rts-team-section {
        background: var(--bg-dark-one);
    }

        html.rts-dark .rts-team-section .single-team-one img {
            border-radius: 20px;
        }

    html.rts-dark .single-testimonial-one .body {
        border-bottom: 2px solid #191919;
    }

    html.rts-dark .brand-one-wrapper a img {
        filter: grayscale(1);
    }

    html.rts-dark .cta-bg-h4 {
        background-color: #151533;
    }

    html.rts-dark .counter-bg,
    html.rts-dark .bg_testimonials-h2,
    html.rts-dark .rts-appoinment-bg {
        position: relative;
        z-index: 1;
    }

        html.rts-dark .counter-bg::after,
        html.rts-dark .bg_testimonials-h2::after,
        html.rts-dark .rts-appoinment-bg::after {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #000;
            opacity: 0.8;
            content: "";
            z-index: -1;
        }

    html.rts-dark .cta-bg-h2 {
        position: relative;
        z-index: 1;
    }

        html.rts-dark .cta-bg-h2::before {
            z-index: -1;
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background: #000;
            display: block;
            opacity: 0.5;
        }

    html.rts-dark .rts-single-service-wrapper-two .icon-wrapper .icon::after {
        background: #212121;
    }

    html.rts-dark .thumbnail-faq-h2::after {
        opacity: 0.05;
    }

    html.rts-dark .rts-faq-area-one {
        border-bottom: 1px solid #262626;
    }

    html.rts-dark .rts-single-service-wrapper-two .icon-wrapper {
        border: 1px solid #3e3d62;
    }

    html.rts-dark .rts-blog-post-area-one a .title {
        border-bottom: 1px solid #191919;
    }

    html.rts-dark .container-custom-2.bg-vedio-image {
        border-radius: 20px;
    }

    html.rts-dark .rts-send-message-area-h4 .thumbnail img {
        opacity: 0.05;
    }

    html.rts-dark .marquee_text {
        color: #ffffff;
    }

    html.rts-dark .single-testimonial-one .header-area .name-desig a h6,
    html.rts-dark a.rts-read-more,
    html.rts-dark .banner-wrapper-two .banner-content-area .banner-title,
    html.rts-dark .banner-wrapper-two .banner-content-area .banner-title span,
    html.rts-dark .counter-up-wrapper-two .counter-single p.disc,
    html.rts-dark .single-progress-area-h4 .progress-top p,
    html.rts-dark .single-progress-area-h4 .progress-top span.parcent {
        color: #fff;
    }

    html.rts-dark .counter-up-wrapper-two .counter-single {
        border: 1px solid #b1b1b130;
    }

    html.rts-dark .single-pricing-area-h2 .pricing-body p.disc {
        border-bottom: 1px solid #414141;
    }

    html.rts-dark .blog-single-two-wrapper .inner .admin-area {
        border-bottom: 1px solid #282828;
    }

    html.rts-dark .blog-single-two-wrapper .inner .body .date span {
        color: #b2b2b2;
    }

    html.rts-dark .blog-single-two-wrapper .inner .admin-area .details span {
        color: #b2b2b2;
    }

    html.rts-dark .rts-footer-left-two .social-area.two li a i {
        color: #000;
    }

    html.rts-dark .rts-footer-left-two .social-area.two li a:hover i,
    html.rts-dark .rts-footer-right-two .single-wized .contact-info .rts-contact-info-single .number a,
    html.rts-dark .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .left-side .email,
    html.rts-dark .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .right-side .phone,
    html.rts-dark .header-top-start.header-three.header-four .left a,
    html.rts-dark .header-top-start.header-three.header-four .right .map-area p.map,
    html.rts-dark .rts-product-area .inner .title,
    html.rts-dark .rts-blog-area-h5-single .inner-area .social-area .time-area i,
    html.rts-dark .case-study-area .item .item-content .text-heding3 {
        color: #fff;
    }

    html.rts-dark .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box .left-side {
        border-right: 1px solid #444444;
    }

    html.rts-dark .rts-footer-right-two .single-wized .nav li {
        color: #fff;
    }

        html.rts-dark .rts-footer-right-two .single-wized .nav li a {
            color: #fff;
        }

    html.rts-dark .service-detials-step-2 .single-service-step {
        border: 1px solid #212121;
    }

        html.rts-dark .service-detials-step-2 .single-service-step p.step::after {
            background: #000;
        }

    html.rts-dark .rts-blog-area-h5-single .inner-area .title {
        border-bottom: 1px solid #2c2c2c;
    }

    html.rts-dark .header-one.three .rts-btn.btn-secondary.call-btn {
        border: none;
    }

    html.rts-dark .case-study-area .item .item-image img {
        border-radius: 15px;
    }

    html.rts-dark .social-wrapper-two ul li a i {
        color: #fff;
        background: #27272e;
        box-shadow: 0px 10px 12px rgba(0, 0, 0, 0.21), inset 1px 4px 5px rgba(14, 1, 171, 0.3);
    }

    html.rts-dark .service-detials-step-1 .service-details-card {
        box-shadow: 0px 8px 30px #0000004a;
    }

    html.rts-dark .rts-banner-area.three::after {
        background: linear-gradient(180deg, rgba(0, 0, 28, 0.71) 0%, rgba(0, 0, 12, 0.95) 100%);
    }

    html.rts-dark .rts-banner-three .wrapper-three .shape {
        opacity: 0.3;
    }

    html.rts-dark .tab-button-area-one .nav li button.active {
        border: 1px solid transparent;
    }

    html.rts-dark .rts-footer-left-two p.disc,
    html.rts-dark .rts-copyright-two .copy-right p.disc,
    html.rts-dark .rts-copyright-two .nav li a,
    html.rts-dark .blog-lg-inner.single-blog-sm .inner a.rts-read-more,
    html.rts-dark .single-team-two .inner a h5,
    html.rts-dark .progress-wrap::after,
    html.rts-dark .title-area.team-h5 .title,
    html.rts-dark .title-area.ho-5 .title,
    html.rts-dark .rts-blog-area-h5-single .inner-area .title,
    html.rts-dark .rts-single-wized .recent-post-single .post-title .title {
        color: #fff;
    }

    html.rts-dark .team-inner-two .acquaintance-area .header {
        padding: 30px 82px 22px 82px;
        border-bottom: 1px solid #353535;
    }

    html.rts-dark .rts-appoinment-form .inner input {
        border: 1px solid #373737;
    }

    html.rts-dark .rts-copyright-two {
        border-top: 1px solid #424242;
    }

    html.rts-dark .rts-footer-left-two .social-area.two li a:hover::after {
        border: 1px solid var(--color-primary);
    }

    html.rts-dark .rts-product-one {
        border: 1px solid #3d3d3d;
    }

    html.rts-dark .image-inner-area-wrapper-three .inetial {
        border-radius: 20px;
    }

    html.rts-dark .case-study-area .item .read-more {
        border-top: 1px solid #3e3e3e;
    }

    html.rts-dark .thumbnail-faq-h2 img {
        border-radius: 20px;
    }

    html.rts-dark .rts-project-details-area .thumbnail img {
        border-radius: 15px;
    }

    html.rts-dark .team-details-support-wrapper i {
        border: 1px solid #3b3b3b;
        color: #fff;
    }

    html.rts-dark .accordion-wrapper-area.wrapper-area-inner .accordion .accordion-item {
        box-shadow: 0px 12px 52px rgba(5, 4, 72, 0.1);
    }

    html.rts-dark .big-bg-porduct-details .project-info .info-body .single-info {
        border-bottom: 1px solid #2c2c2c;
    }

    html.rts-dark .big-bg-porduct-details .project-info .info-body {
        border-radius: 0 0 15px 0;
    }

    html.rts-dark .single-about-skill-inner .title::after {
        height: 1px;
        background: #303030;
    }

    html.rts-dark .rts-progress-one-wrapper .single-progress {
        border-bottom: 1px solid #343434;
    }

    html.rts-dark .rts-progress-one-wrapper .meter {
        box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0);
        background: #00000026;
    }

    html.rts-dark .education-skill-wrapper .single-skill {
        border: 1px solid transparent;
    }

        html.rts-dark .accordion-wrapper-area .accordion .accordion-item .accordion-header button,
        html.rts-dark .single-testimonials-h2 .body .title,
        html.rts-dark .single-pricing-area-h2 .pricing-body .feature-area .single-feature span,
        html.rts-dark .single-pricing-area-h2 .pricing-body .feature-area .single-feature i,
        html.rts-dark .blog-single-two-wrapper .inner .admin-area .details p,
        html.rts-dark .rts-footer-right-two .single-wized .title-footer,
        html.rts-dark .rts-single-wized .single-categories li a,
        html.rts-dark .rts-breadcrumb-area .bread-tag a,
        html.rts-dark .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-title,
        html.rts-dark .portfolio-area.style-3 .portfolio-wrapper2 .portfolio-text .text .p-category a,
        html.rts-dark .single-project-details-challenge .details,
        html.rts-dark .big-bg-porduct-details .project-info .info-body .single-info .info-details .name,
        html.rts-dark .education-skill-wrapper .single-skill .experience,
        html.rts-dark .blog-single-post-listing.details .details-tag h6,
        html.rts-dark .blog-single-post-listing.details .details-share h6,
        html.rts-dark .blog-single-post-listing.details .author-area .author-details h5 {
            color: #fff;
        }

    html.rts-dark .rts-single-wized.service .single-categories li a:hover {
        background: var(--color-primary);
    }

    html.rts-dark .portfolio-area.style-3 .portfolio-wrapper2 .img-fluid img {
        border-radius: 15px;
    }

    html.rts-dark .team-single-one-start,
    html.rts-dark .rts-team-area.style-3 .team-inner-two,
    html.rts-dark .rts-team-area.style-4 .team-inner-two .acquaintance-area,
    html.rts-dark .rts-single-wized .single-categories li a {
        background: var(--bg-dark-two) !important;
    }

        html.rts-dark .rts-single-wized .single-categories li a:hover {
            background: var(--color-primary);
        }

    html.rts-dark .single-contact-one-inner .content .info a h5 {
        color: #fff;
    }

    html.rts-dark .single-contact-one-inner {
        border: 1px solid #3d3d3d;
    }

    html.rts-dark .rts-blog-list-area .pagination button {
        color: #fff;
        border: 1px solid #3f3f3f;
    }

    html.rts-dark .rts-blog-grid-area .pagination button {
        color: #fff;
        border: 1px solid #393939;
    }

    html.rts-dark .blog-single-post-listing {
        border: 1px solid #2c2c2c;
    }

    html.rts-dark .blog-grid-inner {
        border: 1px solid #424242;
    }

    html.rts-dark .blog-single-post-listing.details .author-area {
        border-top: 1px solid #303030;
        border-bottom: 1px solid #303030;
    }

    html.rts-dark .bg_dark,
    html.rts-dark .rts-testimonial-area-one,
    html.rts-dark .shape-blog-one,
    html.rts-dark .rts-brand-area,
    html.rts-dark .single-testimonial-one,
    html.rts-dark .banner-area.banner-two-parent,
    html.rts-dark .rts-counterup-h2,
    html.rts-dark .index-two,
    html.rts-dark .accordion-wrapper-area .accordion .accordion-item,
    html.rts-dark .accordion-wrapper-area .accordion .accordion-item .accordion-header button,
    html.rts-dark .blog-single-two-wrapper,
    html.rts-dark .header-top-start.header-three,
    html.rts-dark .rts-appoinment-form .inner,
    html.rts-dark .single-team-two,
    html.rts-dark .rts-blog-area-h5-single .inner-area,
    html.rts-dark .rts-contact-form-area,
    html.rts-dark .rts-contact-fluid .form-wrapper input,
    html.rts-dark .rts-contact-fluid .form-wrapper textarea,
    html.rts-dark .rts-team-area-one,
    html.rts-dark .pricing-area-h2,
    html.rts-dark .rts-service-details-area,
    html.rts-dark .rts-single-wized.service .single-categories li a,
    html.rts-dark .rts-circle-progress-area,
    html.rts-dark .appoinment-team,
    html.rts-dark .rts-faq-area-one,
    html.rts-dark .rts-404-area,
    html.rts-dark .rts-project-area,
    html.rts-dark .case-study-area.case-bg2,
    html.rts-dark .big-bg-porduct-details .project-info .info-body,
    html.rts-dark .rts-team-details,
    html.rts-dark .rts-team-skill-area,
    html.rts-dark .rts-blog-list-area,
    html.rts-dark .rts-blog-grid-area,
    html.rts-dark .rts-team-area,
    html.rts-dark .rts-contact-area-page,
    html.rts-dark .side-bar {
        background: var(--bg-dark-two);
    }

        html.rts-dark .bg-light-testimonial,
        html.rts-dark .single-product-one .inner-content,
        html.rts-dark .rts-blog-post-area-one,
        html.rts-dark .banner-wrapper-two .banner-morp::before,
        html.rts-dark .rts-footer-two-wrapper,
        html.rts-dark .rts-blog-area-h2,
        html.rts-dark .bg-business-solution-service,
        html.rts-dark .accordion-wrapper-area .accordion .accordion-item .accordion-header button[aria-expanded=true],
        html.rts-dark .single-testimonials-h2,
        html.rts-dark .single-pricing-area-h2,
        html.rts-dark .header-one.three,
        html.rts-dark .service-bg-color,
        html.rts-dark .bgproject-area,
        html.rts-dark .bgproject-area .rts-product-one,
        html.rts-dark .bg-team,
        html.rts-dark .blog-lg-inner,
        html.rts-dark .rts-callto-acation-area4 .container .cta-two-wrapper .cta-contact-box,
        html.rts-dark .progress-wrap svg,
        html.rts-dark .blog-bg-h5,
        html.rts-dark .rts-contact-fluid,
        html.rts-dark .rts-breadcrumb-area .bread-tag,
        html.rts-dark .team-single-one-start,
        html.rts-dark .service-detials-step-2 .single-service-step,
        html.rts-dark .rts-single-wized.contact,
        html.rts-dark .rts-single-wized.download,
        html.rts-dark .rts-single-wized.service,
        html.rts-dark .background-contact-appoinment,
        html.rts-dark .team-inner-two .acquaintance-area,
        html.rts-dark .case-study-area .item,
        html.rts-dark .case-study-area .item .read-more,
        html.rts-dark .portfolio-area.style-3,
        html.rts-dark .portfolio-area.style-4,
        html.rts-dark .portfolio-area.style-5,
        html.rts-dark .rts-project-details-area,
        html.rts-dark .education-skill-wrapper .single-skill,
        html.rts-dark .rts-single-wized,
        html.rts-dark .blog-single-post-listing .replay-area-details form input,
        html.rts-dark .blog-single-post-listing .replay-area-details form textarea,
        html.rts-dark .single-contact-one-inner {
            background: var(--bg-dark-one);
        }

            html.rts-dark .rts-single-wized .single-categories li a:hover {
                background: var(--color-primary);
            }

    html.rts-dark .single-product-wrapper-h2 .inner a .title {
        color: var(--bg-dark-one);
    }

    html.rts-dark .portfolio-area.style-5 .item .portfolio-wrapper .img-fluid img {
        border-radius: 15px;
    }

    html.rts-dark .rts-breadcrumb-area .bread-tag a.active {
        color: var(--color-primary);
    }

    html.rts-dark .portfolio-area.style-4 .item .img-fluid img {
        border-radius: 15px 15px 0 0;
    }

    html.rts-dark .banner-wrapper-two .banner-content-area .sub-title p span {
        background: #fff;
        color: #000;
    }

    html.rts-dark .breadcrumb-bg {
        background-image: url(../images/breadcrumb/02.jpg);
    }

    html.rts-dark header .active-dark {
        display: block;
    }

    html.rts-dark header .active-light {
        display: none;
    }

    html.rts-dark .side-bar .logo-1 {
        display: none;
    }

    html.rts-dark .side-bar .logo-2 {
        display: block;
    }

    html.rts-dark header a .stickys {
        display: none;
    }

    html.rts-dark header.sticky a .normal {
        display: block;
    }

    html.rts-dark header.sticky a .stickys {
        display: none;
    }

    html.rts-dark .rts-footer-two-wrapper .rts-footer-left-two .light-logo-footer {
        display: none;
    }

    html.rts-dark .rts-footer-two-wrapper .rts-footer-left-two .dark-logo-fooetr {
        display: block;
    }

    html.rts-dark .loader-wrapper {
        --curtain-color: var(--bg-dark-one);
        --outer-line-color: #7883e6;
        --middle-line-color: #46459d;
        --inner-line-color: var(--color-primary);
    }

    html.rts-dark .header-one .main-header .main-nav .mainmenu li.current a {
        color: var(--color-primary) !important;
    }

    html.rts-dark .banner-horizental-2 .banner-inner .item .pos {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
        color: #f3f3fb;
    }

    html.rts-dark .banner-horizental-2 .banner-inner .item .image-title {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
        color: #f3f3fb;
    }

    html.rts-dark .banner-horizental-2 .banner-inner .item:hover .image-title {
        -webkit-text-stroke: 1px var(--color-primary) !important;
    }

    html.rts-dark .banner-horizental-2 .banner-inner .item .image-title::before {
        -webkit-text-stroke: 1px var(--color-primary) !important;
        color: var(--color-primary);
    }

    .index-six .modal-sidebar-scroll {
        display: none;
    }
    /*# sourceMappingURL=../maps/style.css.map */
