/*---------------------------
 CSS Index
****************************

01. Variables
02. Typography
03. Spacing
04. Reset
05. Forms
06. Shortcode
07. Common
08. Animations
11. extend
12. header-one
13. nav
14. mobile-menu
15. side-collups
15. side-collups
16.banner';
17.section-title';
18.services';
19.social';
20.button';
21.blog';
22.faq';
23.product';
24.team';
25testimonial';
26.banner';
27testimonial-swiper';
28.error';
29.img-common-style';
30.brand';
31.progress-bar';
32.icons-style';
33.portfolio';
34.pricing';
35.counter';
36.rating';
37.work';
38.taglist';
39contact';
40.tab';
41.skills';
42.quick-action';
43.breadcrumb';
44.team-details';
45.ack-to-top';
46.video';
47.pagination';
48.blog-details';
49.pre-loader';
50.about';
51.projects-details';
52.footers';
----------------------------*/
/*----Default Css----*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --color-primary: #FF6C31;
  --color-secondary: #1273EB;
  --color-secondary-alt: #1274eb7f;
  --color-purple: #4A11EB;
  --color-gray: #f6f6f6;
  --color-gray-2: #f5f8fa;
  --color-subtitle: #FF6C31;
  --background-color-1: #24243557;
  --background-color-2: #13131d;
  --background-color-3: #151521;
  --background-color-4: #242435;
  --background-color-5: #EDF5FF;
  --gradient-one: linear-gradient(to right bottom, #E42032, #1273EB);
  --gradient-two: linear-gradient(to right, #ED145B, #4A11EB);
  --gradient-three: linear-gradient(to right, #03041c, #0612b3);
  --text-gradient-one: linear-gradient(to right, #E42032, #4A11EB);
  --color-heading: #03041C;
  --color-body: #383A47;
  --color-dark: #1d1d1d;
  --color-text-1: #DEDEDE;
  --color-light-heading: #181c32;
  --color-light-body: #65676b;
  --color-border-white: #00000024;
  --color-midgray: #878787;
  --color-light: #E4E6EA;
  --color-lighter: #CED0D4;
  --color-lightest: #F0F2F5;
  --color-border: #ffffff14;
  --color-white: #ffffff;
  --color-white-75: rgba(255, 255, 255, 0.75);
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --font-primary: "Inter";
  --font-secondary: "Inter";
  --font-three: "fontawesome";
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.5s;
  --font-size-b1: 16px;
  --font-size-b2: 18px;
  --font-size-b3: 22px;
  --line-height-b1: 1.75;
  --line-height-b2: 1.6;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 36px;
  --h3: 27px;
  --h4: 24px;
  --h5: 20px;
  --h6: 18px;
}

* {
  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: var(--font-primary);
  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: var(--font-secondary);
  line-height: 1.4074;
  color: var(--color-heading);
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 1.19;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.23;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 1.14;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
}

.bg-color-tertiary h1,
.bg-color-tertiary h2,
.bg-color-tertiary h3,
.bg-color-tertiary h4,
.bg-color-tertiary h5,
.bg-color-tertiary h6,
.bg-color-tertiary .h1,
.bg-color-tertiary .h2,
.bg-color-tertiary .h3,
.bg-color-tertiary .h4,
.bg-color-tertiary .h5,
.bg-color-tertiary .h6 {
  color: #fff;
}

.bg-color-tertiary p {
  color: #6c7279;
}

.bg-color-tertiary a {
  color: #6c7279;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  h1,
  .h1 {
    font-size: 38px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {

  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-bold);
}

h4,
.h4,
h5,
.h5 {
  font-weight: var(--s-bold);
}

h6,
.h6 {
  /* font-weight: var(--s-bold); */
}

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
  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 {
  font-size: 16px;
  margin-bottom: 0;
}

.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}

.b2 {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
}

.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}

.b4 {
  font-size: var(--font-size-b4);
  line-height: var(--line-height-b4);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}

table a,
table a:link,
table a:visited {
  text-decoration: none;
}

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
  color: var(--color-heading);
}

var {
  font-family: "Poppins", sans-serif;
}

/*---------------------------
	List Style
---------------------------*/
ul,
ol {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}

ul.liststyle.bullet li {
  font-size: 18px;
  line-height: 30px;
  color: var(--color-body);
  position: relative;
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  ul.liststyle.bullet li {
    padding-left: 19px;
  }

  #progressbar li {
    font-size: 11px !important;
    width: 32.33%;
    text-align: left;
  }

  .price {
    font-size: 15px !important;
    font-weight: 500;
  }

  .discount {
    font-size: 10px !important;
  }

  .pawpoints-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 !important;
    height: auto !important;
    padding: 5px !important;
  }

  /* .consultation-card {
    background-color: #fee94f;
  } */

  .pawd {
    position: relative;
    left: -10px !important;

    p {
      font-size: 14px !important;

    }
  }

  .badge {
    padding: 6px !important;
    border-radius: 20px;

  }

  .error {
    width: 50% !important;
    margin: auto;
    margin-top: 10%;
  }

  .dispayBlock {
    display: block !important;
  }

  .font10 {
    font-size: 16px;
  }

  .mobilePadding {
    padding: 10px
  }

  .upgradebtn {
    padding: 10px !important;
    padding-right: 10px;
    white-space: nowrap;
  }

  .consultation {
    padding: 10px !important;
  }
}

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: #272D37;
}

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;
}

/*=========================
    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;
}

.mr--20 {
  margin-right: 20px;
}

.mr--50 {
  margin-right: 50px;
}

.mb--10 {
  margin-bottom: 10px;
}

.tmp-section-gap {
  padding: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-section-gap {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-section-gap {
    /* padding: 80px 0; */
  }

  .tmp-section-gap {
    padding: 12px 0;
  }
}

.tmp-section-gapBottom {
  padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-section-gapBottom {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-section-gapBottom {
    padding-bottom: 80px;
  }
}

.tmp-section-gapTop {
  padding-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-section-gapTop {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-section-gapTop {
    padding-top: 80px;
  }
}

.pl--0 {
  padding-left: 0 !important;
}

.pr--0 {
  padding-right: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

.mr--0 {
  margin-right: 0 !important;
}

.ml--0 {
  margin-left: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.mt--30 {
  margin-top: 30px;
}

.mt--15 {
  margin-top: 15px;
}

.mb--30 {
  margin-bottom: 30px;
}

.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;
}

.pt--6 {
  padding-top: 6px !important;

}

.pb--10 {
  padding-bottom: 10px !important;
}

.pl--10 {
  padding-left: 10px !important;
}

.pr--10 {
  padding-right: 10px !important;
}

.mt--10 {
  margin-top: 10px !important;
}

.mb--10 {
  margin-bottom: 10px !important;
}

.mr--10 {
  margin-right: 10px !important;
}

.ml--10 {
  margin-left: 10px !important;
}

.ptb--15 {
  padding: 15px 0 !important;
}

.plr--15 {
  padding: 0 15px !important;
}

.pt--15 {
  padding-top: 15px !important;
}

.pb--15 {
  padding-bottom: 15px !important;
}

.pl--15 {
  padding-left: 15px !important;
}

.pr--15 {
  padding-right: 15px !important;
}

.mt--15 {
  margin-top: 15px !important;
}

.mb--15 {
  margin-bottom: 15px !important;
}

.mr--15 {
  margin-right: 15px !important;
}

.ml--15 {
  margin-left: 15px !important;
}

.ptb--20 {
  padding: 20px 0 !important;
}

.plr--20 {
  padding: 0 20px !important;
}

.pt--20 {
  padding-top: 20px !important;
}

.pb--20 {
  padding-bottom: 20px !important;
}

.pl--20 {
  padding-left: 20px !important;
}

.pr--20 {
  padding-right: 20px !important;
}

.mt--20 {
  margin-top: 20px !important;
}

.mb--20 {
  margin-bottom: 20px !important;
}

.mr--20 {
  margin-right: 20px !important;
}

.ml--20 {
  margin-left: 20px !important;
}

.ptb--25 {
  padding: 25px 0 !important;
}

.plr--25 {
  padding: 0 25px !important;
}

.pt--25 {
  padding-top: 25px !important;
}

.pb--25 {
  padding-bottom: 25px !important;
}

.pl--25 {
  padding-left: 25px !important;
}

.pr--25 {
  padding-right: 25px !important;
}

.mt--25 {
  margin-top: 25px !important;
}

.mb--25 {
  margin-bottom: 25px !important;
}

.mr--25 {
  margin-right: 25px !important;
}

.ml--25 {
  margin-left: 25px !important;
}

.ptb--30 {
  padding: 30px 0 !important;
}

.plr--30 {
  padding: 0 30px !important;
}

.pt--30 {
  padding-top: 30px !important;
}

.pb--30 {
  padding-bottom: 30px !important;
}

.pl--30 {
  padding-left: 30px !important;
}

.pr--30 {
  padding-right: 30px !important;
}

.mt--30 {
  margin-top: 30px !important;
}

.mb--30 {
  margin-bottom: 30px !important;
}

.mr--30 {
  margin-right: 30px !important;
}

.ml--30 {
  margin-left: 30px !important;
}

.ptb--35 {
  padding: 35px 0 !important;
}

.plr--35 {
  padding: 0 35px !important;
}

.pt--35 {
  padding-top: 35px !important;
}

.pb--35 {
  padding-bottom: 35px !important;
}

.pl--35 {
  padding-left: 35px !important;
}

.pr--35 {
  padding-right: 35px !important;
}

.mt--35 {
  margin-top: 35px !important;
}

.mb--35 {
  margin-bottom: 35px !important;
}

.mr--35 {
  margin-right: 35px !important;
}

.ml--35 {
  margin-left: 35px !important;
}

.ptb--40 {
  padding: 40px 0 !important;
}

.plr--40 {
  padding: 0 40px !important;
}

.pt--40 {
  padding-top: 40px !important;
}

.pb--40 {
  padding-bottom: 40px !important;
}

.pl--40 {
  padding-left: 40px !important;
}

.pr--40 {
  padding-right: 40px !important;
}

.mt--40 {
  margin-top: 40px !important;
}

.mb--40 {
  margin-bottom: 40px !important;
}

.mr--40 {
  margin-right: 40px !important;
}

.ml--40 {
  margin-left: 40px !important;
}

.ptb--45 {
  padding: 45px 0 !important;
}

.plr--45 {
  padding: 0 45px !important;
}

.pt--45 {
  padding-top: 45px !important;
}

.pb--45 {
  padding-bottom: 45px !important;
}

.pl--45 {
  padding-left: 45px !important;
}

.pr--45 {
  padding-right: 45px !important;
}

.mt--45 {
  margin-top: 45px !important;
}

.mb--45 {
  margin-bottom: 45px !important;
}

.mr--45 {
  margin-right: 45px !important;
}

.ml--45 {
  margin-left: 45px !important;
}

.ptb--50 {
  padding: 50px 0 !important;
}

.plr--50 {
  padding: 0 50px !important;
}

.pt--50 {
  padding-top: 50px !important;
}

.pb--50 {
  padding-bottom: 50px !important;
}

.pl--50 {
  padding-left: 50px !important;
}

.pr--50 {
  padding-right: 50px !important;
}

.mt--50 {
  margin-top: 50px !important;
}

.mb--50 {
  margin-bottom: 50px !important;
}

.mr--50 {
  margin-right: 50px !important;
}

.ml--50 {
  margin-left: 50px !important;
}

.ptb--55 {
  padding: 55px 0 !important;
}

.plr--55 {
  padding: 0 55px !important;
}

.pt--55 {
  padding-top: 55px !important;
}

.pb--55 {
  padding-bottom: 55px !important;
}

.pl--55 {
  padding-left: 55px !important;
}

.pr--55 {
  padding-right: 55px !important;
}

.mt--55 {
  margin-top: 55px !important;
}

.mb--55 {
  margin-bottom: 55px !important;
}

.mr--55 {
  margin-right: 55px !important;
}

.ml--55 {
  margin-left: 55px !important;
}

.ptb--60 {
  padding: 60px 0 !important;
}

.plr--60 {
  padding: 0 60px !important;
}

.pt--60 {
  padding-top: 60px !important;
}

.pb--60 {
  padding-bottom: 60px !important;
}

.pl--60 {
  padding-left: 60px !important;
}

.pr--60 {
  padding-right: 60px !important;
}

.mt--60 {
  margin-top: 60px !important;
}

.mb--60 {
  margin-bottom: 60px !important;
}

.mr--60 {
  margin-right: 60px !important;
}

.ml--60 {
  margin-left: 60px !important;
}

.ptb--65 {
  padding: 65px 0 !important;
}

.plr--65 {
  padding: 0 65px !important;
}

.pt--65 {
  padding-top: 65px !important;
}

.pb--65 {
  padding-bottom: 65px !important;
}

.pl--65 {
  padding-left: 65px !important;
}

.pr--65 {
  padding-right: 65px !important;
}

.mt--65 {
  margin-top: 65px !important;
}

.mb--65 {
  margin-bottom: 65px !important;
}

.mr--65 {
  margin-right: 65px !important;
}

.ml--65 {
  margin-left: 65px !important;
}

.ptb--70 {
  padding: 70px 0 !important;
}

.plr--70 {
  padding: 0 70px !important;
}

.pt--70 {
  padding-top: 70px !important;
}

.pb--70 {
  padding-bottom: 70px !important;
}

.pl--70 {
  padding-left: 70px !important;
}

.pr--70 {
  padding-right: 70px !important;
}

.mt--70 {
  margin-top: 70px !important;
}

.mb--70 {
  margin-bottom: 70px !important;
}

.mr--70 {
  margin-right: 70px !important;
}

.ml--70 {
  margin-left: 70px !important;
}

.ptb--75 {
  padding: 75px 0 !important;
}

.plr--75 {
  padding: 0 75px !important;
}

.pt--75 {
  padding-top: 75px !important;
}

.pb--75 {
  padding-bottom: 75px !important;
}

.pl--75 {
  padding-left: 75px !important;
}

.pr--75 {
  padding-right: 75px !important;
}

.mt--75 {
  margin-top: 75px !important;
}

.mb--75 {
  margin-bottom: 75px !important;
}

.mr--75 {
  margin-right: 75px !important;
}

.ml--75 {
  margin-left: 75px !important;
}

.ptb--80 {
  padding: 80px 0 !important;
}

.plr--80 {
  padding: 0 80px !important;
}

.pt--80 {
  padding-top: 80px !important;
}

.pb--80 {
  padding-bottom: 80px !important;
}

.pl--80 {
  padding-left: 80px !important;
}

.pr--80 {
  padding-right: 80px !important;
}

.mt--80 {
  margin-top: 80px !important;
}

.mb--80 {
  margin-bottom: 80px !important;
}

.mr--80 {
  margin-right: 80px !important;
}

.ml--80 {
  margin-left: 80px !important;
}

.ptb--85 {
  padding: 85px 0 !important;
}

.plr--85 {
  padding: 0 85px !important;
}

.pt--85 {
  padding-top: 85px !important;
}

.pb--85 {
  padding-bottom: 85px !important;
}

.pl--85 {
  padding-left: 85px !important;
}

.pr--85 {
  padding-right: 85px !important;
}

.mt--85 {
  margin-top: 85px !important;
}

.mb--85 {
  margin-bottom: 85px !important;
}

.mr--85 {
  margin-right: 85px !important;
}

.ml--85 {
  margin-left: 85px !important;
}

.ptb--90 {
  padding: 90px 0 !important;
}

.plr--90 {
  padding: 0 90px !important;
}

.pt--90 {
  padding-top: 90px !important;
}

.pb--90 {
  padding-bottom: 90px !important;
}

.pl--90 {
  padding-left: 90px !important;
}

.pr--90 {
  padding-right: 90px !important;
}

.mt--90 {
  margin-top: 90px !important;
}

.mb--90 {
  margin-bottom: 90px !important;
}

.mr--90 {
  margin-right: 90px !important;
}

.ml--90 {
  margin-left: 90px !important;
}

.ptb--95 {
  padding: 95px 0 !important;
}

.plr--95 {
  padding: 0 95px !important;
}

.pt--95 {
  padding-top: 95px !important;
}

.pb--95 {
  padding-bottom: 95px !important;
}

.pl--95 {
  padding-left: 95px !important;
}

.pr--95 {
  padding-right: 95px !important;
}

.mt--95 {
  margin-top: 95px !important;
}

.mb--95 {
  margin-bottom: 95px !important;
}

.mr--95 {
  margin-right: 95px !important;
}

.ml--95 {
  margin-left: 95px !important;
}

.ptb--100 {
  padding: 100px 0 !important;
}

.plr--100 {
  padding: 0 100px !important;
}

.pt--100 {
  padding-top: 100px !important;
}

.pb--100 {
  padding-bottom: 100px !important;
}

.pl--100 {
  padding-left: 100px !important;
}

.pr--100 {
  padding-right: 100px !important;
}

.mt--100 {
  margin-top: 100px !important;
}

.mb--100 {
  margin-bottom: 100px !important;
}

.mr--100 {
  margin-right: 100px !important;
}

.ml--100 {
  margin-left: 100px !important;
}

.ptb--105 {
  padding: 105px 0 !important;
}

.plr--105 {
  padding: 0 105px !important;
}

.pt--105 {
  padding-top: 105px !important;
}

.pb--105 {
  padding-bottom: 105px !important;
}

.pl--105 {
  padding-left: 105px !important;
}

.pr--105 {
  padding-right: 105px !important;
}

.mt--105 {
  margin-top: 105px !important;
}

.mb--105 {
  margin-bottom: 105px !important;
}

.mr--105 {
  margin-right: 105px !important;
}

.ml--105 {
  margin-left: 105px !important;
}

.ptb--110 {
  padding: 110px 0 !important;
}

.plr--110 {
  padding: 0 110px !important;
}

.pt--110 {
  padding-top: 110px !important;
}

.pb--110 {
  padding-bottom: 110px !important;
}

.pl--110 {
  padding-left: 110px !important;
}

.pr--110 {
  padding-right: 110px !important;
}

.mt--110 {
  margin-top: 110px !important;
}

.mb--110 {
  margin-bottom: 110px !important;
}

.mr--110 {
  margin-right: 110px !important;
}

.ml--110 {
  margin-left: 110px !important;
}

.ptb--115 {
  padding: 115px 0 !important;
}

.plr--115 {
  padding: 0 115px !important;
}

.pt--115 {
  padding-top: 115px !important;
}

.pb--115 {
  padding-bottom: 115px !important;
}

.pl--115 {
  padding-left: 115px !important;
}

.pr--115 {
  padding-right: 115px !important;
}

.mt--115 {
  margin-top: 115px !important;
}

.mb--115 {
  margin-bottom: 115px !important;
}

.mr--115 {
  margin-right: 115px !important;
}

.ml--115 {
  margin-left: 115px !important;
}

.ptb--120 {
  padding: 120px 0 !important;
}

.plr--120 {
  padding: 0 120px !important;
}

.pt--120 {
  padding-top: 120px !important;
}

.pb--120 {
  padding-bottom: 120px !important;
}

.pl--120 {
  padding-left: 120px !important;
}

.pr--120 {
  padding-right: 120px !important;
}

.mt--120 {
  margin-top: 120px !important;
}

.mb--120 {
  margin-bottom: 120px !important;
}

.mr--120 {
  margin-right: 120px !important;
}

.ml--120 {
  margin-left: 120px !important;
}

.ptb--125 {
  padding: 125px 0 !important;
}

.plr--125 {
  padding: 0 125px !important;
}

.pt--125 {
  padding-top: 125px !important;
}

.pb--125 {
  padding-bottom: 125px !important;
}

.pl--125 {
  padding-left: 125px !important;
}

.pr--125 {
  padding-right: 125px !important;
}

.mt--125 {
  margin-top: 125px !important;
}

.mb--125 {
  margin-bottom: 125px !important;
}

.mr--125 {
  margin-right: 125px !important;
}

.ml--125 {
  margin-left: 125px !important;
}

.ptb--130 {
  padding: 130px 0 !important;
}

.plr--130 {
  padding: 0 130px !important;
}

.pt--130 {
  padding-top: 130px !important;
}

.pb--130 {
  padding-bottom: 130px !important;
}

.pl--130 {
  padding-left: 130px !important;
}

.pr--130 {
  padding-right: 130px !important;
}

.mt--130 {
  margin-top: 130px !important;
}

.mb--130 {
  margin-bottom: 130px !important;
}

.mr--130 {
  margin-right: 130px !important;
}

.ml--130 {
  margin-left: 130px !important;
}

.ptb--135 {
  padding: 135px 0 !important;
}

.plr--135 {
  padding: 0 135px !important;
}

.pt--135 {
  padding-top: 135px !important;
}

.pb--135 {
  padding-bottom: 135px !important;
}

.pl--135 {
  padding-left: 135px !important;
}

.pr--135 {
  padding-right: 135px !important;
}

.mt--135 {
  margin-top: 135px !important;
}

.mb--135 {
  margin-bottom: 135px !important;
}

.mr--135 {
  margin-right: 135px !important;
}

.ml--135 {
  margin-left: 135px !important;
}

.ptb--140 {
  padding: 140px 0 !important;
}

.plr--140 {
  padding: 0 140px !important;
}

.pt--140 {
  padding-top: 140px !important;
}

.pb--140 {
  padding-bottom: 140px !important;
}

.pl--140 {
  padding-left: 140px !important;
}

.pr--140 {
  padding-right: 140px !important;
}

.mt--140 {
  margin-top: 140px !important;
}

.mb--140 {
  margin-bottom: 140px !important;
}

.mr--140 {
  margin-right: 140px !important;
}

.ml--140 {
  margin-left: 140px !important;
}

.ptb--145 {
  padding: 145px 0 !important;
}

.plr--145 {
  padding: 0 145px !important;
}

.pt--145 {
  padding-top: 145px !important;
}

.pb--145 {
  padding-bottom: 145px !important;
}

.pl--145 {
  padding-left: 145px !important;
}

.pr--145 {
  padding-right: 145px !important;
}

.mt--145 {
  margin-top: 145px !important;
}

.mb--145 {
  margin-bottom: 145px !important;
}

.mr--145 {
  margin-right: 145px !important;
}

.ml--145 {
  margin-left: 145px !important;
}

.ptb--150 {
  padding: 150px 0 !important;
}

.plr--150 {
  padding: 0 150px !important;
}

.pt--150 {
  padding-top: 150px !important;
}

.pb--150 {
  padding-bottom: 150px !important;
}

.pl--150 {
  padding-left: 150px !important;
}

.pr--150 {
  padding-right: 150px !important;
}

.mt--150 {
  margin-top: 150px !important;
}

.mb--150 {
  margin-bottom: 150px !important;
}

.mr--150 {
  margin-right: 150px !important;
}

.ml--150 {
  margin-left: 150px !important;
}

.ptb--155 {
  padding: 155px 0 !important;
}

.plr--155 {
  padding: 0 155px !important;
}

.pt--155 {
  padding-top: 155px !important;
}

.pb--155 {
  padding-bottom: 155px !important;
}

.pl--155 {
  padding-left: 155px !important;
}

.pr--155 {
  padding-right: 155px !important;
}

.mt--155 {
  margin-top: 155px !important;
}

.mb--155 {
  margin-bottom: 155px !important;
}

.mr--155 {
  margin-right: 155px !important;
}

.ml--155 {
  margin-left: 155px !important;
}

.ptb--160 {
  padding: 160px 0 !important;
}

.plr--160 {
  padding: 0 160px !important;
}

.pt--160 {
  padding-top: 160px !important;
}

.pb--160 {
  padding-bottom: 160px !important;
}

.pl--160 {
  padding-left: 160px !important;
}

.pr--160 {
  padding-right: 160px !important;
}

.mt--160 {
  margin-top: 160px !important;
}

.mb--160 {
  margin-bottom: 160px !important;
}

.mr--160 {
  margin-right: 160px !important;
}

.ml--160 {
  margin-left: 160px !important;
}

.ptb--165 {
  padding: 165px 0 !important;
}

.plr--165 {
  padding: 0 165px !important;
}

.pt--165 {
  padding-top: 165px !important;
}

.pb--165 {
  padding-bottom: 165px !important;
}

.pl--165 {
  padding-left: 165px !important;
}

.pr--165 {
  padding-right: 165px !important;
}

.mt--165 {
  margin-top: 165px !important;
}

.mb--165 {
  margin-bottom: 165px !important;
}

.mr--165 {
  margin-right: 165px !important;
}

.ml--165 {
  margin-left: 165px !important;
}

.ptb--170 {
  padding: 170px 0 !important;
}

.plr--170 {
  padding: 0 170px !important;
}

.pt--170 {
  padding-top: 170px !important;
}

.pb--170 {
  padding-bottom: 170px !important;
}

.pl--170 {
  padding-left: 170px !important;
}

.pr--170 {
  padding-right: 170px !important;
}

.mt--170 {
  margin-top: 170px !important;
}

.mb--170 {
  margin-bottom: 170px !important;
}

.mr--170 {
  margin-right: 170px !important;
}

.ml--170 {
  margin-left: 170px !important;
}

.ptb--175 {
  padding: 175px 0 !important;
}

.plr--175 {
  padding: 0 175px !important;
}

.pt--175 {
  padding-top: 175px !important;
}

.pb--175 {
  padding-bottom: 175px !important;
}

.pl--175 {
  padding-left: 175px !important;
}

.pr--175 {
  padding-right: 175px !important;
}

.mt--175 {
  margin-top: 175px !important;
}

.mb--175 {
  margin-bottom: 175px !important;
}

.mr--175 {
  margin-right: 175px !important;
}

.ml--175 {
  margin-left: 175px !important;
}

.ptb--180 {
  padding: 180px 0 !important;
}

.plr--180 {
  padding: 0 180px !important;
}

.pt--180 {
  padding-top: 180px !important;
}

.pb--180 {
  padding-bottom: 180px !important;
}

.pl--180 {
  padding-left: 180px !important;
}

.pr--180 {
  padding-right: 180px !important;
}

.mt--180 {
  margin-top: 180px !important;
}

.mb--180 {
  margin-bottom: 180px !important;
}

.mr--180 {
  margin-right: 180px !important;
}

.ml--180 {
  margin-left: 180px !important;
}

.ptb--185 {
  padding: 185px 0 !important;
}

.plr--185 {
  padding: 0 185px !important;
}

.pt--185 {
  padding-top: 185px !important;
}

.pb--185 {
  padding-bottom: 185px !important;
}

.pl--185 {
  padding-left: 185px !important;
}

.pr--185 {
  padding-right: 185px !important;
}

.mt--185 {
  margin-top: 185px !important;
}

.mb--185 {
  margin-bottom: 185px !important;
}

.mr--185 {
  margin-right: 185px !important;
}

.ml--185 {
  margin-left: 185px !important;
}

.ptb--190 {
  padding: 190px 0 !important;
}

.plr--190 {
  padding: 0 190px !important;
}

.pt--190 {
  padding-top: 190px !important;
}

.pb--190 {
  padding-bottom: 190px !important;
}

.pl--190 {
  padding-left: 190px !important;
}

.pr--190 {
  padding-right: 190px !important;
}

.mt--190 {
  margin-top: 190px !important;
}

.mb--190 {
  margin-bottom: 190px !important;
}

.mr--190 {
  margin-right: 190px !important;
}

.ml--190 {
  margin-left: 190px !important;
}

.ptb--195 {
  padding: 195px 0 !important;
}

.plr--195 {
  padding: 0 195px !important;
}

.pt--195 {
  padding-top: 195px !important;
}

.pb--195 {
  padding-bottom: 195px !important;
}

.pl--195 {
  padding-left: 195px !important;
}

.pr--195 {
  padding-right: 195px !important;
}

.mt--195 {
  margin-top: 195px !important;
}

.mb--195 {
  margin-bottom: 195px !important;
}

.mr--195 {
  margin-right: 195px !important;
}

.ml--195 {
  margin-left: 195px !important;
}

.ptb--200 {
  padding: 200px 0 !important;
}

.plr--200 {
  padding: 0 200px !important;
}

.pt--200 {
  padding-top: 200px !important;
}

.pb--200 {
  padding-bottom: 200px !important;
}

.pl--200 {
  padding-left: 200px !important;
}

.pr--200 {
  padding-right: 200px !important;
}

.mt--200 {
  margin-top: 200px !important;
}

.mb--200 {
  margin-bottom: 200px !important;
}

.mr--200 {
  margin-right: 200px !important;
}

.ml--200 {
  margin-left: 200px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .ptb_lp--5 {
    padding: 5px 0;
  }

  .plr_lp--5 {
    padding: 0 5px;
  }

  .pt_lp--5 {
    padding-top: 5px;
  }

  .pb_lp--5 {
    padding-bottom: 5px;
  }

  .pl_lp--5 {
    padding-left: 5px;
  }

  .pr_lp--5 {
    padding-right: 5px;
  }

  .mt_lp--5 {
    margin-top: 5px;
  }

  .mb_lp--5 {
    margin-bottom: 5px;
  }

  .ptb_lp--10 {
    padding: 10px 0;
  }

  .plr_lp--10 {
    padding: 0 10px;
  }

  .pt_lp--10 {
    padding-top: 10px;
  }

  .pb_lp--10 {
    padding-bottom: 10px;
  }

  .pl_lp--10 {
    padding-left: 10px;
  }

  .pr_lp--10 {
    padding-right: 10px;
  }

  .mt_lp--10 {
    margin-top: 10px;
  }

  .mb_lp--10 {
    margin-bottom: 10px;
  }

  .ptb_lp--15 {
    padding: 15px 0;
  }

  .plr_lp--15 {
    padding: 0 15px;
  }

  .pt_lp--15 {
    padding-top: 15px;
  }

  .pb_lp--15 {
    padding-bottom: 15px;
  }

  .pl_lp--15 {
    padding-left: 15px;
  }

  .pr_lp--15 {
    padding-right: 15px;
  }

  .mt_lp--15 {
    margin-top: 15px;
  }

  .mb_lp--15 {
    margin-bottom: 15px;
  }

  .ptb_lp--20 {
    padding: 20px 0;
  }

  .plr_lp--20 {
    padding: 0 20px;
  }

  .pt_lp--20 {
    padding-top: 20px;
  }

  .pb_lp--20 {
    padding-bottom: 20px;
  }

  .pl_lp--20 {
    padding-left: 20px;
  }

  .pr_lp--20 {
    padding-right: 20px;
  }

  .mt_lp--20 {
    margin-top: 20px;
  }

  .mb_lp--20 {
    margin-bottom: 20px;
  }

  .ptb_lp--25 {
    padding: 25px 0;
  }

  .plr_lp--25 {
    padding: 0 25px;
  }

  .pt_lp--25 {
    padding-top: 25px;
  }

  .pb_lp--25 {
    padding-bottom: 25px;
  }

  .pl_lp--25 {
    padding-left: 25px;
  }

  .pr_lp--25 {
    padding-right: 25px;
  }

  .mt_lp--25 {
    margin-top: 25px;
  }

  .mb_lp--25 {
    margin-bottom: 25px;
  }

  .ptb_lp--30 {
    padding: 30px 0;
  }

  .plr_lp--30 {
    padding: 0 30px;
  }

  .pt_lp--30 {
    padding-top: 30px;
  }

  .pb_lp--30 {
    padding-bottom: 30px;
  }

  .pl_lp--30 {
    padding-left: 30px;
  }

  .pr_lp--30 {
    padding-right: 30px;
  }

  .mt_lp--30 {
    margin-top: 30px;
  }

  .mb_lp--30 {
    margin-bottom: 30px;
  }

  .ptb_lp--35 {
    padding: 35px 0;
  }

  .plr_lp--35 {
    padding: 0 35px;
  }

  .pt_lp--35 {
    padding-top: 35px;
  }

  .pb_lp--35 {
    padding-bottom: 35px;
  }

  .pl_lp--35 {
    padding-left: 35px;
  }

  .pr_lp--35 {
    padding-right: 35px;
  }

  .mt_lp--35 {
    margin-top: 35px;
  }

  .mb_lp--35 {
    margin-bottom: 35px;
  }

  .ptb_lp--40 {
    padding: 40px 0;
  }

  .plr_lp--40 {
    padding: 0 40px;
  }

  .pt_lp--40 {
    padding-top: 40px;
  }

  .pb_lp--40 {
    padding-bottom: 40px;
  }

  .pl_lp--40 {
    padding-left: 40px;
  }

  .pr_lp--40 {
    padding-right: 40px;
  }

  .mt_lp--40 {
    margin-top: 40px;
  }

  .mb_lp--40 {
    margin-bottom: 40px;
  }

  .ptb_lp--45 {
    padding: 45px 0;
  }

  .plr_lp--45 {
    padding: 0 45px;
  }

  .pt_lp--45 {
    padding-top: 45px;
  }

  .pb_lp--45 {
    padding-bottom: 45px;
  }

  .pl_lp--45 {
    padding-left: 45px;
  }

  .pr_lp--45 {
    padding-right: 45px;
  }

  .mt_lp--45 {
    margin-top: 45px;
  }

  .mb_lp--45 {
    margin-bottom: 45px;
  }

  .ptb_lp--50 {
    padding: 50px 0;
  }

  .plr_lp--50 {
    padding: 0 50px;
  }

  .pt_lp--50 {
    padding-top: 50px;
  }

  .pb_lp--50 {
    padding-bottom: 50px;
  }

  .pl_lp--50 {
    padding-left: 50px;
  }

  .pr_lp--50 {
    padding-right: 50px;
  }

  .mt_lp--50 {
    margin-top: 50px;
  }

  .mb_lp--50 {
    margin-bottom: 50px;
  }

  .ptb_lp--55 {
    padding: 55px 0;
  }

  .plr_lp--55 {
    padding: 0 55px;
  }

  .pt_lp--55 {
    padding-top: 55px;
  }

  .pb_lp--55 {
    padding-bottom: 55px;
  }

  .pl_lp--55 {
    padding-left: 55px;
  }

  .pr_lp--55 {
    padding-right: 55px;
  }

  .mt_lp--55 {
    margin-top: 55px;
  }

  .mb_lp--55 {
    margin-bottom: 55px;
  }

  .ptb_lp--60 {
    padding: 60px 0;
  }

  .plr_lp--60 {
    padding: 0 60px;
  }

  .pt_lp--60 {
    padding-top: 60px;
  }

  .pb_lp--60 {
    padding-bottom: 60px;
  }

  .pl_lp--60 {
    padding-left: 60px;
  }

  .pr_lp--60 {
    padding-right: 60px;
  }

  .mt_lp--60 {
    margin-top: 60px;
  }

  .mb_lp--60 {
    margin-bottom: 60px;
  }

  .ptb_lp--65 {
    padding: 65px 0;
  }

  .plr_lp--65 {
    padding: 0 65px;
  }

  .pt_lp--65 {
    padding-top: 65px;
  }

  .pb_lp--65 {
    padding-bottom: 65px;
  }

  .pl_lp--65 {
    padding-left: 65px;
  }

  .pr_lp--65 {
    padding-right: 65px;
  }

  .mt_lp--65 {
    margin-top: 65px;
  }

  .mb_lp--65 {
    margin-bottom: 65px;
  }

  .ptb_lp--70 {
    padding: 70px 0;
  }

  .plr_lp--70 {
    padding: 0 70px;
  }

  .pt_lp--70 {
    padding-top: 70px;
  }

  .pb_lp--70 {
    padding-bottom: 70px;
  }

  .pl_lp--70 {
    padding-left: 70px;
  }

  .pr_lp--70 {
    padding-right: 70px;
  }

  .mt_lp--70 {
    margin-top: 70px;
  }

  .mb_lp--70 {
    margin-bottom: 70px;
  }

  .ptb_lp--75 {
    padding: 75px 0;
  }

  .plr_lp--75 {
    padding: 0 75px;
  }

  .pt_lp--75 {
    padding-top: 75px;
  }

  .pb_lp--75 {
    padding-bottom: 75px;
  }

  .pl_lp--75 {
    padding-left: 75px;
  }

  .pr_lp--75 {
    padding-right: 75px;
  }

  .mt_lp--75 {
    margin-top: 75px;
  }

  .mb_lp--75 {
    margin-bottom: 75px;
  }

  .ptb_lp--80 {
    padding: 80px 0;
  }

  .plr_lp--80 {
    padding: 0 80px;
  }

  .pt_lp--80 {
    padding-top: 80px;
  }

  .pb_lp--80 {
    padding-bottom: 80px;
  }

  .pl_lp--80 {
    padding-left: 80px;
  }

  .pr_lp--80 {
    padding-right: 80px;
  }

  .mt_lp--80 {
    margin-top: 80px;
  }

  .mb_lp--80 {
    margin-bottom: 80px;
  }

  .ptb_lp--85 {
    padding: 85px 0;
  }

  .plr_lp--85 {
    padding: 0 85px;
  }

  .pt_lp--85 {
    padding-top: 85px;
  }

  .pb_lp--85 {
    padding-bottom: 85px;
  }

  .pl_lp--85 {
    padding-left: 85px;
  }

  .pr_lp--85 {
    padding-right: 85px;
  }

  .mt_lp--85 {
    margin-top: 85px;
  }

  .mb_lp--85 {
    margin-bottom: 85px;
  }

  .ptb_lp--90 {
    padding: 90px 0;
  }

  .plr_lp--90 {
    padding: 0 90px;
  }

  .pt_lp--90 {
    padding-top: 90px;
  }

  .pb_lp--90 {
    padding-bottom: 90px;
  }

  .pl_lp--90 {
    padding-left: 90px;
  }

  .pr_lp--90 {
    padding-right: 90px;
  }

  .mt_lp--90 {
    margin-top: 90px;
  }

  .mb_lp--90 {
    margin-bottom: 90px;
  }

  .ptb_lp--95 {
    padding: 95px 0;
  }

  .plr_lp--95 {
    padding: 0 95px;
  }

  .pt_lp--95 {
    padding-top: 95px;
  }

  .pb_lp--95 {
    padding-bottom: 95px;
  }

  .pl_lp--95 {
    padding-left: 95px;
  }

  .pr_lp--95 {
    padding-right: 95px;
  }

  .mt_lp--95 {
    margin-top: 95px;
  }

  .mb_lp--95 {
    margin-bottom: 95px;
  }

  .ptb_lp--100 {
    padding: 100px 0;
  }

  .plr_lp--100 {
    padding: 0 100px;
  }

  .pt_lp--100 {
    padding-top: 100px;
  }

  .pb_lp--100 {
    padding-bottom: 100px;
  }

  .pl_lp--100 {
    padding-left: 100px;
  }

  .pr_lp--100 {
    padding-right: 100px;
  }

  .mt_lp--100 {
    margin-top: 100px;
  }

  .mb_lp--100 {
    margin-bottom: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ptb_lg--5 {
    padding: 5px 0 !important;
  }

  .plr_lg--5 {
    padding: 0 5px !important;
  }

  .pt_lg--5 {
    padding-top: 5px !important;
  }

  .pb_lg--5 {
    padding-bottom: 5px !important;
  }

  .pl_lg--5 {
    padding-left: 5px !important;
  }

  .pr_lg--5 {
    padding-right: 5px !important;
  }

  .mt_lg--5 {
    margin-top: 5px !important;
  }

  .mb_lg--5 {
    margin-bottom: 5px !important;
  }

  .ml_lg--5 {
    margin-left: 5px !important;
  }

  .ptb_lg--10 {
    padding: 10px 0 !important;
  }

  .plr_lg--10 {
    padding: 0 10px !important;
  }

  .pt_lg--10 {
    padding-top: 10px !important;
  }

  .pb_lg--10 {
    padding-bottom: 10px !important;
  }

  .pl_lg--10 {
    padding-left: 10px !important;
  }

  .pr_lg--10 {
    padding-right: 10px !important;
  }

  .mt_lg--10 {
    margin-top: 10px !important;
  }

  .mb_lg--10 {
    margin-bottom: 10px !important;
  }

  .ml_lg--10 {
    margin-left: 10px !important;
  }

  .ptb_lg--15 {
    padding: 15px 0 !important;
  }

  .plr_lg--15 {
    padding: 0 15px !important;
  }

  .pt_lg--15 {
    padding-top: 15px !important;
  }

  .pb_lg--15 {
    padding-bottom: 15px !important;
  }

  .pl_lg--15 {
    padding-left: 15px !important;
  }

  .pr_lg--15 {
    padding-right: 15px !important;
  }

  .mt_lg--15 {
    margin-top: 15px !important;
  }

  .mb_lg--15 {
    margin-bottom: 15px !important;
  }

  .ml_lg--15 {
    margin-left: 15px !important;
  }

  .ptb_lg--20 {
    padding: 20px 0 !important;
  }

  .plr_lg--20 {
    padding: 0 20px !important;
  }

  .pt_lg--20 {
    padding-top: 20px !important;
  }

  .pb_lg--20 {
    padding-bottom: 20px !important;
  }

  .pl_lg--20 {
    padding-left: 20px !important;
  }

  .pr_lg--20 {
    padding-right: 20px !important;
  }

  .mt_lg--20 {
    margin-top: 20px !important;
  }

  .mb_lg--20 {
    margin-bottom: 20px !important;
  }

  .ml_lg--20 {
    margin-left: 20px !important;
  }

  .ptb_lg--25 {
    padding: 25px 0 !important;
  }

  .plr_lg--25 {
    padding: 0 25px !important;
  }

  .pt_lg--25 {
    padding-top: 25px !important;
  }

  .pb_lg--25 {
    padding-bottom: 25px !important;
  }

  .pl_lg--25 {
    padding-left: 25px !important;
  }

  .pr_lg--25 {
    padding-right: 25px !important;
  }

  .mt_lg--25 {
    margin-top: 25px !important;
  }

  .mb_lg--25 {
    margin-bottom: 25px !important;
  }

  .ml_lg--25 {
    margin-left: 25px !important;
  }

  .ptb_lg--30 {
    padding: 30px 0 !important;
  }

  .plr_lg--30 {
    padding: 0 30px !important;
  }

  .pt_lg--30 {
    padding-top: 30px !important;
  }

  .pb_lg--30 {
    padding-bottom: 30px !important;
  }

  .pl_lg--30 {
    padding-left: 30px !important;
  }

  .pr_lg--30 {
    padding-right: 30px !important;
  }

  .mt_lg--30 {
    margin-top: 30px !important;
  }

  .mb_lg--30 {
    margin-bottom: 30px !important;
  }

  .ml_lg--30 {
    margin-left: 30px !important;
  }

  .ptb_lg--35 {
    padding: 35px 0 !important;
  }

  .plr_lg--35 {
    padding: 0 35px !important;
  }

  .pt_lg--35 {
    padding-top: 35px !important;
  }

  .pb_lg--35 {
    padding-bottom: 35px !important;
  }

  .pl_lg--35 {
    padding-left: 35px !important;
  }

  .pr_lg--35 {
    padding-right: 35px !important;
  }

  .mt_lg--35 {
    margin-top: 35px !important;
  }

  .mb_lg--35 {
    margin-bottom: 35px !important;
  }

  .ml_lg--35 {
    margin-left: 35px !important;
  }

  .ptb_lg--40 {
    padding: 40px 0 !important;
  }

  .plr_lg--40 {
    padding: 0 40px !important;
  }

  .pt_lg--40 {
    padding-top: 40px !important;
  }

  .pb_lg--40 {
    padding-bottom: 40px !important;
  }

  .pl_lg--40 {
    padding-left: 40px !important;
  }

  .pr_lg--40 {
    padding-right: 40px !important;
  }

  .mt_lg--40 {
    margin-top: 40px !important;
  }

  .mb_lg--40 {
    margin-bottom: 40px !important;
  }

  .ml_lg--40 {
    margin-left: 40px !important;
  }

  .ptb_lg--45 {
    padding: 45px 0 !important;
  }

  .plr_lg--45 {
    padding: 0 45px !important;
  }

  .pt_lg--45 {
    padding-top: 45px !important;
  }

  .pb_lg--45 {
    padding-bottom: 45px !important;
  }

  .pl_lg--45 {
    padding-left: 45px !important;
  }

  .pr_lg--45 {
    padding-right: 45px !important;
  }

  .mt_lg--45 {
    margin-top: 45px !important;
  }

  .mb_lg--45 {
    margin-bottom: 45px !important;
  }

  .ml_lg--45 {
    margin-left: 45px !important;
  }

  .ptb_lg--50 {
    padding: 50px 0 !important;
  }

  .plr_lg--50 {
    padding: 0 50px !important;
  }

  .pt_lg--50 {
    padding-top: 50px !important;
  }

  .pb_lg--50 {
    padding-bottom: 50px !important;
  }

  .pl_lg--50 {
    padding-left: 50px !important;
  }

  .pr_lg--50 {
    padding-right: 50px !important;
  }

  .mt_lg--50 {
    margin-top: 50px !important;
  }

  .mb_lg--50 {
    margin-bottom: 50px !important;
  }

  .ml_lg--50 {
    margin-left: 50px !important;
  }

  .ptb_lg--55 {
    padding: 55px 0 !important;
  }

  .plr_lg--55 {
    padding: 0 55px !important;
  }

  .pt_lg--55 {
    padding-top: 55px !important;
  }

  .pb_lg--55 {
    padding-bottom: 55px !important;
  }

  .pl_lg--55 {
    padding-left: 55px !important;
  }

  .pr_lg--55 {
    padding-right: 55px !important;
  }

  .mt_lg--55 {
    margin-top: 55px !important;
  }

  .mb_lg--55 {
    margin-bottom: 55px !important;
  }

  .ml_lg--55 {
    margin-left: 55px !important;
  }

  .ptb_lg--60 {
    padding: 60px 0 !important;
  }

  .plr_lg--60 {
    padding: 0 60px !important;
  }

  .pt_lg--60 {
    padding-top: 60px !important;
  }

  .pb_lg--60 {
    padding-bottom: 60px !important;
  }

  .pl_lg--60 {
    padding-left: 60px !important;
  }

  .pr_lg--60 {
    padding-right: 60px !important;
  }

  .mt_lg--60 {
    margin-top: 60px !important;
  }

  .mb_lg--60 {
    margin-bottom: 60px !important;
  }

  .ml_lg--60 {
    margin-left: 60px !important;
  }

  .ptb_lg--65 {
    padding: 65px 0 !important;
  }

  .plr_lg--65 {
    padding: 0 65px !important;
  }

  .pt_lg--65 {
    padding-top: 65px !important;
  }

  .pb_lg--65 {
    padding-bottom: 65px !important;
  }

  .pl_lg--65 {
    padding-left: 65px !important;
  }

  .pr_lg--65 {
    padding-right: 65px !important;
  }

  .mt_lg--65 {
    margin-top: 65px !important;
  }

  .mb_lg--65 {
    margin-bottom: 65px !important;
  }

  .ml_lg--65 {
    margin-left: 65px !important;
  }

  .ptb_lg--70 {
    padding: 70px 0 !important;
  }

  .plr_lg--70 {
    padding: 0 70px !important;
  }

  .pt_lg--70 {
    padding-top: 70px !important;
  }

  .pb_lg--70 {
    padding-bottom: 70px !important;
  }

  .pl_lg--70 {
    padding-left: 70px !important;
  }

  .pr_lg--70 {
    padding-right: 70px !important;
  }

  .mt_lg--70 {
    margin-top: 70px !important;
  }

  .mb_lg--70 {
    margin-bottom: 70px !important;
  }

  .ml_lg--70 {
    margin-left: 70px !important;
  }

  .ptb_lg--75 {
    padding: 75px 0 !important;
  }

  .plr_lg--75 {
    padding: 0 75px !important;
  }

  .pt_lg--75 {
    padding-top: 75px !important;
  }

  .pb_lg--75 {
    padding-bottom: 75px !important;
  }

  .pl_lg--75 {
    padding-left: 75px !important;
  }

  .pr_lg--75 {
    padding-right: 75px !important;
  }

  .mt_lg--75 {
    margin-top: 75px !important;
  }

  .mb_lg--75 {
    margin-bottom: 75px !important;
  }

  .ml_lg--75 {
    margin-left: 75px !important;
  }

  .ptb_lg--80 {
    padding: 80px 0 !important;
  }

  .plr_lg--80 {
    padding: 0 80px !important;
  }

  .pt_lg--80 {
    padding-top: 80px !important;
  }

  .pb_lg--80 {
    padding-bottom: 80px !important;
  }

  .pl_lg--80 {
    padding-left: 80px !important;
  }

  .pr_lg--80 {
    padding-right: 80px !important;
  }

  .mt_lg--80 {
    margin-top: 80px !important;
  }

  .mb_lg--80 {
    margin-bottom: 80px !important;
  }

  .ml_lg--80 {
    margin-left: 80px !important;
  }

  .ptb_lg--85 {
    padding: 85px 0 !important;
  }

  .plr_lg--85 {
    padding: 0 85px !important;
  }

  .pt_lg--85 {
    padding-top: 85px !important;
  }

  .pb_lg--85 {
    padding-bottom: 85px !important;
  }

  .pl_lg--85 {
    padding-left: 85px !important;
  }

  .pr_lg--85 {
    padding-right: 85px !important;
  }

  .mt_lg--85 {
    margin-top: 85px !important;
  }

  .mb_lg--85 {
    margin-bottom: 85px !important;
  }

  .ml_lg--85 {
    margin-left: 85px !important;
  }

  .ptb_lg--90 {
    padding: 90px 0 !important;
  }

  .plr_lg--90 {
    padding: 0 90px !important;
  }

  .pt_lg--90 {
    padding-top: 90px !important;
  }

  .pb_lg--90 {
    padding-bottom: 90px !important;
  }

  .pl_lg--90 {
    padding-left: 90px !important;
  }

  .pr_lg--90 {
    padding-right: 90px !important;
  }

  .mt_lg--90 {
    margin-top: 90px !important;
  }

  .mb_lg--90 {
    margin-bottom: 90px !important;
  }

  .ml_lg--90 {
    margin-left: 90px !important;
  }

  .ptb_lg--95 {
    padding: 95px 0 !important;
  }

  .plr_lg--95 {
    padding: 0 95px !important;
  }

  .pt_lg--95 {
    padding-top: 95px !important;
  }

  .pb_lg--95 {
    padding-bottom: 95px !important;
  }

  .pl_lg--95 {
    padding-left: 95px !important;
  }

  .pr_lg--95 {
    padding-right: 95px !important;
  }

  .mt_lg--95 {
    margin-top: 95px !important;
  }

  .mb_lg--95 {
    margin-bottom: 95px !important;
  }

  .ml_lg--95 {
    margin-left: 95px !important;
  }

  .ptb_lg--100 {
    padding: 100px 0 !important;
  }

  .plr_lg--100 {
    padding: 0 100px !important;
  }

  .pt_lg--100 {
    padding-top: 100px !important;
  }

  .pb_lg--100 {
    padding-bottom: 100px !important;
  }

  .pl_lg--100 {
    padding-left: 100px !important;
  }

  .pr_lg--100 {
    padding-right: 100px !important;
  }

  .mt_lg--100 {
    margin-top: 100px !important;
  }

  .mb_lg--100 {
    margin-bottom: 100px !important;
  }

  .ml_lg--100 {
    margin-left: 100px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb_md--0 {
    padding: 0 !important;
  }

  .pl_md--0 {
    padding-left: 0 !important;
  }

  .pr_md--0 {
    padding-right: 0 !important;
  }

  .pt_md--0 {
    padding-top: 0 !important;
  }

  .pb_md--0 {
    padding-bottom: 0 !important;
  }

  .mr_md--0 {
    margin-right: 0 !important;
  }

  .ml_md--0 {
    margin-left: 0 !important;
  }

  .mt_md--0 {
    margin-top: 0 !important;
  }

  .mb_md--0 {
    margin-bottom: 0 !important;
  }

  .ptb_md--250 {
    padding: 250px 0 !important;
  }

  .ptb_md--5 {
    padding: 5px 0 !important;
  }

  .plr_md--5 {
    padding: 0 5px !important;
  }

  .pt_md--5 {
    padding-top: 5px !important;
  }

  .pb_md--5 {
    padding-bottom: 5px !important;
  }

  .pl_md--5 {
    padding-left: 5px !important;
  }

  .pr_md--5 {
    padding-right: 5px !important;
  }

  .mt_md--5 {
    margin-top: 5px !important;
  }

  .mb_md--5 {
    margin-bottom: 5px !important;
  }

  .ptb_md--10 {
    padding: 10px 0 !important;
  }

  .plr_md--10 {
    padding: 0 10px !important;
  }

  .pt_md--10 {
    padding-top: 10px !important;
  }

  .pb_md--10 {
    padding-bottom: 10px !important;
  }

  .pl_md--10 {
    padding-left: 10px !important;
  }

  .pr_md--10 {
    padding-right: 10px !important;
  }

  .mt_md--10 {
    margin-top: 10px !important;
  }

  .mb_md--10 {
    margin-bottom: 10px !important;
  }

  .ptb_md--15 {
    padding: 15px 0 !important;
  }

  .plr_md--15 {
    padding: 0 15px !important;
  }

  .pt_md--15 {
    padding-top: 15px !important;
  }

  .pb_md--15 {
    padding-bottom: 15px !important;
  }

  .pl_md--15 {
    padding-left: 15px !important;
  }

  .pr_md--15 {
    padding-right: 15px !important;
  }

  .mt_md--15 {
    margin-top: 15px !important;
  }

  .mb_md--15 {
    margin-bottom: 15px !important;
  }

  .ptb_md--20 {
    padding: 20px 0 !important;
  }

  .plr_md--20 {
    padding: 0 20px !important;
  }

  .pt_md--20 {
    padding-top: 20px !important;
  }

  .pb_md--20 {
    padding-bottom: 20px !important;
  }

  .pl_md--20 {
    padding-left: 20px !important;
  }

  .pr_md--20 {
    padding-right: 20px !important;
  }

  .mt_md--20 {
    margin-top: 20px !important;
  }

  .mb_md--20 {
    margin-bottom: 20px !important;
  }

  .ptb_md--25 {
    padding: 25px 0 !important;
  }

  .plr_md--25 {
    padding: 0 25px !important;
  }

  .pt_md--25 {
    padding-top: 25px !important;
  }

  .pb_md--25 {
    padding-bottom: 25px !important;
  }

  .pl_md--25 {
    padding-left: 25px !important;
  }

  .pr_md--25 {
    padding-right: 25px !important;
  }

  .mt_md--25 {
    margin-top: 25px !important;
  }

  .mb_md--25 {
    margin-bottom: 25px !important;
  }

  .ptb_md--30 {
    padding: 30px 0 !important;
  }

  .plr_md--30 {
    padding: 0 30px !important;
  }

  .pt_md--30 {
    padding-top: 30px !important;
  }

  .pb_md--30 {
    padding-bottom: 30px !important;
  }

  .pl_md--30 {
    padding-left: 30px !important;
  }

  .pr_md--30 {
    padding-right: 30px !important;
  }

  .mt_md--30 {
    margin-top: 30px !important;
  }

  .mb_md--30 {
    margin-bottom: 30px !important;
  }

  .ptb_md--35 {
    padding: 35px 0 !important;
  }

  .plr_md--35 {
    padding: 0 35px !important;
  }

  .pt_md--35 {
    padding-top: 35px !important;
  }

  .pb_md--35 {
    padding-bottom: 35px !important;
  }

  .pl_md--35 {
    padding-left: 35px !important;
  }

  .pr_md--35 {
    padding-right: 35px !important;
  }

  .mt_md--35 {
    margin-top: 35px !important;
  }

  .mb_md--35 {
    margin-bottom: 35px !important;
  }

  .ptb_md--40 {
    padding: 40px 0 !important;
  }

  .plr_md--40 {
    padding: 0 40px !important;
  }

  .pt_md--40 {
    padding-top: 40px !important;
  }

  .pb_md--40 {
    padding-bottom: 40px !important;
  }

  .pl_md--40 {
    padding-left: 40px !important;
  }

  .pr_md--40 {
    padding-right: 40px !important;
  }

  .mt_md--40 {
    margin-top: 40px !important;
  }

  .mb_md--40 {
    margin-bottom: 40px !important;
  }

  .ptb_md--45 {
    padding: 45px 0 !important;
  }

  .plr_md--45 {
    padding: 0 45px !important;
  }

  .pt_md--45 {
    padding-top: 45px !important;
  }

  .pb_md--45 {
    padding-bottom: 45px !important;
  }

  .pl_md--45 {
    padding-left: 45px !important;
  }

  .pr_md--45 {
    padding-right: 45px !important;
  }

  .mt_md--45 {
    margin-top: 45px !important;
  }

  .mb_md--45 {
    margin-bottom: 45px !important;
  }

  .ptb_md--50 {
    padding: 50px 0 !important;
  }

  .plr_md--50 {
    padding: 0 50px !important;
  }

  .pt_md--50 {
    padding-top: 50px !important;
  }

  .pb_md--50 {
    padding-bottom: 50px !important;
  }

  .pl_md--50 {
    padding-left: 50px !important;
  }

  .pr_md--50 {
    padding-right: 50px !important;
  }

  .mt_md--50 {
    margin-top: 50px !important;
  }

  .mb_md--50 {
    margin-bottom: 50px !important;
  }

  .ptb_md--55 {
    padding: 55px 0 !important;
  }

  .plr_md--55 {
    padding: 0 55px !important;
  }

  .pt_md--55 {
    padding-top: 55px !important;
  }

  .pb_md--55 {
    padding-bottom: 55px !important;
  }

  .pl_md--55 {
    padding-left: 55px !important;
  }

  .pr_md--55 {
    padding-right: 55px !important;
  }

  .mt_md--55 {
    margin-top: 55px !important;
  }

  .mb_md--55 {
    margin-bottom: 55px !important;
  }

  .ptb_md--60 {
    padding: 60px 0 !important;
  }

  .plr_md--60 {
    padding: 0 60px !important;
  }

  .pt_md--60 {
    padding-top: 60px !important;
  }

  .pb_md--60 {
    padding-bottom: 60px !important;
  }

  .pl_md--60 {
    padding-left: 60px !important;
  }

  .pr_md--60 {
    padding-right: 60px !important;
  }

  .mt_md--60 {
    margin-top: 60px !important;
  }

  .mb_md--60 {
    margin-bottom: 60px !important;
  }

  .ptb_md--65 {
    padding: 65px 0 !important;
  }

  .plr_md--65 {
    padding: 0 65px !important;
  }

  .pt_md--65 {
    padding-top: 65px !important;
  }

  .pb_md--65 {
    padding-bottom: 65px !important;
  }

  .pl_md--65 {
    padding-left: 65px !important;
  }

  .pr_md--65 {
    padding-right: 65px !important;
  }

  .mt_md--65 {
    margin-top: 65px !important;
  }

  .mb_md--65 {
    margin-bottom: 65px !important;
  }

  .ptb_md--70 {
    padding: 70px 0 !important;
  }

  .plr_md--70 {
    padding: 0 70px !important;
  }

  .pt_md--70 {
    padding-top: 70px !important;
  }

  .pb_md--70 {
    padding-bottom: 70px !important;
  }

  .pl_md--70 {
    padding-left: 70px !important;
  }

  .pr_md--70 {
    padding-right: 70px !important;
  }

  .mt_md--70 {
    margin-top: 70px !important;
  }

  .mb_md--70 {
    margin-bottom: 70px !important;
  }

  .ptb_md--75 {
    padding: 75px 0 !important;
  }

  .plr_md--75 {
    padding: 0 75px !important;
  }

  .pt_md--75 {
    padding-top: 75px !important;
  }

  .pb_md--75 {
    padding-bottom: 75px !important;
  }

  .pl_md--75 {
    padding-left: 75px !important;
  }

  .pr_md--75 {
    padding-right: 75px !important;
  }

  .mt_md--75 {
    margin-top: 75px !important;
  }

  .mb_md--75 {
    margin-bottom: 75px !important;
  }

  .ptb_md--80 {
    padding: 80px 0 !important;
  }

  .plr_md--80 {
    padding: 0 80px !important;
  }

  .pt_md--80 {
    padding-top: 80px !important;
  }

  .pb_md--80 {
    padding-bottom: 80px !important;
  }

  .pl_md--80 {
    padding-left: 80px !important;
  }

  .pr_md--80 {
    padding-right: 80px !important;
  }

  .mt_md--80 {
    margin-top: 80px !important;
  }

  .mb_md--80 {
    margin-bottom: 80px !important;
  }

  .ptb_md--85 {
    padding: 85px 0 !important;
  }

  .plr_md--85 {
    padding: 0 85px !important;
  }

  .pt_md--85 {
    padding-top: 85px !important;
  }

  .pb_md--85 {
    padding-bottom: 85px !important;
  }

  .pl_md--85 {
    padding-left: 85px !important;
  }

  .pr_md--85 {
    padding-right: 85px !important;
  }

  .mt_md--85 {
    margin-top: 85px !important;
  }

  .mb_md--85 {
    margin-bottom: 85px !important;
  }

  .ptb_md--90 {
    padding: 90px 0 !important;
  }

  .plr_md--90 {
    padding: 0 90px !important;
  }

  .pt_md--90 {
    padding-top: 90px !important;
  }

  .pb_md--90 {
    padding-bottom: 90px !important;
  }

  .pl_md--90 {
    padding-left: 90px !important;
  }

  .pr_md--90 {
    padding-right: 90px !important;
  }

  .mt_md--90 {
    margin-top: 90px !important;
  }

  .mb_md--90 {
    margin-bottom: 90px !important;
  }

  .ptb_md--95 {
    padding: 95px 0 !important;
  }

  .plr_md--95 {
    padding: 0 95px !important;
  }

  .pt_md--95 {
    padding-top: 95px !important;
  }

  .pb_md--95 {
    padding-bottom: 95px !important;
  }

  .pl_md--95 {
    padding-left: 95px !important;
  }

  .pr_md--95 {
    padding-right: 95px !important;
  }

  .mt_md--95 {
    margin-top: 95px !important;
  }

  .mb_md--95 {
    margin-bottom: 95px !important;
  }

  .ptb_md--100 {
    padding: 100px 0 !important;
  }

  .plr_md--100 {
    padding: 0 100px !important;
  }

  .pt_md--100 {
    padding-top: 100px !important;
  }

  .pb_md--100 {
    padding-bottom: 100px !important;
  }

  .pl_md--100 {
    padding-left: 100px !important;
  }

  .pr_md--100 {
    padding-right: 100px !important;
  }

  .mt_md--100 {
    margin-top: 100px !important;
  }

  .mb_md--100 {
    margin-bottom: 100px !important;
  }
}

@media only screen and (max-width: 767px) {
  .ptb_sm--250 {
    padding: 250px 0 !important;
  }

  .ptb_sm--0 {
    padding: 0 !important;
  }

  .pl_sm--0 {
    padding-left: 0 !important;
  }

  .pr_sm--0 {
    padding-right: 0 !important;
  }

  .pt_sm--0 {
    padding-top: 0 !important;
  }

  .pb_sm--0 {
    padding-bottom: 0 !important;
  }

  .mr_sm--0 {
    margin-right: 0 !important;
  }

  .ml_sm--0 {
    margin-left: 0 !important;
  }

  .mt_sm--0 {
    margin-top: 0 !important;
  }

  .mb_sm--0 {
    margin-bottom: 0 !important;
  }

  .pt_sm--150 {
    padding-top: 150px !important;
  }

  .pb_sm--110 {
    padding-bottom: 110px !important;
  }

  .ptb_sm--5 {
    padding: 5px 0 !important;
  }

  .plr_sm--5 {
    padding: 0 5px !important;
  }

  .pt_sm--5 {
    padding-top: 5px !important;
  }

  .pb_sm--5 {
    padding-bottom: 5px !important;
  }

  .pl_sm--5 {
    padding-left: 5px !important;
  }

  .pr_sm--5 {
    padding-right: 5px !important;
  }

  .mt_sm--5 {
    margin-top: 5px !important;
  }

  .ml_sm--5 {
    margin-left: 5px !important;
  }

  .mr_sm--5 {
    margin-right: 5px !important;
  }

  .mb_sm--5 {
    margin-bottom: 5px !important;
  }

  .ptb_sm--10 {
    padding: 10px 0 !important;
  }

  .plr_sm--10 {
    padding: 0 10px !important;
  }

  .pt_sm--10 {
    padding-top: 10px !important;
  }

  .pb_sm--10 {
    padding-bottom: 10px !important;
  }

  .pl_sm--10 {
    padding-left: 10px !important;
  }

  .pr_sm--10 {
    padding-right: 10px !important;
  }

  .mt_sm--10 {
    margin-top: 10px !important;
  }

  .ml_sm--10 {
    margin-left: 10px !important;
  }

  .mr_sm--10 {
    margin-right: 10px !important;
  }

  .mb_sm--10 {
    margin-bottom: 10px !important;
  }

  .ptb_sm--15 {
    padding: 15px 0 !important;
  }

  .plr_sm--15 {
    padding: 0 15px !important;
  }

  .pt_sm--15 {
    padding-top: 15px !important;
  }

  .pb_sm--15 {
    padding-bottom: 15px !important;
  }

  .pl_sm--15 {
    padding-left: 15px !important;
  }

  .pr_sm--15 {
    padding-right: 15px !important;
  }

  .mt_sm--15 {
    margin-top: 15px !important;
  }

  .ml_sm--15 {
    margin-left: 15px !important;
  }

  .mr_sm--15 {
    margin-right: 15px !important;
  }

  .mb_sm--15 {
    margin-bottom: 15px !important;
  }

  .ptb_sm--20 {
    padding: 20px 0 !important;
  }

  .plr_sm--20 {
    padding: 0 20px !important;
  }

  .pt_sm--20 {
    padding-top: 20px !important;
  }

  .pb_sm--20 {
    padding-bottom: 20px !important;
  }

  .pl_sm--20 {
    padding-left: 20px !important;
  }

  .pr_sm--20 {
    padding-right: 20px !important;
  }

  .mt_sm--20 {
    margin-top: 20px !important;
  }

  .ml_sm--20 {
    margin-left: 20px !important;
  }

  .mr_sm--20 {
    margin-right: 20px !important;
  }

  .mb_sm--20 {
    margin-bottom: 20px !important;
  }

  .ptb_sm--25 {
    padding: 25px 0 !important;
  }

  .plr_sm--25 {
    padding: 0 25px !important;
  }

  .pt_sm--25 {
    padding-top: 25px !important;
  }

  .pb_sm--25 {
    padding-bottom: 25px !important;
  }

  .pl_sm--25 {
    padding-left: 25px !important;
  }

  .pr_sm--25 {
    padding-right: 25px !important;
  }

  .mt_sm--25 {
    margin-top: 25px !important;
  }

  .ml_sm--25 {
    margin-left: 25px !important;
  }

  .mr_sm--25 {
    margin-right: 25px !important;
  }

  .mb_sm--25 {
    margin-bottom: 25px !important;
  }

  .ptb_sm--30 {
    padding: 30px 0 !important;
  }

  .plr_sm--30 {
    padding: 0 30px !important;
  }

  .pt_sm--30 {
    padding-top: 30px !important;
  }

  .pb_sm--30 {
    padding-bottom: 30px !important;
  }

  .pl_sm--30 {
    padding-left: 30px !important;
  }

  .pr_sm--30 {
    padding-right: 30px !important;
  }

  .mt_sm--30 {
    margin-top: 30px !important;
  }

  .ml_sm--30 {
    margin-left: 30px !important;
  }

  .mr_sm--30 {
    margin-right: 30px !important;
  }

  .mb_sm--30 {
    margin-bottom: 30px !important;
  }

  .ptb_sm--35 {
    padding: 35px 0 !important;
  }

  .plr_sm--35 {
    padding: 0 35px !important;
  }

  .pt_sm--35 {
    padding-top: 35px !important;
  }

  .pb_sm--35 {
    padding-bottom: 35px !important;
  }

  .pl_sm--35 {
    padding-left: 35px !important;
  }

  .pr_sm--35 {
    padding-right: 35px !important;
  }

  .mt_sm--35 {
    margin-top: 35px !important;
  }

  .ml_sm--35 {
    margin-left: 35px !important;
  }

  .mr_sm--35 {
    margin-right: 35px !important;
  }

  .mb_sm--35 {
    margin-bottom: 35px !important;
  }

  .ptb_sm--40 {
    padding: 40px 0 !important;
  }

  .plr_sm--40 {
    padding: 0 40px !important;
  }

  .pt_sm--40 {
    padding-top: 40px !important;
  }

  .pb_sm--40 {
    padding-bottom: 40px !important;
  }

  .pl_sm--40 {
    padding-left: 40px !important;
  }

  .pr_sm--40 {
    padding-right: 40px !important;
  }

  .mt_sm--40 {
    margin-top: 40px !important;
  }

  .ml_sm--40 {
    margin-left: 40px !important;
  }

  .mr_sm--40 {
    margin-right: 40px !important;
  }

  .mb_sm--40 {
    margin-bottom: 40px !important;
  }

  .ptb_sm--45 {
    padding: 45px 0 !important;
  }

  .plr_sm--45 {
    padding: 0 45px !important;
  }

  .pt_sm--45 {
    padding-top: 45px !important;
  }

  .pb_sm--45 {
    padding-bottom: 45px !important;
  }

  .pl_sm--45 {
    padding-left: 45px !important;
  }

  .pr_sm--45 {
    padding-right: 45px !important;
  }

  .mt_sm--45 {
    margin-top: 45px !important;
  }

  .ml_sm--45 {
    margin-left: 45px !important;
  }

  .mr_sm--45 {
    margin-right: 45px !important;
  }

  .mb_sm--45 {
    margin-bottom: 45px !important;
  }

  .ptb_sm--50 {
    padding: 50px 0 !important;
  }

  .plr_sm--50 {
    padding: 0 50px !important;
  }

  .pt_sm--50 {
    padding-top: 50px !important;
  }

  .pb_sm--50 {
    padding-bottom: 50px !important;
  }

  .pl_sm--50 {
    padding-left: 50px !important;
  }

  .pr_sm--50 {
    padding-right: 50px !important;
  }

  .mt_sm--50 {
    margin-top: 50px !important;
  }

  .ml_sm--50 {
    margin-left: 50px !important;
  }

  .mr_sm--50 {
    margin-right: 50px !important;
  }

  .mb_sm--50 {
    margin-bottom: 50px !important;
  }

  .ptb_sm--55 {
    padding: 55px 0 !important;
  }

  .plr_sm--55 {
    padding: 0 55px !important;
  }

  .pt_sm--55 {
    padding-top: 55px !important;
  }

  .pb_sm--55 {
    padding-bottom: 55px !important;
  }

  .pl_sm--55 {
    padding-left: 55px !important;
  }

  .pr_sm--55 {
    padding-right: 55px !important;
  }

  .mt_sm--55 {
    margin-top: 55px !important;
  }

  .ml_sm--55 {
    margin-left: 55px !important;
  }

  .mr_sm--55 {
    margin-right: 55px !important;
  }

  .mb_sm--55 {
    margin-bottom: 55px !important;
  }

  .ptb_sm--60 {
    padding: 60px 0 !important;
  }

  .plr_sm--60 {
    padding: 0 60px !important;
  }

  .pt_sm--60 {
    padding-top: 60px !important;
  }

  .pb_sm--60 {
    padding-bottom: 60px !important;
  }

  .pl_sm--60 {
    padding-left: 60px !important;
  }

  .pr_sm--60 {
    padding-right: 60px !important;
  }

  .mt_sm--60 {
    margin-top: 60px !important;
  }

  .ml_sm--60 {
    margin-left: 60px !important;
  }

  .mr_sm--60 {
    margin-right: 60px !important;
  }

  .mb_sm--60 {
    margin-bottom: 60px !important;
  }

  .ptb_sm--65 {
    padding: 65px 0 !important;
  }

  .plr_sm--65 {
    padding: 0 65px !important;
  }

  .pt_sm--65 {
    padding-top: 65px !important;
  }

  .pb_sm--65 {
    padding-bottom: 65px !important;
  }

  .pl_sm--65 {
    padding-left: 65px !important;
  }

  .pr_sm--65 {
    padding-right: 65px !important;
  }

  .mt_sm--65 {
    margin-top: 65px !important;
  }

  .ml_sm--65 {
    margin-left: 65px !important;
  }

  .mr_sm--65 {
    margin-right: 65px !important;
  }

  .mb_sm--65 {
    margin-bottom: 65px !important;
  }

  .ptb_sm--70 {
    padding: 70px 0 !important;
  }

  .plr_sm--70 {
    padding: 0 70px !important;
  }

  .pt_sm--70 {
    padding-top: 70px !important;
  }

  .pb_sm--70 {
    padding-bottom: 70px !important;
  }

  .pl_sm--70 {
    padding-left: 70px !important;
  }

  .pr_sm--70 {
    padding-right: 70px !important;
  }

  .mt_sm--70 {
    margin-top: 70px !important;
  }

  .ml_sm--70 {
    margin-left: 70px !important;
  }

  .mr_sm--70 {
    margin-right: 70px !important;
  }

  .mb_sm--70 {
    margin-bottom: 70px !important;
  }

  .ptb_sm--75 {
    padding: 75px 0 !important;
  }

  .plr_sm--75 {
    padding: 0 75px !important;
  }

  .pt_sm--75 {
    padding-top: 75px !important;
  }

  .pb_sm--75 {
    padding-bottom: 75px !important;
  }

  .pl_sm--75 {
    padding-left: 75px !important;
  }

  .pr_sm--75 {
    padding-right: 75px !important;
  }

  .mt_sm--75 {
    margin-top: 75px !important;
  }

  .ml_sm--75 {
    margin-left: 75px !important;
  }

  .mr_sm--75 {
    margin-right: 75px !important;
  }

  .mb_sm--75 {
    margin-bottom: 75px !important;
  }

  .ptb_sm--80 {
    padding: 80px 0 !important;
  }

  .plr_sm--80 {
    padding: 0 80px !important;
  }

  .pt_sm--80 {
    padding-top: 80px !important;
  }

  .pb_sm--80 {
    padding-bottom: 80px !important;
  }

  .pl_sm--80 {
    padding-left: 80px !important;
  }

  .pr_sm--80 {
    padding-right: 80px !important;
  }

  .mt_sm--80 {
    margin-top: 80px !important;
  }

  .ml_sm--80 {
    margin-left: 80px !important;
  }

  .mr_sm--80 {
    margin-right: 80px !important;
  }

  .mb_sm--80 {
    margin-bottom: 80px !important;
  }

  .ptb_sm--85 {
    padding: 85px 0 !important;
  }

  .plr_sm--85 {
    padding: 0 85px !important;
  }

  .pt_sm--85 {
    padding-top: 85px !important;
  }

  .pb_sm--85 {
    padding-bottom: 85px !important;
  }

  .pl_sm--85 {
    padding-left: 85px !important;
  }

  .pr_sm--85 {
    padding-right: 85px !important;
  }

  .mt_sm--85 {
    margin-top: 85px !important;
  }

  .ml_sm--85 {
    margin-left: 85px !important;
  }

  .mr_sm--85 {
    margin-right: 85px !important;
  }

  .mb_sm--85 {
    margin-bottom: 85px !important;
  }

  .ptb_sm--90 {
    padding: 90px 0 !important;
  }

  .plr_sm--90 {
    padding: 0 90px !important;
  }

  .pt_sm--90 {
    padding-top: 90px !important;
  }

  .pb_sm--90 {
    padding-bottom: 90px !important;
  }

  .pl_sm--90 {
    padding-left: 90px !important;
  }

  .pr_sm--90 {
    padding-right: 90px !important;
  }

  .mt_sm--90 {
    margin-top: 90px !important;
  }

  .ml_sm--90 {
    margin-left: 90px !important;
  }

  .mr_sm--90 {
    margin-right: 90px !important;
  }

  .mb_sm--90 {
    margin-bottom: 90px !important;
  }

  .ptb_sm--95 {
    padding: 95px 0 !important;
  }

  .plr_sm--95 {
    padding: 0 95px !important;
  }

  .pt_sm--95 {
    padding-top: 95px !important;
  }

  .pb_sm--95 {
    padding-bottom: 95px !important;
  }

  .pl_sm--95 {
    padding-left: 95px !important;
  }

  .pr_sm--95 {
    padding-right: 95px !important;
  }

  .mt_sm--95 {
    margin-top: 95px !important;
  }

  .ml_sm--95 {
    margin-left: 95px !important;
  }

  .mr_sm--95 {
    margin-right: 95px !important;
  }

  .mb_sm--95 {
    margin-bottom: 95px !important;
  }

  .ptb_sm--100 {
    padding: 100px 0 !important;
  }

  .plr_sm--100 {
    padding: 0 100px !important;
  }

  .pt_sm--100 {
    padding-top: 100px !important;
  }

  .pb_sm--100 {
    padding-bottom: 100px !important;
  }

  .pl_sm--100 {
    padding-left: 100px !important;
  }

  .pr_sm--100 {
    padding-right: 100px !important;
  }

  .mt_sm--100 {
    margin-top: 100px !important;
  }

  .ml_sm--100 {
    margin-left: 100px !important;
  }

  .mr_sm--100 {
    margin-right: 100px !important;
  }

  .mb_sm--100 {
    margin-bottom: 100px !important;
  }

  .pl_sm--0 {
    padding-left: 0;
  }

  .pr_sm--0 {
    padding-right: 0;
  }

  .pt_sm--0 {
    padding-top: 0;
  }

  .pb_sm--0 {
    padding-bottom: 0;
  }

  .mr_sm--0 {
    margin-right: 0;
  }

  .ml_sm--0 {
    margin-left: 0;
  }

  .mt_sm--0 {
    margin-top: 0;
  }

  .mb_sm--0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .ptb_mobile--5 {
    padding: 5px 0 !important;
  }

  .plr_mobile--5 {
    padding: 0 5px !important;
  }

  .pt_mobile--5 {
    padding-top: 5px !important;
  }

  .pb_mobile--5 {
    padding-bottom: 5px !important;
  }

  .pl_mobile--5 {
    padding-left: 5px !important;
  }

  .pr_mobile--5 {
    padding-right: 5px !important;
  }

  .mt_mobile--5 {
    margin-top: 5px !important;
  }

  .mb_mobile--5 {
    margin-bottom: 5px !important;
  }

  .ptb_mobile--10 {
    padding: 10px 0 !important;
  }

  .plr_mobile--10 {
    padding: 0 10px !important;
  }

  .pt_mobile--10 {
    padding-top: 10px !important;
  }

  .pb_mobile--10 {
    padding-bottom: 10px !important;
  }

  .pl_mobile--10 {
    padding-left: 10px !important;
  }

  .pr_mobile--10 {
    padding-right: 10px !important;
  }

  .mt_mobile--10 {
    margin-top: 10px !important;
  }

  .mb_mobile--10 {
    margin-bottom: 10px !important;
  }

  .ptb_mobile--15 {
    padding: 15px 0 !important;
  }

  .plr_mobile--15 {
    padding: 0 15px !important;
  }

  .pt_mobile--15 {
    padding-top: 15px !important;
  }

  .pb_mobile--15 {
    padding-bottom: 15px !important;
  }

  .pl_mobile--15 {
    padding-left: 15px !important;
  }

  .pr_mobile--15 {
    padding-right: 15px !important;
  }

  .mt_mobile--15 {
    margin-top: 15px !important;
  }

  .mb_mobile--15 {
    margin-bottom: 15px !important;
  }

  .ptb_mobile--20 {
    padding: 20px 0 !important;
  }

  .plr_mobile--20 {
    padding: 0 20px !important;
  }

  .pt_mobile--20 {
    padding-top: 20px !important;
  }

  .pb_mobile--20 {
    padding-bottom: 20px !important;
  }

  .pl_mobile--20 {
    padding-left: 20px !important;
  }

  .pr_mobile--20 {
    padding-right: 20px !important;
  }

  .mt_mobile--20 {
    margin-top: 20px !important;
  }

  .mb_mobile--20 {
    margin-bottom: 20px !important;
  }

  .ptb_mobile--25 {
    padding: 25px 0 !important;
  }

  .plr_mobile--25 {
    padding: 0 25px !important;
  }

  .pt_mobile--25 {
    padding-top: 25px !important;
  }

  .pb_mobile--25 {
    padding-bottom: 25px !important;
  }

  .pl_mobile--25 {
    padding-left: 25px !important;
  }

  .pr_mobile--25 {
    padding-right: 25px !important;
  }

  .mt_mobile--25 {
    margin-top: 25px !important;
  }

  .mb_mobile--25 {
    margin-bottom: 25px !important;
  }

  .ptb_mobile--30 {
    padding: 30px 0 !important;
  }

  .plr_mobile--30 {
    padding: 0 30px !important;
  }

  .pt_mobile--30 {
    padding-top: 30px !important;
  }

  .pb_mobile--30 {
    padding-bottom: 30px !important;
  }

  .pl_mobile--30 {
    padding-left: 30px !important;
  }

  .pr_mobile--30 {
    padding-right: 30px !important;
  }

  .mt_mobile--30 {
    margin-top: 30px !important;
  }

  .mb_mobile--30 {
    margin-bottom: 30px !important;
  }

  .ptb_mobile--35 {
    padding: 35px 0 !important;
  }

  .plr_mobile--35 {
    padding: 0 35px !important;
  }

  .pt_mobile--35 {
    padding-top: 35px !important;
  }

  .pb_mobile--35 {
    padding-bottom: 35px !important;
  }

  .pl_mobile--35 {
    padding-left: 35px !important;
  }

  .pr_mobile--35 {
    padding-right: 35px !important;
  }

  .mt_mobile--35 {
    margin-top: 35px !important;
  }

  .mb_mobile--35 {
    margin-bottom: 35px !important;
  }

  .ptb_mobile--40 {
    padding: 40px 0 !important;
  }

  .plr_mobile--40 {
    padding: 0 40px !important;
  }

  .pt_mobile--40 {
    padding-top: 40px !important;
  }

  .pb_mobile--40 {
    padding-bottom: 40px !important;
  }

  .pl_mobile--40 {
    padding-left: 40px !important;
  }

  .pr_mobile--40 {
    padding-right: 40px !important;
  }

  .mt_mobile--40 {
    margin-top: 40px !important;
  }

  .mb_mobile--40 {
    margin-bottom: 40px !important;
  }

  .ptb_mobile--45 {
    padding: 45px 0 !important;
  }

  .plr_mobile--45 {
    padding: 0 45px !important;
  }

  .pt_mobile--45 {
    padding-top: 45px !important;
  }

  .pb_mobile--45 {
    padding-bottom: 45px !important;
  }

  .pl_mobile--45 {
    padding-left: 45px !important;
  }

  .pr_mobile--45 {
    padding-right: 45px !important;
  }

  .mt_mobile--45 {
    margin-top: 45px !important;
  }

  .mb_mobile--45 {
    margin-bottom: 45px !important;
  }

  .ptb_mobile--50 {
    padding: 50px 0 !important;
  }

  .plr_mobile--50 {
    padding: 0 50px !important;
  }

  .pt_mobile--50 {
    padding-top: 50px !important;
  }

  .pb_mobile--50 {
    padding-bottom: 50px !important;
  }

  .pl_mobile--50 {
    padding-left: 50px !important;
  }

  .pr_mobile--50 {
    padding-right: 50px !important;
  }

  .mt_mobile--50 {
    margin-top: 50px !important;
  }

  .mb_mobile--50 {
    margin-bottom: 50px !important;
  }

  .ptb_mobile--55 {
    padding: 55px 0 !important;
  }

  .plr_mobile--55 {
    padding: 0 55px !important;
  }

  .pt_mobile--55 {
    padding-top: 55px !important;
  }

  .pb_mobile--55 {
    padding-bottom: 55px !important;
  }

  .pl_mobile--55 {
    padding-left: 55px !important;
  }

  .pr_mobile--55 {
    padding-right: 55px !important;
  }

  .mt_mobile--55 {
    margin-top: 55px !important;
  }

  .mb_mobile--55 {
    margin-bottom: 55px !important;
  }

  .ptb_mobile--60 {
    padding: 60px 0 !important;
  }

  .plr_mobile--60 {
    padding: 0 60px !important;
  }

  .pt_mobile--60 {
    padding-top: 60px !important;
  }

  .pb_mobile--60 {
    padding-bottom: 60px !important;
  }

  .pl_mobile--60 {
    padding-left: 60px !important;
  }

  .pr_mobile--60 {
    padding-right: 60px !important;
  }

  .mt_mobile--60 {
    margin-top: 60px !important;
  }

  .mb_mobile--60 {
    margin-bottom: 60px !important;
  }

  .ptb_mobile--65 {
    padding: 65px 0 !important;
  }

  .plr_mobile--65 {
    padding: 0 65px !important;
  }

  .pt_mobile--65 {
    padding-top: 65px !important;
  }

  .pb_mobile--65 {
    padding-bottom: 65px !important;
  }

  .pl_mobile--65 {
    padding-left: 65px !important;
  }

  .pr_mobile--65 {
    padding-right: 65px !important;
  }

  .mt_mobile--65 {
    margin-top: 65px !important;
  }

  .mb_mobile--65 {
    margin-bottom: 65px !important;
  }

  .ptb_mobile--70 {
    padding: 70px 0 !important;
  }

  .plr_mobile--70 {
    padding: 0 70px !important;
  }

  .pt_mobile--70 {
    padding-top: 70px !important;
  }

  .pb_mobile--70 {
    padding-bottom: 70px !important;
  }

  .pl_mobile--70 {
    padding-left: 70px !important;
  }

  .pr_mobile--70 {
    padding-right: 70px !important;
  }

  .mt_mobile--70 {
    margin-top: 70px !important;
  }

  .mb_mobile--70 {
    margin-bottom: 70px !important;
  }

  .ptb_mobile--75 {
    padding: 75px 0 !important;
  }

  .plr_mobile--75 {
    padding: 0 75px !important;
  }

  .pt_mobile--75 {
    padding-top: 75px !important;
  }

  .pb_mobile--75 {
    padding-bottom: 75px !important;
  }

  .pl_mobile--75 {
    padding-left: 75px !important;
  }

  .pr_mobile--75 {
    padding-right: 75px !important;
  }

  .mt_mobile--75 {
    margin-top: 75px !important;
  }

  .mb_mobile--75 {
    margin-bottom: 75px !important;
  }

  .ptb_mobile--80 {
    padding: 80px 0 !important;
  }

  .plr_mobile--80 {
    padding: 0 80px !important;
  }

  .pt_mobile--80 {
    padding-top: 80px !important;
  }

  .pb_mobile--80 {
    padding-bottom: 80px !important;
  }

  .pl_mobile--80 {
    padding-left: 80px !important;
  }

  .pr_mobile--80 {
    padding-right: 80px !important;
  }

  .mt_mobile--80 {
    margin-top: 80px !important;
  }

  .mb_mobile--80 {
    margin-bottom: 80px !important;
  }

  .ptb_mobile--85 {
    padding: 85px 0 !important;
  }

  .plr_mobile--85 {
    padding: 0 85px !important;
  }

  .pt_mobile--85 {
    padding-top: 85px !important;
  }

  .pb_mobile--85 {
    padding-bottom: 85px !important;
  }

  .pl_mobile--85 {
    padding-left: 85px !important;
  }

  .pr_mobile--85 {
    padding-right: 85px !important;
  }

  .mt_mobile--85 {
    margin-top: 85px !important;
  }

  .mb_mobile--85 {
    margin-bottom: 85px !important;
  }

  .ptb_mobile--90 {
    padding: 90px 0 !important;
  }

  .plr_mobile--90 {
    padding: 0 90px !important;
  }

  .pt_mobile--90 {
    padding-top: 90px !important;
  }

  .pb_mobile--90 {
    padding-bottom: 90px !important;
  }

  .pl_mobile--90 {
    padding-left: 90px !important;
  }

  .pr_mobile--90 {
    padding-right: 90px !important;
  }

  .mt_mobile--90 {
    margin-top: 90px !important;
  }

  .mb_mobile--90 {
    margin-bottom: 90px !important;
  }

  .ptb_mobile--95 {
    padding: 95px 0 !important;
  }

  .plr_mobile--95 {
    padding: 0 95px !important;
  }

  .pt_mobile--95 {
    padding-top: 95px !important;
  }

  .pb_mobile--95 {
    padding-bottom: 95px !important;
  }

  .pl_mobile--95 {
    padding-left: 95px !important;
  }

  .pr_mobile--95 {
    padding-right: 95px !important;
  }

  .mt_mobile--95 {
    margin-top: 95px !important;
  }

  .mb_mobile--95 {
    margin-bottom: 95px !important;
  }

  .ptb_mobile--100 {
    padding: 100px 0 !important;
  }

  .plr_mobile--100 {
    padding: 0 100px !important;
  }

  .pt_mobile--100 {
    padding-top: 100px !important;
  }

  .pb_mobile--100 {
    padding-bottom: 100px !important;
  }

  .pl_mobile--100 {
    padding-left: 100px !important;
  }

  .pr_mobile--100 {
    padding-right: 100px !important;
  }

  .mt_mobile--100 {
    margin-top: 100px !important;
  }

  .mb_mobile--100 {
    margin-bottom: 100px !important;
  }
}

.slick-gutter-5 {
  margin-left: -5px;
  margin-right: -5px;
}

.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;
  }

  .consultation-card {
    background-color: #fee94f;
    background-image: none !important;
    margin-top: 10px;

  }

  .inhouse {
    background-color: #a5e029;
    background-image: none !important;
    margin-top: 10px;


  }
}

@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 ========= */
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[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: #BCB8BB;
  /* 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);
  font-size: 10px !important;
}

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: transparent;
  border: 1px solid var(--color-body);
  border-radius: 2px;
  display: none;
  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;
  display: none;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid var(--color-body);
  border-left: 2px solid var(--color-body);
  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: 0px;
  width: 343px;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.form-group input {
  border: 0 none;
  border-radius: 5px;
  height: 60px;
  font-size: var(--font-size-b1);
  transition: var(--transition);
  padding: 0 20px;
  background-color: #EFF0F6;
  border: 1px solid transparent;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: none;
  border: 1px solid var(--color-body);
}

.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
=================================*/
/*
font-family: 'Red Hat Display', sans-serif;
*/
.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--1 {
  background-image: url(../images/bg/bg-image-1.jpg);
}

.bg_image--2 {
  background-image: url(../images/bg/bg-image-2.jpg);
}

.bg_image--3 {
  background-image: url(../images/bg/bg-image-3.jpg);
}

.bg_image--4 {
  background-image: url(../images/bg/bg-image-4.jpg);
}

.bg_image--5 {
  background-image: url(../images/bg/bg-image-5.jpg);
}

.bg_image--6 {
  background-image: url(../images/bg/bg-image-6.jpg);
}

.bg_image--7 {
  background-image: url(../images/bg/bg-image-7.jpg);
}

.bg_image--8 {
  background-image: url(../images/bg/bg-image-8.jpg);
}

.bg_image--9 {
  background-image: url(../images/bg/bg-image-9.jpg);
}

.bg_image--10 {
  background-image: url(../images/bg/bg-image-10.jpg);
}

.bg_image--11 {
  background-image: url(../images/bg/bg-image-11.jpg);
}

.bg_image--12 {
  background-image: url(../images/bg/bg-image-12.jpg);
}

.bg_image--13 {
  background-image: url(../images/bg/bg-image-13.jpg);
}

.bg_image--14 {
  background-image: url(../images/bg/bg-image-14.jpg);
}

.bg_image--15 {
  background-image: url(../images/bg/bg-image-15.jpg);
}

.bg_image--16 {
  background-image: url(../images/bg/bg-image-16.jpg);
}

.bg_image--17 {
  background-image: url(../images/bg/bg-image-17.jpg);
}

.bg_image--18 {
  background-image: url(../images/bg/bg-image-18.jpg);
}

.bg_image--19 {
  background-image: url(../images/bg/bg-image-19.jpg);
}

.bg_image--20 {
  background-image: url(../images/bg/bg-image-20.jpg);
}

.bg_image--21 {
  background-image: url(../images/bg/bg-image-21.jpg);
}

.bg_image--22 {
  background-image: url(../images/bg/bg-image-22.jpg);
}

.bg_image--23 {
  background-image: url(../images/bg/bg-image-23.jpg);
}

.bg_image--24 {
  background-image: url(../images/bg/bg-image-24.jpg);
}

.bg_image--25 {
  background-image: url(../images/bg/bg-image-25.jpg);
}

.bg_image--26 {
  background-image: url(../images/bg/bg-image-26.jpg);
}

.bg_image--27 {
  background-image: url(../images/bg/bg-image-27.jpg);
}

.bg_image--28 {
  background-image: url(../images/bg/bg-image-28.jpg);
}

.bg_image--29 {
  background-image: url(../images/bg/bg-image-29.jpg);
}

.bg_image--30 {
  background-image: url(../images/bg/bg-image-30.jpg);
}

.bg_image--31 {
  background-image: url(../images/bg/bg-image-31.jpg);
}

.bg_image--32 {
  background-image: url(../images/bg/bg-image-32.jpg);
}

.bg_image--33 {
  background-image: url(../images/bg/bg-image-33.jpg);
}

.bg_image--34 {
  background-image: url(../images/bg/bg-image-34.jpg);
}

.bg_image--35 {
  background-image: url(../images/bg/bg-image-35.jpg);
}

.bg_image--36 {
  background-image: url(../images/bg/bg-image-36.jpg);
}

.bg_image--37 {
  background-image: url(../images/bg/bg-image-37.jpg);
}

.bg_image--38 {
  background-image: url(../images/bg/bg-image-38.jpg);
}

.bg_image--39 {
  background-image: url(../images/bg/bg-image-39.jpg);
}

.bg_image--40 {
  background-image: url(../images/bg/bg-image-40.jpg);
}

/* Height and width */
.fullscreen {
  min-height: 980px;
  width: 100%;
}

/*===================
Custom Row
======================*/
.row--0 {
  margin-left: 0px;
  margin-right: 0px;
}

.row--0>[class*=col] {
  padding-left: 0px;
  padding-right: 0px;
}

.row--5 {
  margin-left: -5px;
  margin-right: -5px;
}

.row--5>[class*=col] {
  padding-left: 5px;
  padding-right: 5px;
}

.row--10 {
  margin-left: -10px;
  margin-right: -10px;
}

.row--10>[class*=col] {
  padding-left: 10px;
  padding-right: 10px;
}

.row--20 {
  margin-left: -20px;
  margin-right: -20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--20 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .row--20 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.row--20>[class*=col],
.row--20>[class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .row--20>[class*=col],
  .row--20>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .row--20>[class*=col],
  .row--20>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .row--20>[class*=col],
  .row--20>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {

  .row--20>[class*=col],
  .row--20>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--25 {
  margin-left: -25px;
  margin-right: -25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.row--25>[class*=col],
.row--25>[class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .row--25>[class*=col],
  .row--25>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .row--25>[class*=col],
  .row--25>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .row--25>[class*=col],
  .row--25>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {

  .row--25>[class*=col],
  .row--25>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.row--30>[class*=col],
.row--30>[class*=col-] {
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .row--30>[class*=col],
  .row--30>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .row--30>[class*=col],
  .row--30>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .row--30>[class*=col],
  .row--30>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {

  .row--30>[class*=col],
  .row--30>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--45 {
  margin-left: -45px;
  margin-right: -45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--45 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .row--45 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.row--45>[class*=col],
.row--45>[class*=col-] {
  padding-left: 45px;
  padding-right: 45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .row--45>[class*=col],
  .row--45>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .row--45>[class*=col],
  .row--45>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .row--45>[class*=col],
  .row--45>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {

  .row--45>[class*=col],
  .row--45>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--40 {
  margin-left: -40px;
  margin-right: -40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--40 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .row--40 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.row--40>[class*=col],
.row--40>[class*=col-] {
  padding-left: 40px;
  padding-right: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .row--40>[class*=col],
  .row--40>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .row--40>[class*=col],
  .row--40>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .row--40>[class*=col],
  .row--40>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {

  .row--40>[class*=col],
  .row--40>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.row--60 {
  margin-left: -60px;
  margin-right: -60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--60 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media only screen and (max-width: 767px) {
  .row--60 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.row--60>[class*=col],
.row--60>[class*=col-] {
  padding-left: 60px;
  padding-right: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .row--60>[class*=col],
  .row--60>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .row--60>[class*=col],
  .row--60>[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .row--60>[class*=col],
  .row--60>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (max-width: 767px) {

  .row--60>[class*=col],
  .row--60>[class*=col-] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles
==============================*/
[data-overlay],
[data-black-overlay],
[data-white-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay]>div,
[data-overlay]>*,
[data-black-overlay]>div,
[data-black-overlay]>*,
[data-white-overlay]>div,
[data-white-overlay]>* {
  position: relative;
  z-index: 2;
}

[data-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

[data-overlay]:before {
  background: var(--color-primary);
}

[data-black-overlay]:before {
  background-color: #000000;
}

[data-white-overlay]:before {
  background-color: #ffffff;
}

[data-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
  opacity: 0.1;
}

[data-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
  opacity: 0.2;
}

[data-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
  opacity: 0.3;
}

[data-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
  opacity: 0.4;
}

[data-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
  opacity: 0.5;
}

[data-overlay="6"]:before,
[data-black-overlay="6"]:before,
[data-white-overlay="6"]:before {
  opacity: 0.6;
}

[data-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
  opacity: 0.7;
}

[data-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
  opacity: 0.9;
}

[data-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
  opacity: 1;
}

/*------------------------------
    Scroll Up
--------------------------------*/
#scrollUp {
  width: 70px;
  height: 80px;
  right: 100px;
  bottom: 60px;
  text-align: center;
  z-index: 9811 !important;
  text-decoration: none;
  background: #fff;
  line-height: 80px;
  color: #757589;
  font-size: 15px;
  font-weight: 400;
  transition: var(--transition);
  display: inline-block;
  background: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #scrollUp {
    right: 20px;
    bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #scrollUp {
    right: 20px;
    bottom: 40px;
  }
}

#scrollUp::before {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 2, 72, 0.1);
  content: "";
  position: absolute;
  z-index: -1;
  transform-style: preserve-3d;
  transform: rotateY(-10deg);
  filter: blur(50px);
}

#scrollUp::after {
  background: #ffffff;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-style: preserve-3d;
  transform: rotateY(-10deg);
}

@media only screen and (max-width: 767px) {
  #scrollUp {
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 60px;
    line-height: 60px;
  }
}

#scrollUp span.text {
  position: relative;
  display: inline-block;
  margin-top: 7px;
}

@media only screen and (max-width: 767px) {
  #scrollUp span.text {
    margin-top: 3px;
  }
}

#scrollUp span.text::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent var(--color-primary) transparent;
  position: absolute;
  content: "";
  left: 50%;
  top: 21%;
  transform: translateX(-50%);
}

#scrollUp:hover span.text {
  color: var(--color-primary);
}

/*--------------------
    Contact Form
----------------------*/
.form-message {
  margin-bottom: 0;
  text-align: center;
}

.form-message.error {
  margin-top: 20px;
  color: #f80707;
}

.form-message.success {
  margin-top: 20px;
  color: #0d8d2d;
}

.bg-color-primary {
  background-color: var(--color-primary);
}

.bg-color-secondary {
  background-color: var(--color-secondary);
}

.bg-color-white {
  background-color: var(--color-white);
}

.border-secondary {
  border: 1px solid var(--color-secondary);
}

.transform-rotate-318 {
  transform: rotate(318deg);
}

.radius-circle {
  border-radius: 50%;
}

body {
  scroll-behavior: auto;
}

/*------------------------
    Header Sticky
--------------------------*/
.background--1 {
  background: var(--background-color-1);
}

.background--2 {
  background: var(--background-color-2) !important;
}

.background--3 {
  background: var(--color-primary-alta) !important;
}

.bg-color--4 {
  background: var(--background-color-4) !important;
}

textarea:focus {
  border: 2px solid var(--color-primary) !important;
  border-radius: 5px;
  box-shadow: none !important;
}

.attachment {
  background-attachment: fixed;
}

@media only screen and (max-width: 767px) {
  .row-reverce-sm {
    flex-direction: column-reverse;
  }
}

a.over-link {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.btn.rounded {
  border-radius: 33px !important;
}

.social-share-style-1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-share-style-1 ul li {
  margin-right: 10px;
}

.social-share-style-1 ul li a {
  padding: 15px;
  background: var(--color-primary-alta);
}

@media only screen and (min-width: 1400px) {
  .col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
}

.btn.add-community {
  padding: 20px 13px;
  border-radius: 6px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.btn.add-community i {
  margin-left: 10px;
}

p {
  color: var(--color-body);
}

a {
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

.bg-color--3 {
  background: var(--background-color-3) !important;
}

.bg-color--2 {
  background: var(--background-color-2) !important;
}

.bg-color--1 {
  background: var(--background-color-1) !important;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 6rem;
}

.color-body {
  color: var(--color-body) !important;
}

.color-white {
  color: var(--color-white) !important;
}

.nice-select {
  margin-right: 0;
  border: none;
  background: var(--color-primary-alta);
  padding-left: 10px;
}

@media only screen and (max-width: 479px) {
  .nice-select {
    margin-bottom: 0;
  }
}

.nice-select .option {
  margin: 0;
  color: var(--color-white);
  font-weight: 700;
  transition: var(--transition);
  line-height: inherit;
  min-height: 0;
  font-size: 22px;
  padding: 8px 20px;
}

.nice-select .option.selected {
  font-weight: 700;
  color: var(--color-primary) !important;
}

.nice-select .option.focus {
  background: transparent !important;
  outline: none;
  box-shadow: none;
}

.nice-select .option:hover {
  color: var(--color-primary);
  background: transparent;
}

.nice-select .option+.option {
  border-top: 1px solid var(--color-border);
}

.nice-select.open .list {
  background: var(--color-primary-alta);
}

.nice-select .current {
  color: var(--color-white);
}

.nice-select::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: -5px;
}

.nice-select .list {
  background: transparent;
  box-shadow: none;
  min-width: 200px;
  z-index: 9;
}

.nice-selector-wrapper .nice-select:last-child {
  margin-right: 0;
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-red {
  color: red !important;
}

.color-blue {
  color: blue !important;
}

.color-green {
  color: green !important;
}

.color-yellow {
  color: yellow !important;
}

.color-pink {
  color: pink !important;
}

.color-purple {
  color: purple !important;
}

.color-maroon {
  color: maroon !important;
}

nav.pagination-wrapper {
  display: flex;
  justify-content: center;
}

nav.pagination-wrapper .pagination {
  margin-top: 60px;
  margin-bottom: 0;
  transition: var(--transition);
  background: var(--background-color-1);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

nav.pagination-wrapper .pagination li {
  margin: 0;
}

nav.pagination-wrapper .pagination li a {
  background: var(--background-color-1);
  border: none;
  color: var(--color-white);
  padding: 12px 20px;
  margin: 6px;
  border-radius: 6px !important;
}

@media only screen and (max-width: 767px) {
  nav.pagination-wrapper .pagination li a {
    padding: 12px 14px;
  }
}

nav.pagination-wrapper .pagination li a:hover,
nav.pagination-wrapper .pagination li a.active {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

nav.pagination-wrapper .pagination li a:focus {
  background: var(--color-primary);
  border: none;
  box-shadow: none;
}

.grid-metro-item-20 {
  width: 25%;
  padding: 0 15px;
  margin-top: 30px;
}

.grid-metro5 {
  margin: 0 -15px;
}

.up-plus {
  position: relative;
}

.up-plus::after {
  position: absolute;
  content: "\e9b1";
  font-family: "feather" !important;
  top: -9px;
  color: var(--color-primary);
}

.shortby-default {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (max-width: 575px) {
  .shortby-default {
    justify-content: flex-start;
  }
}

.shortby-default .filter-leble {
  padding-right: 20px;
  display: inline-block;
}

.shortby-default .nice-select {
  width: auto;
  padding-left: 20px;
  padding-right: 40px;
  min-width: 150px;
  display: flex;
  align-items: center;
}

.shortby-default .nice-select::after {
  right: 22px;
  height: 8px;
  width: 8px;
  opacity: 0.5;
}

.shortby-default .nice-select .list {
  min-width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .shortby-default .nice-select .list {
    left: auto;
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shortby-default .nice-select .list {
    left: auto;
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .shortby-default .nice-select .list {
    left: auto;
    right: 0;
  }
}

.theme-color {
  color: var(--color-primary);
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

.container {
  max-width: 1290px;
}

p.description {
  font-size: 16px;
  line-height: 28px;
  font-weight: var(--p-regular);
}

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 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(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 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(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 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, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 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;
  }
}

@keyframes rotateIn-2 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
  }
}

.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(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 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, 70%, 0);
    transform: translate3d(0, 70%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 70%, 0);
    transform: translate3d(0, 70%, 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 fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes customOne {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
}

@keyframes liveAuction {
  0% {
    background: var(--color-white);
  }

  100% {
    background: var(--color-danger);
  }
}

.cd-intro {
  margin: 4em auto;
}

@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 5em auto;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-intro {
    margin: 6em auto;
  }
}

.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 48px;
  }
}

@media only screen and (max-width: 768px) {
  .cd-headline {
    font-size: 40px;
  }
}

@media only screen and (max-width: 479px) {
  .cd-headline {
    font-size: 26px;
  }
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* --------------------------------

xclip

-------------------------------- */
.cd-headline.clip span {
  display: inline-block;
  padding: 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: middle;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 80%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}




/*----Headers Style----*/
.header-top-one {
  height: 57px;
  background: #03041C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {
  .header-top-one {
    display: none;
  }
}

.header-top-one .header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-one .header-top-inner .left-information-area {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-one .header-top-inner .left-information-area {
    gap: 35px;
  }
}

.header-top-one .header-top-inner .left-information-area p.left-top {
  position: relative;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .header-top-one .header-top-inner .left-information-area p.left-top {
    display: none;
  }
}

.header-top-one .header-top-inner .left-information-area p.left-top::after {
  position: absolute;
  right: -20px;
  height: 100%;
  width: 1px;
  content: "";
  background: #545454;
}

.header-top-one .header-top-inner .left-information-area p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.header-top-one .header-top-inner .left-information-area .location-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-one .header-top-inner .left-information-area .location-area i {
  color: #fff;
}

.header-top-one .header-top-inner .left-information-area .location-area a {
  color: #fff;
}

.header-top-one .header-top-inner .left-information-area .working-time {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 1199px) {
  .header-top-one .header-top-inner .left-information-area .working-time {
    display: none;
  }
}

.header-top-one .header-top-inner .left-information-area .working-time p {
  font-size: 16px;
  font-weight: 400;
}

.header-top-one .header-top-inner .left-information-area .working-time i {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-two.sticky .header-mida-area.style-two {
    padding: 15px 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two.sticky .header-mida-area.style-two {
    padding: 15px 0 !important;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-header-area-start.header-two.sticky .header-mida-area.style-two {
    padding: 3px 0 !important;
  }
}

.tmp-header-area-start {
  position: absolute;
  width: 100%;
  z-index: 100;
}

.tmp-header-area-start.header-one .header-mida-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-one .header-mida-area {
    display: none;
  }
}

.tmp-header-area-start.header-one .header-mida-area .logo-area-start .logo {
  display: block;
}

.tmp-header-area-start.header-one .header-mida-area .logo-area-start .logo img {
  max-width: max-content;
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-one .header-mida-area .logo-area-start .logo img {
    max-width: 135px;
  }
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center p {
  margin: 0;
  color: #6A6C71;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-one .header-mida-area .mid-header-center p {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-one .header-mida-area .mid-header-center p {
    display: none;
  }
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center p a {
  font-weight: 500;
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center .input-area {
  display: flex;
  align-items: center;
  position: relative;
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center .input-area input {
  height: 46px;
  border-radius: 28px;
  background: #f7f7ff;
  border: 1px solid transparent;
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center .input-area input:focus {
  border: 1px solid var(--color-primary);
}

.tmp-header-area-start.header-one .header-mida-area .mid-header-center .input-area i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.tmp-header-area-start.header-two .header-mida-area.style-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-two .header-mida-area.style-two {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two .header-mida-area.style-two {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-header-area-start.header-two .header-mida-area.style-two {
    padding: 10px 10px;
  }
}

@media only screen and (max-width: 479px) {
  .tmp-header-area-start.header-two .header-mida-area.style-two .logo-area-start a img {
    max-width: 150px;
  }
}

.header-mida-area.style-two .mainmenu-nav .mainmenu {
  display: flex;
  align-items: center;
}

.header-mida-area.style-two .mainmenu-nav .mainmenu>li>a {
  color: var(--color-heading);
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 19px;
}

.header-mida-area.style-two .mainmenu-nav .mainmenu>li>a:hover {
  color: var(--color-secondary);
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li {
  position: relative;
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown>a i {
  transition: 0.5s;
  position: relative;
  bottom: -2px;
  left: 2px;
  transform: none;
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown:hover a i {
  transform: rotate(180deg);
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown .submenu {
  min-width: 230px;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.3s;
  transform: translateY(-20px);
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-right: 1px solid rgba(255, 255, 255, 0.0784313725);
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
  padding: 0 15px;
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown .submenu li {
  margin-right: 0;
  padding: 0 15px;
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown .submenu li a {
  min-width: max-content;
  font-weight: 600;
  color: var(--color-heading);
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown .submenu li a:hover {
  color: var(--color-secondary);
}

.header-mida-area.style-two .mainmenu-nav .mainmenu li.has-dropdown:hover>.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateY(0);
}

header.header-one {
  position: relative;
  max-width: 1920px;
  margin: auto;
}

header.header-three .header-mida-area.style-two .mainmenu-nav .mainmenu>li>a {
  color: #fff !important;
}

.header--sticky {
  transition: 0s;
  top: 0;
  padding-top: 10px;
  z-index: 100;
  position: relative;
  padding-bottom: 10px;
}

.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  backdrop-filter: blur(9px);
  width: 100%;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  background: #fff;
  z-index: 9;
  margin: auto;
  display: flex;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}

.header-one .header--sticky.sticky {
  max-width: 1274px;
  margin: auto;
}

.header-two.header--sticky {
  position: absolute;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-two .header-nav {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header-two .header-nav {
    display: none;
  }
}

.header-two .actions-area {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-two .actions-area {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .header-two .actions-area {
    display: block;
  }
}

.button-area-header-two {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media only screen and (max-width: 575px) {
  .button-area-header-two .tmp-btn {
    display: none;
  }
}

.header-four.header--sticky.sticky {
  background: rgba(0, 0, 0, 0.6509803922);
  display: block;
  transform: none;
  left: 0;
  transform: none;
  backdrop-filter: blur(10px);
  background-blend-mode: multiply;
}

.tmp-header-area-start.header-two.header-three.sticky {
  background: #0f0f0f;
}

.tmp-header-area-start.header-two.header-three .actions-area {
  display: block;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-two.header-three .actions-area .tmp-btn {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two.header-three .actions-area .tmp-btn {
    display: none !important;
  }
}

.tmp-header-area-start.header-two.header-three .actions-area #side-collups {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-two.header-three .actions-area #side-collups {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two.header-three .actions-area #side-collups {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two.header-four {
    padding: 15px;
  }
}

.tmp-header-area-start.header-two.header-four .actions-area {
  display: block;
  display: flex;
  align-items: center;
  gap: 30px;
}

.tmp-header-area-start.header-two.header-four .actions-area .tmp-btn {
  display: block !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-two.header-four .actions-area .tmp-btn {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two.header-four .actions-area .tmp-btn {
    display: none !important;
  }
}

.tmp-header-area-start.header-two.header-four .actions-area #side-collups {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-header-area-start.header-two.header-four .actions-area #side-collups {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-two.header-four .actions-area #side-collups {
    display: block !important;
  }
}

.onepage nav ul li {
  margin-right: 10px !important;
}

.onepage .mobile-menu-main nav ul li a {
  display: block;
  padding: 10px;
}

.tmp-header-area-start.header-two.header-four.header-five .header-top-one {
  background: transparent;
  border-bottom: 1px solid rgba(241, 241, 241, 0.11);
}

.tmp-header-area-start.header-two.header-four.header-five .header-top-one .header-top-inner .left-top a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tmp-header-area-start.header-two.header-four.header-five .header-top-one .header-top-inner .left-information-area p.left-top::after {
  top: 0;
}

.tmp-header-area-start.header-two.header-four.header-five.header--sticky.sticky {
  background: rgb(3, 4, 28);
  backdrop-filter: blur(10px);
}

.tmp-header-area-start.header-two.header-four.header-five .header-mida-area.style-two {
  padding: 0;
}

.tmp-header-area-start.header-two.header-four.header-five nav ul li a.nav-link:hover {
  color: var(--color-primary) !important;
}

.tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one {
  margin-top: 20px;
  border-radius: 100px;
}

.tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one .input-area {
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one .input-area {
    display: none;
  }
}

.tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one .input-area input {
  height: 45px;
  border: 1px solid rgba(131, 131, 131, 0.1803921569);
  border-radius: 33px;
}

.tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one .input-area input:focus {
  border: 1px solid var(--color-primary);
}

.tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one .input-area i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--color-primary);
}

.tmp-header-area-start.header-one.construction-radious nav ul li.has-dropdown a.nav-link {
  padding: 25px 15px !important;
  color: #03041c !important;
}

.tmp-header-area-start.header-one.construction-radious .logo-md-sm-device {
  display: block;
  max-width: 100px;
}

.tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one {
  padding: 0 24px;
}

@media only screen and (max-width: 767px) {
  .tmp-header-area-start.header-one.construction-radious .tmp-nav-area-one {
    padding: 10px 24px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-header-area-start.header-one.construction-radious .language-picker {
    display: none;
  }
}

.header-solid {
  border-bottom: 1px solid #DEDEDE;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-solid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header-solid .header-solid-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-solid .header-solid-main-wrapper {
    padding: 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-solid .header-solid-main-wrapper {
    padding: 2px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-solid .header-solid-main-wrapper .header-nav.main-nav-one {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header-solid .header-solid-main-wrapper .header-nav.main-nav-one {
    display: none;
  }
}

.header-solid .actions-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-solid #side-collups {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-solid #side-collups {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .header-solid #side-collups {
    display: block;
  }
}

.header-solid #side-collups svg rect {
  fill: #03041C;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-solid .logo-area-start img {
    max-width: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .header-solid .logo-area-start img {
    max-width: 70px;
  }
}

.main-header-one-wrapper {
  position: relative;
}

.tmp-nav-area-one {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 45px;
  background: #fff;
  border-radius: 0px 0px 7px 7px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 7px solid var(--color-primary);
  border-right: 7px solid var(--color-primary);
}

.tmp-nav-area-one .actions-area {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .header-one .tmp-nav-area-one {
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header-one .logo-md-sm-device {
    display: block;
  }

  .header-one .logo-md-sm-device a.logo img {
    max-width: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .header-one .header-nav.main-nav-one {
    display: none;
  }
}

.logo-md-sm-device {
  display: none;
}

.header-one .header-nav.main-nav-one {
  margin-left: -12px;
}

.header-nav-area .actions-area {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

nav ul li a.nav-link {
  color: #fff;
  font-weight: 500;
}

nav ul li a.nav-link:hover {
  color: #000 !important;
}

nav ul li a:hover {
  color: var(--color-primary);
}

nav ul li.has-dropdown {
  margin-right: 16px;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}

nav ul li.has-dropdown:hover a.nav-link::before {
  content: "\f077" !important;
}

nav ul li.has-dropdown a.nav-link {
  padding: 31px 15px !important;
  color: #667085 !important;
}

nav ul li.has-dropdown a.nav-link:hover {
  color: var(--color-primary) !important;
}

nav ul li.has-dropdown a.nav-link::before {
  content: "\f078" !important;
  position: absolute !important;
  top: 49%;
  font-family: "Font Awesome 6 Pro" !important;
  right: -3px;
  transform: translateY(-50%);
  transition: 0.3s;
  font-size: 12px;
}

nav ul li.has-dropdown .submenu {
  min-width: 230px;
  height: auto;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: 0.5s;
  transform: scaleY(0);
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-bottom: 1px solid rgba(255, 255, 255, 0.0784313725);
  border-right: 1px solid rgba(255, 255, 255, 0.0784313725);
  display: inline-block;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
  transform-origin: 0 0;
}

nav ul li.has-dropdown .submenu li a {
  color: #1F1F25;
  font-weight: 600;
}

nav ul li.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: scaleY(1);
}

nav ul li.mega .submenu {
  width: max-content;
}

nav ul li.mega .submenu .flex-mega {
  display: flex;
  justify-content: space-between;
}

nav ul li.mega .submenu .flex-mega .menu-item {
  width: 100%;
  padding: 0;
}

nav ul li.mega .submenu .flex-mega .menu-item .pages {
  display: block;
}

nav ul li.mega .submenu .flex-mega .menu-item .pages li a {
  min-width: max-content;
  color: #1F1F25;
  font-weight: 600;
}

nav ul li.mega .submenu .flex-mega .menu-item .pages li a:hover {
  color: var(--color-primary) !important;
}

nav ul li.mega .submenu li {
  margin-right: 0;
  padding: 0 15px;
  margin-right: 0;
  padding: 0 15px;
}

.tmp-side-collups-area svg {
  cursor: pointer;
}

.tmp-header-area-start.header-four nav ul li.has-dropdown a.nav-link {
  color: #fff !important;
  font-weight: 400 !important;
}

.tmp-header-area-start.header-four nav ul li a.nav-link {
  color: #fff !important;
  font-weight: 400 !important;
}

.tmp-header-area-start.header-four nav ul li a.nav-link.active {
  color: var(--color-primary) !important;
}

.tmp-header-area-start.header-four .tmp-btn.btn-secondary {
  background: var(--color-primary) !important;
}

.tmp-header-area-start.header-four .header-top-one {
  background: linear-gradient(to right, rgba(21, 1, 3, 0.831372549) 0%, rgba(0, 0, 0, 0.39) 100%);
}

.tmp-header-area-start.header-two.header-three .header-nav a.nav-link {
  color: #fff;
}

.tmp-header-area-start.header-two.header-three .header-nav a.nav-link:hover {
  color: var(--color-primary) !important;
}

.tmp-header-area-start.header-two.header-three .header-nav .has-dropdown a.nav-link {
  color: #fff !important;
}

.tmp-header-area-start.header-two.header-three .header-nav .has-dropdown a.nav-link:hover {
  color: var(--color-primary) !important;
}

.has-dropdown .submenu {
  padding: 0;
  border: none !important;
  overflow: hidden;
}

.has-dropdown .submenu li {
  position: relative;
  display: block;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 0;
}

.has-dropdown .submenu li::after {
  position: absolute;
  content: "\f324";
  font-family: var(--font-three);
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  opacity: 0;
  transition: 0.2s;
  color: var(--color-primary);
}

.has-dropdown .submenu li a {
  transition: 0.3s;
  display: block;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 15px;
  padding-right: 15px;
}

.has-dropdown .submenu li:hover>a {
  color: #fff;
  padding-left: 15px;
  background: var(--color-primary);
}

.has-dropdown .submenu li:hover::after {
  right: 0;
  opacity: 1;
}

.has-dropdown .submenu li.menu-item::after {
  display: none;
}

.has-dropdown .submenu li:hover::after {
  color: #fff;
}

nav ul li.has-dropdown .submenu li a.active {
  color: #fff;
  background: var(--color-primary);
}

nav ul li.has-dropdown .submenu li::after {
  color: #fff;
}

.has-dropdown .submenu li:hover::after {
  right: 10px;
  opacity: 1;
}

.tmp-header-area-start .has-dropdown.menu-item-open>a.nav-link {
  color: var(--color-primary) !important;
}

.tmp-header-area-start.header-four nav ul li.has-dropdown.menu-item-open>a.nav-link {
  color: var(--color-primary) !important;
}

.tmp-header-area-start.header-four.sticky .header-top-one {
  display: none;
}

.tmp-header-area-start.header-two.sticky .header-mida-area.style-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
}

.onepage .tmp-header-area-start.header-two.sticky .header-mida-area.style-two {
  padding: 15px 0;
}

.onepage .tmp-header-area-start.header-four nav ul li a.nav-link {
  padding: 24px 13px;
}

.onepage .tmp-header-area-start.header-four.sticky nav ul li a.nav-link {
  padding: 12px 13px;
}

.rolling-text {
  display: inline-block;
  overflow: hidden;
  line-height: 30px;
  height: 21px;
}

.rolling-text .block {
  min-width: max-content;
}

.rolling-text.butn {
  padding: 0 35px;
}

.nav-link:hover .rolling-text .letter,
.nav-link .rolling-text.play .letter {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.rolling-text .letter {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  -o-transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.letter:nth-child(2) {
  -webkit-transition-delay: 0.015s;
  -o-transition-delay: 0.015s;
  transition-delay: 0.015s;
}

.letter:nth-child(3) {
  -webkit-transition-delay: 0.03s;
  -o-transition-delay: 0.03s;
  transition-delay: 0.03s;
}

.letter:nth-child(4) {
  -webkit-transition-delay: 0.045s;
  -o-transition-delay: 0.045s;
  transition-delay: 0.045s;
}

.letter:nth-child(5) {
  -webkit-transition-delay: 0.06s;
  -o-transition-delay: 0.06s;
  transition-delay: 0.06s;
}

.letter:nth-child(6) {
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s;
}

.letter:nth-child(7) {
  -webkit-transition-delay: 0.09s;
  -o-transition-delay: 0.09s;
  transition-delay: 0.09s;
}

.letter:nth-child(8) {
  -webkit-transition-delay: 0.105s;
  -o-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.letter:nth-child(9) {
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
}

.letter:nth-child(10) {
  -webkit-transition-delay: 0.135s;
  -o-transition-delay: 0.135s;
  transition-delay: 0.135s;
}

.letter:nth-child(11) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.letter:nth-child(12) {
  -webkit-transition-delay: 0.165s;
  -o-transition-delay: 0.165s;
  transition-delay: 0.165s;
}

.letter:nth-child(13) {
  -webkit-transition-delay: 0.18s;
  -o-transition-delay: 0.18s;
  transition-delay: 0.18s;
}

.letter:nth-child(14) {
  -webkit-transition-delay: 0.195s;
  -o-transition-delay: 0.195s;
  transition-delay: 0.195s;
}

.letter:nth-child(15) {
  -webkit-transition-delay: 0.21s;
  -o-transition-delay: 0.21s;
  transition-delay: 0.21s;
}

.letter:nth-child(16) {
  -webkit-transition-delay: 0.225s;
  -o-transition-delay: 0.225s;
  transition-delay: 0.225s;
}

.letter:nth-child(17) {
  -webkit-transition-delay: 0.24s;
  -o-transition-delay: 0.24s;
  transition-delay: 0.24s;
}

.letter:nth-child(18) {
  -webkit-transition-delay: 0.255s;
  -o-transition-delay: 0.255s;
  transition-delay: 0.255s;
}

.letter:nth-child(19) {
  -webkit-transition-delay: 0.27s;
  -o-transition-delay: 0.27s;
  transition-delay: 0.27s;
}

.letter:nth-child(20) {
  -webkit-transition-delay: 0.285s;
  -o-transition-delay: 0.285s;
  transition-delay: 0.285s;
}

.letter:nth-child(21) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.submenu.mega-menu-wrapper {
  display: flex !important;
  align-items: flex-start;
}

.submenu.mega-menu-wrapper .menu-single-list {
  width: 100%;
}

.submenu.mega-menu-wrapper .menu-single-list .top-title {
  font-size: 16px;
  text-transform: uppercase;
}

.submenu.mega-menu-wrapper .menu-single-list:hover .top-title {
  color: #1F1F25;
  background: transparent;
}

.submenu.mega-menu-wrapper .menu-single-list::after {
  display: none;
}

.submenu.mega-menu-wrapper .menu-single-list ul {
  flex-direction: column;
  align-items: flex-start;
}

.submenu.mega-menu-wrapper .menu-single-list ul li {
  display: block;
  width: 100%;
}

.submenu.mega-menu-wrapper .menu-single-list ul li a {
  display: block;
}

.onepage .header-solid .header-nav .nav-link {
  padding: 15px;
}

.onepage .contact-inner .ft-link.ft-link-style-three li .single-contact .icon {
  background-image: none;
  /* background-color: var(--color-primary); */
}

#side-hide .body {
  display: block;
  margin-top: 20;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-hide .body {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  #side-hide .body {
    display: none;
  }
}

#side-hide .mobile-menu-main {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-hide .mobile-menu-main {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  #side-hide .mobile-menu-main {
    display: block;
  }
}

.mobile-menu-main nav ul li a {
  display: block;
  color: #181010;
}

.mobile-menu-main nav ul {
  padding: 0 20px;
  display: block;
}

.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
}

.mobile-menu-main nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}

.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}

.mobile-menu-main nav ul li.has-droupdown ul {
  padding: 0;
}

.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
}

.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 0;
}

.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
}

.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: #fff;
  background: var(--color-primary) !important;
  pointer-events: none;
  cursor: pointer;
}

.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
  content: "\f077";
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
  font-size: 10px;
  padding: 3px 10px;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
  padding: 0 20px;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
  padding: 10px 0 !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--color-primary);
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:last-child {
  border-bottom: none;
}

.mobile-menu-main nav ul li a {
  display: block;
}

.mobile-menu-main .social-wrapper-one {
  margin-top: 50px;
}

.sub-dropdown {
  position: relative !important;
  display: block !important;
}

.sub-dropdown .submenu.third-lvl {
  opacity: 0 !important;
  min-width: 185px !important;
  left: 100% !important;
  top: -13% !important;
  margin: 0;
  border-radius: 0 !important;
}

.sub-dropdown .submenu.third-lvl.base {
  display: none !important;
}

.sub-dropdown:hover .sub-menu-link {
  color: var(--color-primary);
}

.sub-dropdown:hover .submenu.third-lvl.base {
  opacity: 1 !important;
  min-width: 185px !important;
  top: 0 !important;
  right: 3px;
  display: block !important;
}

.sub-dropdown:hover .submenu.third-lvl.base li {
  display: block;
}

.sub-dropdown:hover .submenu.third-lvl.base li a {
  display: block !important;
}

.header-three .sub-dropdown:hover .submenu.third-lvl.base {
  margin-left: -14px !important;
}

.header-two .header-main-wrapper .sub-dropdown:hover .submenu.third-lvl.base {
  margin-left: 90px !important;
}

.mobile-menu-main .rts-social-style-one ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
}

.mobile-menu-main .rts-social-style-one ul li {
  margin: 0;
}

.mobile-menu-main .rts-social-style-one ul li a {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #f3f3f3;
  transition: 0.3s;
}

.mobile-menu-main .rts-social-style-one ul li:hover a {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.onepage .mobile-menu-main nav ul li.has-droupdown::after {
  display: none;
}

#side-hide {
  position: fixed;
  right: -400px;
  height: 100vh;
  z-index: 1000;
  box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  width: 400px;
  background: #fff;
  transition: 0.5s;
}

@media only screen and (max-width: 575px) {
  #side-hide {
    width: 320px;
  }
}

#side-hide .top-area {
  padding: 30px 20px;
  background: #1d1e33;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#side-hide .top-area .logo-area img {
  max-width: 120px;
}

#side-hide .top-area .close-icon-area #close-slide__main {
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#side-hide .top-area .close-icon-area #close-slide__main i {
  color: var(--color-primary);
}

#side-hide .body {
  padding: 30px;
}

#side-hide.show {
  right: 0;
}

#overlay_every-where {
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
  cursor: url(../images/banner/shape/close.png), auto;
}

#overlay_every-where.bgshow {
  background: #0e1013;
  opacity: 70%;
  visibility: visible;
  pointer-events: visible;
  z-index: 999;
  top: 0;
}

.short-contact-area-side-collups .single-contact-information-side {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.short-contact-area-side-collups .single-contact-information-side i {
  height: 45px;
  width: 45px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  font-size: 18px;
  border-radius: 5px;
}

.short-contact-area-side-collups .single-contact-information-side .information span {
  display: block;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 0;
}

#side-hide::-webkit-scrollbar {
  display: none;
}

#side-hide .body {
  position: relative;
}

#side-hide .body .title {
  font-size: 26px;
  text-transform: capitalize;
  line-height: 1.5;
}

@media only screen and (max-width: 575px) {
  #side-hide .body .title {
    font-size: 22px;
  }
}

#side-hide .body p.disc {
  font-size: 16px;
}

#side-hide .body .social-icons {
  margin-top: 100px;
}

#side-hide .body .social-icons li a:hover {
  background: var(--color-primary);
}

/*----Elements Style----*/
.banner-bottom {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 479px) {
  .banner-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.banner-bottom .video-title {
  margin-left: 15px;
  font-size: 17px;
  line-height: 22px;
  font-weight: var(--s-semi-bold);
  font-family: var(--font-secondary);
}

.button-area-banner-one {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media only screen and (max-width: 575px) {
  .button-area-banner-one {
    gap: 30px;
  }
}

.tmp-banner-swiper-one-area .tmp-banner-area {
  position: relative;
  z-index: 1;
}

.tmp-banner-swiper-one-area .tmp-banner-area .shape-image-banner-one .one {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  mix-blend-mode: multiply;
  z-index: -1;
}

.tmp-banner-swiper-one-area .tmp-banner-area .shape-image-banner-one .two {
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  z-index: -1;
}

.tmp-banner-swiper-one-area .tmp-banner-area .shape-image-banner-one .three {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .shape-image-banner-one .one {
  animation: slideInLeft 0.8s linear;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .shape-image-banner-one .two {
  animation: slideInLeft 0.8s linear;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .shape-image-banner-one .three {
  animation: slideInLeft 1s linear;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner span.sub-title {
  animation: fadeInUp2 1s linear;
  animation-delay: 0.5s;
  opacity: 1;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner h1.title {
  animation: fadeInUp2 1s linear;
  animation-delay: 0.8s;
  opacity: 1;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc {
  animation: fadeInUp2 1.3s linear;
  animation-delay: 1.1s;
  opacity: 1;
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc {
    max-width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc br {
    display: none;
  }
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner .button-area-banner-one {
  animation: fadeInUp2 1.8s linear;
  animation-delay: 1.4s;
  opacity: 1;
  display: flex;
  max-width: max-content;
}

.mySwiper-banner-one {
  position: relative;
}

.mySwiper-banner-one .swiper-button-next::after,
.mySwiper-banner-one .swiper-button-prev::after {
  height: 65px;
  min-width: 65px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}

.mySwiper-banner-one .swiper-button-next:hover::after,
.mySwiper-banner-one .swiper-button-prev:hover::after {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
  border: 1px solid transparent;
}

.mySwiper-banner-one .swiper-button-next {
  right: 70px;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .mySwiper-banner-one .swiper-button-next {
    right: 50px;
    bottom: 100px;
    top: auto;
  }
}

@media only screen and (max-width: 575px) {
  .mySwiper-banner-one .swiper-button-next {
    bottom: 40px;
  }
}

.mySwiper-banner-one .swiper-button-next::after {
  content: "\f061";
  font-weight: 200;
  font-family: var(--font-three);
}

.mySwiper-banner-one .swiper-button-prev {
  right: 70px;
  left: auto;
  margin-top: -70px;
}

@media only screen and (max-width: 767px) {
  .mySwiper-banner-one .swiper-button-prev {
    left: 50px;
    right: auto;
    bottom: 100px;
    top: auto;
  }
}

@media only screen and (max-width: 575px) {
  .mySwiper-banner-one .swiper-button-prev {
    bottom: 40px;
  }
}

.mySwiper-banner-one .swiper-button-prev::after {
  content: "\f060";
  font-weight: 200;
  font-family: var(--font-three);
}

.banner-one-main-wrapper {
  display: flex;
  align-items: center;
  padding: 140px 0;
}

@media only screen and (max-width: 1199px) {
  .banner-one-main-wrapper {
    max-width: 75%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-main-wrapper {
    max-width: 81%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper {
    max-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper {
    padding: 100px 0 140px 0;
  }
}

.banner-one-main-wrapper .inner span.sub-title {
  color: #fff;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  transition-delay: 0.5s;
  display: block;
}

.banner-one-main-wrapper .inner .title {
  color: #FFFFFF;
  font-size: 60px;
  line-height: 75px;
  margin-bottom: 22px;
  transition-delay: 1s;
  opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 48px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 36px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 28px;
    line-height: 1.4;
  }
}

.banner-one-main-wrapper .inner p.disc {
  color: #FFFFFF;
  transition-delay: 1.5s;
  opacity: 0;
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .inner p.disc br {
    display: none;
  }
}

.banner-one-main-wrapper .inner .button-area-banner-one {
  transition-delay: 2s;
  opacity: 0;
}

.banner-one-main-wrapper .inner .button-area-banner-one .video-play-button::after {
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .inner .button-area-banner-one .vedio-icone .play-video p.text {
    display: none;
  }
}

.banner-area.banner-style-two {
  background-image: url(../images/banner/banner-two.png);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-area.banner-style-two .rating .stars-group .star i {
  color: var(--color-secondary);
}

.banner-area.banner-style-two .product-share .profile-share a:hover img {
  border-color: var(--color-secondary);
}

.banner-area.banner-style-two .vedio-icone .video-play-button::before {
  background: transparent;
  border: 1px solid #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 80px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 80px 25px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 80px 15px;
  }
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 60px 10px;
  }
}

.banner-area.banner-style-two .banner-inner .sub-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
  font-weight: var(--s-medium);
  font-family: var(--font-secondary);
  color: #141414;
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-inner .sub-title {
    font-size: 14px;
  }
}

.banner-area.banner-style-two .banner-inner .title {
  font-size: 60px;
  line-height: 75px;
  color: var(--color-heading);
  margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .banner-area.banner-style-two .banner-inner .title {
    font-size: 50px;
    line-height: 66px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.banner-style-two .banner-inner .title {
    font-size: 32px;
    line-height: 48px;
  }

  .banner-area.banner-style-two .banner-inner .title br {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-inner .title {
    font-size: 25px;
    line-height: 36px;
  }
}

.banner-area.banner-style-two .banner-inner .description {
  margin-bottom: 35px;
}

.banner-area.banner-style-two .bg-circle {
  position: absolute;
  bottom: -60%;
  right: 0;
  z-index: -1;
}

.banner-area.banner-style-two .bg-dolour {
  position: absolute;
  right: 44%;
  top: 523px;
  animation: jump-1 8s linear infinite;
  z-index: -1;
}

.banner-area.banner-style-two .bg-blue-circle {
  position: absolute;
  top: 160px;
  right: 50px;
  animation: jump-2 10s linear infinite;
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .bg-blue-circle {
    position: absolute;
    top: 176px;
    right: 0;
    animation: jump-2 10s linear infinite;
  }
}

@media only screen and (max-width: 575px) {
  .banner-area.banner-style-two .bg-blue-circle img {
    max-width: 150px;
  }
}

.banner-area.banner-style-two .bg-curly-lines {
  position: absolute;
  bottom: -20%;
  left: -9%;
  animation: jump-2 10s linear infinite;
  z-index: -1;
}

.banner-area.banner-style-two .vedio-icone .video-play-button p.text {
  min-width: max-content;
  margin-left: 67px !important;
  top: 22%;
  position: absolute;
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.banner-area .banner-two-thumbnail .thumbnail {
  position: relative;
}

@media only screen and (max-width: 575px) {
  .banner-area .banner-two-thumbnail .thumbnail img {
    max-width: 100%;
    margin: auto;
  }
}

.banner-area .banner-two-thumbnail .thumbnail .product-share {
  position: absolute;
  left: 60%;
  bottom: 120px;
  animation: jump-2 8s linear infinite;
  z-index: 10;
}

@media only screen and (max-width: 575px) {
  .banner-area .banner-two-thumbnail .thumbnail .product-share {
    left: 62%;
    bottom: 45%;
  }
}

@media only screen and (max-width: 479px) {
  .banner-area .banner-two-thumbnail .thumbnail .product-share {
    left: 0;
    bottom: 47%;
    min-width: max-content;
  }
}

@media only screen and (max-width: 575px) {
  .banner-style-two .vedio-icone .video-play-button::after {
    width: 60px;
    height: 60px;
  }
}

.banner-tag {
  position: absolute;
  top: 19%;
  left: -24%;
  animation: jump-2 6s linear infinite;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-tag {
    left: 43%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-tag {
    left: 23%;
    top: 42%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-tag {
    left: 0%;
    top: 62%;
  }
}

.banner-tag .inner {
  background-color: var(--color-white);
  padding: 15px 30px;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
}

.banner-tag .inner .content .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
  margin-bottom: 5px;
}

.tmp-banner-area.banner-three {
  background-image: url(../images/banner/banner-3-bg.jpg);
  position: relative;
  z-index: 2;
}

.tmp-banner-area.banner-three .vedio-icone .video-play-button::before {
  background: rgba(255, 255, 255, 0.1215686275);
}

.tmp-banner-area.banner-three .swiper-container-three {
  width: 100%;
  position: relative;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .vedio-icone .video-play-button::after {
    height: 70px;
    width: 70px;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner {
  position: relative;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .thumbnail img {
  border-radius: 16px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .thumbnail img {
    height: 400px;
    object-fit: cover;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 560px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content {
    max-width: 95%;
    min-width: 95%;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .title {
  font-size: 50px;
  line-height: 75px;
  font-weight: var(--s-extra-bold);
  color: var(--color-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .title {
    font-size: 26px;
    line-height: 38px;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .description {
  color: var(--color-white);
  font-size: 17px;
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .description {
    font-size: 14px;
    line-height: 22px;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #fff;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-pagination-bullet-active {
  background-color: #fff;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev {
  margin-left: 50px;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
  margin-right: 50px;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-container {
  background-color: rgba(0, 0, 0, 0.25);
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev {
  background-image: none;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
  background-image: none;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
  height: 60px;
  width: 60px;
  background-color: var(--color-white);
  border-radius: 100%;
}

@media only screen and (max-width: 767px) {

  .tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev,
  .tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
    display: none;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev i,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next i {
  color: var(--color-primary);
  font-size: 27px;
  transition: 0.5s;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev::after,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next::after {
  display: none;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev:hover i,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next:hover i {
  color: var(--color-primary);
}

.swiper-container-three {
  padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-container-three {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-container-three {
    padding-top: 50px;
  }
}

.swiper-container-three .swiper-slide {
  opacity: 0;
}

.swiper-container-three .swiper-slide-active {
  opacity: 1;
}

.swiper-container-three .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  bottom: 0;
  justify-content: center;
}

.swiper-container-three .swiper-pagination .swiper-pagination-bullet {
  border: 2px solid #fff !important;
}

.swiper-container-three .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
}

.tmp-banner-area.banner-three .swiper-button-next,
.tmp-banner-area.banner-three .swiper-button-prev {
  transition: 0.3s;
}

.tmp-banner-area.banner-three .swiper-button-next i::after,
.tmp-banner-area.banner-three .swiper-button-prev i::after {
  transition: 0.3s;
}

.tmp-banner-area.banner-three .swiper-button-next:hover,
.tmp-banner-area.banner-three .swiper-button-prev:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.tmp-banner-area.banner-three .swiper-button-next:hover i,
.tmp-banner-area.banner-three .swiper-button-prev:hover i {
  color: #fff;
}

.tmp-banner-area.banner-three .swiper-button-next:hover i::before,
.tmp-banner-area.banner-three .swiper-button-prev:hover i::before {
  color: #fff;
}

.tmp-banner-swiper-one-area {
  max-width: 1920px;
  margin: auto;
}

.tmp-banner__agency-wrapper-bg {
  background-image: url(../images/banner/banner-agency.jpg);
  height: 1080px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner__agency-wrapper-bg {
    height: 850px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner__agency-wrapper-bg {
    height: 850px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-banner__agency-wrapper-bg {
    height: 750px;
  }
}

@media only screen and (max-width: 575px) {
  .inner-content-banner-four {
    margin-top: -150px;
  }
}

.banner-inner-content-four .vedio-icone {
  margin-bottom: 20px;
}

.banner-inner-content-four .vedio-icone .video-play-button::before {
  background: rgba(255, 255, 255, 0.08);
}

.banner-inner-content-four .content-wrapper .title {
  color: #fff;
  font-size: 44px;
  line-height: 1.3;
  font-family: var(--font-secondary);
  font-weight: 600;

}

@media only screen and (max-width: 1199px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 50px;
    font-weight: 600;
  }

  .banner-inner-content-four .content-wrapper .title br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 44px;
    font-weight: 600;
  }

  .banner-inner-content-four .content-wrapper .title br {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 479px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 26px;
  }
}

.banner-inner-content-four .content-wrapper .title span {
  position: relative;
  font-weight: 300;
}

.banner-inner-content-four .content-wrapper .title span::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 2px;
  height: 2px;
  background: #fff;
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .banner-inner-content-four .content-wrapper .title span::after {
    display: none;
  }
}

.banner-inner-content-four .content-wrapper p.disc {
  color: #d8d8d8;
  font-size: 16px;
  margin-top: 30px;
  font-weight: 400;

}

.banner-inner-content-four .content-wrapper .button-area-banner-one {
  margin-top: 50px;
}

.tmp-ocean .ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: -50px;
  left: 0;
  background: #ffffff;
}

.tmp-ocean .wave {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(285deg) brightness(105%) contrast(106%);
}

.tmp-ocean .wave:nth-of-type(2) {
  top: -175px;
  animation: wave 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 20s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {

  0%,
  100% {
    transform: translate3d(0, -15px, 0);
  }

  50% {
    transform: translate3d(0, 1px, 0);
  }
}

.banner-bg-startup {
  background-image: url(../images/banner/startup.jpg);
  height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .banner-bg-startup {
    height: 700px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-bg-startup {
    height: 600px;
  }
}

.banner-bg-startup.bg-two {
  background-image: url(../images/banner/startup-1.jpg);
}

.banner-bg-startup.bg-three {
  background-image: url(../images/banner/startup-3.jpg);
}

.banner-startup-main-content-wrapper {
  text-align: center;
}

.banner-startup-main-content-wrapper .title {
  color: #fff;
  font-size: 75px;
  line-height: 1.3;
}

.banner-startup-main-content-wrapper p.disc {
  color: #f1f1f1;
  max-width: 55%;
  margin-top: 30px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .banner-startup-main-content-wrapper p.disc {
    max-width: 80%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-startup-main-content-wrapper p.disc {
    max-width: 95%;
  }
}

.swiper-startup-banner,
.swiper-startup-banner-construction {
  position: relative;
}

.swiper-startup-banner .banner-startup-main-content-wrapper,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper {
    margin-top: 27px;
  }
}

.swiper-startup-banner .banner-startup-main-content-wrapper>*,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper>* {
  animation-name: fadeOutUp;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.swiper-startup-banner .banner-startup-main-content-wrapper .title,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
  font-family: var(--font-primary);
  margin-bottom: 25px;
  display: block;
  font-size: 130px;
  line-height: 1.1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: var(--color-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 50px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 50px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 575px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 36px;
  }
}

.swiper-startup-banner .banner-startup-main-content-wrapper .disc,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper .disc {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.swiper-startup-banner .banner-startup-main-content-wrapper .tmp-btn,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper .tmp-btn {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
  max-width: max-content;
  margin: auto;
  margin-top: 50px;
}

@media only screen and (max-width: 575px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .tmp-btn,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .tmp-btn {
    margin-top: 30px;
  }
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper>*,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper>* {
  animation-name: fadeInUp;
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper .title,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper .title {
  animation-delay: 0.5s;
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper .disc,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper .disc {
  animation-delay: 1s;
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper .tmp-btn,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper .tmp-btn {
  animation-delay: 1.5s;
}

.swiper-startup-banner .swiper-button-next,
.swiper-startup-banner .swiper-button-prev,
.swiper-startup-banner-construction .swiper-button-next,
.swiper-startup-banner-construction .swiper-button-prev {
  color: #fff;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 16px;
  transition: 0.3s;
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-prev {
    display: none;
  }
}

.swiper-startup-banner .swiper-button-next::after,
.swiper-startup-banner .swiper-button-prev::after,
.swiper-startup-banner-construction .swiper-button-next::after,
.swiper-startup-banner-construction .swiper-button-prev::after {
  transition: 0.3s;
  font-size: 16px;
}

.swiper-startup-banner .swiper-button-next:hover,
.swiper-startup-banner .swiper-button-prev:hover,
.swiper-startup-banner-construction .swiper-button-next:hover,
.swiper-startup-banner-construction .swiper-button-prev:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  transform: scale(1.1);
}

.swiper-startup-banner .swiper-button-next,
.swiper-startup-banner-construction .swiper-button-next {
  right: 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    display: none;
  }
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    display: none;
  }
}

.swiper-startup-banner .swiper-button-prev,
.swiper-startup-banner-construction .swiper-button-prev {
  left: 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    display: none;
  }
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    display: none;
  }
}

.swiper-startup-banner .swiper-pagination,
.swiper-startup-banner-construction .swiper-pagination {
  bottom: 50px;
}

.swiper-startup-banner .swiper-pagination .swiper-pagination-bullet,
.swiper-startup-banner-construction .swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--color-primary);
}

.swiper-startup-banner .swiper-pagination .swiper-pagination-bullet-active,
.swiper-startup-banner-construction .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-primary);
}

@media only screen and (max-width: 575px) {

  .swiper-startup-banner .swiper-pagination,
  .swiper-startup-banner-construction .swiper-pagination {
    bottom: 25px;
  }
}

.tmp-banner-area.banner-style-five.inconstruction {
  height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-area.banner-style-five.inconstruction {
    height: 800px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-area.banner-style-five.inconstruction {
    height: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-style-five.inconstruction {
    height: 600px;
  }
}

.tmp-banner-area.banner-style-five.inconstruction.banner-bg-construction {
  background-image: url(../images/banner/construction-01.jpg);
  background-repeat: no-repeat;
}

.tmp-banner-area.banner-style-five.inconstruction.banner-bg-construction.bg-two {
  background-image: url(../images/banner/construction-02.jpg);
  background-repeat: no-repeat;
}

.tmp-banner-area.banner-style-five.inconstruction.banner-bg-construction.bg-three {
  background-image: url(../images/banner/construction-03.jpg);
  background-repeat: no-repeat;
}

.tmp-banner-area.banner-style-five.inconstruction .banner-startup-main-content-wrapper {
  text-align: left;
  margin-left: 0;
}

.tmp-banner-area.banner-style-five.inconstruction .banner-startup-main-content-wrapper p.disc {
  margin-left: 0;
}

.tmp-banner-area.banner-style-five.inconstruction .banner-startup-main-content-wrapper .tmp-btn {
  margin-left: 0;
}

.construction-banner-top-wrapper .inconstruction {
  position: relative;
  z-index: 1;
}

.construction-banner-top-wrapper .inconstruction .shape-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(0.5);
}

.construction-banner-top-wrapper .inconstruction .shape-image img {
  height: 100%;
}

.banner-one-height-control.construction-2 {
  height: 960px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-height-control.construction-2 {
    height: 750px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 {
    height: 600px;
  }
}

.banner-one-height-control.construction-2 .inner .title {
  font-size: 120px;
  line-height: 1.2;
  font-weight: 900;
}

@media only screen and (max-width: 1199px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 32px;
  }
}

.banner-one-height-control.construction-2 .inner p.disc {
  margin: auto;
  margin-bottom: 30px;
}

.banner-one-height-control.construction-2 .inner .button-area-banner-one {
  margin: auto;
}

.banner-one-height-control.construction-2 .banner-one-main-wrapper {
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 .banner-one-main-wrapper {
    padding: 91px 0;
  }
}

.tmp-banner-swiper-one-area.construction-2 {
  position: relative;
}

.tmp-banner-swiper-one-area.construction-2 .shape-image-banner-one .three {
  display: none;
}

.tmp-banner-swiper-one-area.construction-2 .bg_image-1 {
  background-image: url(../images/banner/construction-04.jpg);
}

.tmp-banner-swiper-one-area.construction-2 .bg_image-2 {
  background-image: url(../images/banner/construction-05.jpg);
}

.tmp-banner-swiper-one-area.construction-2 .bg_image-3 {
  background-image: url(../images/banner/construction-06.jpg);
}

.tmp-banner-swiper-one-area.construction-2:hover .swiper-button-next,
.tmp-banner-swiper-one-area.construction-2:hover .swiper-button-prev {
  opacity: 1;
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next,
.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
  color: #fff;
  height: 65px;
  width: 65px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 16px;
  transition: 0.3s;
  opacity: 0;
}

@media only screen and (max-width: 1199px) {

  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next,
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    display: none;
  }
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next::after,
.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev::after {
  transition: 0.3s;
  font-size: 16px;
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next:hover,
.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  transform: scale(1.1);
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
  right: 150px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    display: none;
  }
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
  left: 150px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    display: none;
  }
}

.tmp-banner-swiper-one-area.construction-2 .swiper-pagination {
  bottom: 50px;
}

.tmp-banner-swiper-one-area.construction-2 .swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--color-primary);
}

.tmp-banner-swiper-one-area.construction-2 .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-primary);
}

@media only screen and (max-width: 575px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-pagination {
    bottom: 25px;
  }
}

.banner-company-area-main__wrapper .pre-title {
  font-size: 18px;
  color: var(--color-primary);
  max-width: fit-content;
  background: #ffe4d7;
  padding: 6px 20px 6px 6px;
  font-weight: 500;
  border-radius: 50px;
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .pre-title {
    font-size: 15px;
  }
}

.banner-company-area-main__wrapper .title {
  font-size: 44px;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .banner-company-area-main__wrapper .title {
    font-size: 56px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-company-area-main__wrapper .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .title {
    font-size: 32px;
  }
}

.banner-company-area-main__wrapper p {
  margin-bottom: 40px;
}

.banner-company-area-main__wrapper .button-area-wrapper {
  display: flex;
  align-items: center;
  /* gap: 30px; */
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .button-area-wrapper {
    flex-direction: column;
    align-items: flex-start;
    /* gap: 25px; */
  }
}

.frame-image-about-company {
  padding: 25px;
  background: #ffffff;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}

.frame-image-about-company img {
  width: 100%;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 575px) {
  .header-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-head {
  text-align: center;
  padding-bottom: 60px;
}

.section-head.pb-40 {
  padding-bottom: 40px;
}

.section-head.pb-0 {
  padding-bottom: 0;
}

.section-head.text-align-left {
  text-align: left;
}

.section-head.section-head-one-side {
  padding-bottom: 22px;
}

.section-head .section-sub-title {
  font-size: 16px;
  /* font-weight: var(--s-bold); */
  color: var(--color-primary);
  margin-bottom: 5px;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}

.section-head .section-sub-title.color-secondary {
  color: var(--color-secondary);
}

.section-head .section-sub-title.color-white {
  color: var(--color-white);
}

.section-head .section-sub-title img {
  margin-right: 8px;
}

.section-head .section-sub-title span.subtitle {
  font-family: var(--font-secondary);
}

.section-head .title {
  color: #03041c;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 0;
  font-weight: 500;
  margin-bottom: 0 !important;
  font-family: var(--font-secondary);
}

@media only screen and (max-width: 767px) {
  .section-head .title {
    font-size: 32px;
    line-height: 1.4;
  }

  .section-head .title br {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .section-head .title {
    font-size: 28px;
    line-height: 1.4;
  }

  .section-head .title br {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  .section-head .title {
    font-size: 22px;
  }
}

.section-head .title.color-white {
  color: #000 !important;
  font-size: 30px;
  font-weight: 600;
}

.section-head .description {
  margin-top: 10px;
}

.section-head.color-white {
  text-align: center;
  padding-bottom: 60px;
}

.section-head.color-white .section-sub-title {
  font-size: 16px;
  font-weight: var(--s-bold);
  color: var(--color-primary);
  text-transform: uppercase;
}

.section-head.color-white .section-sub-title span.subtitle {
  margin-left: 8px;
  font-family: var(--font-secondary);
}

.section-head.color-white .title {
  color: #ffffff;
  font-size: 36px;
  line-height: 45px;
}

@media only screen and (max-width: 575px) {
  .section-head.color-white .title {
    font-size: 22px;
    line-height: 34px;
  }
}

.section-head.pb--30 {
  padding-bottom: 30px;
}

.section-head .subtitle {
  font-weight: var(--s-bold);
}

.section-head .subtitle.color-gradiant {
  background: var(--text-gradient-one);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head .section-sub-title.center-title {
  justify-content: center;
}

.card-bg-color {
  background-color: #D9E8FD;
}

.background-image-services {
  background-image: url(../images/services/services-bg-image.png);
}

.services-content {
  margin-top: 30px;
}

.services-content.services-content-style-1 .title {
  font-size: 27px;
  font-weight: var(--s-extra-bold);
  line-height: 45px;
  margin-top: 37px;
  margin-bottom: 0;
}

.services-content.services-content-style-1 .description {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  color: var(--color-body);
  font-weight: var(--p-regular);
  margin-top: 10px;
}

.single-services.service-style-one .services-inner {
  padding: 30px 30px;
}

@media only screen and (max-width: 575px) {
  .single-services.service-style-one .services-inner {
    padding: 20px;
  }
}

.single-services.service-style-one .services-inner .services-content .desctiption {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
  color: #6a6c71;
}

.single-services.service-style-one .services-inner .services-content .angle-roted {
  transition: 0.3s;
}

.single-services.service-style-one .services-inner .services-content .angle-roted:hover {
  background: var(--color-primary);
  border: 1px solid transparent;
  color: #fff;
  transform: scale(1.2) translateY(-5px);
}

.single-services .services-inner {
  position: relative;
  overflow: hidden;
  padding: 0 38px;
  border-radius: 10px;
}

@media only screen and (max-width: 575px) {
  .single-services .services-inner {
    padding: 0;
  }
}

.single-services .services-inner a .title {
  transition: 0.3s;
  color: #03041c;
  font-size: 20px;
  line-height: 15px;
}

.single-services .services-inner a:hover .title {
  color: var(--color-primary);
}

.single-services .services-inner .thumbnail.thumbnail-rounded {
  position: relative;
  overflow: hidden;
  border-radius: 100%;
}

.single-services .services-inner .thumbnail.thumbnail-rounded.border-top-left {
  transition: 0.5s;
  position: relative;
}

.single-services .services-inner .thumbnail.thumbnail-rounded.border-top-left::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: transparent;
  border-radius: 50%;
  border: 2.52px dashed #c5c5c5;
  top: 0;
  left: 0;
  transition: 0.3s;
  animation: rotateIn-2 50s linear infinite;
  z-index: -1;
}

.single-services .services-inner .thumbnail.thumbnail-rounded img {
  display: inline-block;
  width: 100%;
  border-radius: 100%;
  padding: 10px;
  padding-bottom: 0;
  overflow: hidden;
  transition: 0.5s;
}

.single-services .services-inner .thumbnail.thumbnail-rounded .number-bg-round {
  position: absolute;
  bottom: -52px;
  left: 50%;
  height: 120px;
  width: 120px;
  line-height: 120px;
  background-color: var(--color-primary);
  border-radius: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-services .services-inner .thumbnail.thumbnail-rounded .number-bg-round span {
  font-size: 30px;
  color: var(--color-white);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 28px;
}

.single-services .services-inner .thumbnail.thumbnail-rounded:hover.border-top-left::after {
  border-color: var(--color-primary);
}

.single-services .services-inner .thumbnail.thumbnail-rounded:hover img {
  transform: scale(1.1);
}

.single-services .services-inner.with-shadow {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
}

.single-services .services-inner .number {
  position: absolute;
  right: 40px;
  bottom: -35px;
}

.single-services .services-inner:hover .thumbnail.thumbnail-rounded.border-top-left {
  border-color: var(--color-primary);
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 20s;
  -webkit-animation-iteration-count: infinite;
}

.services-bottom {
  margin-top: 40px;
}

.services-bottom .services-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 575px) {
  .services-bottom .services-bottom-inner {
    flex-direction: column;
  }
}

.services-bottom .services-bottom-inner .description {
  font-size: var(--font-size-b1);
  margin: 0;
}

.services-bottom .services-bottom-inner .description button {
  display: inline-block;
  max-width: max-content;
}

.services-bottom .services-bottom-inner .description button.btn-simple {
  color: var(--color-primary);
  font-weight: var(--p-bold);
  border: none;
}

/* Circle */
.hover-animation {
  position: relative;
}

.hover-animation::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(228, 32, 52, 0.1254901961);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hover-animation:hover::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.95s;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

html {
  --scrollbarBG: #CFD8DC;
  --thumbBG: #FF6C31;
}

body::-webkit-scrollbar {
  width: 6px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  /* border-radius: 6px; */
  border: 3px solid var(--scrollbarBG);
}

.service-inner.financial-service-inner {
  border-radius: 5px;
  text-align: center;
  padding: 20px 0px 1px 0px;
  background: #F8F9FB;
  height: 100%;
  cursor: pointer;
}

/* Revive icon styling */
.revive-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background-image: url('assets/images/icon/revive.svg');
  /* Update path if needed */
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Star rating container */
.clinic-rating {
  display: inline-block;
  position: relative;
  font-size: 18px;
  color: #dcdcdc;
  /* Light gray for empty stars */
}

/* Background stars (empty) */
.clinic-rating::before {
  content: "★★★★★";
  letter-spacing: 3px;
  display: block;
}

/* Filled stars based on rating */
.clinic-rating::after {
  content: "★★★★★";
  letter-spacing: 3px;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--rating, 0%);
  overflow: hidden;
  color: #f1c40f;
  /* Gold color for filled stars */
}

/* Rating count */
.rating-count {
  font-size: 14px;
  color: #555;
  margin-left: 6px;
}

/* Filled star */
.star {
  font-size: 18px;
  color: #f1c40f;
  /* Gold color */
}

/* Empty star */
.star-empty {
  font-size: 18px;
  color: #dcdcdc;
  /* Light gray for empty stars */
}

@media only screen and (max-width: 767px) {
  .service-inner.financial-service-inner {
    padding: 22px;
  }
}

@media only screen and (max-width: 575px) {
  .service-inner.financial-service-inner {
    padding: 20px;
  }
}

.service-inner.financial-service-inner .icon {
  display: inline-block;
  margin: 0 auto;
}

.service-inner.financial-service-inner .icon img {
  height: 94.5px;
  width: 100px;
}

.service-inner.financial-service-inner .content {
  text-align: center;
}

.service-inner.financial-service-inner .content .title {
  font-size: 16px;
  line-height: 35px;
  font-weight: 500;
  font-family: var(--font-secondary);
  color: var(--color-heading);
  margin-bottom: 10px;
  margin-left: -50px;
}

.service-inner.financial-service-inner .content .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}

.service-inner.financial-service-inner .icon2 img {
  max-height: 196.5px;
  width: 230px;
}

.single-services .services-inner .thumbnail.thumbnail-rounded.border-top-left {
  transition: 0.5s;
  padding: 12px;
}

.thumbnail.thumbnail-rounded.border-top-left.hover-animation a {
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.thumbnail.thumbnail-rounded.border-top-left.hover-animation a img {
  padding: 0;
}

.service-inner.financial-service-inner {
  position: relative;
}

.service-inner.financial-service-inner .over_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.bg-working-1 {
  background: linear-gradient(to right, rgba(237, 245, 255, 0.1) 0%, #ccdff7 100%);
}

.check-service-wrapper .single-check {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-service-wrapper .single-check p {
  margin-bottom: 0;
  font-size: 16px;
  color: #f6f8fc;
}

.check-service-wrapper .single-check i {
  color: var(--color-primary);
}

.service-details p.disc {
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #6a6c71;
}

.single-service-details {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.single-service-details {
  background: linear-gradient(to right, rgba(237, 245, 255, 0.1) 0%, rgba(228, 32, 50, 0.08) 100%);
  border: 1px solid #e42032;
  padding: 40px 30px;
  border-radius: 8px;
}

@media only screen and (max-width: 575px) {
  .single-service-details {
    flex-direction: column;
    align-items: flex-start;
  }
}

.single-service-details .icon {
  display: block;
  min-width: max-content;
}

.single-service-details .icon img {
  min-width: max-content;
}

.single-service-details .information .title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}

.single-service-details .information p.disc {
  margin-bottom: 0;
}

.service-detials-thumb-details p.itelic {
  font-style: italic;
  color: #03041c;
  font-weight: 500;
  margin-bottom: 20px;
}

.service-detials-thumb-details .single-check {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  gap: 13px;
}

.service-detials-thumb-details .single-check i {
  color: var(--color-primary);
}

.service-detials-thumb-details .single-check p {
  font-size: 16px;
}

.side-bar-details-page .signle-side-bar {
  padding: 40px;
  background: #fff;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.0901960784);
  border-radius: 2px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 575px) {
  .side-bar-details-page .signle-side-bar {
    padding: 20px;
  }
}

.side-bar-details-page .signle-side-bar:last-child {
  margin-bottom: 0;
}

.side-bar-details-page .signle-side-bar .header .title {
  position: relative;
}

.side-bar-details-page .signle-side-bar .header .title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -20px;
  background-image: linear-gradient(to bottom right, var(--color-primary) 25%, #DEDEDE 25%);
}

.side-bar-details-page .signle-side-bar.search-area .body {
  position: relative;
}

.side-bar-details-page .signle-side-bar.search-area .body i {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  background: var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.side-bar-details-page .signle-side-bar.search-area .body input {
  height: 60px;
  background: rgba(222, 222, 222, 0.3411764706);
  border-radius: 3px;
  border: 1px solid #DEDEDE;
  padding-right: 65px;
}

.side-bar-details-page .signle-side-bar.search-area .body input:focus {
  border-color: var(--color-primary);
}

.side-bar-details-page .signle-side-bar.category-area .body {
  margin-top: 50px;
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: rgba(222, 222, 222, 0.3411764706);
  border: 1px solid #DEDEDE;
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category:last-child {
  margin-bottom: 0;
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category p {
  margin: 0;
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category i {
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category:hover p {
  color: #fff;
}

.side-bar-details-page .signle-side-bar.category-area .body .single-category:hover i {
  color: #fff;
}

.side-bar-details-page .signle-side-bar.call-to-action {
  background-image: url(../images/cta/01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.side-bar-details-page .signle-side-bar.call-to-action .easy-call-to-action {
  text-align: center;
}

.side-bar-details-page .signle-side-bar.call-to-action .easy-call-to-action .icon-center-call {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin: auto;
  margin-bottom: 30px;
}

.side-bar-details-page .signle-side-bar.call-to-action .easy-call-to-action .title {
  color: #fff;
  font-size: 36px;
}

.side-bar-details-page .signle-side-bar.call-to-action .easy-call-to-action p.disc {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.side-bar-details-page .signle-side-bar.call-to-action .easy-call-to-action a {
  color: #fff;
  text-align: center;
  font-size: 27px;
  margin-bottom: 0;
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.call-to-action .easy-call-to-action a:hover {
  color: var(--color-primary);
}

.side-bar-details-page .signle-side-bar.brochure .body {
  margin-top: 50px;
}

.side-bar-details-page .signle-side-bar.brochure .body .single-brocher {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: rgba(222, 222, 222, 0.3411764706);
  border: 1px solid #DEDEDE;
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.brochure .body .single-brocher p {
  margin-bottom: 0;
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.brochure .body .single-brocher i {
  transition: 0.3s;
}

.side-bar-details-page .signle-side-bar.brochure .body .single-brocher:hover {
  background: #03041C;
}

.side-bar-details-page .signle-side-bar.brochure .body .single-brocher:hover p {
  color: #fff;
}

.side-bar-details-page .signle-side-bar.brochure .body .single-brocher:hover i {
  color: #fff;
}

.service-single-three {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.068);
  padding: 60px 30px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  z-index: 1;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .service-single-three {
    padding: 60px 20px;
  }
}

.service-single-three::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--gradient-two);
  border-radius: 8px;
  opacity: 0;
  transition: 0.4s;
}

.service-single-three a {
  display: block;
  margin-bottom: 20px;
  transition: 0.4s;
}

.service-single-three a .title {
  font-size: 20px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.service-single-three p.disc {
  font-size: 16px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.service-single-three svg {
  transition: 0.4s;
}

.service-single-three svg path {
  transition: 0.4s;
  fill: var(--color-primary);
}

.service-single-three:hover::after {
  opacity: 1;
}

.service-single-three:hover a .title {
  color: #fff;
}

.service-single-three:hover p.disc {
  color: #fff;
}

.service-single-three:hover svg path {
  fill: #fff;
}

.link-over {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.black-shape-bottom-service {
  height: 300px;
  background: #03041C;
  width: 87%;
  margin-top: -180px;
}

.services-style--1 {
  max-width: 1920px;
  margin: auto;
}

.faq-style-one {
  max-width: 1920px;
  margin: auto;
}

.testimonial-with-brand {
  max-width: 1920px;
  margin: auto;
}

.footer-style-one-wrapper {
  max-width: 1920px;
  margin: auto;
}

.copyright-area-one {
  max-width: 1920px;
  margin: auto;
}

.service-inner.financial-service-inner.agency-service {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  border: 1px solid transparent;
  border-radius: 8px;
}

.service-inner.financial-service-inner.agency-service.feature-service {
  padding: 25px 10px;
}

.service-inner.financial-service-inner.agency-service.feature-service .icon {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact-inner-agency .ft-link li .single-contact .icon {
  background-color: var(--color-primary) !important;
}

.short-discription-between-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .short-discription-between-area {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .short-discription-between-area {
    flex-direction: column;
    align-items: flex-start;
  }
}

.short-discription-between-area .title {
  font-size: 36px;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .short-discription-between-area .title {
    font-size: 26px;
  }
}

.short-discription-between-area .discription-area {
  max-width: 45%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .short-discription-between-area .discription-area {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .short-discription-between-area .discription-area {
    max-width: 100%;
  }
}

.short-discription-between-area .discription-area p.disc {
  margin-bottom: 20px;
}

.btn-readmore {
  padding: 0;
  position: relative;
  max-width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-readmore::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f1f1f1;
  transition: 0.3s;
}

.btn-readmore:hover::after {
  background: var(--color-primary);
}

.social-area-transparent {
  display: flex;
  align-items: center;
}

.social-area-transparent span {
  color: #fff;
  font-weight: 400;
}

.social-area-transparent a {
  margin-left: 18px;
}

.social-area-transparent a i {
  color: #fff;
}

.social-icons {
  padding: 0;
  margin: 0;
}

.social-icons li {
  list-style: none;
  margin: 0;
  transition: 0.5s;
}

.social-icons li a {
  display: inline-block;
}

.social-icons.social-icons-with-bg {
  background-color: var(--color-white);
  position: absolute;
  right: 0;
  bottom: 100%;
  transition: 0.5s;
  transform: scale(1, 0);
  transform-origin: bottom left;
}

.social-icons.social-icons-with-bg li a {
  width: 60px;
  height: 60px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons.social-icons-with-bg li a i {
  color: var(--color-heading);
  transition: 0.5s;
}

.social-icons.social-icons-with-bg li:hover {
  background-color: var(--color-primary);
}

.social-icons.social-icons-with-bg li:hover i {
  color: var(--color-white);
}

.social-icons.solid-social-icons {
  display: flex;
  float: right;
}

.social-icons.solid-social-icons li {
  margin-right: 20px;
}

.social-icons.solid-social-icons li:last-child {
  margin-right: 0;
}

.social-icons.solid-social-icons li a i {
  color: red;
}

.social-icons.rounded-social-icons li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 5px;
  /* background-color: #1D1E33; */
  text-align: center;
  transform: scale(1);
  transition: 0.5s;
}

.social-icons.rounded-social-icons li a i {
  color: #ffffff;
}

.social-icons.rounded-social-icons li a:hover {
  transform: scale(1.1);
  background-color: var(--color-primary);
}

.social-icons.rounded-social-icons li a.border-one-primary {
  border: 1px solid var(--color-primary);
}

.social-icons.rounded-social-icons li a.border-one-primary i {
  color: var(--color-primary);
}

.fit-content {
  max-width: fit-content;
}

.mb-10 {
  margin-bottom: 10px;
}

.tmp-btn {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 400;
  text-align: center;
}

.tmp-btn.btn-primary {
  background: var(--color-primary) !important;
  border: none;
  background-color: #E42032;
  background-image: linear-gradient(315deg, #E42032 0%, #E42032 74%);
  border: none;
  z-index: 1;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-btn.btn-primary {
    padding: 8px 10px;
  }
}

@media only screen and (max-width: 320px) {
  .tmp-btn.btn-primary {
    padding: 11px;
    font-size: 12px;
  }
}


/* @media only screen and (max-width: 767px) {
  .tmp-btn.btn-primary {
    padding: 8px 10px;
  }
} */

.tmp-btn.btn-primary:hover {
  color: #fff;
}

.tmp-btn.btn-primary:hover::after {
  top: 0;
  height: 100%;
}

.tmp-btn.btn-secondary {
  background: var(--color-secondary) !important;
  border: none;
}

.tmp-btn.btn-secondary:hover {
  background: var(--background-color-2) !important;
}

.tmp-btn.btn-with-icon i {
  transition: 0.5s;
  margin-left: 10px;
}

.tmp-btn.btn-transparent {
  background-color: transparent;
  border: 1px solid var(--color-body);
}

.tmp-btn.btn-gradiant {
  background: var(--gradient-two);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: 0.3s;
}

.tmp-btn.btn-gradiant::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #ED145B, #4A11EB);
  content: "";
  z-index: -1;
  transition: 0.3s;
  opacity: 0;
}

.tmp-btn.btn-gradiant:hover::after {
  opacity: 1;
}

.tmp-btn.btn-gradiant-2 {
  background: transparent;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s;
  border: 1px solid #fff;
}

.tmp-btn.btn-gradiant-2::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #ED145B, #4A11EB);
  content: "";
  z-index: -1;
  transition: 0.3s;
  opacity: 0;
}

.tmp-btn.btn-gradiant-2:hover {
  border: 1px solid transparent;
}

.tmp-btn.btn-gradiant-2:hover::after {
  opacity: 1;
}

button {
  max-width: max-content;
}

button.btn-read-more {
  font-size: 16px;
  line-height: 30px;
  color: var(--color-heading);
  font-weight: var(--s-semi-bold);
}

.btn-read-more {
  font-size: 16px;
  line-height: 30px;
  color: var(--color-heading);
  font-weight: var(--s-semi-bold);
  display: flex;
  align-items: center;
  font-family: var(--font-secondary);
}

.btn-read-more .read-more-text {
  margin-right: 10px;
}

.btn-read-more .read-more-icon {
  font-size: 18px;
}

.vedio-play {
  margin-left: 40px;
}

.vedio-play .btn-rounded {
  height: 50px;
  display: inline-block;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  border: 1px solid var(--color-secondary);
  text-align: center;
}

.vedio-play .btn-rounded.border-white {
  border: 1px solid var(--color-white);
}

.vedio-play .btn-rounded span i {
  color: var(--color-secondary);
}

.vedio-play .btn-rounded span i.color-white {
  color: var(--color-white);
}

.btn-learn-more {
  font-size: 16px;
  font-weight: var(--p-regular);
  line-height: 22px;
  color: var(--color-body);
}

.three--dot .dot {
  display: inline-block;
  height: 5px;
  width: 5px;
  background-color: var(--color-heading);
  transition: 0.5s;
}

.btn-gradiant-two {
  position: relative;
  color: #ffffff;
  border: none;
  padding: 25px 20px;
  overflow: hidden;
  transition: 0.5s;
}

.btn-gradiant-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: var(--gradient-two);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.btn-gradiant-two::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(to left, #ED145B, #4A11EB);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  opacity: 0;
}

.btn-gradiant-two:hover {
  transform: translateY(-5px);
}

.btn-gradiant-two:hover::before {
  opacity: 0;
}

.btn-gradiant-two:hover::after {
  opacity: 1;
}

.vedio-play {
  margin-left: 40px;
}

.vedio-play .btn-rounded {
  height: 50px;
  display: inline-block;
  width: 50px;
  line-height: 50px;
  border-radius: 100%;
  border: 1px solid var(--color-secondary);
  text-align: center;
}

.vedio-play .btn-rounded.border-white {
  border: 1px solid var(--color-white);
}

.vedio-play .btn-rounded span i {
  color: var(--color-secondary);
}

.vedio-play .btn-rounded span i.color-white {
  color: var(--color-white);
}

.vedio-play.vedio-play-large {
  margin-left: 0;
}

.vedio-play.vedio-play-large .btn-rounded {
  height: 105px;
  width: 105px;
  line-height: 105px;
  background-image: var(--gradient-two);
}

.vedio-play.vedio-play-large .btn-rounded.border-large {
  border: 15px solid var(--color-body);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.btn-rounded.mid-btn {
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border: 20px solid rgb(138, 18, 216);
  border-radius: 100%;
}

@media only screen and (max-width: 479px) {
  .btn-rounded.mid-btn {
    height: 60px;
    width: 60px;
    line-height: 100px;
    background-color: var(--color-white);
    border: none;
  }
}

.btn-rounded.mid-btn i {
  color: #a611eb;
  font-size: 30px;
}

@media only screen and (max-width: 479px) {
  .btn-rounded.mid-btn i {
    color: #a611eb;
    font-size: 24px;
  }
}

.single-blog .blog-inner {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.single-blog .blog-inner .thumbnail {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
}

.single-blog .blog-inner .thumbnail a img {
  width: 100%;
  transition: var(--transition);
}

.single-blog .blog-inner .thumbnail a:hover img {
  transform: scale(1.1);
}

.single-blog .blog-inner .thumbnail .pmt-blog-meta {
  position: absolute;
  top: 30px;
  left: 30px;
}

.single-blog .blog-inner .thumbnail .pmt-blog-meta .all-meta {
  display: flex;
  padding: 0;
  margin: 0;
}

.single-blog .blog-inner .thumbnail .pmt-blog-meta .all-meta li {
  list-style: none;
  font-size: 16px;
  line-height: 35px;
  background-color: #fff;
  font-weight: var(--p-medium);
  margin: 0;
}

.single-blog .blog-inner .thumbnail .pmt-blog-meta .all-meta li.date {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px 0 0 8px;
  padding: 10px;
}

.single-blog .blog-inner .thumbnail .pmt-blog-meta .all-meta li.date.bg--secondary {
  background-color: var(--color-secondary);
}

.single-blog .blog-inner .thumbnail .pmt-blog-meta .all-meta li.month {
  border-radius: 0 8px 8px 0;
  padding: 10px;
  color: var(--color-heading);
}

.single-blog .blog-inner .blog-content {
  padding: 30px;
}

@media only screen and (max-width: 575px) {
  .single-blog .blog-inner .blog-content {
    padding: 20px;
  }

  .paddingcontainer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sharebtn {
    position: relative !important;
    padding: 8px 30px !important;
    margin-top: 15%;
  }

  .emailBtn {
    position: relative !important;
    padding: 8px 30px !important;
    margin-top: 0%;

  }

  .shareInput {
    width: 100% !important;
    margin-top: 30px;
  }
}

.single-blog .blog-inner .blog-content .blog-head {
  line-height: 36px;
  font-weight: var(--s-regular);
}

.single-blog .blog-inner .blog-content .blog-head .name {
  padding-right: 10px;
  position: relative;
  font-weight: var(--s-regular);
}

.single-blog .blog-inner .blog-content .blog-head .name::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: var(--color-body);
  bottom: 0;
  right: -3px;
  transform: rotate(28deg);
}

.single-blog .blog-inner .blog-content .blog-head .designation {
  font-weight: var(--s-regular);
  padding-left: 10px;
}

.single-blog .blog-inner .blog-content .blog-body .title-area {
  margin-bottom: 12px;
  display: block;
}

.single-blog .blog-inner .blog-content .blog-body .title {
  font-size: 24px;
  line-height: 32px;
  margin-top: 13px;
  margin-bottom: 15px;
  font-weight: var(--s-bold);
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 1px;
  background-position: 0px 95%;
  -webkit-transition: background-size 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -o-transition: background-size 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: background-size 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-repeat: no-repeat;
  color: inherit;
}

@media only screen and (max-width: 1199px) {
  .single-blog .blog-inner .blog-content .blog-body .title {
    font-size: 16px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .single-blog .blog-inner .blog-content .blog-body .title {
    font-size: 20px;
  }

  .single-blog .blog-inner .blog-content .blog-body .title br {
    display: none;
  }
}

.single-blog .blog-inner .blog-content .blog-body .title.sm-title {
  font-size: 20px;
  line-height: 30px;
}

.single-blog .blog-inner .blog-content .blog-body .title.lg-title {
  font-size: 30px;
  line-height: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog .blog-inner .blog-content .blog-body .title.lg-title {
    font-size: 20px;
    line-height: 31px;
  }
}

@media only screen and (max-width: 767px) {
  .single-blog .blog-inner .blog-content .blog-body .title.lg-title {
    font-size: 20px;
    line-height: 31px;
  }
}

.single-blog .blog-inner .blog-content .blog-body .title:hover {
  background-size: 100% 1px;
}

.single-blog .blog-inner .blog-content .blog-body .description {
  font-size: 16px;
  line-height: 28px;
  font-weight: var(--p-regular);
  margin-bottom: 14px;
}

.single-blog.blog-style-two .blog-inner {
  background-color: transparent;
  box-shadow: none;
}

.single-blog.blog-style-two .blog-inner .blog-content {
  padding: 0;
  padding-top: 30px;
}

.single-blog.blog-style-three .blog-inner {
  padding: 15px;
}

.single-blog.blog-style-three .blog-inner .thumbnail {
  border-radius: 8px;
}

.single-blog.blog-style-three .blog-inner .blog-content {
  padding: 0 20px;
}

@media only screen and (max-width: 479px) {
  .single-blog.blog-style-three .blog-inner .blog-content {
    padding: 0;
  }
}

.single-blog.blog-style-three .blog-inner .blog-content .blog-head {
  margin-top: 30px;
}

.single-blog.blog-style-three .blog-inner .blog-content .blog-body .btn-read-more {
  display: inline-block;
}

.single-blog-recent-post-sidebar {
  margin-bottom: 20px;
}

.single-blog-recent-post-sidebar:last-child {
  margin-bottom: 0;
}

.single-blog-recent-post-sidebar a {
  position: relative;
  display: block;
  overflow: hidden;
}

.single-blog-recent-post-sidebar a img {
  transition: 0.3s;
}

.single-blog-recent-post-sidebar a .inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.single-blog-recent-post-sidebar a .inner span {
  padding: 10px 22px;
  border-radius: 60px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
}

.single-blog-recent-post-sidebar a .inner .title {
  margin-top: 15px;
  line-height: 27px;
  margin-bottom: 0;
  color: #fff;
  transition: 0.3s;
}

.single-blog-recent-post-sidebar a .inner .title:hover {
  color: var(--color-primary);
}

.single-blog-recent-post-sidebar:hover a img {
  transform: scale(1.15);
}

.tags-wrapper-side-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.signle-tag-side-bar button {
  background: rgba(222, 222, 222, 0.2941176471);
  padding: 5px 18px;
  font-size: 13px;
  line-height: 26px;
  border-radius: 3px;
  transition: 0.3s;
  border: 1px solid #DEDEDE;
}

.signle-tag-side-bar button:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.single-projects-one-col-1 {
  text-align: center;
  margin-bottom: 50px;
}

.single-projects-one-col-1:last-child {
  margin-bottom: 0;
}

.single-projects-one-col-1:hover img {
  transform: scale(1.05);
}

.single-projects-one-col-1 .thumbnail {
  display: block;
  overflow: hidden;
}

.single-projects-one-col-1 .thumbnail img {
  transition: 0.3s;
}

.single-projects-one-col-1 .inner-blog-single {
  margin-top: -60px;
  padding: 0 30px;
  z-index: 5;
  position: relative;
}

@media only screen and (max-width: 575px) {
  .single-projects-one-col-1 .inner-blog-single {
    padding: 0 10px;
  }
}

.single-projects-one-col-1 .inner-blog-single .inner {
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.0901960784);
  padding: 50px 40px;
  text-align: center;
  background: #fff;
}

@media only screen and (max-width: 575px) {
  .single-projects-one-col-1 .inner-blog-single .inner {
    padding: 20px;
  }
}

.single-projects-one-col-1 .inner-blog-single .inner a .title {
  margin-top: 15px;
  font-size: 36px;
  line-height: 45px;
  transition: 0.3s;
}

@media only screen and (max-width: 767px) {
  .single-projects-one-col-1 .inner-blog-single .inner a .title {
    font-size: 26px;
    line-height: 34px;
  }
}

@media only screen and (max-width: 575px) {
  .single-projects-one-col-1 .inner-blog-single .inner a .title {
    font-size: 24px;
    line-height: 32px;
  }
}

.single-projects-one-col-1 .inner-blog-single .inner a .title:hover {
  color: var(--color-primary);
}

.single-projects-one-col-1 .inner-blog-single .inner p.disc {
  text-align: center;
  margin-bottom: 30px;
}

.single-blog.blog-style-three {
  height: 100%;
}

.faq-bg-image {
  background-image: url(../images/faq/02.jpg);
}

.faq-bg-image-2 {
  background-image: url(../images/faq/faq-bg-2.jpg);
}

img {
  max-width: 100%;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: none;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  box-shadow: none;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

.accordion-button::after {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: none;
  display: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion-button {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 30px;
  font-weight: var(--s-bold);
  padding-left: 0;
}

.accordion-button .accordion-button-left i {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: var(--color-primary);
  border-radius: 100%;
  color: var(--color-white);
  margin-right: 15px;
  transition: var(--transition);
}

.accordion-button .accordion-button-right i {
  transition: 0.5s;
}

.accordion-button .accordion-button-right i.fa-arrow-right {
  transform: rotate(1deg);
}

.accordion-button.collapsed .accordion-button-left i {
  background-color: var(--color-heading);
}

.accordion-button.collapsed .accordion-button-right i {
  color: var(--color-heading);
}

.accordion-button.collapsed .accordion-button-right i.fa-arrow-right {
  transform: rotate(45deg);
}

.accordion {
  /* padding: 50px; */
  /* background-color: #fff; */
}

@media only screen and (max-width: 575px) {
  .accordion {
    padding: 20px;
  }
}

@media only screen and (max-width: 479px) {
  .accordion {
    padding: 20px 10px;
  }
}

.accordion-body {
  padding-bottom: 35px !important;
  padding: 0;
}

.faq-accordion .accordion-item .accordion-header {
  padding: 7px 0;
}

.faq-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.faq-buttom {
  background-color: var(--color-heading);
  text-align: center;
  padding: 30px 0;
}

.faq-buttom .title {
  font-size: 16px;
  color: var(--color-white);
  line-height: 31px;
  font-weight: var(--s-regular);
  margin: 0;
}

.faq-buttom p {
  font-size: 16px;
  color: var(--color-white);
  line-height: 31px;
  font-weight: var(--s-regular);
}

.faq-buttom p a {
  color: var(--color-primary);
  font-weight: var(--s-regular);
  font-family: var(--font-secondary);
}

.faq-area.faq-style-two {
  position: relative;
  z-index: 1;
  height: 678px;
}

.faq-area.faq-style-two::before {
  position: absolute;
  content: " ";
  background-color: rgba(3, 4, 28, 0.6549019608);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.faq-area.faq-style-two .faq-inner {
  max-width: 850px;
  margin: 0 auto;
}

.faq-area.faq-style-two .faq-inner .faq-content {
  text-align: center;
}

.faq-area.faq-style-two .faq-inner .faq-content .vedio-play {
  margin-bottom: 40px;
}

.faq-area.faq-style-two .faq-inner .faq-content .vedio-play .vedio-icone {
  max-width: max-content;
  margin: auto;
}

.faq-area.faq-style-two .faq-inner .faq-content .title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: var(--s-extra-bold);
  color: var(--color-white);
}

.faq-area.faq-style-two .faq-inner .faq-content .description {
  color: var(--color-white);
  margin-top: 25px;
}

.main-faq {
  background-color: var(--color-white);
  border-radius: 8px;
}

.main-faq .faq-accordion.faq-accordion-style-two .accordion .section-head {
  padding-bottom: 0;
}

.mt-dec--180 {
  margin-top: -180px;
}

.tmp-faq-area-three {
  max-width: 100%;
  margin: auto;
  margin-top: -150px;
}

@media only screen and (max-width: 575px) {
  .tmp-faq-area-three {
    margin-top: -100px;
  }
}

.tmp-faq-area-three .main-faq {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: block;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.068);
}

.tmp-faq-area-three .main-faq .thumbnail img {
  width: 100%;
}

.tmp-faq-area-three .main-faq .shape-image {
  position: absolute;
  left: 20%;
  bottom: 0;
  max-width: max-content;
}

.tmp-faq-area-three .main-faq .accordion-button {
  background-color: transparent;
}

.tmp-faq-area-three .accordion-item {
  border-bottom: 1px solid #e1e1e1;
}

body.faq {
  background: #f1f1f1;
}

body.service-details {
  background: #f8f8f8;
}

.thumbnail-faq-cons img {
  width: 100%;
}

.bg-product-1 {
  background-image: url(../images/product/bg/01.jpg);
  background-repeat: no-repeat;
  background-position: top center;
}

.container-full {
  max-width: 1920px;
  margin: auto;
}

.mySwiper-portfolio-1 {
  position: relative;
}

.mySwiper-portfolio-1 .swiper-slide .inner-content {
  opacity: 0;
  bottom: -20px;
  transition: 0.3s;
}

.mySwiper-portfolio-1 .signle-product-start::after {
  transition: 0.3s !important;
}

.mySwiper-portfolio-1 .signle-product-start:hover .inner-content {
  bottom: 30px;
  opacity: 1;
}

.mySwiper-portfolio-1 .signle-product-start:hover::after {
  opacity: 1 !important;
}

.mySwiper-portfolio-1 .swiper-slide-active .inner-content {
  bottom: 30px;
  opacity: 1;
}

.mySwiper-portfolio-1 .swiper-pagination {
  left: 50%;
  display: flex;
  gap: 0;
  justify-content: center;
}

.mySwiper-portfolio-1 .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.mySwiper-portfolio-1 .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-primary);
}

.mySwiper-portfolio-1 .swiper-button-next,
.mySwiper-portfolio-1 .swiper-button-prev {
  top: 45%;
  opacity: 0;
  transition: 0.3s;
}

.mySwiper-portfolio-1 .swiper-button-next::after,
.mySwiper-portfolio-1 .swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  transition: 0.3s;
  justify-content: center;
}

.mySwiper-portfolio-1 .swiper-button-next:hover::after,
.mySwiper-portfolio-1 .swiper-button-prev:hover::after {
  transform: scale(1.2);
}

.mySwiper-portfolio-1 .swiper-button-prev {
  left: 120px;
}

.mySwiper-portfolio-1 .swiper-button-next {
  right: 120px;
}

.mySwiper-portfolio-1:hover .swiper-button-next,
.mySwiper-portfolio-1:hover .swiper-button-prev {
  opacity: 1;
}

.mySwiper-portfolio-1:hover .swiper-button-prev {
  left: 60px;
}

.mySwiper-portfolio-1:hover .swiper-button-next {
  right: 70px;
}

.mySwiper-portfolio-2-cons {
  position: relative;
}

.mySwiper-portfolio-2-cons .swiper-slide .inner-content {
  opacity: 0;
  bottom: -20px;
  transition: 0.3s;
}

.mySwiper-portfolio-2-cons .signle-product-start::after {
  transition: 0.3s !important;
}

.mySwiper-portfolio-2-cons .signle-product-start:hover .inner-content {
  bottom: 30px;
  opacity: 1;
}

.mySwiper-portfolio-2-cons .signle-product-start:hover::after {
  opacity: 1 !important;
}

.mySwiper-portfolio-2-cons .swiper-slide-active .inner-content {
  bottom: 30px;
  opacity: 1;
}

.mySwiper-portfolio-2-cons .swiper-pagination {
  left: 50%;
  display: flex;
  gap: 0;
  justify-content: center;
}

.mySwiper-portfolio-2-cons .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.mySwiper-portfolio-2-cons .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-primary);
}

.mySwiper-portfolio-2-cons .swiper-button-next,
.mySwiper-portfolio-2-cons .swiper-button-prev {
  top: 45%;
  opacity: 0;
  transition: 0.3s;
}

.mySwiper-portfolio-2-cons .swiper-button-next::after,
.mySwiper-portfolio-2-cons .swiper-button-prev::after {
  font-size: 16px;
  color: #fff;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  transition: 0.3s;
  justify-content: center;
}

.mySwiper-portfolio-2-cons .swiper-button-next:hover::after,
.mySwiper-portfolio-2-cons .swiper-button-prev:hover::after {
  transform: scale(1.2);
}

.mySwiper-portfolio-2-cons .swiper-button-prev {
  left: 120px;
}

.mySwiper-portfolio-2-cons .swiper-button-next {
  right: 120px;
}

.mySwiper-portfolio-2-cons:hover .swiper-button-next,
.mySwiper-portfolio-2-cons:hover .swiper-button-prev {
  opacity: 1;
}

.mySwiper-portfolio-2-cons:hover .swiper-button-prev {
  left: 60px;
}

.mySwiper-portfolio-2-cons:hover .swiper-button-next {
  right: 70px;
}

.signle-product-start {
  overflow: hidden;
  display: block;
  position: relative !important;
  max-width: max-content;
  min-width: 100%;
}

.signle-product-start .thumbnail {
  display: block;
  min-width: 100%;
}

.signle-product-start .thumbnail img {
  display: block;
  min-width: 100%;
}

.signle-product-start .inner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 30px;
  width: 83%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.signle-product-start .inner-content a .title {
  transition: 0.3s;
  margin-bottom: 7px;
}

.signle-product-start .inner-content a:hover .title {
  color: var(--color-primary);
}

.signle-product-start .inner-content span.designation {
  font-size: 16px;
  color: #6a6c71;
}

.signle-product-start .inner-content .tag {
  width: 40px;
  height: 25px;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: -24px;
  left: 33px;
}

.single-team {
  position: relative;
  width: 100%;
}

.single-team .thumbnail {
  display: inline-block;
  width: 100%;
}

.single-team .thumbnail img {
  width: 100%;
  display: inline-block;
}

.single-team .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.single-team .content .name {
  font-size: 20px;
  font-weight: var(--s-bold);
  color: var(--color-heading);
  line-height: 40px;
}

.single-team .content .designation {
  color: var(--color-body);
  font-size: 16px;
  font-weight: var(--p-regular);
}

.single-team .content .team-name {
  height: 60px;
  clip-path: polygon(0% -1%, 81% -14%, 106% 181%, 0% 100%);
  padding: 0 15px;
}

.single-team .content .team-name .name-area .name {
  transition: 0.3s;
}

.single-team .content .team-name .name-area:hover .name {
  color: var(--color-primary);
}

.single-team .content .team-name .name {
  margin-bottom: 0;
}

.single-team .content .team-name .designation {
  margin-top: -5px;
}

.single-team .content .team-name.content-with-bg {
  background-color: var(--color-white);
  width: 225px;
}

.bg-white {
  background: #fff;
}

.share-icon-style-one {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.share-icon-style-one i {
  transition: 0.3s;
  color: #fff;
}

.share-icon-style-one:hover {
  background: var(--color-primary);
}

.share-icon-style-one:hover i {
  color: var(--color-white);
}

.share-icon-style-one .social-icons-wrapper {
  position: absolute;
  top: -15px;
  right: 0;
  transition: 0.5s;
  transform-origin: 0 0 0;
  right: 0;
  bottom: 0;
  transition: 0.5s;
  transform: scale(1, 0);
  transform-origin: bottom left;
}

.share-icon-style-one .social-icons-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.share-icon-style-one .social-icons-wrapper ul li {
  padding: 0;
  transform: translateY(60px);
  opacity: 0;
  transition: 1.5s;
}

.share-icon-style-one .social-icons-wrapper ul li a {
  height: 60px;
  width: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.share-icon-style-one .social-icons-wrapper ul li a i {
  transition: 0.3s;
}

.share-icon-style-one .social-icons-wrapper ul li a:hover {
  background-color: var(--color-primary);
}

.share-icon-style-one .social-icons-wrapper .social-icons.social-icons-with-bg {
  position: absolute;
  top: -225px;
}

.share-icon-style-one:hover ul li {
  transform: translateY(0);
  opacity: 1;
}

.share-icon-style-one:hover .social-icons.social-icons-with-bg {
  transform: scale(1);
  opacity: 1;
}

.single-card.card-horizontal .card-inner {
  border-radius: 10px;
  background: #ffffff;
  padding: 50px;
  display: flex;
  align-items: center;
  background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0.2) 100%);
}

@media only screen and (max-width: 767px) {
  .single-card.card-horizontal .card-inner {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .single-card.card-horizontal .card-inner {
    flex-direction: column-reverse;
    gap: 30px;
    align-items: flex-start;
  }
}

.single-card.card-horizontal .card-inner .content .social-icons {
  margin-bottom: 20px;
}

.single-card.card-horizontal .card-inner .content .description {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-heading);
  font-weight: var(--p-regular);
  padding-right: 30px;
  margin-top: 15px;
}

@media only screen and (max-width: 575px) {
  .single-card.card-horizontal .card-inner .content .description {
    padding-right: 0;
  }
}

.single-card.card-horizontal .card-inner .content .content.content-without-bg .name {
  font-size: 20px;
  font-weight: var(--s-bold);
  line-height: 17px;
  color: var(--color-heading);
  font-family: var(--font-secondary);
}

.single-card.card-horizontal .card-inner .content .content.content-without-bg .designation {
  font-size: var(--font-size-b1);
  color: var(--color-body);
  line-height: 21px;
  font-weight: var(--s-regular);
  font-family: var(--font-secondary);
  margin-top: 10px;
}

.single-card.card-horizontal .card-inner .thumbnail {
  position: relative;
}

.single-card.card-horizontal .card-inner .thumbnail img {
  max-width: max-content;
}

.single-card.card-horizontal.agency-testimonials {
  border: 1px solid #f1f1f1;
}

.bg-1 {
  background-image: url(../images/testimonial/bg-01.jpg);
}

.icon.icon-quote {
  height: 45px;
  width: 45px;
  background-color: var(--color-primary);
  line-height: 45px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  left: 20px;
  border: 2px solid var(--color-white);
}

.icon.icon-quote i {
  display: inline-block;
  color: var(--color-white);
  font-size: 20px;
}

.swiper-container-style-two {
  overflow: hidden;
}

.bg-testimonials-1 {
  background-image: url(../images/testimonial/bg-01.jpg);
}

.testimonials-button-area {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.testimonials-button-area .button-next-prev .swiper-button-prev {
  right: 65px;
  left: auto;
}

@media only screen and (max-width: 575px) {
  .testimonials-button-area .button-next-prev .swiper-button-prev {
    right: 90px;
  }
}

.testimonials-button-area .button-next-prev .swiper-button-next {
  right: 0;
  left: auto;
}

@media only screen and (max-width: 575px) {
  .testimonials-button-area .button-next-prev .swiper-button-next {
    right: 35px;
  }
}

.testimonials-button-area .button-next-prev .swiper-button-prev,
.testimonials-button-area .button-next-prev .swiper-button-next {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  transition: 0.3s;
}

@media only screen and (max-width: 575px) {

  .testimonials-button-area .button-next-prev .swiper-button-prev,
  .testimonials-button-area .button-next-prev .swiper-button-next {
    top: 210px;
    height: 40px;
    width: 40px;
  }
}

.testimonials-button-area .button-next-prev .swiper-button-prev::after,
.testimonials-button-area .button-next-prev .swiper-button-next::after {
  font-size: 16px;
  transition: 0.3s;
}

.testimonials-button-area .button-next-prev .swiper-button-prev:hover,
.testimonials-button-area .button-next-prev .swiper-button-next:hover {
  border: 1px solid transparent;
  transform: scale(1.05);
  background: var(--color-primary);
}

.testimonials-button-area .button-next-prev .swiper-button-prev:hover::after,
.testimonials-button-area .button-next-prev .swiper-button-next:hover::after {
  color: #fff;
}

.testimonial-area.testimonial-style-two .single-testimonial {
  background-color: var(--color-white);
  border-radius: 8px;
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header {
  background: linear-gradient(-217deg, #00e7fe 0%, #0760cf 100%);
  border-radius: 8px 8px 0 0;
  padding: 50px;
}

@media only screen and (max-width: 575px) {
  .testimonial-area.testimonial-style-two .single-testimonial .testimonial-header {
    padding: 25px;
  }
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner .content {
  display: flex;
  align-items: center;
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner .content .content-left .thumbnail {
  margin-right: 25px;
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner .content .content-right .name {
  font-size: 22px;
  font-weight: var(--s-bold);
  line-height: 30px;
  color: var(--color-white);
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner .content .content-right .designation {
  font-size: 16px;
  line-height: 21px;
  font-weight: var(--s-regular);
  font-family: var(--font-secondary);
  color: var(--color-white);
  margin-top: 10px;
}

@media only screen and (max-width: 575px) {
  .testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner .icon {
    display: none;
  }
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-header .header-inner .icon i {
  color: var(--color-white);
  opacity: 0.1;
  font-size: 90px;
  font-weight: 300;
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-body {
  padding: 45px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.068);
}

@media only screen and (max-width: 575px) {
  .testimonial-area.testimonial-style-two .single-testimonial .testimonial-body {
    padding: 25px;
  }
}

.testimonial-area.testimonial-style-two .single-testimonial .testimonial-body .description {
  margin-bottom: 25px;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three {
  background-color: rgba(255, 255, 255, 0.3411764706);
  padding: 40px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1199px) {
  .testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three {
    padding: 25px;
  }
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three::before {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: var(--gradient-two);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  border-radius: 8px;
  z-index: -1;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .testimonial-top .icon i {
  font-size: 40px;
  text-stroke: 1px transparent;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-heading);
  transition: 0.3s;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .testimonial-body .description {
  transition: 0.3s;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .clint-info-wrapper {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .clint-info-wrapper .thumbnail {
  margin-right: 22px;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .clint-info-wrapper .client-info .title {
  font-size: 22px;
  font-weight: var(--s-bold);
  line-height: 30px;
  margin-bottom: 5px;
  transition: 0.3s;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three .clint-info-wrapper .client-info .designation {
  font-family: var(--font-secondary);
  line-height: 21px;
  color: var(--color-heading);
  transition: 0.3s;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three:hover .stars-group .star i {
  color: #fff;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three:hover::before {
  opacity: 1;
  visibility: visible;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three:hover .testimonial-body .description {
  color: #fff;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three:hover .client-info .title {
  color: #fff;
}

.testimonial-area.testimonial-style-three .tmp-testimonial-box.style-three:hover .client-info .designation {
  color: #fff;
}

.banner-bottom {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 479px) {
  .banner-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.banner-bottom .video-title {
  margin-left: 15px;
  font-size: 17px;
  line-height: 22px;
  font-weight: var(--s-semi-bold);
  font-family: var(--font-secondary);
}

.button-area-banner-one {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media only screen and (max-width: 575px) {
  .button-area-banner-one {
    gap: 30px;
  }
}

.tmp-banner-swiper-one-area .tmp-banner-area {
  position: relative;
  z-index: 1;
}

.tmp-banner-swiper-one-area .tmp-banner-area .shape-image-banner-one .one {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  mix-blend-mode: multiply;
  z-index: -1;
}

.tmp-banner-swiper-one-area .tmp-banner-area .shape-image-banner-one .two {
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  z-index: -1;
}

.tmp-banner-swiper-one-area .tmp-banner-area .shape-image-banner-one .three {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .shape-image-banner-one .one {
  animation: slideInLeft 0.8s linear;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .shape-image-banner-one .two {
  animation: slideInLeft 0.8s linear;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .shape-image-banner-one .three {
  animation: slideInLeft 1s linear;
  height: 100%;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner span.sub-title {
  animation: fadeInUp2 1s linear;
  animation-delay: 0.5s;
  opacity: 1;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner h1.title {
  animation: fadeInUp2 1s linear;
  animation-delay: 0.8s;
  opacity: 1;
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc {
  animation: fadeInUp2 1.3s linear;
  animation-delay: 1.1s;
  opacity: 1;
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc {
    max-width: 75%;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner p.disc br {
    display: none;
  }
}

.tmp-banner-swiper-one-area .swiper-slide-active .tmp-banner-area .inner .button-area-banner-one {
  animation: fadeInUp2 1.8s linear;
  animation-delay: 1.4s;
  opacity: 1;
  display: flex;
  max-width: max-content;
}

.mySwiper-banner-one {
  position: relative;
}

.mySwiper-banner-one .swiper-button-next::after,
.mySwiper-banner-one .swiper-button-prev::after {
  height: 65px;
  min-width: 65px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: 0.3s;
}

.mySwiper-banner-one .swiper-button-next:hover::after,
.mySwiper-banner-one .swiper-button-prev:hover::after {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
  border: 1px solid transparent;
}

.mySwiper-banner-one .swiper-button-next {
  right: 70px;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .mySwiper-banner-one .swiper-button-next {
    right: 50px;
    bottom: 100px;
    top: auto;
  }
}

@media only screen and (max-width: 575px) {
  .mySwiper-banner-one .swiper-button-next {
    bottom: 40px;
  }
}

.mySwiper-banner-one .swiper-button-next::after {
  content: "\f061";
  font-weight: 200;
  font-family: var(--font-three);
}

.mySwiper-banner-one .swiper-button-prev {
  right: 70px;
  left: auto;
  margin-top: -70px;
}

@media only screen and (max-width: 767px) {
  .mySwiper-banner-one .swiper-button-prev {
    left: 50px;
    right: auto;
    bottom: 100px;
    top: auto;
  }
}

@media only screen and (max-width: 575px) {
  .mySwiper-banner-one .swiper-button-prev {
    bottom: 40px;
  }
}

.mySwiper-banner-one .swiper-button-prev::after {
  content: "\f060";
  font-weight: 200;
  font-family: var(--font-three);
}

.banner-one-main-wrapper {
  display: flex;
  align-items: center;
  padding: 140px 0;
}

@media only screen and (max-width: 1199px) {
  .banner-one-main-wrapper {
    max-width: 75%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-main-wrapper {
    max-width: 81%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper {
    max-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper {
    padding: 100px 0 140px 0;
  }
}

.banner-one-main-wrapper .inner span.sub-title {
  color: #fff;
  display: block;
  margin-bottom: 16px;
  opacity: 0;
  transition-delay: 0.5s;
  display: block;
}

.banner-one-main-wrapper .inner .title {
  color: #FFFFFF;
  font-size: 60px;
  line-height: 75px;
  margin-bottom: 22px;
  transition-delay: 1s;
  opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 48px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 36px;
    line-height: 1.4;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .inner .title {
    font-size: 28px;
    line-height: 1.4;
  }
}

.banner-one-main-wrapper .inner p.disc {
  color: #FFFFFF;
  transition-delay: 1.5s;
  opacity: 0;
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .inner p.disc br {
    display: none;
  }
}

.banner-one-main-wrapper .inner .button-area-banner-one {
  transition-delay: 2s;
  opacity: 0;
}

.banner-one-main-wrapper .inner .button-area-banner-one .video-play-button::after {
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 575px) {
  .banner-one-main-wrapper .inner .button-area-banner-one .vedio-icone .play-video p.text {
    display: none;
  }
}

.banner-area.banner-style-two {
  background-image: url(../images/banner/banner-two.png);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-area.banner-style-two .rating .stars-group .star i {
  color: var(--color-secondary);
}

.banner-area.banner-style-two .product-share .profile-share a:hover img {
  border-color: var(--color-secondary);
}

.banner-area.banner-style-two .vedio-icone .video-play-button::before {
  background: transparent;
  border: 1px solid #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 80px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 80px 25px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 80px 15px;
  }
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-inner {
    padding: 60px 10px;
  }
}

.banner-area.banner-style-two .banner-inner .sub-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
  font-weight: var(--s-medium);
  font-family: var(--font-secondary);
  color: #141414;
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-inner .sub-title {
    font-size: 14px;
  }
}

.banner-area.banner-style-two .banner-inner .title {
  font-size: 60px;
  line-height: 75px;
  color: var(--color-heading);
  margin-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
  .banner-area.banner-style-two .banner-inner .title {
    font-size: 50px;
    line-height: 66px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.banner-style-two .banner-inner .title {
    font-size: 32px;
    line-height: 48px;
  }

  .banner-area.banner-style-two .banner-inner .title br {
    display: none;
  }
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-inner .title {
    font-size: 25px;
    line-height: 36px;
  }
}

.banner-area.banner-style-two .banner-inner .description {
  margin-bottom: 35px;
}

.banner-area.banner-style-two .bg-circle {
  position: absolute;
  bottom: -60%;
  right: 0;
  z-index: -1;
}

.banner-area.banner-style-two .bg-dolour {
  position: absolute;
  right: 44%;
  top: 523px;
  animation: jump-1 8s linear infinite;
  z-index: -1;
}

.banner-area.banner-style-two .bg-blue-circle {
  position: absolute;
  top: 160px;
  right: 50px;
  animation: jump-2 10s linear infinite;
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .bg-blue-circle {
    position: absolute;
    top: 176px;
    right: 0;
    animation: jump-2 10s linear infinite;
  }
}

@media only screen and (max-width: 575px) {
  .banner-area.banner-style-two .bg-blue-circle img {
    max-width: 150px;
  }
}

.banner-area.banner-style-two .bg-curly-lines {
  position: absolute;
  bottom: -20%;
  left: -9%;
  animation: jump-2 10s linear infinite;
  z-index: -1;
}

.banner-area.banner-style-two .vedio-icone .video-play-button p.text {
  min-width: max-content;
  margin-left: 67px !important;
  top: 22%;
  position: absolute;
}

@media only screen and (max-width: 479px) {
  .banner-area.banner-style-two .banner-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.banner-area .banner-two-thumbnail .thumbnail {
  position: relative;
}

@media only screen and (max-width: 575px) {
  .banner-area .banner-two-thumbnail .thumbnail img {
    max-width: 100%;
    margin: auto;
  }
}

.banner-area .banner-two-thumbnail .thumbnail .product-share {
  position: absolute;
  left: 60%;
  bottom: 120px;
  animation: jump-2 8s linear infinite;
  z-index: 10;
}

@media only screen and (max-width: 575px) {
  .banner-area .banner-two-thumbnail .thumbnail .product-share {
    left: 62%;
    bottom: 45%;
  }
}

@media only screen and (max-width: 479px) {
  .banner-area .banner-two-thumbnail .thumbnail .product-share {
    left: 0;
    bottom: 47%;
    min-width: max-content;
  }
}

@media only screen and (max-width: 575px) {
  .banner-style-two .vedio-icone .video-play-button::after {
    width: 60px;
    height: 60px;
  }
}

.banner-tag {
  position: absolute;
  top: 19%;
  left: -24%;
  animation: jump-2 6s linear infinite;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-tag {
    left: 43%;
  }
}

@media only screen and (max-width: 767px) {
  .banner-tag {
    left: 23%;
    top: 42%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-tag {
    left: 0%;
    top: 62%;
  }
}

.banner-tag .inner {
  background-color: var(--color-white);
  padding: 15px 30px;
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
}

.banner-tag .inner .content .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
  margin-bottom: 5px;
}

.tmp-banner-area.banner-three {
  background-image: url(../images/banner/banner-3-bg.jpg);
  position: relative;
  z-index: 2;
}

.tmp-banner-area.banner-three .vedio-icone .video-play-button::before {
  background: rgba(255, 255, 255, 0.1215686275);
}

.tmp-banner-area.banner-three .swiper-container-three {
  width: 100%;
  position: relative;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .vedio-icone .video-play-button::after {
    height: 70px;
    width: 70px;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner {
  position: relative;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .thumbnail img {
  border-radius: 16px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .thumbnail img {
    height: 400px;
    object-fit: cover;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 560px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content {
    max-width: 95%;
    min-width: 95%;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .title {
  font-size: 50px;
  line-height: 75px;
  font-weight: var(--s-extra-bold);
  color: var(--color-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .title {
    font-size: 26px;
    line-height: 38px;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .description {
  color: var(--color-white);
  font-size: 17px;
  line-height: 30px;
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-three .swiper-container-three .swiper-wrapper .swiper-slide .slider-inner .content .description {
    font-size: 14px;
    line-height: 22px;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-pagination-bullet {
  background-color: transparent;
  border: 2px solid #fff;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-pagination-bullet-active {
  background-color: #fff;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev {
  margin-left: 50px;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
  margin-right: 50px;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-container {
  background-color: rgba(0, 0, 0, 0.25);
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev {
  background-image: none;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
  background-image: none;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
  height: 60px;
  width: 60px;
  background-color: var(--color-white);
  border-radius: 100%;
}

@media only screen and (max-width: 767px) {

  .tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev,
  .tmp-banner-area.banner-three .swiper-container-three .swiper-button-next {
    display: none;
  }
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev i,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next i {
  color: var(--color-primary);
  font-size: 27px;
  transition: 0.5s;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev::after,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next::after {
  display: none;
}

.tmp-banner-area.banner-three .swiper-container-three .swiper-button-prev:hover i,
.tmp-banner-area.banner-three .swiper-container-three .swiper-button-next:hover i {
  color: var(--color-primary);
}

.swiper-container-three {
  padding-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-container-three {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-container-three {
    padding-top: 50px;
  }
}

.swiper-container-three .swiper-slide {
  opacity: 0;
}

.swiper-container-three .swiper-slide-active {
  opacity: 1;
}

.swiper-container-three .swiper-pagination {
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  bottom: 0;
  justify-content: center;
}

.swiper-container-three .swiper-pagination .swiper-pagination-bullet {
  border: 2px solid #fff !important;
}

.swiper-container-three .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
  border: 2px solid var(--color-primary) !important;
}

.tmp-banner-area.banner-three .swiper-button-next,
.tmp-banner-area.banner-three .swiper-button-prev {
  transition: 0.3s;
}

.tmp-banner-area.banner-three .swiper-button-next i::after,
.tmp-banner-area.banner-three .swiper-button-prev i::after {
  transition: 0.3s;
}

.tmp-banner-area.banner-three .swiper-button-next:hover,
.tmp-banner-area.banner-three .swiper-button-prev:hover {
  background-color: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.tmp-banner-area.banner-three .swiper-button-next:hover i,
.tmp-banner-area.banner-three .swiper-button-prev:hover i {
  color: #fff;
}

.tmp-banner-area.banner-three .swiper-button-next:hover i::before,
.tmp-banner-area.banner-three .swiper-button-prev:hover i::before {
  color: #fff;
}

.tmp-banner-swiper-one-area {
  max-width: 1920px;
  margin: auto;
}

.tmp-banner__agency-wrapper-bg {
  background-image: url(../images/banner/banner-agency.jpg);
  height: 1080px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner__agency-wrapper-bg {
    height: 850px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner__agency-wrapper-bg {
    height: 850px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-banner__agency-wrapper-bg {
    height: 750px;
  }
}

@media only screen and (max-width: 575px) {
  .inner-content-banner-four {
    margin-top: -150px;
  }
}

.banner-inner-content-four .vedio-icone {
  margin-bottom: 20px;
}

.banner-inner-content-four .vedio-icone .video-play-button::before {
  background: rgba(255, 255, 255, 0.08);
}

.banner-inner-content-four .content-wrapper .title {
  color: #fff;
  font-size: 44px;
  line-height: 1.3;
  font-family: var(--font-secondary);
  font-weight: 600;

}

@media only screen and (max-width: 1199px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 50px;
    font-weight: 600;
  }

  .banner-inner-content-four .content-wrapper .title br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 44px;
    font-weight: 600;
  }

  .banner-inner-content-four .content-wrapper .title br {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 479px) {
  .banner-inner-content-four .content-wrapper .title {
    font-size: 26px;
  }
}

.banner-inner-content-four .content-wrapper .title span {
  position: relative;
  font-weight: 300;
}

.banner-inner-content-four .content-wrapper .title span::after {
  position: absolute;
  left: 0;
  content: "";
  bottom: 2px;
  height: 2px;
  background: #fff;
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .banner-inner-content-four .content-wrapper .title span::after {
    display: none;
  }
}

.banner-inner-content-four .content-wrapper p.disc {
  color: #d8d8d8;
  font-size: 16px;
  margin-top: 30px;
  font-weight: 400;

}

.banner-inner-content-four .content-wrapper .button-area-banner-one {
  margin-top: 50px;
}

.tmp-ocean .ocean {
  height: 5%;
  width: 100%;
  position: absolute;
  bottom: -50px;
  left: 0;
  background: #ffffff;
}

.tmp-ocean .wave {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(285deg) brightness(105%) contrast(106%);
}

.tmp-ocean .wave:nth-of-type(2) {
  top: -175px;
  animation: wave 20s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 20s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {

  0%,
  100% {
    transform: translate3d(0, -15px, 0);
  }

  50% {
    transform: translate3d(0, 1px, 0);
  }
}

.banner-bg-startup {
  background-image: url(../images/banner/startup.jpg);
  height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .banner-bg-startup {
    height: 700px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-bg-startup {
    height: 600px;
  }
}

.banner-bg-startup.bg-two {
  background-image: url(../images/banner/startup-1.jpg);
}

.banner-bg-startup.bg-three {
  background-image: url(../images/banner/startup-3.jpg);
}

.banner-startup-main-content-wrapper {
  text-align: center;
}

.banner-startup-main-content-wrapper .title {
  color: #fff;
  font-size: 75px;
  line-height: 1.3;
}

.banner-startup-main-content-wrapper p.disc {
  color: #f1f1f1;
  max-width: 55%;
  margin-top: 30px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .banner-startup-main-content-wrapper p.disc {
    max-width: 80%;
  }
}

@media only screen and (max-width: 575px) {
  .banner-startup-main-content-wrapper p.disc {
    max-width: 95%;
  }
}

.swiper-startup-banner,
.swiper-startup-banner-construction {
  position: relative;
}

.swiper-startup-banner .banner-startup-main-content-wrapper,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper {
    margin-top: 27px;
  }
}

.swiper-startup-banner .banner-startup-main-content-wrapper>*,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper>* {
  animation-name: fadeOutUp;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.swiper-startup-banner .banner-startup-main-content-wrapper .title,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
  font-family: var(--font-primary);
  margin-bottom: 25px;
  display: block;
  font-size: 130px;
  line-height: 1.1;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: var(--color-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 50px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 50px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 575px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .title,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .title {
    font-size: 36px;
  }
}

.swiper-startup-banner .banner-startup-main-content-wrapper .disc,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper .disc {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.swiper-startup-banner .banner-startup-main-content-wrapper .tmp-btn,
.swiper-startup-banner-construction .banner-startup-main-content-wrapper .tmp-btn {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: block;
  max-width: max-content;
  margin: auto;
  margin-top: 50px;
}

@media only screen and (max-width: 575px) {

  .swiper-startup-banner .banner-startup-main-content-wrapper .tmp-btn,
  .swiper-startup-banner-construction .banner-startup-main-content-wrapper .tmp-btn {
    margin-top: 30px;
  }
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper>*,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper>* {
  animation-name: fadeInUp;
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper .title,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper .title {
  animation-delay: 0.5s;
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper .disc,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper .disc {
  animation-delay: 1s;
}

.swiper-startup-banner .swiper-slide-active .banner-startup-main-content-wrapper .tmp-btn,
.swiper-startup-banner-construction .swiper-slide-active .banner-startup-main-content-wrapper .tmp-btn {
  animation-delay: 1.5s;
}

.swiper-startup-banner .swiper-button-next,
.swiper-startup-banner .swiper-button-prev,
.swiper-startup-banner-construction .swiper-button-next,
.swiper-startup-banner-construction .swiper-button-prev {
  color: #fff;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 16px;
  transition: 0.3s;
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-prev {
    display: none;
  }
}

.swiper-startup-banner .swiper-button-next::after,
.swiper-startup-banner .swiper-button-prev::after,
.swiper-startup-banner-construction .swiper-button-next::after,
.swiper-startup-banner-construction .swiper-button-prev::after {
  transition: 0.3s;
  font-size: 16px;
}

.swiper-startup-banner .swiper-button-next:hover,
.swiper-startup-banner .swiper-button-prev:hover,
.swiper-startup-banner-construction .swiper-button-next:hover,
.swiper-startup-banner-construction .swiper-button-prev:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  transform: scale(1.1);
}

.swiper-startup-banner .swiper-button-next,
.swiper-startup-banner-construction .swiper-button-next {
  right: 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    display: none;
  }
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .swiper-button-next,
  .swiper-startup-banner-construction .swiper-button-next {
    display: none;
  }
}

.swiper-startup-banner .swiper-button-prev,
.swiper-startup-banner-construction .swiper-button-prev {
  left: 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (max-width: 1199px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    display: none;
  }
}

@media only screen and (max-width: 767px) {

  .swiper-startup-banner .swiper-button-prev,
  .swiper-startup-banner-construction .swiper-button-prev {
    display: none;
  }
}

.swiper-startup-banner .swiper-pagination,
.swiper-startup-banner-construction .swiper-pagination {
  bottom: 50px;
}

.swiper-startup-banner .swiper-pagination .swiper-pagination-bullet,
.swiper-startup-banner-construction .swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--color-primary);
}

.swiper-startup-banner .swiper-pagination .swiper-pagination-bullet-active,
.swiper-startup-banner-construction .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-primary);
}

@media only screen and (max-width: 575px) {

  .swiper-startup-banner .swiper-pagination,
  .swiper-startup-banner-construction .swiper-pagination {
    bottom: 25px;
  }
}

.tmp-banner-area.banner-style-five.inconstruction {
  height: 920px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-area.banner-style-five.inconstruction {
    height: 800px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-area.banner-style-five.inconstruction {
    height: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-area.banner-style-five.inconstruction {
    height: 600px;
  }
}

.tmp-banner-area.banner-style-five.inconstruction.banner-bg-construction {
  background-image: url(../images/banner/construction-01.jpg);
  background-repeat: no-repeat;
}

.tmp-banner-area.banner-style-five.inconstruction.banner-bg-construction.bg-two {
  background-image: url(../images/banner/construction-02.jpg);
  background-repeat: no-repeat;
}

.tmp-banner-area.banner-style-five.inconstruction.banner-bg-construction.bg-three {
  background-image: url(../images/banner/construction-03.jpg);
  background-repeat: no-repeat;
}

.tmp-banner-area.banner-style-five.inconstruction .banner-startup-main-content-wrapper {
  text-align: left;
  margin-left: 0;
}

.tmp-banner-area.banner-style-five.inconstruction .banner-startup-main-content-wrapper p.disc {
  margin-left: 0;
}

.tmp-banner-area.banner-style-five.inconstruction .banner-startup-main-content-wrapper .tmp-btn {
  margin-left: 0;
}

.construction-banner-top-wrapper .inconstruction {
  position: relative;
  z-index: 1;
}

.construction-banner-top-wrapper .inconstruction .shape-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(0.5);
}

.construction-banner-top-wrapper .inconstruction .shape-image img {
  height: 100%;
}

.banner-one-height-control.construction-2 {
  height: 960px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-height-control.construction-2 {
    height: 750px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 {
    height: 600px;
  }
}

.banner-one-height-control.construction-2 .inner .title {
  font-size: 120px;
  line-height: 1.2;
  font-weight: 900;
}

@media only screen and (max-width: 1199px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 .inner .title {
    font-size: 32px;
  }
}

.banner-one-height-control.construction-2 .inner p.disc {
  margin: auto;
  margin-bottom: 30px;
}

.banner-one-height-control.construction-2 .inner .button-area-banner-one {
  margin: auto;
}

.banner-one-height-control.construction-2 .banner-one-main-wrapper {
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control.construction-2 .banner-one-main-wrapper {
    padding: 91px 0;
  }
}

.tmp-banner-swiper-one-area.construction-2 {
  position: relative;
}

.tmp-banner-swiper-one-area.construction-2 .shape-image-banner-one .three {
  display: none;
}

.tmp-banner-swiper-one-area.construction-2 .bg_image-1 {
  background-image: url(../images/banner/construction-04.jpg);
}

.tmp-banner-swiper-one-area.construction-2 .bg_image-2 {
  background-image: url(../images/banner/construction-05.jpg);
}

.tmp-banner-swiper-one-area.construction-2 .bg_image-3 {
  background-image: url(../images/banner/construction-06.jpg);
}

.tmp-banner-swiper-one-area.construction-2:hover .swiper-button-next,
.tmp-banner-swiper-one-area.construction-2:hover .swiper-button-prev {
  opacity: 1;
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next,
.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
  color: #fff;
  height: 65px;
  width: 65px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 16px;
  transition: 0.3s;
  opacity: 0;
}

@media only screen and (max-width: 1199px) {

  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next,
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    display: none;
  }
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next::after,
.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev::after {
  transition: 0.3s;
  font-size: 16px;
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next:hover,
.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev:hover {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  transform: scale(1.1);
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
  right: 150px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    right: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-next {
    display: none;
  }
}

.tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
  left: 150px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    left: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-button-prev {
    display: none;
  }
}

.tmp-banner-swiper-one-area.construction-2 .swiper-pagination {
  bottom: 50px;
}

.tmp-banner-swiper-one-area.construction-2 .swiper-pagination .swiper-pagination-bullet {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--color-primary);
}

.tmp-banner-swiper-one-area.construction-2 .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-primary);
}

@media only screen and (max-width: 575px) {
  .tmp-banner-swiper-one-area.construction-2 .swiper-pagination {
    bottom: 25px;
  }
}

.banner-company-area-main__wrapper .pre-title {
  font-size: 18px;
  color: var(--color-primary);
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .pre-title {
    font-size: 15px;
  }
}

.banner-company-area-main__wrapper .title {
  font-size: 44px;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .banner-company-area-main__wrapper .title {
    font-size: 56px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-company-area-main__wrapper .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .title {
    font-size: 24px;
  }
}

.banner-company-area-main__wrapper p {
  margin-bottom: 40px;
}

.banner-company-area-main__wrapper .button-area-wrapper {
  display: flex;
  align-items: center;
  /* gap: 30px; */
}

@media only screen and (max-width: 575px) {
  .banner-company-area-main__wrapper .button-area-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

.frame-image-about-company {
  padding: 25px;
  background: #ffffff;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}

.frame-image-about-company img {
  width: 100%;
}

.swiper-container-style-two {
  width: 100%;
  height: 100%;
  position: relative;
}

.error-inner {
  max-width: 820px;
  margin: 0 auto;
}

.error-inner .title {
  font-size: 36px;
  margin-top: 20px;
  margin-bottom: 25px;
}

.error-inner .description {
  font-size: 16px;
  line-height: 28px;
  color: var(--color-body);
}

.bg_image-1 {
  background-image: url(../images/banner/01.jpg);
}

.bg_image-2 {
  background-image: url(../images/banner/04.jpg);
}

.bg_image-3 {
  background-image: url(../images/banner/05.jpg);
}

.bg_image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner-one-height-control {
  height: 850px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-one-height-control {
    height: 640px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-one-height-control {
    height: 750px;
  }
}

@media only screen and (max-width: 575px) {
  .banner-one-height-control {
    height: 670px;
  }
}

.bg-breadcrumb {
  background-image: url(../images/breadcrumb/Bg.png);
}

.brand-inner {
  border-top: 1px solid #BBBBBB;
}

.brand-inner .brand-list.brand-style-1 {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 575px) {
  .brand-inner .brand-list.brand-style-1 {
    gap: 15px;
  }
}

.brand-inner .brand-list.brand-style-1 li a img {
  transition: 0.3s;
}

@media only screen and (max-width: 575px) {
  .brand-inner .brand-list.brand-style-1 li a img {
    max-width: 100px;
  }
}

.brand-inner .brand-list.brand-style-1 li a:hover img {
  transform: translateY(-5px) scale(1.05);
}

.trusted-clients-agency-wrapper {
  text-align: center;
}

.trusted-clients-agency-wrapper .title {
  margin-bottom: 60px;
  color: var(--color-heading);

}

.trusted-clients-agency-wrapper .cilents-agency-wrapper {
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 35px;
  justify-content: center;
  padding: 45px;
  background: #fff;
  -webkit-box-shadow: -1px -1px 41px -12px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: -1px -1px 41px -12px rgba(0, 0, 0, 0.16);
  box-shadow: -1px -1px 41px -12px rgba(0, 0, 0, 0.16);
  max-width: 75%;
  margin: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .trusted-clients-agency-wrapper .cilents-agency-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .trusted-clients-agency-wrapper .cilents-agency-wrapper img {
    max-width: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .trusted-clients-agency-wrapper .cilents-agency-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }

  .trusted-clients-agency-wrapper .cilents-agency-wrapper img {
    max-width: 100px;
  }
}

@media only screen and (max-width: 575px) {
  .trusted-clients-agency-wrapper .cilents-agency-wrapper {
    max-width: 100%;
  }
}

.brand-main-wrapper-company {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-main-wrapper-company .tmp-brand-section-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-main-wrapper-company .tmp-brand-section-start {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .brand-main-wrapper-company .tmp-brand-section-start {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-main-wrapper-company .tmp-brand-section-start img {
    max-width: 100px;
  }
}

@media only screen and (max-width: 575px) {
  .brand-main-wrapper-company .tmp-brand-section-start {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-main-wrapper-company .tmp-brand-section-start img {
    max-width: 150px !important;
  }
}

.brand-main-wrapper-company .tmp-brand-section-start img {
  max-width: 220px;
  transition: 0.3s;
}

.brand-main-wrapper-company .tmp-brand-section-start img:hover {
  transform: scale(1.1);
}

.bg-color-footer.bg-image-none {
  background-image: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bg-color-footer.bg-image-none::after {
  position: absolute;
  content: "";
  height: 320px;
  width: 320px;
  background: var(--color-primary);
  border-radius: 50%;
  right: 0;
  bottom: 0;
  filter: blur(220px);
  z-index: -1;
}

.bg-color-footer.bg-image-none::before {
  position: absolute;
  content: "";
  height: 50px;
  width: 1520px;
  background: var(--color-primary);
  border-radius: 50%;
  left: 0;
  top: 150px;
  filter: blur(120px);
  z-index: -1;
}

.copyright-area-one.bg-colorsame {
  padding: 20px 0;
  background: #03041c;
  border-top: 1px solid #141530;
}

.single-progress-area.progress-stye-one {
  margin-bottom: 18px;
}

.single-progress-area.progress-stye-one .progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.single-progress-area.progress-stye-one .progress-top .name {
  margin-bottom: 0;
  font-size: 20px;
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-weight: var(--s-bold);
  line-height: 25px;
}

.single-progress-area.progress-stye-one .progress-top .parcent {
  font-size: 20px;
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-weight: var(--s-bold);
}

.single-progress-area.progress-stye-one .progress {
  height: 16px;
  border-radius: 50px;
}

.single-progress-area.progress-stye-one .progress .progress-bar {
  background-color: var(--color-primary);
  border-radius: 50px;
}

.single-progress-area.progress-style-two {
  margin-bottom: 30px;
}

.single-progress-area.progress-style-two .progress-top {
  margin-bottom: 12px;
}

.single-progress-area.progress-style-two .progress-top .name {
  margin-bottom: 0;
  font-size: 20px;
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-weight: var(--s-bold);
  line-height: 25px;
}

@media only screen and (max-width: 1199px) {
  .single-progress-area.progress-style-two .progress-top .name {
    font-size: 16px;
  }
}

.single-progress-area.progress-style-two .progress-top .parcent {
  font-size: 35px;
  font-family: var(--font-secondary);
  font-weight: var(--s-bold);
  line-height: 25px;
  text-stroke: 1px transparent;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-heading);
}

.single-progress-area.progress-style-two .progress {
  height: 10px;
  border-radius: 50px;
}

.single-progress-area.progress-style-two .progress.bg-color-purple {
  background-color: rgba(75, 17, 235, 0.2509803922);
}

.single-progress-area.progress-style-two .progress.bg-white {
  background-color: #E7E7E7;
}

.single-progress-area.progress-style-two .progress .progress-bar {
  border-radius: 50px;
}

.single-progress-area.progress-style-two .progress .progress-bar.bg-gradient-two {
  background: var(--gradient-two);
}

.single-progress-area.progress-style-two .progress .progress-bar.bg--primary {
  background-color: var(--color-primary);
}

.icon {
  display: inline-block;
}

.icon.angle-roted {
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 1px solid var(--color-heading);
  text-align: center;
  border-radius: 50%;
}

.icon.angle-roted.bg-color-white {
  background-color: var(--color-white);
}

.icon.angle-roted.border-none {
  border: none;
}

.icon.angle-roted i {
  transform: rotate(318deg);
}

.icon.bg-color-secondary {
  background-color: var(--color-secondary);
}

.icon.bg-color-secondary i {
  color: var(--color-white);
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
}

.icon.bg-color-secondary-alt {
  background-color: var(--color-secondary-alt);
}

.icon.bg-color-secondary-alt i.small-icon {
  height: 25px;
  min-width: 25px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  display: block;
}

.icon.bg-color-secondary-alt i::before {
  color: #fff;
}

.icon.icon--30 i {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
}

.icon.icon--45 i {
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
}

.portfolio-area.portfolio-style-two .portfolio-inner {
  position: relative;
}

.portfolio-area.portfolio-style-two .portfolio-inner .thumbnail img {
  width: 100%;
}

.portfolio-area.portfolio-style-two .portfolio-inner:hover .portfolio-tag {
  visibility: visible;
  opacity: 1;
  transform: translateY(-20px);
}

.portfolio-area.portfolio-style-three {
  background-image: url(../images/portfolio/portfolio-bg.png);
}

.portfolio-area.portfolio-style-three .portfolio-inner {
  position: relative;
}

.portfolio-area.portfolio-style-three .portfolio-inner .thumbnail img {
  border-radius: 8px;
  width: 100%;
}

.portfolio-area.portfolio-style-three .portfolio-inner:hover .portfolio-tag {
  visibility: visible;
  opacity: 1;
  transform: translateY(-20px);
}

.portfolio-tag {
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 8px;
  position: absolute;
  width: 57%;
  bottom: 20px;
  left: 40px;
  visibility: hidden;
  transition: 0.5s;
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .portfolio-tag {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .portfolio-tag {
    bottom: 8px;
    left: 8px;
    width: 95%;
  }
}

.portfolio-tag .content .name {
  color: var(--color-white);
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: var(--s-bold);
}

.portfolio-tag .content .designation {
  font-size: 16px;
  font-weight: 400 Italic;
  color: var(--color-white);
}

.portfolio-tag.portfolio-md-tag {
  padding: 20px;
  width: 60%;
}

@media only screen and (max-width: 575px) {
  .portfolio-tag.portfolio-md-tag {
    width: 95%;
  }
}

.portfolio-tag.portfolio-md-tag .content .name {
  color: var(--color-white);
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: var(--s-extra-bold);
}

.portfolio-tag.portfolio-md-tag .content .designation {
  font-size: 16px;
  font-weight: 400 Italic;
  color: var(--color-white);
}

.portfolio-tag.bg-gradiant {
  background-image: linear-gradient(to right, #ED145B, #4A11EB);
}

.portfolio-tag.portfolio-sm-tag {
  padding: 20px;
  width: 70%;
  bottom: 20px;
  left: 30px;
}

.portfolio-tag.portfolio-sm-tag .content .name {
  color: var(--color-white);
  margin-bottom: 1px;
  font-size: 18px;
  font-weight: var(--s-extra-bold);
}

.portfolio-tag.portfolio-sm-tag .content .designation {
  font-size: 14px;
  font-weight: 400 Italic;
  color: var(--color-white);
}

.product-swiper-area-one {
  max-width: 1920px;
  margin: auto;
}

.product-swiper-area-one .swiper-wrapper {
  display: flex;
  padding-bottom: 50px;
}

.product-swiper-area-one .swiper-wrapper .swiper-slide .signle-product-start {
  position: relative;
  z-index: 2;
  display: block;
}

.product-swiper-area-one .swiper-wrapper .swiper-slide .signle-product-start::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(228, 32, 52, 0.6941176471);
  opacity: 0;
  z-index: 1;
  border: 8px solid #E42032;
  pointer-events: none;
}

.product-swiper-area-one .swiper-wrapper .swiper-slide .signle-product-start .inner-content {
  z-index: 5;
}

.product-swiper-area-one .swiper-wrapper .swiper-slide.swiper-slide-active .signle-product-start::after {
  opacity: 1;
}

.pricing-area.pricing-style-one {
  background: linear-gradient(-98deg, #CCDFF7 0%, #EDF5FF 100%);
}

.scater-line {
  animation: jump-1 8s linear infinite;
}

.pricing-table.pricing-style-one {
  background-color: var(--color-white);
  border-radius: 8px;
  text-align: center;
}

.pricing-table.pricing-style-one .pricing-header {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  padding: 22px 0;
  background: #f2f4ff;
}

.pricing-table.pricing-style-one .pricing-header .pricing-header-inner {
  background-color: var(--color-secondary);
  display: inline-block;
  padding: 23px 40px;
  border-radius: 6px;
}

.pricing-table.pricing-style-one .pricing-header .pricing-header-inner .title {
  color: var(--color-white);
  margin-bottom: 13px;
  font-size: 20px;
  display: inline-block;
  line-height: 27px;
  font-family: var(--font-secondary);
  font-weight: var(--s-medium);
}

.pricing-table.pricing-style-one .pricing-header .pricing-header-inner .price-wrap .monthly-pricing .amount {
  display: block;
  font-size: 42px;
  line-height: 30px;
  color: var(--color-white);
  position: relative;
  font-weight: 700;
}

.pricing-table.pricing-style-one .pricing-header .pricing-header-inner .-wrap .monthly-pricing .amount .zero {
  font-size: 22px;
  display: inline-block;
}

.pricing-table.pricing-style-one .pricing-header .pricing-header-inner .-wrap .monthly-pricing .amount .dolour {
  font-size: 22px;
  display: inline-block;
  position: absolute;
  margin-top: -3px;
  left: -9px;
}

.pricing-table.pricing-style-one .pricing-header .pricing-header-inner .price-wrap .monthly-pricing .duration {
  color: var(--color-white);
  display: inline-block;
  font-size: 14px;
  font-weight: var(--p-regular);
  line-height: 19px;
}

.pricing-table.pricing-style-one .pricing-header .thumbnail {
  position: absolute;
  top: -7px;
  left: -3px;
  z-index: -1;
}

.pricing-table.pricing-style-one .pricing-body {
  margin-top: 40px;
}

.pricing-table.pricing-style-one .pricing-body .plan-offer-list li {
  margin-bottom: 15px;
  margin-top: 0;
  color: #252525;
}

.pricing-table.pricing-style-one .pricing-body .plan-offer-list li:last-child {
  margin-bottom: 0;
}

.pricing-table.pricing-style-one .pricing-body .plan-offer-list li i {
  display: inline-block;
  height: 17px;
  width: 17px;
  border: 1px solid var(--color-secondary);
  line-height: 16px;
  text-align: center;
  border-radius: 100%;
  color: var(--color-secondary);
  font-size: 12px;
  margin-right: 10px;
}

.pricing-table.pricing-style-one .pricing-body .plan-offer-list li.off {
  opacity: 0.6;
}

.pricing-table.pricing-style-one .pricing-body .plan-offer-list li.off i {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.pricing-table.pricing-style-one .pricing-bottom .pricing-btn {
  padding: 40px 0;
}

.pricing-table.pricing-style-one .pricing-bottom .pricing-btn .tmp-btn {
  border: 1px solid var(--color-body);
  border-radius: 30px;
  transition: 0.5s;
  line-height: 22px;
  padding: 16px 50px;
  display: inline-block;
}

.pricing-table.pricing-style-one .pricing-bottom .pricing-btn .tmp-btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
}

.history-area.history-style-one {
  background-color: #03041C;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.history-area.history-style-one .img-circle {
  position: absolute;
  bottom: -53%;
  left: -20%;
  max-width: max-content;
  animation: spin 10s infinite linear;
  z-index: -1;
}

.history-area.history-style-one .img-circle img {
  animation: spin 10s infinite reverse linear;
  width: 100%;
  border-radius: 50%;
}

.history-area.history-style-one.counter-history-bg-image {
  background-image: url(../images/counter/bg-1.png);
}

.history-area.history-style-one {
  background-color: #03041C;
}

.history-inner.style-one {
  background-color: #161A2E;
  padding: 50px 50px;
  height: 100%;
}

@media only screen and (max-width: 1199px) {
  .history-inner.style-one {
    padding: 25px;
  }
}

@media only screen and (max-width: 479px) {
  .history-inner.style-one {
    padding: 25px;
  }
}

.history-inner.style-one .counter-wrapper .single-counter .number {
  color: var(--color-white);
  margin-top: 30px;
  margin-bottom: 0;
}

.history-inner.style-one .counter-wrapper .single-counter .number span {
  font-size: 50px;
}

.history-inner.style-one .counter-wrapper .single-counter .number .counter {
  font-size: 50px;
  font-weight: var(--s-bold);
  color: var(--color-white);
}

.history-inner.style-one .counter-wrapper .single-counter .title {
  color: var(--color-white);
  font-size: 16px;
  line-height: 40px;
  font-family: var(--font-secondary);
  font-weight: var(--s-regular);
  margin-bottom: 0;
}

.counter-style-4 {
  margin-top: 30px;
  border: 1px dashed #bbbbbb;
  height: 350px;
  width: 350px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: -25px;
}

@media only screen and (max-width: 575px) {
  .counter-style-4 {
    margin: auto;
    height: 250px;
    width: 250px;
  }
}

.counter-style-4 .counter-title {
  margin-top: 8px;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-body);
}

.counter-style-4 .title {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-heading);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .counter-style-4 .title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0;
  }
}

.counter-style-4 .title span {
  display: inline-block;
  color: var(--color-primary);
}

.single-counterup-area-agency {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 20px;
  height: 100%;
}

.single-counterup-area-agency .icon {
  height: 90px;
  min-width: 90px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-counterup-area-agency .icon img {
  max-width: 40px;
}

.single-counterup-area-agency .information .title {
  font-size: 44px;
  margin-bottom: 5px;
}

.single-counterup-area-agency .information p.disc {
  color: #03041C;
  font-size: 16px;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.rating .number {
  color: var(--color-heading);
  font-size: 20px;
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
  margin-right: 10px;
}

.rating .stars-group .star i {
  color: red;
  font-size: 13px;
}

.rating.rating-style-two {
  justify-content: flex-start;
}

.rating.rating-style-two .title {
  line-height: 27px;
  margin-right: 5px;
}

.rating.rating-style-two .stars-group .star i {
  color: var(--color-secondary);
  font-size: 13px;
}

.rating.rating-style-two .stars-group .star i.color--primary {
  color: var(--color-primary);
}

.rating.rating-style-three {
  justify-content: flex-start;
  margin-bottom: 0;
}

.rating.rating-style-three .stars-group .star i {
  color: var(--color-primary);
  font-size: 13px;
  transition: 0.3s;
}

.work-area.work-style-one {
  background-size: cover;
  /* background-image: url(../images/Bg3.png); */
}

.work-area.work-style-one a .thumbnail img {
  border-radius: 8px;
}

.work-area.work-style-one a .thumbnail img.large {
  width: 100%;
}

.work-area.work-style-one .work-top-inner {
  display: flex;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-area.work-style-one .work-top-inner {
    flex-direction: column;
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .work-area.work-style-one .work-top-inner {
    flex-direction: column;
    gap: 30px;
  }
}

.work-area.work-style-one .work-top-inner .sub-title {
  color: #fff;
}

.work-area.work-style-one .work-top-inner .section-head {
  margin-bottom: 148px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-area.work-style-one .work-top-inner .section-head {
    margin-bottom: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .work-area.work-style-one .work-top-inner .section-head {
    margin-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-area.work-style-one .work-top-inner .single-work-top {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .work-area.work-style-one .work-top-inner .single-work-top {
    margin-bottom: 50px;
  }
}

.work-area.work-style-one .work-top-inner .single-work-top .title {
  font-size: 50px;
  line-height: 28px;
  font-weight: var(--s-bold);
  text-stroke: 1px transparent;
  -webkit-text-stroke: 1px #FFFFFF;
  font-family: var(--font-secondary);
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-area.work-style-one .work-top-inner .scater-line {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .work-area.work-style-one .work-top-inner .scater-line {
    display: none;
  }
}

.single-work.style-one .single-work-top .title {
  color: var(--color-white);
}

.single-work.style-one .work-inner {
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: 0.5s;
  background: linear-gradient(to bottom left, #122630 0%, #161a2e 21.52%, #03041c 46.75%, #03041c 61.57%, #2e1b28 100%);
  border: 1px solid transparent;
}

@media only screen and (max-width: 1199px) {
  .single-work.style-one .work-inner {
    padding: 15px;
  }
}

.single-work.style-one .work-inner .thumbnail {
  margin-bottom: 13px;
}

.single-work.style-one .work-inner .title {
  color: var(--color-white);
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 0;
}

.single-work.style-one .work-inner .description {
  margin-top: 16px;
  color: var(--color-white);
  font-weight: var(--p-regular);
}

@media only screen and (max-width: 1199px) {
  .single-work.style-one .work-inner .description {
    font-size: 14px;
  }
}

.single-work.style-one .work-inner:hover {
  border: 1px solid var(--color-white);
}

.tmp-tag-list.tag-list-one .tag-list {
  border: 1px solid #efefef;
  border-radius: 8px;
  padding: 1px 5px;
  transition: 0.5s;
  line-height: 24px;
  padding: 5px 8px;
}

@media only screen and (max-width: 1199px) {
  .tmp-tag-list.tag-list-one .tag-list {
    margin-right: 3px;
  }
}

.tmp-tag-list.tag-list-one .tag-list:last-child {
  margin-right: 0;
}

.tmp-tag-list.tag-list-one .tag-list:hover {
  color: var(--color-white);
  background: var(--color-secondary);
  border: 1px solid var(--color-white);
}

.contact-area-three.agency .tmp-tag-list.tag-list-one .tag-list:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.contact-bg-1 {
  background-image: url(../images/work/01.png);
}

.contact-form {
  background-color: var(--color-white);
  padding: 80px 60px;
  border-radius: 8px;
}

@media only screen and (max-width: 767px) {
  .contact-form {
    padding: 30px;
  }
}

.contact-form .contact-form-wrapper .form-group .input-field {
  background-color: #EFF0F6;
  box-shadow: none !important;
  border: 1px solid transparent;
}

.contact-form .contact-form-wrapper .form-group .input-field:focus {
  box-shadow: none !important;
  border: 1px solid var(--color-secondary);
}

.contact-form .contact-form-wrapper .form-group textarea {
  border: 1px solid transparent;
}

.contact-form .contact-form-wrapper .form-group textarea:focus {
  border: 1px solid var(--color-secondary) !important;
}

.contact-form .contact-form-wrapper .form-group input:focus {
  box-shadow: none;
  border: none;
}

.contact-form .contact-form-wrapper textarea:focus {
  border: none !important;
  border-radius: 5px;
  box-shadow: none !important;
}

.contact-form .contact-form-wrapper .form-submit-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

@media only screen and (max-width: 575px) {
  .contact-form .contact-form-wrapper .form-submit-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.contact-form .contact-form-wrapper .form-submit-group .tmp-btn.btn-secondary {
  background: var(--color-secondary) !important;
  border: none;
  display: block;
  position: relative;
  z-index: 10;
}

.contact-form .contact-form-wrapper .form-submit-group .check-condition {
  margin-bottom: 0;
}

.contact-form .contact-form-wrapper .form-submit-group .check-condition .check-box {
  background-color: transparent !important;
}

.contact-form .contact-form-wrapper .form-submit-group .check-condition label.condition {
  font-size: 16px;
}

@media only screen and (max-width: 479px) {
  .contact-form .contact-form-wrapper .form-submit-group .check-condition label.condition {
    font-size: 14px;
  }
}

.contact-form .contact-form-wrapper .form-submit-group .check-condition label.condition span {
  color: var(--color-secondary);
}

.contact-form .contact-form-wrapper .single-contact .content span {
  font: 20px;
  line-height: 30px;
}

.contact-form.style-two {
  background-color: transparent;
  padding: 0;
}

.contact-form.style-two .contact-form-wrapper {
  margin-top: 30px;
}

.contact-form.style-two .contact-form-wrapper .form-group .input-field {
  background-color: #EFF0F6;
  box-shadow: none !important;
  border: none !important;
}

.contact-form.style-two .contact-form-wrapper .form-group .input-field:focus {
  box-shadow: none !important;
  border: none !important;
}

.contact-form.style-two .contact-form-wrapper .form-group .input-field:hover {
  box-shadow: none !important;
  border: none !important;
}

.contact-form.style-two .contact-form-wrapper .form-group input:focus {
  box-shadow: none;
  border: none;
}

.contact-form.style-two .contact-form-wrapper textarea:focus {
  border: none !important;
  border-radius: 5px;
  box-shadow: none !important;
}

.contact-form.style-two .contact-form-wrapper .form-submit-group {
  display: block;
  margin-top: 10px;
}

.contact-form.style-two .contact-form-wrapper .form-submit-group .tmp-btn {
  display: block;
  max-width: 100%;
  border: none;
}

.contact-form.style-two .contact-form-wrapper .single-contact .content span {
  font: 20px;
  line-height: 30px;
}

.contact-inner .section-head {
  padding-bottom: 0;
}

.contact-inner .ft-link.ft-link-style-three li {
  margin: 0;
  border-bottom: 1px solid #E7E7E7;
}

.contact-inner .ft-link.ft-link-style-three li .single-contact {
  margin-bottom: 0;
  padding: 20px 0;
}

.contact-inner .ft-link.ft-link-style-three li .single-contact .icon {
  /* background-image: var(--gradient-two); */
}

.contact-inner .ft-link.ft-link-style-three li .single-contact .content .contact-here {
  transition: 0.5s;
}

.contact-inner .ft-link.ft-link-style-three li .single-contact:hover .content .contact-here {
  color: var(--color-purple);
}

.contact-inner .tmp-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-area-three {
  position: relative;
  z-index: 1;
}

.contact-area-three .bg-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.index-one .contact-inner .ft-link.ft-link-style-three li .single-contact .icon {
  background: var(--color-primary);
}

#form-messages.success {
  color: green;
}

#form-messages.error {
  color: red;
}

.tab-section.tab-style-one {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
}

.tab-section.tab-style-one .nav-tabs {
  border-bottom: 1px solid #ebebeb;
}

.tab-section.tab-style-one .nav-tabs li {
  margin: 0;
}

.tab-section.tab-style-one .nav-tabs li button {
  border-radius: 8px 8px 0 0;
  padding: 14px 35px;
  border: none;
}

.tab-section.tab-style-one .nav-tabs li button.nav-link {
  color: var(--color-heading);
  transition: 0.5s;
}

.tab-section.tab-style-one .nav-tabs li button.nav-link.active {
  background-color: var(--color-heading);
  color: var(--color-white);
}

.tab-section.tab-style-one .nav-tabs li button.nav-link:hover {
  border: none;
  box-shadow: none;
}

.tab-section.tab-style-one .tab-content {
  padding: 30px;
}

@media only screen and (max-width: 479px) {
  .tab-section.tab-style-one .tab-content {
    padding: 30px 10px;
  }
}

.tab-section.tab-style-one .tab-content .tab-pane .description {
  margin-bottom: 0;
  margin-bottom: 30px;
}

.tab-section.tab-style-one .tab-content .tab-pane .small-meta {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .tab-section.tab-style-one .tab-content .tab-pane .small-meta {
    max-width: max-content;
  }
}

.tab-section.tab-style-one .tab-content .tab-pane .small-meta .thumbnail {
  margin-right: 18px;
}

.tab-section.tab-style-one .tab-content .tab-pane .small-meta .thumbnail img {
  max-width: max-content;
}

@media only screen and (max-width: 767px) {
  .tab-section.tab-style-one .tab-content .tab-pane .small-meta .content {
    min-width: max-content;
  }
}

.tab-section.tab-style-one .tab-content .tab-pane .small-meta .content .name {
  font-size: 30px;
  line-height: 60px;
  font-family: var(--font-secondary);
  color: var(--color-heading);
  font-weight: var(--s-bold);
}

.tab-section.tab-style-one .tab-content .tab-pane .small-meta .content .designation {
  font-size: 16px;
}

.tab-section.tab-style-one .tab-content .tab-pane .btn-group {
  margin-top: 30px;
}

.skills-bg-color {
  background-image: url(../images/services/bg-slill.jpg);
}

.skill-inner .thumbnail img {
  width: 100%;
}

.quick-action-area.quick-action-style-one {
  background-image: var(--gradient-two);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  z-index: 0;
}

@media only screen and (max-width: 575px) {
  .quick-action-area.quick-action-style-one {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    z-index: 0;
    background: #03041c;
    background-image: none;
  }
}

.quick-action-area.quick-action-style-one .quick-action-inner {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .quick-action-area.quick-action-style-one .quick-action-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.quick-action-area.quick-action-style-one .quick-action-inner .quick-action-left .description {
  color: var(--color-white);
  font-size: 30px;
  line-height: 46px;
  font-weight: 700;
  max-width: 455px;
}

@media only screen and (max-width: 575px) {
  .quick-action-area.quick-action-style-one .quick-action-inner .quick-action-left .description {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
    max-width: 455px;
    font-weight: 400;
  }
}

.quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact {
  display: flex;
  align-items: center;
}

.quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .btn-rounded {
  margin-right: 30px;
}

.quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  .quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .content {
    align-items: flex-start;
  }
}

.quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .content .title {
  color: var(--color-white);
  font-size: 30px;
  line-height: 40px;
  font-weight: var(--s-regular);
  font-family: var(--font-secondary);
  margin-bottom: 5px;
}

@media only screen and (max-width: 575px) {
  .quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .content .title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
  }
}

.quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .content .ph-number {
  color: var(--color-white);
  font-size: 30px;
  line-height: 40px;
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
}

@media only screen and (max-width: 575px) {
  .quick-action-area.quick-action-style-one .quick-action-inner .quick-action-right .contact .content .ph-number {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
  }
}

.quick-action-area.quick-action-style-one .dot-top {
  position: absolute;
  top: -52%;
  left: 59%;
}

.quick-action-area.quick-action-style-one .dot-bottom {
  position: absolute;
  bottom: -53%;
  left: 49%;
}

.quick-action-area.quick-action-style-one .carly-line {
  position: absolute;
  bottom: 31%;
  left: 58%;
}

@media only screen and (max-width: 575px) {
  .quick-action-area.quick-action-style-one .carly-line {
    display: none;
  }
}

.quick-action-area.quick-action-style-one .shape {
  position: absolute;
  bottom: 0;
  right: -13px;
  z-index: -1;
}

@media only screen and (max-width: 575px) {
  .quick-action-area.quick-action-style-one .shape .thumbnail {
    filter: brightness(0.3);
    opacity: 0.8;
  }
}

.quick-action-area.quick-action-style-one .shape-2 {
  position: absolute;
  left: -12%;
  top: 0;
}

.breadcrumb-bg {
  background-image: url(../images/breadcrumb/breadcrumb-bg-1.png);
}

.breadcrumb-area {
  position: relative;
}

/* .breadcrumb-area::before {
  position: absolute;
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: var(--gradient-three);
  z-index: -1;
} */

.breadcrumb-inner {
  /* border: 1px solid rgba(255, 255, 255, 0.1215686275);
  max-width: 630px;
  margin: 0 auto;
  padding: 40px 0;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0);
  margin-top: 150px;
  position: relative;
  overflow: hidden; */
}

@media only screen and (max-width: 575px) {
  .breadcrumb-inner {
    /* margin-top: 50px; */
  }
}

.breadcrumb-inner .title {
  color: var(--color-white);
  margin-bottom: 5px;
  font-size: 40px;
}

@media only screen and (max-width: 575px) {
  .breadcrumb-inner .title {
    font-size: 32px;
  }
}

.breadcrumb-inner .page-list {
  display: flex;
  align-items: center;
  justify-content: left;

}

.page-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;

}

.breadcrumb-inner .page-list li {
  color: #000;
  font-size: 20px;
}

.tmp-breadcrumb-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb-inner .page-list li.icon {
  padding: 0 10px;
}

.circle-1 {
  height: 100px;
  width: 100px;
  position: absolute;
  border-radius: 100%;
  top: -17px;
  left: -14px;
  background: rgba(228, 32, 65, 0.6705882353);
  filter: blur(40px);
}

.team-details-thumb {
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-details-thumb::before {
  position: absolute;
  content: " ";
  background-color: var(--color-white);
  height: 90%;
  width: 100%;
  top: 80px;
  left: 0;
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.055);
  z-index: -1;
}

.team-details-thumb .thumbnail img {
  max-width: max-content;
}

@media only screen and (max-width: 1199px) {
  .team-details-thumb .thumbnail img {
    max-width: 100%;
  }
}

.team-details-thumb .content {
  padding: 0 30px;
  padding-bottom: 40px;
  padding-top: 30px;
}

.team-details-thumb .content .author-info .name {
  font-size: 27px;
  line-height: 40px;
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}

.team-details-thumb .content .author-info .designation {
  line-height: 40px;
  display: inline-block;
  margin-bottom: 10px;
}

.team-details-thumb .content .description {
  margin-bottom: 20px;
}

.team-details-thumb .content .team-details-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-details-thumb .content .team-details-social .social-icons li {
  margin-right: 10px;
}

.team-details-thumb .content .team-details-social .social-icons li:last-child {
  margin-right: 0;
}

.team-details-content {
  padding-left: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-content {
    padding-left: 15px;
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .team-details-content {
    padding-left: 15px;
    margin-top: 50px;
  }
}

.team-details-content .personal-info {
  padding-bottom: 30px;
  border-bottom: 1px solid #E7E7E7;
}

.team-details-content .personal-info .description {
  margin-bottom: 15px;
}

.team-details-content .personal-info .all-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .team-details-content .personal-info .all-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.team-details-content .personal-info .all-info .info-left .single-info,
.team-details-content .personal-info .all-info .info-right .single-info {
  font-size: 16px;
  line-height: 28px;
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}

.team-details-content .personal-info .all-info .info-left .single-info:last-child,
.team-details-content .personal-info .all-info .info-right .single-info:last-child {
  margin-bottom: 0;
}

.team-details-content .personal-info .all-info .info-left .single-info span,
.team-details-content .personal-info .all-info .info-right .single-info span {
  color: var(--color-heading);
  font-weight: var(--s-bold);
}

.team-details-content .personal-experience {
  padding-top: 30px;
}

.team-details-content .personal-experience .description {
  margin-bottom: 0;
}

.team-details-content .personal-experience .progress-wrapper {
  margin-top: 30px;
}

.bg-image-none {
  background-image: none !important;
}

.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: var(--font-three);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  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: 0px solid var(--color-primary);
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
  font-weight: 300;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f062";
  border: 0px solid var(--color-primary);
  font-weight: 300;
}

.progress-wrap::before {
  position: absolute;
  font-family: var(--font-three);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  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;
  font-weight: 300;
}

.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: 0px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  padding: 2px;
}

.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 rgba(7, 66, 233, 0.3215686275);
  color: var(--color-primary-2);
}

.vedio-icone .play-video p.text {
  min-width: max-content;
  margin-top: 10px;
  margin-left: 55px;
  color: #fff;
}

.vedio-icone .video-play-button {
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
}

.vedio-icone .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -32%;
  top: -31%;
  display: block;
  width: 130px;
  height: 130px;
  background: rgba(117, 39, 8, 0.3);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
  animation: waves 3s ease-in-out infinite;
}

.vedio-icone .video-play-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid #fff;
  transition: all 200ms;
  border-radius: 50%;
}

@media only screen and (max-width: 575px) {
  .vedio-icone .video-play-button::after {
    width: 60px;
    height: 60px;
  }
}

.vedio-icone .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid var(--color-primary);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 47%;
}

.vedio-icone .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;
}

.vedio-icone .video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9215686275);
  opacity: 0;
  transition: all ease 500ms;
  display: none;
}

.vedio-icone .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-icone .video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
  display: block;
}

.vedio-icone .video-overlay .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;
}

@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;
  }
}

.large-video-playing video {
  width: 100%;
}

.grow-thumbnail {
  transform: scale(0.9);
}

.tmp-pagination-area-next-pev {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.tmp-pagination-area-next-pev button {
  height: 50px;
  min-width: 50px;
  border-radius: 5px;
  border: 1px solid #DEE2E6;
  display: block;
  transition: 0.3s;
  color: #202942;
}

.tmp-pagination-area-next-pev button:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog-details-left-area .thumbnail-top img {
  width: 100%;
}

.blog-details-left-area .blog-details-discription {
  padding: 30px 0;
}

.blog-details-left-area .blog-details-discription .category-area {
  margin-bottom: 18px;
  color: #03041C;
  font-weight: 500;
}

.blog-details-left-area .blog-details-discription h3.title {
  font-size: 36px;
  line-height: 45px;
}

@media only screen and (max-width: 575px) {
  .blog-details-left-area .blog-details-discription h3.title {
    font-size: 26px;
    line-height: 1.5;
  }
}

.blog-details-left-area .blog-details-discription p.disc {
  margin-bottom: 20px;
  font-size: 16px;
}

.blog-details-left-area .quote-area-blog-details {
  background: #03041C;
  padding: 60px 50px;
  display: block;
  z-index: 1;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .blog-details-left-area .quote-area-blog-details {
    padding: 25px;
  }
}

.blog-details-left-area .quote-area-blog-details i {
  font-size: 120px;
  position: absolute;
  top: 0;
  z-index: -1;
  top: 20%;
  left: 5%;
  opacity: 0.3;
}

.blog-details-left-area .quote-area-blog-details p.disc {
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
}

@media only screen and (max-width: 575px) {
  .blog-details-left-area .quote-area-blog-details p.disc {
    font-size: 20px;
    line-height: 33px;
    font-weight: 300;
  }
}

.blog-details-left-area .quote-area-blog-details .author {
  position: relative;
  padding-left: 60px;
  position: relative;
  display: block;
  color: var(--color-primary);
}

.blog-details-left-area .quote-area-blog-details .author::after {
  position: absolute;
  content: "";
  left: 0;
  top: 47%;
  height: 2px;
  width: 40px;
  background: var(--color-primary);
  z-index: 10;
}

.short-feature-blog-details {
  margin-bottom: 25px;
}

.short-feature-blog-details .single-feature {
  position: relative;
  padding-left: 20px;
  margin: 7px 0;
}

.short-feature-blog-details .single-feature::after {
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  content: "";
  background: #6A6C71;
  left: 0;
  top: 40%;
}

@media only screen and (max-width: 575px) {
  .thumbnail-50 {
    width: 100%;
  }

  .thumbnail-50 img {
    width: 100%;
  }
}

.blog-details-bottom-area .tag-socila-area-blgo-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .blog-details-bottom-area .tag-socila-area-blgo-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

.blog-details-bottom-area .tag-socila-area-blgo-details .left-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-details-bottom-area .tag-socila-area-blgo-details .left-tag span {
  font-size: 20px;
  font-weight: 500;
  color: #03041C;
}

.blog-details-bottom-area .tag-socila-area-blgo-details .left-tag .tag-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-bottom-area .tag-socila-area-blgo-details .left-tag .tag-wrapper .signle-wrapper {
  border: 1px solid #dddddd;
  padding: 6px 15px;
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}

.blog-details-bottom-area .tag-socila-area-blgo-details .left-tag .tag-wrapper .signle-wrapper:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

.social-blog-tag-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-blog-tag-area span {
  font-size: 20px;
  font-weight: 500;
  color: #03041C;
}

.social-blog-tag-area ul {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 12px;
}

.social-blog-tag-area ul li a {
  height: 40px;
  width: 40px;
  background: #03041C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-blog-tag-area ul li a i {
  transition: 0.3s;
}

.social-blog-tag-area ul li a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.social-blog-tag-area ul li a:hover i {
  transform: scale(0.8);
}

.author-comment-area {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  margin-top: 50px;
  background: rgba(222, 222, 222, 0.2588235294);
}

@media only screen and (max-width: 575px) {
  .author-comment-area {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}

.author-comment-area .thumbnail {
  display: block;
  min-width: max-content;
}

.author-comment-area .thumbnail img {
  min-width: max-content;
  display: block;
}

.author-comment-area .main-information-of-autonr .name {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 20px;
}

.author-comment-area .main-information-of-autonr p.disc {
  margin-bottom: 6px;
}

.single-comment-audience {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 50px;
}

@media only screen and (max-width: 479px) {
  .single-comment-audience {
    flex-direction: column;
    align-items: flex-start;
  }
}

.single-comment-audience .right-area-commnet {
  width: 100%;
}

.single-comment-audience .right-area-commnet .top-area-comment {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.single-comment-audience .right-area-commnet .top-area-comment .left .title {
  margin-bottom: 5px;
  font-size: 20px;
}

.single-comment-audience .right-area-commnet .top-area-comment .left span {
  color: var(--color-primary);
}

.single-comment-audience .right-area-commnet .top-area-comment button {
  max-width: max-content;
  margin-left: auto;
  padding: 6px 13px;
  color: #fff;
  background: #03041C;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.single-comment-audience .right-area-commnet .top-area-comment button i {
  font-size: 14px;
}

.single-comment-audience .right-area-commnet .top-area-comment button:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog-details-form-wrapper {
  margin-top: 50px;
}

.blog-details-form-wrapper .title {
  font-size: 27px;
  margin-bottom: 10px;
}

.blog-details-form-wrapper span {
  font-size: 16px;
}

.blog-details-form {
  margin-top: 30px;
}

.blog-details-form .single-input {
  position: relative;
}

.blog-details-form .single-input i {
  position: absolute;
  right: 15px;
  top: 35%;
  transform: translateY(-50%);
  color: var(--color-primary);
}

.blog-details-form .half-input-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media only screen and (max-width: 575px) {
  .blog-details-form .half-input-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-details-form .half-input-wrapper>div {
  flex-basis: 48%;
}

@media only screen and (max-width: 575px) {
  .blog-details-form .half-input-wrapper>div {
    flex-basis: 100%;
    width: 100%;
  }
}

.blog-details-form input {
  height: 60px;
  border: 1px solid #BBBBBB;
  border-radius: 3px;
  margin-bottom: 30px;
  padding: 15px;
}

.blog-details-form textarea {
  height: 60px;
  border: 1px solid #BBBBBB;
  border-radius: 3px;
  height: 180px;
  padding: 15px;
}

.blog-details-form .tmp-btn {
  margin-top: 30px;
  display: block;
  padding: 18px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .signle-side-bar.recent-post .body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .signle-side-bar.recent-post .body .single-blog-recent-post-sidebar:last-child {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .signle-side-bar.recent-post .body .single-blog-recent-post-sidebar {
    width: 100%;
  }

  .signle-side-bar.recent-post .body .single-blog-recent-post-sidebar img {
    width: 100%;
  }
}

.blog-details-wrapper-v2 .title {
  font-size: 50px;
}

.blog-details-wrapper-v2 .thumbnail-top img {
  width: 100%;
}

body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #1a1a1a;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 20px;
  font-weight: 200;
  text-transform: uppercase;
  z-index: 20;
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
  color: #fff;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.header-one .actions-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-one .actions-area>.language-picker {
  padding-left: 25px;
  border-left: 1px solid rgba(31, 31, 31, 0.2274509804);
  margin-left: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-one .actions-area>.language-picker {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header-one .actions-area>.language-picker {
    display: none;
  }
}

.language-picker {
  /* --------------------------------

  Title: Language Picker
  Descr: A custom selector allowing users to choose their preferred language on a page
  Thanks to CodyHouse

  -------------------------------- */
}

.language-picker * {
  font: inherit;
  font-weight: 500;
}

.language-picker *:focus {
  box-shadow: none;
  border: none;
}

.language-picker ol,
.language-picker ul {
  list-style: none;
  background: #fff;
  border-radius: 5px;
}

.language-picker ol li,
.language-picker ul li {
  margin: 0;
}

.language-picker ol li .language-picker__item,
.language-picker ul li .language-picker__item {
  padding: 10px 13px;
}

.language-picker .language-picker {
  display: inline-block;
  position: relative;
}

.language-picker .language-picker button {
  border: none;
}

.language-picker .language-picker button:focus {
  box-shadow: none;
  border: none;
}

.language-picker .js .language-picker__form {
  display: none;
}

.language-picker .language-picker__button .icon {
  height: 16px;
  width: 16px;
  margin-left: 0.25rem;
  margin-left: var(--space-xxxs);
}

.language-picker .language-picker__dropdown {
  position: absolute;
  top: 100%;
  width: 181px;
  background-color: #fff;
  background-color: var(--color-bg);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 8px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
  padding: 0.375rem 0;
  padding: var(--space-xxs) 0;
  border-radius: 0.25em;
  z-index: 4;
  z-index: var(--zindex-popover);
  --space-unit: 1rem;
  --space-xxxxs: 0.125rem;
  --space-xxxs: 0.25rem;
  --space-xxs: 0.375rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.25rem;
  --space-xxl: 5.25rem;
  --space-xxxl: 8.5rem;
  --space-xxxxl: 13.75rem;
  --component-padding: 1.25rem;
  --component-padding: var(--space-md);
  font-size: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.2s, opacity 0.2s, -webkit-transform 0.2s ease-out;
  transition: visibility 0s 0.2s, opacity 0.2s, transform 0.2s ease-out;
  transition: visibility 0s 0.2s, opacity 0.2s, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.language-picker .language-picker__button[aria-expanded=true]+.language-picker__dropdown {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  transition: opacity 0.2s, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s, transform 0.2s ease-out;
  transition: opacity 0.2s, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.language-picker .language-picker__item {
  text-decoration: none;
  padding: 0.5em 2em 0.5em 1.25em;
  padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-md);
  color: #313135;
  color: var(--color-contrast-high);
}

.language-picker .language-picker__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

.language-picker .language-picker__item:hover {
  background-color: #f2f2f2;
  background-color: var(--color-contrast-lower);
}

.language-picker .language-picker__item[aria-selected=true] {
  position: relative;
  background-color: #2a6df4;
  background-color: var(--color-primary);
  color: #fff;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.language-picker .language-picker__item[aria-selected=true]::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  right: 0.75rem;
  right: var(--space-sm);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNic+PHBvbHlsaW5lIHN0cm9rZS13aWR0aD0nMScgc3Ryb2tlPScjZmZmZmZmJyBmaWxsPSdub25lJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1saW5lam9pbj0ncm91bmQnIHBvaW50cz0nMSw5IDUsMTMgMTUsMyAnLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.language-picker .language-picker__flag {
  display: block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.language-picker .language-picker__flag:focus {
  box-shadow: none;
  border: none;
}

.language-picker .language-picker__flag::before {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  content: "";
  height: 16px;
  width: 16px;
  margin-right: 0.375rem;
  margin-right: var(--space-xxs);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.language-picker .language-picker__dropdown .language-picker__flag::before {
  margin-right: 0.5rem;
  margin-right: var(--space-xs);
}

.language-picker .language-picker__flag--deutsch::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZD0nTTQ4LDE4SDBWOGMwLTEuMTA1LDAuODk1LTIsMi0yaDQ0YzEuMTA1LDAsMiwwLjg5NSwyLDJWMTh6Jy8+PHJlY3QgeT0nMTgnIGZpbGw9JyNFRTAwMDAnIHdpZHRoPSc0OCcgaGVpZ2h0PScxMicvPjxwYXRoIGZpbGw9JyNGRENGMDAnIGQ9J000OCw0MGMwLDEuMTA1LTAuODk1LDItMiwySDJjLTEuMTA1LDAtMi0wLjg5NS0yLTJWMzBoNDhWNDB6Jy8+PC9zdmc+);
}

.language-picker .language-picker__flag--english::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAwMjc4MScgZD0nTTQ2LDZIMkMwLjg5Niw2LDAsNi44OTYsMCw4djMyYzAsMS4xMDQsMC44OTYsMiwyLDJoNDRjMS4xMDQsMCwyLTAuODk2LDItMlY4QzQ4LDYuODk2LDQ3LjEwNCw2LDQ2LDZ6Jy8+PHBhdGggZmlsbD0nI0U2RTZFNicgZD0nTTQ4LDhjMC0xLjEwNC0wLjg5Ni0yLTItMmgtNS4xNjFMMjgsMTUuODc2VjZoLTh2OS44NzZMNy4xNjEsNkgyQzAuODk2LDYsMCw2Ljg5NiwwLDh2Mi41ODZMMTIuMjM5LDIwSDB2OCBoMTIuMjM5TDAsMzcuNDE1VjQwYzAsMS4xMDQsMC44OTYsMiwyLDJoNS4xNjFMMjAsMzIuMTI0VjQyaDh2LTkuODc2TDQwLjgzOSw0Mkg0NmMxLjEwNCwwLDItMC44OTYsMi0ydi0yLjU4NUwzNS43NjEsMjhINDh2LTggSDM1Ljc2MUw0OCwxMC41ODZWOHonLz48cG9seWdvbiBmaWxsPScjRDEwRDI0JyBwb2ludHM9JzQ4LDIyIDI2LDIyIDI2LDYgMjIsNiAyMiwyMiAwLDIyIDAsMjYgMjIsMjYgMjIsNDIgMjYsNDIgMjYsMjYgNDgsMjYgJy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTQ3LjAwMSw2LjMwN0wyOS4yLDIwaDMuMjhMNDgsOC4wNjJWOEM0OCw3LjI2OCw0Ny41ODcsNi42NTYsNDcuMDAxLDYuMzA3eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00zMi40OCwyOEgyOS4ybDE3LjgwMSwxMy42OTNDNDcuNTg3LDQxLjM0NCw0OCw0MC43MzIsNDgsNDB2LTAuMDYyTDMyLjQ4LDI4eicvPjxwYXRoIGZpbGw9JyNEMTBEMjQnIGQ9J00xNS41MiwyOEwwLDM5LjkzOFY0MGMwLDAuNzMyLDAuNDEzLDEuMzQ0LDAuOTk5LDEuNjkzTDE4LjgsMjhIMTUuNTJ6Jy8+PHBhdGggZmlsbD0nI0QxMEQyNCcgZD0nTTE1LjUyLDIwaDMuMjhMMC45OTksNi4zMDdDMC40MTMsNi42NTYsMCw3LjI2OCwwLDh2MC4wNjJMMTUuNTIsMjB6Jy8+PC9zdmc+);
}

.language-picker .language-picker__flag--francais::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAxMjA5RicgZD0nTTE2LDQySDJjLTEuMTA1LDAtMi0wLjg5NS0yLTJWOGMwLTEuMTA1LDAuODk1LTIsMi0yaDE0VjQyeicvPjxwYXRoIGZpbGw9JyNFRjQyMzQnIGQ9J000OCw0MGMwLDEuMTA1LTAuODk1LDItMiwySDMyVjZoMTRjMS4xMDUsMCwyLDAuODk1LDIsMlY0MHonLz48cmVjdCB4PScxNicgeT0nNicgZmlsbD0nI0U2RTZFNicgd2lkdGg9JzE2JyBoZWlnaHQ9JzM2Jy8+PC9zdmc+);
}

.language-picker .language-picker__flag--italiano::before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA0OCA0OCc+PHBhdGggZmlsbD0nIzAwOTM0NScgZD0nTTE2LDQySDJjLTEuMTA1LDAtMi0wLjg5NS0yLTJWOGMwLTEuMTA1LDAuODk1LTIsMi0yaDE0VjQyeicvPjxwYXRoIGZpbGw9JyNDRjJCMzYnIGQ9J000OCw0MGMwLDEuMTA1LTAuODk1LDItMiwySDMyVjZoMTRjMS4xMDUsMCwyLDAuODk1LDIsMlY0MHonLz48cmVjdCB4PScxNicgeT0nNicgZmlsbD0nI0U2RTZFNicgd2lkdGg9JzE2JyBoZWlnaHQ9JzM2Jy8+PC9zdmc+);
}

.language-picker .language-picker--hide-label .language-picker__button .icon {
  margin-left: 0;
}

.language-picker .language-picker--hide-label .language-picker__button em {
  display: none;
}

.language-picker .language-picker--hide-label .language-picker__button .language-picker__flag::before {
  margin-right: 0.25rem;
  margin-right: var(--space-xxxs);
}

.tmp-mesonary-area-main .tmp-button-group {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.tmp-mesonary-area-main .tmp-button-group button {
  max-width: max-content;
  display: block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  color: #292929;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.tmp-mesonary-area-main .tmp-button-group button.is-checked {
  background: var(--color-primary);
  border: none;
  color: #fff;
}

.tmp-single-portfolio-item {
  padding: 0px;
  border-radius: 12px;
  border: 1px solid #c5c5c5;
  background: #F8F8F8;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-single-portfolio-item {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-single-portfolio-item {
    padding: 0px;
  }
}

.tmp-single-portfolio-item .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 12px;
}

.tmp-single-portfolio-item .thumbnail:hover img {
  transform: scale(1.2);
}

.tmp-single-portfolio-item .thumbnail img {
  width: 100%;
  transition: 0.3s;
  height: 250px;
  border-radius: 12px;
}

.tmp-single-portfolio-item .tmp-inner-content .top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 0px;
}

.tmp-single-portfolio-item .tmp-inner-content .top-item .left {
  color: #292929;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.tmp-single-portfolio-item .tmp-inner-content .top-item .right {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.tmp-single-portfolio-item .tmp-inner-content a .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  transition: 0.3s;
}

.tmp-single-portfolio-item .tmp-inner-content a .title br {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tmp-single-portfolio-item .tmp-inner-content a .title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 575px) {
  .tmp-single-portfolio-item .tmp-inner-content a .title {
    font-size: 18px;
  }
}

.tmp-single-portfolio-item .tmp-inner-content a .title:hover {
  color: var(--color-primary);
}

.single-services.construction .services-inner {
  overflow: visible;
}

.single-services.construction .services-inner .thumbnail-rounded.border-top-left {
  border-radius: 10px;
}

.single-services.construction .services-inner .thumbnail-rounded.border-top-left a {
  border-radius: 10px;
}

.single-services.construction .services-inner .thumbnail-rounded.border-top-left img {
  transform: scale(1.5);
}

.single-services.construction .services-inner .thumbnail-rounded.border-top-left .number-bg-round {
  bottom: 6px;
}

.single-services.construction .services-inner .thumbnail-rounded.border-top-left .number-bg-round span {
  margin-bottom: 0;
  font-size: 52px;
  font-weight: 700;
}

.single-services.construction .services-inner .thumbnail.thumbnail-rounded {
  overflow: visible;
}

.single-services.construction .services-inner .thumbnail.thumbnail-rounded::after {
  position: absolute;
  content: "";
  height: 109%;
  width: 109%;
  background: transparent;
  border-radius: 50%;
  border: 2.52px dashed #c5c5c5;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  animation: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.bg-product-1.with-construction {
  background-image: url(../images/product/bg/02.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}

.join-us-one__inner {
  padding: 80px 50px;
  background: var(--color-primary);
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 7px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .join-us-one__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .join-us-one__inner {
    padding: 20px;
  }
}

.join-us-one__inner .join-us-one__title-box {
  position: relative;
  display: block;
}

.join-us-one__inner .join-us-one__title-box .join-us-one__title {
  font-size: 50px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .join-us-one__inner .join-us-one__title-box .join-us-one__title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 575px) {
  .join-us-one__inner .join-us-one__title-box .join-us-one__title {
    font-size: 32px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 479px) {
  .join-us-one__inner .join-us-one__title-box .join-us-one__title {
    font-size: 26px;
  }
}

.join-us-one__inner .join-us-one__shape-1 {
  position: absolute;
  top: -30px;
  left: 0;
  animation: topBottom 3s ease-in-out infinite;
  z-index: -1;
}

.join-us-one__inner .join-us-one__shape-1 img {
  width: auto;
}

.join-us-one__inner .join-us-one__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

.join-us-one__inner .join-us-one__shape-2 img {
  width: auto;
}

.join-us-one__inner .join-us-one__form-box .contact-form-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 590px;
}

@media only screen and (max-width: 767px) {
  .join-us-one__inner .join-us-one__form-box .contact-form-2 {
    width: 500px;
  }
}

@media only screen and (max-width: 575px) {
  .join-us-one__inner .join-us-one__form-box .contact-form-2 {
    width: 280px;
    gap: 25px;
    flex-direction: column;
    gap: 25px;
  }
}

.join-us-one__inner .join-us-one__form-box .contact-form-2 button {
  position: absolute;
  max-width: max-content;
  margin-left: auto;
  right: 5px;
}

@media only screen and (max-width: 575px) {
  .join-us-one__inner .join-us-one__form-box .contact-form-2 button {
    position: relative;
    bottom: 0;
    left: 0;
    display: block;
    right: auto;
    margin-left: 0;
    border: 1px solid #ebebeb;
  }
}

.join-us-one__inner .join-us-one__form-box .contact-form-2 input {
  height: 55px;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 5px;
}

.join-us-one__inner .join-us-one__form-box {
  flex-basis: 45%;
}

@keyframes topBottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes leftRight {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0px);
  }
}

/*----Template Style----*/
.about-area .about-inner {
  padding-left: 80px;
}

@media only screen and (max-width: 1199px) {
  .about-area .about-inner {
    padding-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area .about-inner {
    padding-left: 15px;
    margin-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area .about-inner {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 80px;
  }
}

.about-area.about-style-one .about-thumbnails .thumbnail {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area.about-style-one .about-thumbnails .thumbnail {
    min-width: max-content;
    max-width: calc(57% + 150px);
  }
}

@media only screen and (max-width: 575px) {
  .about-area.about-style-one .about-thumbnails .thumbnail {
    min-width: max-content;
    max-width: calc(57% + 150px);
  }
}

@media only screen and (max-width: 479px) {
  .about-area.about-style-one .about-thumbnails .thumbnail {
    min-width: 100%;
    max-width: 100%;
  }
}

.about-area.about-style-one .about-thumbnails .thumbnail img {
  max-width: max-content;
}

@media only screen and (max-width: 767px) {
  .about-area.about-style-one .about-thumbnails .thumbnail img {
    max-width: 100%;
  }
}

.about-area.about-style-one .about-thumbnails .thumbnail .image-two {
  position: absolute;
  right: 0;
  top: 0;
}

@media only screen and (max-width: 575px) {
  .about-area.about-style-one .about-thumbnails .thumbnail .image-two {
    position: absolute;
    right: 0;
    top: 3%;
    max-width: 28%;
  }
}

.about-area.about-style-one .about-thumbnails .thumbnail .image-three {
  position: absolute;
  right: 0;
  bottom: 80px;
  position: absolute;
}

@media only screen and (max-width: 575px) {
  .about-area.about-style-one .about-thumbnails .thumbnail .image-three {
    max-width: 50%;
  }
}

.about-area.about-style-one .about-thumbnails .thumbnail .square {
  height: 30px;
  width: 30px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 50px;
  right: 190px;
}

.about-area.about-style-one .about-thumbnails .thumbnail .flower {
  position: absolute;
  bottom: -35px;
  right: 75px;
  animation: jump-1 4s linear infinite;
}

.about-area.about-style-one .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
}

.about-area.about-style-one .thumbnail-with-title {
  display: flex;
  align-items: center;
  width: 580px;
  margin-top: 26px;
}

@media only screen and (max-width: 1199px) {
  .about-area.about-style-one .thumbnail-with-title {
    width: auto;
  }
}

@media only screen and (max-width: 575px) {
  .about-area.about-style-one .thumbnail-with-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.about-area.about-style-one .thumbnail-with-title .thumbnail {
  margin-right: 15px;
  position: relative;
  min-width: max-content;
}

.about-area.about-style-one .thumbnail-with-title .thumbnail img {
  min-width: max-content;
}

.about-area.about-style-one .thumbnail-with-title .thumbnail .icon {
  position: absolute;
  height: 56px;
  width: 56px;
  line-height: 56px;
  border: 2px solid var(--color-white);
  border-radius: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-area.about-style-one .thumbnail-with-title .thumbnail .icon i {
  color: var(--color-white);
}

.about-area.about-style-one .thumbnail-with-title .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: var(--s-extra-bold);
  font-family: var(--font-secondary);
  color: var(--color-heading);
}

@media only screen and (max-width: 575px) {
  .about-area.about-style-one .thumbnail-with-title .title {
    font-size: 18px;
  }
}

.about-area.about-style-two .about-thumbnails {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area.about-style-two .about-thumbnails {
    margin: auto;
    min-width: max-content;
    max-width: max-content;
  }
}

@media only screen and (max-width: 767px) {
  .about-area.about-style-two .about-thumbnails {
    margin: auto;
    min-width: auto;
    max-width: max-content;
  }
}

.about-area.about-style-two .about-thumbnails .dots {
  position: absolute;
  top: 0;
  right: 32px;
  z-index: -1;
  animation: jump-2 6s linear infinite;
}

.about-area.about-style-two .about-thumbnails .scater {
  position: absolute;
  bottom: -20px;
  left: -109px;
  z-index: -1;
  animation: jump-2 8s linear infinite;
}

.about-area.about-style-two .inner {
  padding-left: 55px;
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area.about-style-two .inner {
    padding-left: 15px;
    margin-top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .about-area.about-style-two .inner {
    padding-left: 0;
    margin-top: 70px;
  }
}

.about-area.about-style-three .about-inner .thumbnail {
  max-width: max-content;
}

@media only screen and (max-width: 767px) {
  .about-area.about-style-three .about-inner .thumbnail {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .about-area.about-style-three .about-inner .thumbnail img {
    max-width: 100%;
    width: 100%;
  }
}

.about-style-one {
  position: relative;
}

.about-style-one .vedio-icone {
  position: absolute;
  top: 47%;
  left: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-style-one .vedio-icone {
    top: 19%;
  }
}

@media only screen and (max-width: 767px) {
  .about-style-one .vedio-icone {
    top: 19%;
  }
}

.about-style-one .vedio-icone .video-play-button::after {
  background: var(--color-primary);
  border: 2px solid #fff;
  border-color: var(--color-primary);
}

.about-style-one .vedio-icone .video-play-button span {
  border-left: 15px solid #fff;
}

.product-share {
  position: absolute;
  bottom: -35px;
  left: 50px;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.0901960784);
}

@media only screen and (max-width: 1199px) {
  .product-share {
    padding: 15px;
  }
}

.product-share .profile-share {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-share .profile-share a {
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.product-share .profile-share a:nth-child(1) {
  z-index: 5;
}

.product-share .profile-share a:nth-child(2) {
  margin-left: -12px;
  z-index: 4;
}

.product-share .profile-share a:nth-child(3) {
  margin-left: -12px;
  z-index: 3;
}

.product-share .profile-share a:nth-child(4) {
  margin-left: -12px;
  z-index: 2;
}

.product-share .profile-share a img {
  border-radius: 50%;
  border: 2px solid var(--color-white);
  transition: 0.5s;
  transform: scale(1);
}

@media only screen and (max-width: 575px) {
  .product-share .profile-share a img {
    max-width: 100% !important;
  }
}

.product-share .profile-share a:hover {
  z-index: 6;
}

.product-share .profile-share a:hover img {
  transform: translateY(-3px) scale(1.1);
  border: 2px solid var(--color-primary);
}

[data-tooltip] {
  position: relative;
  font-size: 10px;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  transition: 0.6s;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: 115%;
}

.feature-counter {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .feature-counter {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}

.feature-counter .tmp-feature-wrapper .tmp-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature-counter .tmp-feature-wrapper .tmp-feature:last-child {
  margin-bottom: 0;
}

.feature-counter .tmp-feature-wrapper .tmp-feature .feature-content {
  margin-left: 12px;
}

.feature-counter .tmp-feature-wrapper .tmp-feature .feature-content .title {
  margin-bottom: 0;
}

.feature-counter .counter-wrapper.counter-style-one {
  margin-left: 75px;
}

@media only screen and (max-width: 767px) {
  .feature-counter .counter-wrapper.counter-style-one {
    margin-left: 15px;
    margin-top: 30px;
  }
}

.feature-counter .counter-wrapper.counter-style-one .counter-inner .title {
  font-size: 44px;
  line-height: 30px;
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
  margin-bottom: 35px;
}

.feature-counter .counter-wrapper.counter-style-one .counter-inner .title .counter {
  font-size: 44px;
  line-height: 30px;
  margin: 0;
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
}

.feature-counter .counter-wrapper.counter-style-one .counter-inner .description {
  font-family: var(--font-secondary);
  color: var(--color-heading);
  font-weight: var(--s-medium);
}

.tmp-banner-area.banner-three .swiper-slide.swiper-slide-active .slider-inner .content .title {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
  display: block;
}

.tmp-banner-area.banner-three .swiper-slide.swiper-slide-active .slider-inner .content .description {
  animation: fadeInUp 1.5s;
  animation-delay: 0s;
}

.tmp-banner-area.banner-three .swiper-slide.swiper-slide-active .slider-inner .content .banner-bottom {
  animation: fadeInUp 2.5s;
  animation-delay: 0s;
}

.stroke__text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #141414;
  -webkit-text-stroke: 1px;
  font-family: var(--font-hind);
}

.stroke__text.v__1 {
  font-size: 96px;
  font-weight: 500;
  line-height: 80px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tmpk__circle {
  position: absolute;
  right: 5%;
  bottom: 8%;
}

.tmpk__circle svg {
  height: 176px;
  width: 176px;
  position: relative;
  padding: 8px;
  animation: rotate 10s linear infinite;
}

@media only screen and (max-width: 575px) {
  .tmpk__circle svg {
    height: 120px;
    width: 120px;
    padding: 2px;
  }
}

.tmpk__circle svg text textPath {
  font-size: 10.5px;
  fill: var(--color-primary);
  font-family: var(--font-secondary);
  font-weight: 500;
}

.tmpk__circle.v__1 {
  border-radius: 50%;
  max-width: max-content;
  background: #fff;
  -webkit-box-shadow: 1px 0px 83px -43px rgba(255, 0, 0, 0.57);
  -moz-box-shadow: 1px 0px 83px -43px rgba(255, 0, 0, 0.57);
  box-shadow: 1px 0px 83px -43px rgba(255, 0, 0, 0.57);
}

.tmpk__circle--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tmpk__circle--icon i {
  transform: rotate(-30deg);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 47px;
}

.tmpk__circle.v__3 {
  display: inline-block;
  position: relative;
}

.tmpk__circle.v__3 text textPath {
  font-size: 11.5px;
  font-family: var(--font-secondary);
  font-weight: 400;
}

.tmpk__circle.v__3 .tmpk__circle--icon i {
  color: var(--color-primary);
  transform: rotate(0);
  font-size: 20px;
}

.about-thumbnail-construction {
  position: relative;
  z-index: 1;
}

.about-thumbnail-construction .image-large img {
  width: 100%;
  border-radius: 5px;
}

.about-thumbnail-construction .work-done {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: var(--color-primary);
  padding: 30px;
  width: 250px;
  border-radius: 6px;
}

@media only screen and (max-width: 479px) {
  .about-thumbnail-construction .work-done {
    padding: 12px;
  }
}

.about-thumbnail-construction .work-done .title {
  color: #fff;
  font-size: 60px;
  margin-bottom: 0;
}

.about-thumbnail-construction .work-done p {
  color: #fff;
  margin: 0;
}

.about-thumbnail-construction .shape-bottom-left {
  position: absolute;
  height: 250px;
  width: 250px;
  background: var(--color-primary);
  z-index: -1;
  bottom: -30px;
  left: -30px;
  border-radius: 5px;
}

.projects-details-inner .thumbnail img {
  max-width: 100%;
}

@media only screen and (max-width: 1199px) {
  .projects-details-inner .thumbnail img {
    max-width: 100%;
  }
}

.projects-details-inner .clients-projects-details {
  padding: 0 100px;
  position: relative;
  margin-top: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-inner .clients-projects-details {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .projects-details-inner .clients-projects-details {
    padding: 0 15px;
  }
}

.projects-details-inner .clients-projects-details .clients-details-inner {
  background-color: var(--color-heading);
  padding: 40px 50px;
}

@media only screen and (max-width: 767px) {
  .projects-details-inner .clients-projects-details .clients-details-inner {
    padding: 25px;
  }
}

.projects-details-inner .clients-projects-details .clients-details-inner .title {
  color: var(--color-white);
  font-size: 20px;
  line-height: 26px;
  font-weight: var(--s-semi-bold);
  border-bottom: 1px solid #1b1b1b;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.projects-details-inner .clients-projects-details .clients-details-inner .single-projects-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.projects-details-inner .clients-projects-details .clients-details-inner .single-projects-details .info {
  display: flex;
  align-items: center;
}

.projects-details-inner .clients-projects-details .clients-details-inner .single-projects-details .info .icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--color-primary);
  border-radius: 100%;
  text-align: center;
  margin-right: 15px;
}

.projects-details-inner .clients-projects-details .clients-details-inner .single-projects-details .info .icon i {
  color: var(--color-white);
}

.projects-details-inner .clients-projects-details .clients-details-inner .single-projects-details .info .content .subtitle {
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: var(--s-bold);
  margin-bottom: 0;
  font-family: var(--font-secondary);
}

.projects-details-inner .clients-projects-details .clients-details-inner .single-projects-details .info .content .category {
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: var(--s-regular);
  margin-bottom: 0;
  font-family: var(--font-secondary);
}

.grow {
  transform: scale(0.8);
}

.projects-details-wrapper {
  margin-top: 50px;
}

.projects-details-wrapper .challenge-details {
  display: flex;
  margin-bottom: 8px;
}

.projects-details-wrapper .challenge-details .icon {
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--color-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: 6px;
}

.projects-details-wrapper .challenge-details .icon i {
  color: var(--color-primary);
  font-weight: var(--s-medium);
  font-size: 10px;
  display: inline-block;
}

.projects-details-wrapper .challenge-details .icon .description {
  line-height: 24px;
}

.projects-details-wrapper .thumbnail {
  width: 100%;
}

.projects-details-wrapper .thumbnail img {
  width: 100%;
  min-width: max-content;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-wrapper .thumbnail img {
    min-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .projects-details-wrapper .thumbnail img {
    min-width: 100%;
  }
}

.mt-dec-pd {
  margin-top: -60px;
}

.my-swiper-product-details,
.mySwiper-recent-product {
  z-index: 0;
}

.my-swiper-product-details .swiper-button-next,
.my-swiper-product-details .swiper-button-prev,
.mySwiper-recent-product .swiper-button-next,
.mySwiper-recent-product .swiper-button-prev {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  transition: 0.3s;
}

.my-swiper-product-details .swiper-button-next::after,
.my-swiper-product-details .swiper-button-prev::after,
.mySwiper-recent-product .swiper-button-next::after,
.mySwiper-recent-product .swiper-button-prev::after {
  font-size: 18px;
  color: #fff;
}

.my-swiper-product-details .swiper-button-next:hover,
.my-swiper-product-details .swiper-button-prev:hover,
.mySwiper-recent-product .swiper-button-next:hover,
.mySwiper-recent-product .swiper-button-prev:hover {
  transform: scale(1.2);
}

.my-swiper-product-details .swiper-button-next,
.mySwiper-recent-product .swiper-button-next {
  right: 60px;
}

.my-swiper-product-details .swiper-button-prev,
.mySwiper-recent-product .swiper-button-prev {
  left: 60px;
}

.mySwiper-recent-product {
  padding: 20px 20px;
}

/*----Footer Style----*/
.bg-color-heading {
  background-color: var(--color-heading);
}

.border-right {
  border-right: 1px solid rgba(106, 104, 104, 0.2039215686);
}

.subscribe-area.subscribe-style-1 {
  background-color: #353950;
  border-radius: 8px;
}

.subscribe-area.subscribe-style-1 .subscribe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 50px;
}

@media only screen and (max-width: 1199px) {
  .subscribe-area.subscribe-style-1 .subscribe-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .subscribe-area.subscribe-style-1 .subscribe-inner {
    padding: 20px;
  }
}

.subscribe-area.subscribe-style-1 .subscribe-inner .title {
  font-size: 30px;
  color: var(--color-white);
}

@media only screen and (max-width: 575px) {
  .subscribe-area.subscribe-style-1 .subscribe-inner .title {
    font-size: 24px;
    line-height: 1.3;
  }
}

.subscribe-area.subscribe-style-1 .subscribe-inner form {
  display: flex;
  margin-top: 0 !important;
}

@media only screen and (max-width: 575px) {
  .subscribe-area.subscribe-style-1 .subscribe-inner form {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }
}

.subscribe-area.subscribe-style-1 .subscribe-inner form input {
  border-bottom: 1px solid var(--color-body);
  display: inline-block;
  max-width: 410px;
  padding: 0;
  color: var(--color-text-1);
  width: 400px;
}

@media only screen and (max-width: 575px) {
  .subscribe-area.subscribe-style-1 .subscribe-inner form input {
    max-width: 100%;
    width: 100%;
  }
}

.subscribe-area.subscribe-style-1 .subscribe-inner form button {
  margin-left: 20px;
}

@media only screen and (max-width: 575px) {
  .subscribe-area.subscribe-style-1 .subscribe-inner form button {
    margin-left: 0;
  }
}

.subscribe-area.subscribe-style-1 .subscribe-inner form button i {
  margin-left: 5px;
}

.copyright-area-one {
  padding: 10px 0;
  border-top: 1px solid #eeeeee;
  /* background: #353950; */
}

.copyright-area-one .main-wrapper {
  text-align: center;
}

.copyright-area-one p {
  margin: 0;
  text-align: left;
  color: #5F6D7E;
  white-space: nowrap;
}

.copyright-area-one p a {
  color: var(--color-primary);
}

.pr-50 {
  padding-right: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.footer-main.footer-style-one {
  /* margin-top: 75px; */
}

.footer-main.footer-style-one .single-footer-wrapper .description {
  color: #5F6D7E;
  font-size: 16px;
  font-weight: var(--p-regular);
  line-height: 28px;
  margin-bottom: 23px;
  max-width: 340px;
}

.footer-main.footer-style-one .single-footer-wrapper .day-time {
  display: flex;
  align-items: center;
  color: var(--color-white);
  margin-bottom: 25px;
}

.footer-main.footer-style-one .single-footer-wrapper .day-time .icon {
  margin-right: 20px;
}

.footer-main.footer-style-one .single-footer-wrapper .day-time .icon i {
  font-size: 44px;
}

.single-footer-wrapper .ft-title {
  color: #272D37;
  /* margin-bottom: 30px; */
}

.single-footer-wrapper .single-post {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 40px;
}

@media only screen and (max-width: 575px) {
  .single-footer-wrapper .single-post {
    gap: 5px;
  }
}

@media only screen and (max-width: 479px) {
  .single-footer-wrapper .single-post {
    gap: 20px;
  }
}

.single-footer-wrapper .single-post .thumbnail {
  display: block;
}

.single-footer-wrapper .single-post .thumbnail img {
  width: 100%;
  border-radius: 5px;
  min-width: max-content;
}

.single-footer-wrapper .single-post .content {
  margin-left: 15px;
}

.single-footer-wrapper .single-post .content .date {
  color: var(--color-white);
  font-size: 14px;
  font-weight: var(--s-regular);
  font-family: var(--font-secondary);
  line-height: 19px;
}

.single-footer-wrapper .single-post .content .date i {
  margin-right: 10px;
  color: var(--color-primary);
}

.single-footer-wrapper .single-post .content a {
  display: block;
  margin-top: 7px;
}

.single-footer-wrapper .single-post .content a .title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  transition: 0.3s;
}

@media only screen and (max-width: 1199px) {
  .single-footer-wrapper .single-post .content a .title {
    font-size: 14px;
  }
}

.single-footer-wrapper .single-post .content a:hover .title {
  color: var(--color-primary);
}

.single-footer-wrapper .single-post .content .title {
  color: var(--color-white);
  font-weight: var(--s-bold);
  font-family: var(--font-secondary);
  line-height: 26px;
}

.ft-link {
  padding-left: 0;
}

.ft-link li {
  list-style: none;
  color: #272D37;
}

.ft-link li a {
  position: relative;
  max-width: max-content;
}

.ft-link li a::after {
  position: absolute;
  left: 0;
  width: 0%;
  height: 1px;
  bottom: -2px;
  background: var(--color-primary);
  content: "";
  transition: 0.3s;
}

.ft-link li a:hover::after {
  width: 100%;
}

.ft-link li.ft-location {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 25px;
}

.ft-link li .single-contact {
  background-color: #1D1E33;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 479px) {
  .ft-link li .single-contact {
    margin-bottom: 0;
  }
}

.ft-link li .single-contact.background-transparent {
  background-color: transparent;
}

.ft-link li .single-contact.background-transparent .icon {
  /* background-color: var(--color-secondary); */
}

.ft-link li .single-contact.background-transparent .content span {
  color: var(--color-heading);
}

.ft-link li .single-contact.background-transparent .content .contact-here {
  color: var(--color-body);
}

.ft-link li .single-contact .icon {
  margin-right: 10px;
  padding: 2px 3px;
  border-radius: 5px;
  /* background-color: var(--color-primary); */
}

.ft-link li .single-contact .icon i {
  font-size: 30px;
  color: var(--color-white);
}

.ft-link li .single-contact .content span {
  display: block;
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: var(--s-bold);
}

.ft-link li .single-contact .content a {
  font-family: var(--font-secondary);
  font-weight: var(--s-regular);
  line-height: 26px;
}

.ft-link.ft-link-style-two li .single-contact .content .contact-here {
  transition: 0.5s;
}

.ft-link.ft-link-style-two li .single-contact .content .contact-here:hover {
  color: var(--color-secondary);
}

.bg-color-footer {
  /* background-color: #03041C;
  background-image: url(../images/footer/bg-01.png); */
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 2px solid #D4D4D4;
  margin-top: 25px;
}

.bg-color-footer-2 {
  background-image: url(../images/footer/bg-02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-color-footer-2 .subscribe-area.subscribe-style-1 .subscribe-inner form button {
  background: var(--color-secondary) !important;
}

.bg-color-footer-2 .subscribe-area.subscribe-style-1 .subscribe-inner form button:hover {
  background: var(--background-color-2) !important;
}

.bg-color-footer-2 .single-footer-wrapper .single-post .content .date i {
  color: var(--color-secondary);
}

.bg-color-footer-2 .ft-link li .single-contact .icon {
  background-color: var(--color-secondary);
}

.bg-color-footer-2 .single-footer-wrapper .single-post .content a .title:hover,
.bg-color-footer-2 .ft-link li .single-contact .content a:hover {
  color: var(--color-secondary);
}

.bg-color-footer-2 .ft-link li a:hover {
  color: var(--color-secondary);
}

.bg-color-footer-2 .social-icons.rounded-social-icons li a:hover {
  background-color: var(--color-secondary);
}

.copyright-area-one.two p a {
  color: var(--color-secondary);
}

@media only screen and (max-width: 575px) {
  .single-footer-wrapper.border-right {
    border: none;
  }
}

.pl-footer-controler {
  padding-left: 50px;
}

@media only screen and (max-width: 1199px) {
  .pl-footer-controler {
    padding-left: 0;
  }
}

.index-four .bg-color-footer,
.index-five .bg-color-footer {
  background-image: none !important;
}

/*# sourceMappingURL=../maps/style.css.map */
header.tmp-header-area-start.header-one.construction-radious.sticky {
  position: fixed;
}


.tmp-mesonary-area-main.main-isotop {
  flex-direction: row !important;
  justify-content: center;
  gap: 15px;

  a {
    max-width: max-content;
    display: block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: #292929;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);

    &[aria-selected="true"] {
      background: var(--color-primary);
    }
  }
}

button {
  max-width: 100%;
}




.service-details {
  background: #f8f8f8;
}

.my-swiper-product-details {
  z-index: 0 !important;
}


.faq-style-two .vedio-icone .video-play-button {
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}


.language-picker__form:focus {
  border: none;
}

.language-picker__form button:focus {
  border: none;
}

.language-picker__form button {
  border: none;
  position: relative;
}

.language-picker__form button::after {
  position: absolute;
  right: 5px;
  top: 8px;
  content: '\f078';
  font-family: var(--font-three);
  font-size: 12px;
}

.language-picker__form button[aria-expanded="true"]::after {
  content: '\f077';
}


/* preloader area start */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: #fff;
  width: 50%;
  height: 100%;
  z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
  left: 0;
}

.loader-wrapper .loader-section.section-right {
  right: 0;
}

.loaded .loader-wrapper .loader-section.section-left {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loaded .loader-wrapper .loader-section.section-right {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 4px solid transparent;
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  border-radius: 100%;
  animation: spin 1.5s linear infinite;
}

.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 1001;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.animated {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}


.contact-page .contact-inner .ft-link.ft-link-style-three li .single-contact .icon {
  background-color: var(--color-primary) !important;
  background-image: none;
}

.appoinment-inner-page .ft-link li .single-contact.background-transparent .icon {
  background-color: var(--color-primary) !important;
}

.header--sticky.sticky {
  z-index: 15;
}

.appoinment-inner-page .contact-form .contact-form-wrapper .form-group .input-field:focus {
  border-color: var(--color-primary);
}

.appoinment-inner-page .contact-form .contact-form-wrapper .form-group .input-field:focus {
  border-color: var(--color-primary) !important;
}

.pricing-inner-page .pricing-table.pricing-style-one .pricing-header .pricing-header-inner {
  background-color: var(--color-primary) !important;
}

.pricing-inner-page .pricing-table.pricing-style-one .pricing-bottom .pricing-btn .tmp-btn:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.header-four.header--sticky.sticky {
  background: rgb(3 4 28);
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  transition: .5s;
}

.logo-area-start {
  width: 6%;
}

.logoFooter {
  width: 20%;
}

.banner-company-area-main__wrapper {
  margin-right: 30px;
}

.headerBg {
  background-image: linear-gradient(#FFEBE3, #FFFFFF);

}

.section-head .section-sub-title span {
  max-width: fit-content;
  background: #FFF4EF;
  padding: 6px 20px 6px 20px;
  border-radius: 50px;
}

.refer-link {
  text-decoration: none;
  color: inherit;

}

.new {
  background: #fff;
  padding: 3px 10px 3px 10px;
  border-radius: 41px;
}

.premium {
  text-decoration: underline;
  margin-bottom: 11px;
  margin-top: 12px;

}

.time {
  font-size: 16px !important;
  margin-bottom: 2px !important;
}

.tmp-inner-content {
  padding: 0px 20px 20px 20px
}

.linehrough {
  text-decoration: line-through;
  color: #797779;
}

.discount {
  background-color: rgba(29, 160, 26, 0.7);
  /* 70% opacity */
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  margin-left: 10px;
}

.gold {
  color: #FFD00B;
  /* margin-left: 5px; */
}

.roundbtn {
  background: #000;
  padding: 10px;
  border-radius: 10px;
  color: #fff !important;
}

.memberBlack {
  background-color: #000;

  p {
    color: #fff;
  }
}


.wet-food-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  font-family: system-ui, -apple-system, sans-serif;
}

span.product-label {
  background: #7B7FC7;
  color: #fff;
  border-radius: 8px 0 8px 0px;
  padding: 2px 10px 2px 10px;
  position: relative;
  top: 0;
}

span.custom-product-label {
  background: #7B7FC7;
  color: #fff;
  border-radius: 8px 0 8px 0px;
  padding: 2px 10px 2px 10px;
  position: relative;
  top: 0;
}

div.custom-product-label {
  background: #fff;
  color: #fff;
  border-radius: 8px 0 8px 0px;
  padding: 2px 10px 2px 10px;
  position: relative;
  top: 0;
}


.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.header p {
  color: #666;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.pet-types {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.pet-types button {
  padding: 12px 25px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: max-content;
}


.pet-types button.active {
  background: #FF6C31;
  color: white;
  border-color: #D0D5DD;
}

.content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}


.filters {
  padding: 20px;
}

.filter-section {
  margin-bottom: 30px;
}

.filter-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  left: 3px;
  position: relative;
  margin-top: 10px;
}

.filter-item input[type="checkbox"] {
  margin-right: 10px;
}

.filter-item .count {
  margin-left: auto;
  color: #FF6C31;
  font-size: 14px;
  padding: 6px;
  background: #FFF5F1;
  border-radius: 36px;
}

.price-slider {
  width: 100%;
  margin-top: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 5px 12px;
  background: #FFF5F1;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
}

.price-slider {
  width: 100%;
  margin: 10px 0;
}

.price-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.price-range span {
  font-size: 18px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  outline: none;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #FF6C31;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #FF6C31;
  cursor: pointer;
  border-radius: 50%;

  transition: all 0.2s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover,
input[type="range"]::-moz-range-thumb:hover {
  background: #FF6C31;

}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-moz-range-track {
  background: #FF6C31;
  height: 10px;
  border-radius: 5px;
}


.apply-btn {
  padding: 5px 15px;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/*

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(281px, 1fr));
  gap: 31px;
} */

.product-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #E8E5E8;
  align-items: center;
  justify-content: center;
}

.product-card img {
  /* width: 100%; */
  object-fit: contain;
  position: relative;
  /* left: 80px; */
}

.mrp-discount .mrp {
  color: #797779;
  font-size: 15px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;

}

/* .mrp-discount .discount {
  background: #1DA01AB2;
  border-radius: 4px;
  font-size: 12px;
} */


.product-info h3 {
  font-size: 15px;
  margin-top: 15px;
  font-weight: 500;

}

.product-info h4 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.size-options {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
  position: relative;
  top: 12px;
}

.size-options button {
  padding: 12px 12px;
  width: 100px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  font-size: 12px;
  color: #000 !important;
}

.size-options button.active {
  background: #FFCEA6;
  color: white;
  border-color: #FFCEA6;
}

.price-section {
  display: flex;
  flex-direction: column;
  align-items: normal;
  margin-bottom: 15px;
}


span.product-label1 {
  background: #7B7FC7;
  color: #fff;
  border-radius: 8px 0 8px 0px;
  padding: 2px 10px 2px 10px;
  position: relative;
  /* left: -33%; */
  top: 0;
}

.add-to-cart {
  max-width: 100%;
  width: 100%;
  height: 36px;
  background: #FF6C31;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
}

input[type=checkbox] {
  width: auto;
  height: auto;
  position: relative;
  opacity: 1;
}

input[type=range] {
  padding: 0;
  height: 5px;
  background-color: #FF6C31;
}

.delivery-info {

  padding: 6px 8px 6px 8px;
  gap: 2px;
  border-radius: 0px 0px 8px 8px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.43) 0%, #FFF5CD 100%);
}

@media (max-width: 768px) {
  .content {
    grid-template-columns: 1fr;
  }

  /*
  .products-grid {
    order: 1;
  } */
}

/* For Slide */
.slider-container {
  /* width: 1576px; */
  /* height: 302.81px; */
  /* max-width: 1440px; */
  /* margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
    display: table-cell; */


}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide-group {
  display: flex;
  flex: 0 0 100%;
  gap: 1rem;
}

.slide {
  position: relative;
  overflow: hidden;
  width: 350px;
}

.type {
  padding: 5px 12px 5px 12px !important;
  border-radius: 5px;
}

.slide-image {
  width: 100%;
  height: 400px;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
}

.slide-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.slide-description {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.shop-now-btn {
  width: 100%;
}

.discount-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #fff9c4;
  padding: 0.5rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.875rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.best-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ffeb3b;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.875rem;
  color: #333;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #333;
}

@media (max-width: 768px) {
  .slide-group {
    gap: 0.5rem;
  }

  .slide {
    flex: 0 0 calc(33.333% - 0.5rem);
  }
}

@media (max-width: 480px) {
  .slide {
    flex: 0 0 100%;
  }

  .widthInput {
    width: 30%;
  }

  .file-upload p {
    font-size: 15px;
  }

  .fit-content {
    max-width: 100%;
  }
}

/* Hero Section */

.hero-container {
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(180deg, #FFEBE3 -29.05%, #FFFFFF 104.09%);

}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-family: Inter;
  font-size: 52px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.hero-title .highlight {
  color: #FF6B45;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666666;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 27px;
    line-height: 40px;
  }

  .hero-description {
    font-size: 1rem;
  }
}


.rating-badge {
  position: absolute;
  /* bottom: 0%; */
  /* right: 0%; */
  margin-left: 16.5%;
  background-color: #ffffff;
  color: #454545;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reviews-container {
  padding: 20px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.review-box:hover {
  transform: translateY(-5px);
}

.review-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
}

.star-rating {
  color: #f5a623;
  /* Gold color for stars */
  margin: 8px 0;
  font-size: 18px;
}

.notification-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.notification-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.notification-content {
  flex-grow: 1;
}

.badge {
  padding: 8px;
  border-radius: 20px;

}

.star-icon {
  color: orange;
}

/* For Rating */
.product-image-container {
  position: relative;
}



.pad8px {
  padding: 8px;
}

.ceoBg {
  background-color: #FFEAD2;
  border-radius: 10px;
  padding: 20px;

  .textMsg {
    color: #7A060B !important;
    text-align: left;
    font-size: 20px;
  }

  p {
    color: #000 !important;
  }
}

.quoted-text {
  position: relative;
  padding: 10px;
}

.quoted-text::before {
  content: '“';
  font-size: 47px;
  position: absolute;
  left: -5px;
  color: #FFAD7A;
  top: -22px;
}

.quoted-text::after {
  content: '”';
  /* Closing double quote */
  font-size: 47px;
  position: absolute;
  right: -10px;
  bottom: -60;
  color: #FFAD7A;

}

/* PopularCatagories */
.popular-categories {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: start;
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .product-card img {
    left: 0px;
  }

  .delivery-info {
    font-size: 16px !important;
  }

  .quoted-text {
    position: relative;
    padding: 0px;
    line-height: 22px;
    font-size: 11px !important;
  }
}

.category-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-card img {
  max-width: 80%;
  height: auto;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: #333;
}

.count {
  float: right;
  position: relative;
}

.notificationHeder {
  font-size: 16px;
  font-weight: 600;

}

.font25 {
  font-size: 25px !important;
}

.floatRight {
  float: right;

}

.sharebtn {
  position: absolute !important;
  top: 0;
  right: 0;
  height: 46px;
  width: 30%;
  color: #fff;
  border-radius: 0 4px 4px 0;
}

.mt_80 {
  margin-top: 28px;
}

.emailBtn {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  border: none;
  padding: 0 20px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}


.shareInput {
  width: 70%;
  position: relative;
  margin-top: 30px;
}

/* .displayManage {
  display: block !important;
} */

.backImg {
  background-image: url('https://cdn.pixabay.com/photo/2021/05/09/06/07/dog-6240043_1280.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.borderNone {
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #FFCEA6;
  background: #FFFAF3;
  margin-bottom: 18px !important;
  border-bottom-color: #FFCEA6 !important;
}

.map {
  margin-right: 5px;
}

.address-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.address-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

/*
  .icon {
    font-size: 20px;
    color: orange;
  } */

.address-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 4px;
}

.address-info p {
  font-size: 14px;
  color: #666;
}

.edit {
  color: orange;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.edit:hover {
  text-decoration: underline;
}

.error {
  width: 25%;
  margin: auto;
  /* margin-top: 10%; */
}

.listbox {
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e3e1e1;

  h3 {
    font-size: 24px;
  }
}

.listGold {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 15px;
}

.priceoffer {
  padding: 2px;
  background: #38BF08;
  border-radius: 5px;
  color: #fff;
  margin-right: 14px;
  white-space: nowrap;
}

.imgSet {
  width: 40px;
  margin-right: 10px;
}

.upgradebtn {
  background: #FFD00B !important;
  color: #000 !important;
  border-radius: 4px !important;
  white-space: nowrap;
}

@media only screen and (max-width: 320px) {
  .upgradebtn {
    font-size: 10px !important;
    white-space: nowrap;
  }

}

.image-container {
  position: relative;
}


.overlay-text {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #38BF08;
  padding: 5px;
  font-size: 16px;
  color: #fff;
  border-top-left-radius: 5px;
}

.redColor {
  border-radius: 40px;
  background-color: #B72111;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 10px;
  margin-left: 10px;
}

.ml_lg_15 {
  margin-left: 15px;
}

.borderbtm {
  margin-bottom: 10px;
  margin-top: 10px;
  border-bottom: 1px solid #E8E5E8;
}

.card {
  border-radius: 10px !important;
}

.maxwidth {
  width: max-content;
}

.listicon li {
  margin-top: 0px;
  margin-bottom: 0px;
}

.special {
  background: #38BF08;
  padding: 6px 15px 6px 15px;
  font-size: 16px;
  color: #fff;
  border-radius: 25px;
}

.review {
  border: 1px solid #f0f0f0;
  padding: 12px;
  margin-bottom: 20px;
  box-shadow: 1px 2px 5px 1px #f0f0f0;
}

.alignCenter {
  text-align: center;
}

.appointment-date {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  /* Allow horizontal scrolling */
  padding: 10px 0;
  /* Space for the items */
  white-space: nowrap;
  /* Prevent wrapping of the dates */
}


.sucessmsg {
  background: #45AA22;
  /* min-width: 100% !important; */
  color: #fff !important;
  padding: 8px;
}

.coupan {
  color: #000 !important;
  background: #fff;
  border: 1px solid #e4e4e4;
  text-align: left;
  border-radius: 10px;
  line-height: 34px;

}

.detailsbox {
  background: #FAFAFA;
  padding: 13px !important;
}

.pincode {
  position: relative;
}

.height45 {
  height: 45px !important;
}

.borderbtn {
  border: 1px solid #FF6C31 !important;
}

.gap {
  gap: 10px;
}

/* For Login */
.header p {
  color: #666;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
  text-align: left;
}

.header-text,
.brand-text {
  position: relative;
  top: 57px;
  left: -25px;
  color: #FF8C59;
  margin-bottom: 50px;
}

.brand-text {
  position: relative;
  top: 40px;
  left: -346px;
  color: #FF8C59;
  margin-bottom: 50px;
}

.paw {
  font-size: 1.5rem;
}

.main-content {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container1 {
  flex: 1;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.login-button {
  all: unset;
  cursor: pointer;
}


.login-form {
  flex: 1;
  max-width: 400px;
  position: relative;
  top: -55px;
}


.login-title {
  font-size: 2rem;
  color: #333;
  margin: 0 0 0.5rem 0;
}

.login-subtitle {
  color: #797779;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.phone-label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 5px;
  font-size: 14px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.phone-input,
.gender-input {
  width: 100%;
  border-radius: 5px;
  height: 60px;
  font-size: var(--font-size-b1);
  transition: var(--transition);
  padding: 0 20px;
  border: 1px solid transparent;
  transition: var(--transition);
  border: 1px solid #e0e0e0;
  background-color: var(--color-lightest);
}

.phone-input:focus,
.gender-input:focus {
  border-color: #FFAD7A !important;
}

.phone-input:focus+.phone-label,
/* .phone-input:not(:placeholder-shown) + .phone-label, */
.gender-input:focus+.phone-label,
.gender-input:not(:placeholder-shown)+.phone-label {
  top: -10px;
  font-size: 12px;
  color: #FF7452;
}

.gender-input::-ms-expand {
  display: none;
}

.gender-input:after {
  content: '▼';
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: #999;
}


@media (max-width: 576px) {
  .form-control {
    font-size: 14px;
  }

  .btn {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .col-9 {
    width: 100%;
  }

  /* .form-control,
  .tmp-btn {
    width: 100%;
  } */


}


/* RegistrationSuccess */

.registration-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #FFE8DE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.checkmark-placeholder {
  width: 40px;
  height: 40px;
  background-color: #FF5C35;
  border-radius: 50%;
}

h1 {
  color: #333333;
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.success-message {
  color: #666666;
  font-size: 16px;
  margin-bottom: 32px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  gap: 12px;
  margin-bottom: 24px;
}

.add-pet-button {
  background-color: #FF5C35;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s;
}

.add-pet-button:hover {
  background-color: #FF4C20;
}

.explore-button {
  background: none;
  border: none;
  color: #666666;
  font-size: 16px;
  cursor: pointer;
  padding: 12px;
  text-decoration: underline;
}

.explore-button:hover {
  color: #333333;
}

.note-box {
  background-color: #FFE8DE;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  color: #666666;
}

.note-label {
  color: #FF5C35;
  font-weight: 600;
  margin-right: 4px;
}

/* Responsive Design */
@media (max-width: 480px) {
  .registration-success {
    padding: 20px 16px;
  }

  .action-buttons {
    max-width: 100%;
  }

  .note-box {
    padding: 10px 16px;
  }
}


/* For pet */

.pet-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Inter", serif;
}

.pet-type {
  margin-bottom: 24px;
}

.pet-type label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.pet-type-buttons {
  display: flex;
  gap: 12px;
}

.type-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid #FF6C31;
  border-radius: 5px;
  background: #FFEAD2;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  width: 100px;
  height: 46px;
}

.type-button.active {
  background: #fff4f0;
  border-color: #ff5c28;
  color: #ff5c28;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Default: 3 columns */
  gap: 20px;
  margin-bottom: 20px;
}

.form-group2 {
  margin-bottom: 20px;
  width: 400px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 46px;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--color-lightest);
  padding-right: 36px;
  width: 343px;
}

.gender-options {
  display: flex;
  gap: 24px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #ff5c28;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .pet-images {
  margin-bottom: 24px;
} */

.image-upload-container {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.image-preview {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-button {
  width: 75px;
  padding: 23px !important;
  background-size: cover;
  height: 75px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-image: url(../images/icon/uploadicon.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.upload-button input[type="file"] {
  opacity: 0;
}

.upload-button label {
  cursor: pointer;
  font-size: 24px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  /* margin-top: 20px; */
}

/* .tmp-btn {
  padding: 12px 24px;
  background-color: #ff6c31;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
} */



.form-row-single-line {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group.color-breed {
  display: flex;
  gap: 20px;
}

.form-row .form-group.color-breed .form-group {
  flex: 1;
}

/* Media Queries */

/* For laptops (1024px to 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .form-row {
    grid-template-columns: repeat(3, 1fr);
    /* Maintain 3 columns for laptops */
  }

  .pet-type-buttons {
    flex-wrap: nowrap;
    /* Keep buttons in a single row */
  }

  .form-actions {
    justify-content: space-between;
    /* Spread action buttons evenly */
  }
}

/* For tablets (768px to 1023px) */
@media (max-width: 1023px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 343px;
  }
}

/* For mobile screens */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row-single-line {
    flex-direction: column;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .pet-type-buttons {
    flex-wrap: wrap;
  }
}

.listicon li {
  margin-top: 0px;
  margin-bottom: 0px;
}

.appointment {
  padding: 12px;
  border-radius: 11px;
  background-color: #FFEAD2;
}

.review {
  border: 1px solid #f0f0f0;
  padding: 12px;
  margin-bottom: 20px;
  box-shadow: 1px 2px 5px 1px #f0f0f0;
}

.alignCenter {
  text-align: center;
}

.reason {
  border: 1px solid #FF6C31 !important;
  background: #fff !important;
  margin-top: 5px;
}


.monthFilter {
  width: 172px;
  float: inline-end;
  padding: 5px;
  height: 28px;
  margin-top: -60px;
  font-size: 16px;
}

.coupan {
  color: #000 !important;
  background: #fff;
  border: 1px solid #e4e4e4;
  text-align: left;
  border-radius: 10px;
  line-height: 34px;

}

.detailsbox {
  background: #FAFAFA;
  padding: 13px !important;
}


/* OwnerInfo */

/* Medical Info Wrapper */
.medical-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  gap: 83px;
  position: relative;
  left: -37px;
  top: -37px;
}

/* Medical Info Section */
.medical-info {
  flex: 1;
  font-family: Arial, sans-serif;

}

/* Header Style */
.header2 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  margin-bottom: 24px;
}

.header2 h2 {
  font-size: 24px;
  font-weight: normal;
}

.icon {
  font-size: 24px;
}

/* Form Grid: Column Layout */
.form-grid-columns {
  display: flex;
  gap: 40px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Groups */
.form-group1,
.form-group-date-small {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  color: #666;
}

input[type="text"],
select,
input[type="date"] {
  height: 46px;
  width: 100%;
  padding: 10px;
  border: 1px solid;
  border-radius: 10px;
  font-size: 16px;
  border-color: #BCB8BB;
}

/* Specific Styling for Date Fields in First Row */
.form-group-date-small input[type="date"] {
  height: 46px;
  width: 160px;
  padding: 10px;
  border: 1px solid #FFAD7A;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
}

/* Radio Group */
.radio-group1 {
  display: flex;
  gap: 16px;
}

.radio-group1 label {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Image Section */
.medical-info-image-container {
  flex: 0.4;
  display: flex;
  justify-content: center;
  align-items: flex-start;

}

.medical-info-image-container img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 10px;
  position: relative;
  left: 80px;
  top: 26px;
}


/* .tmp-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
} */



.tmp-btn.btn-primary:hover {
  background-color: #FF4C20;
}

/* Responsive Design */
@media (max-width: 768px) {
  .medical-info-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .medical-info-image-container {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }
}

/* For DocumentUpload */

.document-upload-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  position: relative;
  top: -30px;
  left: -128px;
}

.document-upload {
  flex: 1;
  max-width: 500px;
  padding-right: 40px;

}

.image-container {
  /* flex: 1; */
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

/*
.image-container img {
  max-width: 100%;
  height: auto;
} */

/* h3 {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
} */

.document-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-color: #ff7f50;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6zm-1 1.5L18.5 9H13V3.5zM6 20V4h5v7h7v9H6z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.upload-section {
  margin-bottom: 20px;
}

h4 {
  /* font-size: 16px; */
  color: #797779 !important;
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
  top: 12px;

}

.file-input2 {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.file-input2 input[type="text"] {
  flex-grow: 1;
  padding: 10px;
  border: none;
  font-size: 14px;
}

.file-input2 label1 {
  background-color: #fff;
  color: #FF6C31;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  border-left: 1px solid #ccc;
}

.file-input2 input[type="file"] {
  display: none;
}

.progress-bar {
  flex-grow: 1;
  height: 5px;
  background-color: #f0f0f0;
  margin: 10px;
}

.progress {
  height: 100%;
  background-color: #ff7f50;
}

.file-input2.success input[type="text"] {
  color: #4caf50;
}

.file-input2.success::before {
  content: "✓";
  display: inline-block;
  color: #4caf50;
  margin-left: 10px;
  font-weight: bold;
}

.save-button {
  width: 100%;
  padding: 15px;
  background-color: #ff7f50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.save-button:hover {
  background-color: #ff6a3c;
}

@media (max-width: 768px) {
  .document-upload-container {
    flex-direction: column;
  }

  .document-upload {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 40px;

  }
}

.taglebel {
  position: relative;
  left: 400px;
  top: 5px;
}


/* For profile */
/* Profile Card Section */
.profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EAECF0;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  max-width: 100%;
  width: 1290px;
  height: 150px;
  gap: 0;
  position: relative;
  left: 110px;
  top: 30px;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-image-container {
  position: relative;
  width: 80px;
  height: 80px;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.paw-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #FFB800;
  border-radius: 50%;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 24px;
  height: 24px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.profile-details {
  display: flex;
  gap: 1rem;
  color: #666;
  font-size: 0.875rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* .membership-badge {
  gap: 0.5rem;
  top: 163px;
  left: 1175px;
  padding: 8px;
  border-radius: 4px;
  justify-content: space-between;

} */

.badge-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Posts grid for mobile: 3 posts in one row */
@media only screen and (max-width: 768px) {
  .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 posts per row */
    gap: 10px;
    /* white-space: nowrap; */
    /* Space between posts */
  }

  .post-card img.profile-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
}

/* Pet Profile Section */
.pet-profile {
  padding: 20px;
  max-width: 1290px;
  margin: 0 auto;
  color: #ffffff;
}

h5 {
  font-size: 24px;
  margin-bottom: 16px;
}

/* My Pets Section */
.my-pets {
  margin-bottom: 32px;
  position: relative;
  top: 40px;
  left: -5px;
}

.pets-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pets-list::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.pet-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pet-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ff6600;
  object-fit: cover;
}

.pet-avatar span {
  font-size: 14px;
  color: #383A47;
}

/* Posts Section */
.posts span {
  color: #383A47;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Ensure 4 posts per row */
  gap: 16px;
}

.post-card {
  border-radius: 12px;
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  gap: 0px;
  border-radius: 12px;
  border: 1px solid #e3e0e0; 
  

}

/* Responsive Design */
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .pet-avatar span {
    white-space: nowrap;
    /* Prevent wrapping */
    overflow: hidden;
    /* Hide overflow if the text is too long */
    text-overflow: ellipsis;
    /* Add "..." if the text is truncated */
    display: block;
    /* Ensure the name stays in its own line */
    font-size: 0.9em;
    /* Optional: Adjust font size for smaller screens */
  }
}

@media only screen and (max-width: 768px) {
  .user-details h5 {
    white-space: nowrap;

  }
}


/* For EditProfile */

.profile-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 4rem;
  background-color: white;
  min-height: 100vh;
  position: relative;
  left: -30px;
}


.profile-content {
  flex: 1;
  max-width: 600px;
}

.profile-header {
  background: #EAECF0;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  width: 746px;
  height: 242px;
}

.avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;

}

.avatar-image {
  width: 191px;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  left: -290px;
  top: 35px;
}

.instagram-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ff7043;
  border-radius: 50%;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.two-row-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}


.input-group1 {
  margin-bottom: 1rem;
}

.input-group1 label {
  display: block;
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.input-group1 input {
  width: 343px;
  height: 46px;
  padding: 0 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
}


.address-type {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #000000
}

.address-text {
  color: #666;
  font-size: 0.9rem;
  display: ruby-text;
}

.edit-button {
  color: #ff7043;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  left: 113px;
}

.new-edit-button {
  text-decoration: underline;
  color: #ff7043;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  left: 580px;
  top: -55px;
}



.add-address-button1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff7043;
  background: none;
  border: solid #ff7043;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  justify-content: center;
  font-weight: 500;
  position: relative;
  top: -74px;
  left: 1245px;
  width: fit-content;
}

.plus-icon {
  font-size: 1.2rem;
  font-weight: bold;
}


.save-button {
  background-color: #ff7043;
  color: white;
  border: none;
  width: 300px;
  height: 64px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
}

.illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-image {
  max-width: 100%;
  height: auto;
  position: relative;
  top: -150px;
  left: 95px;
}


@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    padding: 1rem;
    align-items: center;
  }

  .illustration {
    display: none;
  }

  .profile-content,
  .two-row-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-section,
  .address-section {

    max-width: 343px;
  }

  .col-sm-5 img {
    display: none;
  }

  h6 {
    margin-left: 0;
    align-self: center;
  }
}

.orderbox {
  border-radius: 10px !important;
  background: #ffffff;
  padding: 20px !important;
}

.fontsize {
  font-size: 14px;
  margin-bottom: 0px;
}

.tabButton {
  border: 2px solid #BCB8BB;
  max-width: fit-content;
  padding: 12px 30px 12px 30px;
  border-radius: 10px;
}

.label-custom {
  position: absolute;
  top: 0px;
  left: 10px;
  background: #fff;
  padding: 0 5px;
  color: #363636;
}

label {
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
  background: white;
  color: grey;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

input:focus+label,
input:not(:placeholder-shown)+label {
  top: -8px;
  font-size: 12px;
  font-weight: bold;
  color: #FF6C31;
}

.saveaddres {
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  width: 1250px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.saveaddres1 {
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  width: 1250px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  left: 142px;
}


/* For OTP */

.otp-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.otp-form {
  position: relative;
  left: -95px;
}

.otp-title {
  position: relative;
  left: 37px;
}

h7 {
  font-size: 24px;
  color: #333;
  margin-bottom: 8px;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 32px;
}

.otp-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.otp-input {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  font-size: 18px;
  outline: none;
}

.otp-input:focus {
  border-color: #FF7043;
}

.resend-button {
  margin-left: 10px;
  position: relative;
  width: fit-content;
}

.resend-button:hover {
  text-decoration: underline;
}

.submit-button1 {
  width: 100%;
  padding: 16px;
  background-color: #FF7043;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button1:hover {
  background-color: #F4511E;
}

/* For Subscription   */

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  width: 1280px;
  height: 510px;
  position: relative;
  left: 120px;

}

.pricing-card {
  width: 300px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.regular-plan {
  padding: 26px;
  background-repeat: round;
  text-align: center;
  background-size: auto;
  background-image: url(../images/icon/_Pricing\ tier\ card.png);
}

.silver-plan {
  padding: 26px;
  background-repeat: round;
  text-align: center;
  background-size: auto;
  background-image: url(../images/icon/_Pricing\ tier\ card\ Silver.png);
}

.gold-plan {
  padding: 26px;
  background-repeat: round;
  text-align: center;
  background-size: auto;
  background-image: url(../images/icon/_Pricing\ tier\ card\ gold.png);
}


.card-header {
  text-align: left;
  margin-bottom: 20px;
}


.plan-name {
  font-size: 1.2em;
  margin: 5px 0;
}

.billing-cycle {
  color: #666;
  font-size: 0.9em;
  margin: 0;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #666;
  width: 320px;
}

.checkmark {
  color: #4CAF50;
  margin-right: 10px;
}

.card-footer {
  margin-top: auto;
}

.get-started-btn {
  width: 100%;
  padding: 10px;
  background-color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.get-started-btn:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
}

/* CartSection */

.order-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Inter", serif;
}

.order-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.order-details {
  flex: 1;
  max-width: 600px;
}


.membership-card {
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  /* height: 114px; */
}

.membership-info {
  display: flex;
  gap: 15px;
  padding: 10px;
}

.membership-info1 {
  display: flex;
  gap: 15px;
  background-color: #000000;
  height: 114px;
  border-radius: 8px;
}

.membership-icon {
  /* width: 80px;
  height: 90px;
  background-color: #ffd700; */
  border-radius: 8px;
  /* display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 10px;
  left: 10px; */

}

.paw-icon {
  font-size: 24px;
}

.membership-details h3 {
  font-size: 16px;
  margin: 0 0 5px 0;
  position: relative;
  top: 16px;
  color: #FFFFFF;
}

.start-date {
  color: #666;
  font-size: 14px;
  margin: -35px 0 -4px 0;
  margin: 5px 0 0px 0;

}

.price {
  font-size: 20px;
  font-weight: 500;
}

.current-price {
  color: #ff5722;
  font-size: 18px;
  font-weight: bold;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  padding-left: 5px;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  position: relative;
  top: -89px;
  left: 267px;
}

.close-button1 {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  position: relative;
  top: -82px;
  left: 550px;
}

.coupon-button {
  height: 64px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

.coupon-icon {
  background: #4caf50;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  margin-left: auto;
  font-size: 20px;
  color: #666;
}

.summary-details {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
  color: #666;
}




.place-order-button {
  width: 271px;
  padding: 15px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.apply-coupen-button {
  width: 150px;
  padding: 10px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.place-order-button:hover {
  background: #f4511e;
}

.illustration1 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.illustration1 img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .order-content {
    flex-direction: column;
  }


  @media (max-width: 768px) {
    .floatRight {
      display: none;
    }
  }

  .illustration1 {
    display: none;
  }

  .order-details {
    max-width: 100%;
  }
}


.payment-container {
  margin: 0 auto;
  padding: 16px;
  position: relative;
  left: -10px;
}

.payment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-text {
  font-size: 14px;
  font-weight: 500;
  color: #4a4a4a;
  position: relative;
  top: -12px;

}

@media (max-width: 768px) {
  .payment-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    top: -10px;
  }
}



.razorpay-logo {
  height: 24px;
  width: auto;
  position: relative;
  top: 10px;
  left: -95px;
}

.place-order-button {
  background-color: #FC6736;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.place-order-button:hover {
  background-color: #fc8159;
}

/* OrderSummary */

.new-order-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 20px;
  font-family: system-ui, -apple-system, sans-serif;
}

.new-savings-banner {
  background-color: #b9fca275;
  color: #2e7d32;
  padding: 4px 10px 4px 10px;
  border-radius: 17px;
}

.new-savings-banner1 {
  background-color: #45AA22;
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  top: -96px;
}

.new-savings-banner2 {
  color: white;
  background-color: #5d7a4d;
  padding: 5px;
  text-align: center;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pawd {
  position: relative;
  left: -20px;
}

.profile-placeholder {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  background-color: #ccc;
  border-radius: 50%;
}

.profile-placeholder-image {
  width: 350px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-top: 10px;
  font-weight: bold;
  background-color: #ccc;
  border-radius: 5px;
}

.new-items-section {
  margin-bottom: 30px;
}

.new-item-card {
  display: flex;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
}

.new-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 20px;
}

.new-item-details {
  flex: 1;
}

.new-item-details h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.new-size {
  color: #666;
  margin: 4px 0;
}

.new-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.new-quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  top: 20px;
  left: -100px;
}


.new-quantity-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
}

.new-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-current-price {
  font-weight: bold;
  font-size: 18px;
  position: relative;
  color: #FF6C31;
  left: -932px;
  top: 20px;
}

.new-original-price {
  text-decoration: line-through;
  color: #666;
  position: relative;
  left: -934px;
  top: 21px;
}

.new-savings {
  color: #2e7d32;
  font-size: 14px;
  position: relative;
  /* top: 20px; */
}

.new-delivery-estimate {
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}

.new-delivery-section {
  margin-bottom: -40px;
}

.new-delivery-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  width: 343px;
  height: 50px;
}

.new-delivery-button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  height: 37px;
  width: 102px;
  position: relative;
  top: 5px;
  left: 14px;
}

.new-delivery-button.new-active {
  background: #f5f5f5;
  border-color: #666;
  height: 37px;
  width: 95px;
  position: relative;
  top: 5px;
  left: 14px;
}

.new-delhivery-inf {
  position: relative;
  top: 17px;
  left: -98px;
}

.new-gold-exclusive {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 4px;
  width: 848px;
  height: 100px;
  position: relative;
  left: 407px;
  top: -93px;
  background-color: #D8D8D899;
}

.new-gold-badge {
  background: #ffd700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
}

.new-summary-section {
  margin-bottom: 30px;
}

.new-summary-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  color: #666;
}

.new-summary-row.new-total {
  font-weight: bold;
  color: black;
  font-size: 18px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

.new-free-tag {
  background: #2e7d32;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}

.new-coupon-button {
  width: 100%;
  padding: 12px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.new-gold-membership {
  background: #fff9c4;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.new-membership-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.new-membership-badge {
  background: #ffd700;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
}

.new-membership-details {
  flex: 1;
}

.new-membership-details h3 {
  margin: 0;
}

.add-button {

  color: #FF6C31;
  border: 2px solid #FF6C31;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  height: 36px;
  width: 57px;
  position: relative;
  left: 400px;
  top: -20px;
}

.add-button:hover {
  border-color: #FF0000;
  background-color: #333333;
}



.new-add-button {
  background: #ff5722;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.new-pawpoints-section {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 114px;
  width: 577px;
  position: relative;
  left: 672px;
  top: -137px;
}

.new-points-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.new-points-balance {
  color: #666;
}

.new-points {
  color: #ff5722;
  font-weight: bold;
}

.new-points-save {
  color: #2e7d32;
  font-size: 14px;
  margin: 8px 0;
}

.payment-section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: -98px;

}

.new-payment-label {
  color: #666;
  margin-bottom: 10px;
}

.new-payment-method {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.new-place-order-button {
  width: 100%;
  padding: 16px;
  background: #ff5722;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.new-place-order-button:hover {
  background: #f4511e;
}

.pawpoints-container {
  width: 598px;
  height: 114px;
  background-color: #ffffff;
  padding: 12px 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  position: relative;
  left: 649px;
  top: -134px;

}

.pawpoints-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 74px;
  padding: 15px;
}



.pawpoints-label {
  font-size: 16px;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.balance-display {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666666;
  font-size: 14px;
}

.coin-icon {
  font-size: 16px;
}

.balance-amount {
  color: #ff5722;
  font-weight: 600;
}

/* For the green success banner state */
.pawpoints-container.success {
  background-color: #4caf50;
  color: white;
}


/* AllPets */

.pet-profilea {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.profile-containera {
  border: 1px solid #BEBEBE;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;

}

.profile-layouta {
  display: flex;
  gap: 24px;
}

.left-columna {
  flex: 0 0 40%;
}

.headera {
  margin-bottom: 16px;
}

.pet-namea {
  font-size: 32px;
  font-weight: bold;
  color: #FF5722;
  margin: 0;
}

.pet-breeda {
  color: #666;
  margin: 0;
}

.image-carousela {
  position: relative;
}

.pet-imagea {
  width: 300px;
  height: 297px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.carousel-dotsa {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  left: -75px;
}

.dota {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 4px;
  border: none;
  cursor: pointer;
}

.dota.activea {
  background-color: #FF5722;
}

.content-sectiona {
  flex: 1;
  position: relative;
  left: -45px;
}

.descriptiona {
  position: relative;
  top: 31px;
}

.edit-buttona {
  position: absolute;
  top: 0;
  display: flex;
  right: -20px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
}

.details-grida {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  top: 55px;
}

.detail-itema {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;

}

.detail-labela {
  font-weight: bold;
  /* Make the label stand out */
  color: #7A060B;
  /* Label color */
  flex: 1;
  /* Take up equal space for alignment */
}

.detail-valuea {
  color: #666;
  /* Value color */
  flex: 1;
  /* Align with label's width */
  text-align: left;
  /* Align text to the left */
  padding-left: 16px;
  /* Add consistent gap between label and value */
}

.info-cardsa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-carda {
  display: flex;
  align-items: center;
  /* Align items horizontally */
  gap: 16px;
  /* Add space between icon and text */
  border-radius: 8px;
  padding: 16px;
}

.info-icona {
  font-size: 24px;
}

.info-valuea {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  /* Ensure proper spacing */
  white-space: nowrap;
  /* Prevent line break */
}

.info-labela {
  font-size: 14px;
  font-weight: bold;
  color: #7A060B;
  flex: 1;
  margin: 0;
  line-height: 1.6;
  /* Ensure proper spacing */
  white-space: nowrap;
  /* Prevent line break */

}



.descriptiona h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.descriptiona p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .profile-layouta {
    flex-direction: column;
  }

  .left-columna {
    flex: none;
    margin-bottom: 24px;
  }

  .details-grida {
    grid-template-columns: 1fr;
  }

  .info-cardsa {
    grid-template-columns: 1fr;
  }

  .profile-containera {
    padding: 16px;

  }
}

.cmtbtn {
  background: transparent;
  border: 1px solid #FFCEA6;
  color: #ff7300;
  border-radius: 6px;
  display: flex;
}

.marginLeft {
  margin-left: 10px;
}

.cmtbtnBg {
  background: #f8f5f2;
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}

.memmber-box {
  background: #EAECF0;
  box-shadow: 2px 2px 8px 2px #EAECF0;
  padding: 20px;
  border-radius: 10px;
}

.post-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.image-upload {
  height: 100px;
  border: 1px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 8px;
  background: #9d9d9d21;
}

.image-upload i {
  font-size: 30px;
  color: #ccc;
}

.form-control {
  font-size: large !important;
}

.caption-area {
  margin-top: 20px;
}

.share-button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/* General responsiveness for all classes */
@media (max-width: 768px) {

  /* .cmtbtn: Adjust button size and alignment */
  .cmtbtn {

    text-align: center;
    padding: 10px;
    /* Add padding for better touch experience */
  }

  .marginLeft {
    margin-left: 0;
  }

  .cmtbtnBg {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
  }
}

@media (max-width: 576px) {


  /* .cmtbtn */
  .cmtbtn {
    font-size: 14px;
    padding: 8px;
  }

  /* .memmber-box */
  .memmber-box {
    padding: 10px;
    box-shadow: none;
  }

  .image-container img {
    width: 100% !important;
  }

}

/* ProgressBar */
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}

#progressbar li {

  list-style-type: none;
  color: #FF6C31 !important;
  text-transform: uppercase;
  font-size: 14px;
  width: 33.33%;
  float: left;
  position: relative;
  font-weight: 500;
}

#progressbar li span {

  margin-left: 30%;
}

@media (max-width: 320px) {
  #progressbar li span {
    margin-left: 16%;
  }
}

#progressbar li:before {
  content: counter(step);
  /* counter-increment: step; */
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #BCB8BB !important;
  background: #BCB8BB;
  border-radius: 20px;
  margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #E8E5E8;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
  /*put it behind the numbers*/
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #FF6C31;
  color: #FF6C31 !important;
}

.file-upload {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  /* width: 300px; */
  /* font-family: Arial, sans-serif; */
}

.file-upload input {
  opacity: 0;
  /* Hide the default file input */
}

.file-upload p {
  flex-grow: 1;
  color: #666;
  cursor: pointer;
}

.file-upload .choose-button {
  color: #ff6600;
  font-weight: bold;
  cursor: pointer;
}

.upload-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
}

.upload-status {
  color: #888;
  font-size: 14px;
  margin-right: 10px;
}

.progress-bar {
  flex-grow: 1;
  height: 6px;
  background-color: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress {
  height: 100%;
  background-color: #ff7a4f;
  width: 40%;
  /* Adjust progress percentage */
  transition: width 0.5s ease;
}

.choose-btn {
  color: #ff5722;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
}

.upload-success-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.upload-success {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.success-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.choose-btn {
  color: #ff5722;
  font-weight: bold;
  cursor: pointer;
}

.paddingBtn {
  padding-top: 12px;
  padding-bottom: 12px;

}

.paddingBtn1 {
  padding-top: 12px;
  padding-bottom: 12px;
  color: #FF8C59
}

.headersubtitle {
  color: #797779;
}

.gaintorange {
  color: #FF8C59;
  font-size: 30px
}

.call-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #FF6C31;
  pointer-events: none;
  font-weight: 300;
  padding-right: 28px !important;
}

.user-details-icon {
  background: #FFEAD2;
  padding: 6px;
  border-radius: 5px;
}

.user-details-text {
  padding-top: 4px;
  padding-left: 10px;
  color: #797779;
  font-size: 20px !important;
}

.mr--10 {
  margin-right: 10px;
}

.marginMenu {
  /* margin-left: -38%; */
  background-color: #FF6C31;
  ;
}

.user-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
}

.user-avatar {
  position: relative;
  margin-right: 15px;
}

.user-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ffc107;
  object-fit: cover;
}
@media (max-width: 320px) {
  .user-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ffc107;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }
}

.badge-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  /* background-color: #ffc107;
  border-radius: 50%;
  padding: 5px; */
}

.user-details h5 {
  margin: 0;
  font-weight: bold;
}

.user-details small {
  color: #6c757d;
}

/* .gold-badge {
  background-color: #000;
  color: #ffc107;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.gold-badge .badge-icon {
  margin-right: 5px;
} */

.activeBtn {
  background-color: #FFEAD2;
  border-color: #FF6C31;
  color: #FF6C31;
}

.btnWidth {
  width: 80%;
}

@media (max-width: 576px) {
  .btn {
    /* font-size: 16px; */
    padding: 0px;
  }

  .btnCart {
    width: auto !important;
  }

  .slide-image {
    width: 100%;
    height: 150px;
  }

  .banner-company-area-main__wrapper .button-area-wrapper {
    display: flow;
  }
}

.btnCart {
  float: right;
  width: 35%;
  color: #FF6C31;
}

.align {
  text-align: center;
}

.black {
  color: #000 !important;
}

.black0 {
  color: #000 !important;
}

.black1 {
  color: #000 !important;
}

/* styles.css */
.add-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #6c757d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #6c757d;
  text-align: center;
}

.add-option span {
  font-size: 24px;
  font-weight: bold;
  color: #FF6C31;
}


.bookingStatus {
  padding: 5px 20px 5px 20px;
  background: #38BF08;
  border-radius: 40px;
}

.dates-scroll-container {
  display: flex;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.dates-scroll-container::-webkit-scrollbar {
  display: none;
}

.dates-wrapper {
  display: flex;
  gap: 8px;
  padding: 0 4px;
  min-width: min-content;
}

.date-pill {
  min-width: 56px;
  height: 72px;
  padding: 8px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.date-pill:hover {
  border-color: #FF6B35;
  background: #FFF5F2;
}

.date-pill.selected {
  background: #FF6C31;
  border-color: #FF6B35;
  color: white;
}

.slots-wrapper {
  gap: 5px;
}

.slot-pill {
  background-color: #ffffff;
  border: 1px solid #ced4da;
  padding: 4px 10px;
  width: 80px;
  height: 38px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s;
}

.slot-pill:hover {
  border-color: #FF6B35;
  background: #FFF5F2;
}

.slot-pill.selected {
  background-color: #FF6C31;
  color: white;
  border: 1px solid #E5E7EB;
}

.date-weekday {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.date-number {
  font-size: 16px;
  font-weight: 600;
}

.booking-appointment-date {
  font-size: 14px;
  color: #363636 !important;
}

.bookingName {
  font-size: 20px;
}

.bookingFontSize {
  font-size: 16px;

}

.disease {
  background-color: #FF8C59;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
}

.ActivetabBckground {
  color: #fff !important;
  background-color: #FF6C31 !important;
}

.tabBackground {
  background-color: #FFEAD2;
}

.toggle-container {
  display: flex;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  float: right;

}

.toggle-button {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background-color: white;
  color: #555;
  font-size: 16px;
  cursor: pointer;
}

.toggle-button.active {
  background-color: #ff7300;
  color: white;
}

.toggle-button:not(.active):hover {
  background-color: #f2f2f2;
}

.consultation {
  background: #fffaf3;
  padding: 15px;

  border: 2px solid #FFCEA6;
}

.OrderPlaced {
  padding: 3px 20px 5px 20px;
  background: #1DA01AB2;
  border-radius: 8px;
  color: #fff;
  height: 33px;
}

.width30 {
  width: 30%;
}

.listOrder li {
  margin-top: 3px;
  font-weight: 500;
  margin-bottom: 3px;
}

.detailsTitle {
  font-size: 18px;
}

.gender {
  color: #797779;
  font-size: 13px !important;
}

.communityIcon {
  color: #FF8C59;
  font-size: 20px;
  padding-right: 10px;
}

.blackBackground {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 6px 0px 6px 1px;
  margin-top: 15px;
}

.paddingZero {
  padding: 0;
}

sub {
  color: #000;
}

.padding15px {
  padding: 15px;
}

.pincode-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pincode-container input {
  width: 230px;
  padding-left: 40px;
  background: #fff url(../images/icon/map.svg) no-repeat 10px center;
  background-size: 20px;
}

.pincode-container input::placeholder {
  color: #aaa;
}

.incrment {
  border: 1px solid #FF6C31;
  display: flex;
  padding: 2px 10px 2px 10px;
  border-radius: 5px;
}

.ordersummary {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0px 0px 10px 0px;
}

.sucessBorder {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}


@media (max-width: 576px) {
  .modal-content {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    border-radius: 8px;
  }
}

/* Responsive addnewaddress */
/* @media (max-width: 768px) {
  .clinic-image {
    display: none;
  }
} */

.clinic-list-image {
  width: 343px;
  aspect-ratio: 2/1;
}


.input-container {
  position: relative;
  width: 100%;
}

.input-field {
  width: 100%;
  padding: 10px 40px 10px 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.iconss {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #888;
}

.remove {
  color: #FF6C31;
  float: right;
}

.reviewdate {
  float: right;
  font-size: 13px;
  color: #797779;
}

.cancleBtn {
  width: 50%;
  margin: auto;
}

.subscribe-area {
  width: 100%;
}

/* Responsive styling for mobile */
@media (max-width: 768px) {


  .new-savings-banner {
    order: 1;
    margin-top: 10px;
    text-align: center;
    padding: 6px 12px;
    font-size: 14px;
    box-sizing: border-box;
  }

  @media (max-width: 768px) {

    /* .black {
        order: 2;
        margin-top: 15px;
        text-align: center;
        white-space: nowrap;
        position: relative;
        top: 50px;
        left: -307px;
    } */
    .black1 {
      order: 2;
      margin-top: 15px;
      text-align: center;
      white-space: nowrap;
      position: relative;
      top: -15px;
    }
  }
}





@media (max-width: 768px) {
  .pincode-container input {

    padding-left: 45px;
    background-size: 16px;
    background-position: 10px center;
  }
}

@media (max-width: 576px) {
  /* .clinic-image {
    width: 40px;
    height: auto;
  } */
  /*
  .d-flex.flex-column.align-items-center {
    text-align: center;
    font-size: 14px;
  } */
}

.notification-icon {
  /* margin-left: 10px; */
  cursor: pointer;
}

.notification-link svg {
  color: #FF6C31;
  transition: color 0.3s ease;
  position: relative;
  left: 15px;
}

.notification-link:hover svg {
  color: #FF4500;
}

.icon-orange {
  color: #FF6C31;
}

.settings-icon {
  fill: #FF6C31;
  width: 24px;
  height: 24px;
}


.dropdown-area {
  /* position: absolute; */

  right: 100px;
  top: 30px;
}

@media (max-width: 1080px) {
  .dropdown-area {
    right: 33px;
    top: 35px;
  }
}

@media (max-width: 480px) {
  .dropdown-area {
    right: 25px;
    top: 20px;
  }
}

.dropdown-menu {
  display: block;
  top: 65%;
  right: 12px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px 10px;
  width: 200px;
}

.dropdown-item {
  border-top: 1px solid #e6e6e6;
}

.dropdown-item:hover {
  background-color: #f4f4f4;
}

.tick-mark {
  position: absolute;
  top: 17%;
  left: 84%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #FF6C31;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.consultation-card {
  border-radius: 15px;
  padding: 20px;
  background-position: right;
  background-size: 100%;
  text-align: left;
  color: #333;
  background-image: url(../images/in-clinic.svg);
  background-size: cover;
}

.inhouse {
  background-image: url(../images/in-house.svg);
}


.consultation-card img {
  max-width: 100%;
  border-radius: 10px;
}

.consultation-card h2 {
  font-size: 40px;
  font-weight: 500;
}

.consultation-card p {
  font-size: 20px;
  margin-bottom: 15px;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #363636;
  color: #fff;
  font-size: 20px;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.modal-actions button {
  margin-left: 10px;
}

/* .main {
    width: 50%;
    margin: 50px auto;
} */

.has-search {
  padding-left: 2.375rem;
}

.has-search-right {
  position: relative;
  width: 50%;
}

.form-control-feedback {
  /* position: absolute; */
  z-index: 2;
  float: right;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 59px;
  pointer-events: none;
  color: #aaa;
  padding-top: 18px;
}

.fa-cart-shopping:before,
.fa-shopping-cart:before {
  color: #FF6C31;
}

.fa-phone:before {
  color: #FF6C31;

}

.marginlefticon {
  margin-left: 20px;
}

.delete {
  padding: 5px 20px 5px 20px;
  border: 1px solid red;
  font-size: 15px;
}

.dispayFlex {
  display: flex;
  margin-left: 10px;
  margin-bottom: 10px;
  gap: 10px;
}

.vet-image {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #ff7f50;
}

.size-btn {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #ccc;
  background-color: #f8f9fa;
  cursor: pointer;
  border-radius: 5px;
}

.size-btn:hover {
  background-color: #e2e6ea;
}

.size-btn.active {
  background-color: #007bff;
  color: white;
  border: 1px solid #0056b3;
}

.pstText {
  margin: 0 0 0px;
  margin-left: 15px;
}

.clinic-image1 {
  width: 40%;
  border-radius: 10px;
}

.productimg {
  width: 10% !important;
  border-radius: 10px;
  border: 1px solid #FF6C31;
}

.cart-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-popup {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 500px;
  animation: slideIn 0.3s ease-out;
}

.commentBox {
  border: 1px solid rgb(255, 108, 49);
  border-radius: 15px;
  height: 140px;
}

.cart-popup h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.cart-popup p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

.close-btn {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 14px;
}

.close-btn:hover {
  background: #e60000;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* When the popup is visible */
.cart-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}


h3 {
  margin-bottom: 10px;
  color: #333;
}

p {
  font-size: 16px;
  color: #555;
}

.close-btn {
  background: #ff5252;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #d32f2f;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn-cross {
  border-radius: 50%;
  width: 25px;
  margin-right: -4%;
  margin-top: -8%;
  height: 25px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 108, 49);
  color: white;
}

.iconSize {
  font-weight: 900;
  font-size: 19px;
  cursor: pointer;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #ccc;
  color: #555;
  border-radius: 50%;
}

.username {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 600;
}

.promo-container {
  width: 400px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}

.headerpopup {
  background: #eefbd2;
  padding: 15px;
}

.headerpopup h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0;
}

.headerpopup img {
  height: 24px;
  margin-right: 8px;
}

.discount-section {
  background: #e8f8c8;
  padding: 20px;
}

.discount-section h2 {
  margin: 0;
  font-size: 18px;
}

.discount-section .code {
  background: #3d5a2b;
  color: white;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.bank-offer {
  padding: 15px;
  border-top: 1px solid #ddd;
}

.bank-offer img {
  height: 30px;
  vertical-align: middle;
}

.download-button {
  background: #ff6600;
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

.popupcross {
  float: right;
  margin-top: -13px;
}

.popup-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.popup-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.store-icon {
  width: 150px;
}

.close-btn {
  background: #ff4757;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.close-btn:hover {
  background: #e84141;
}

.coupanPopupCross {
  margin-left: 100%;
  margin-top: -22px;
}

/* Modal container styling */
.linkedin-modal .modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}



/* Modal Title */
.linkedin-modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

/* Image Upload Section */
.linkedin-upload-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  cursor: pointer;
  width: 15%;

}

.linkedin-upload-placeholder {
  width: 100%;
  max-width: 60px;
  border-radius: 10px;
  transition: opacity 0.2s ease-in-out;
}

.linkedin-upload-section:hover .linkedin-upload-placeholder {
  opacity: 0.8;
  /* width: 30%; */
}

/* Image Previews */
.linkedin-image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.linkedin-image-preview {
  position: relative;
  width: 100px;
  height: 100px;
}

.linkedin-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.linkedin-remove-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e60023;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* Caption Input */
.linkedin-caption-container {
  margin-bottom: 15px;
}

.linkedin-caption-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

/* Submit Button */
.linkedin-submit-btn {
  background-color: #0073b1;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.linkedin-submit-btn:hover {
  background-color: #005582;
}


.iconWidth {
  width: 30px;
  height: 30px;
}

.category-link {
  cursor: pointer;
  /* color: blue; */
  text-decoration: none;
}

.category-link:hover {
  text-decoration: underline;
}

.OrderStatus.refunded {
  background-color: #ffcccc;
  /* Light Red */
  color: #d32f2f;
  /* Dark Red */
}

.OrderStatus.delivered {
  background-color: #ccffcc;
  /* Light Green */
  color: #388e3c;
  /* Dark Green */
}

.OrderStatus.placed {
  background-color: #cce5ff;
  /* Light Blue */
  color: #1565c0;
  /* Dark Blue */
}

.OrderStatus.cancled {
  background-color: #f2f2f2;
  /* Light Gray */
  color: #757575;
  /* Dark Gray */
}

.OrderStatus {
  padding: 4px 10px 10px 10px;
  border-radius: 5px;
  font-weight: bold;
  height: 38px;
  text-transform: capitalize;
}

.crossBtn {
  position: absolute;
  top: 3px;
  right: 4px;
  background: #e60023;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  cursor: pointer;
}

.loadBtn {
  background-color: #ff6c31;
  border-radius: 5px;
  width: 98px;
}

@media only screen and (max-width: 768px) {
  .formSm input {
    height: 36px;
  }

  .iconSize {
    font-size: 16px;
  }

  .loginSm {
    padding: 5px;
    font-size: 12px;
    width: 88px;
  }

  .dropdown-menu {
    top: 35%;
  }
}

@media (max-width: 320px) {
  .popup-content {
    width: 100%;
  }
}

@media (min-width:768px) and (max-width: 991px) {
  .avatarmd {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .memmber-box {
    padding: 12px;
  }

  .quoted-text::before {
    top: -10px
  }

  .quoted-text::after {
    bottom: -17px;
  }

  .consultation-card {
    background-size: cover;
    background-repeat: no-repeat;
  }

  .consultation-card p {
    font-size: 14px;
  }

  .containermd {
    white-space: nowrap;
  }

  .silver-plan {
    padding-left: 10px;
  }

  .gold-plan {
    padding-left: 10px;
  }

  .priceoffer {
    white-space: nowrap;
  }

  .inputmd {
    width: 100% !important;
  }

  .imgformd {
    text-align: center;
  }

  .contformd {
    text-align: center;
  }

  /* .banner-company-area-main__wrapper .button-area-wrapper {
      text: center;
  } */
  .buttonmd {
    text-align: center;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .pets-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    white-space: nowrap;
    /* Prevents wrapping */
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .pet-avatar {
    flex: 0 0 auto;
    /* Prevents shrinking */
    width: 60px;
    text-align: center;
  }

  .pet-avatar img {
    width: 60px !important;
    /* Ensure image stays fixed */
    height: 60px !important;
    border-radius: 50%;
    border: 2px solid #ff6600;
    object-fit: cover;
    flex-shrink: 0;
    /* Stops shrinking */
  }

  .pet-avatar span {
    display: block;
    max-width: 60px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
}


@media (min-width: 320px) and (max-width: 768px) {
  .vet-image {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #ff7f50;
  }

  .d-flex.overflow-auto {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .d-flex.overflow-auto>div {
    flex: 0 0 auto;
  }

  .profile-placeholder span {
    display: block;
    max-width: 60px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  .add-option span {
    font-size: 24px;
    font-weight: bold;
    color: #FF6C31;
    width: 80px !important;

  }

  .sizesmbtn {
    padding: 10px 0px;
    white-space: nowrap;
  }
}


.pricedetails {
  white-space: nowrap;
}

.sizbtn {
  white-space: nowrap;
  padding: 9px -4px;
  width: 106px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  font-size: 12px;
  color: #000 !important;
}

.upgradnew {
  padding: 10px 10px !important;
}


@media only screen and (max-width: 375px) {
  .font10 {
    font-size: 14px !important;
  }

  .fontsm {
    font-size: 10px !important;
  }
}

@media only screen and (max-width: 1024px) {
  .nobreak {
    white-space: nowrap;
  }
}

.starmd {
  position: relative;
}

.leftmd {
  margin-left: 78.5%;
}


.site-header {
  background-color: #ffecd2;
  padding: 2rem;
  text-align: center;
}

.site-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.site-header p {
  /* font-size: 1.1rem; */
  color: #555;
  margin-bottom: 0px;
}

.content-section {
  padding: 2rem 10%;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.info-card,
.training-types,
.benefits-list {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.training-item-title {
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0px;
}

.cta-box {
  background-color: #ffe0b5;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

.cta-box a {
  background-color: #FF6C31;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
}

.quick-links {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.95rem;
}

.quick-links a {
  color: #0077b6;
  text-decoration: none;
  margin: 0 0.5rem;
}

.site-footer {
  background-color: #ffecd2;
  text-align: center;
  padding: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .content-section {
    padding: 1rem 5%;
  }

  .site-header h1 {
    font-size: 2rem;
  }
}


.pharmacy-header {
  background-color: #e0f7fa;
  padding: 2rem;
  text-align: center;
}

.pharmacy-header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.pharmacy-header p {
  color: #555;
}

.pharmacy-section {
  padding: 2rem 10%;
}

.section-heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.info-box,
.category-box,
.system-box {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-title {
  color: #00695c;
  font-weight: 600;
  margin-top: 1.5rem;
}

.cta-banner {
  background-color: #fff3e0;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  max-width: 700px;
  margin: 2rem auto;
}

.cta-banner a {
  background-color: #ff7043;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
}

.trusted-brands ul,
.system-list ul,
.medicine-types ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}

.footer-links {
  text-align: center;
  font-size: 0.95rem;
  padding: 1rem;
}

.footer-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #00796b;
}

.site-footer {
  background-color: #e0f7fa;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pharmacy-section {
    padding: 1.5rem 5%;
  }

  .pharmacy-header h1 {
    font-size: 2rem;
  }
}

.header-solid {
  background-color: #FFEBE3 !important; 
  transition: background-color 0.3s ease !important;
}

.header-solid.sticky {
  background-color: #FFEBE3 !important; 
}
@media screen and (min-width: 780px) {
  .nobreak{
    white-space: nowrap !important;
  }
  
}
.newf{
  padding: 10px;
  border-radius: 50px;
  margin-top: 20px;
}
.wbtn{
  width: 400px;
  padding: 13px;
}
@media screen and (max-width: 768px) {
  .wbtn{
    width: 300px;
    margin-left: -24px;
  }
  .newf{
    padding: 10px;
    border-radius: 50px;
    margin-top: 20px;
    width: 100%;
  }
  
}
@media screen and (min-width: 576px) {
  
  .newf{
    margin-left:-42px;
  }
  
}



@media screen and (max-width: 768px) {
  .buttonmd{
    display: flex;
  }
}
@media only screen and (min-width: 320px) and (max-width: 360px) {
 
.smallscreen{
  
  height: 199px !important;
   width: 305px !important;
border-radius: 1px;
}
}
