@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --color-primary: #4AAB3D;
  --color-secondary: #1F1F25;
  --color-body: #6E777D;
  --color-heading-1: #1f1f25;
  --color-white:#fff;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "Exo", sans-serif;
  --font-secondary: "Albert Sans", sans-serif;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.solar-energy-team {
  background: #fff;
  border-radius: 10px;
}
.solar-energy-team .thumbnail {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.solar-energy-team .thumbnail img {
  width: 100%;
}
.solar-energy-team .thumbnail .share-team-h1 {
  position: relative;
  left: 0;
  bottom: 4px;
  z-index: 1;
}
.solar-energy-team .thumbnail .share-team-h1:hover .share-nav {
  top: -245px;
  opacity: 1;
}
.solar-energy-team .thumbnail .share-team-h1 .share-nav {
  padding: 0;
  list-style: none;
  margin: 0;
  position: absolute;
  top: -185px;
  left: 25px;
  z-index: -1;
  transition: 0.6s;
  display: block;
  align-items: center;
  flex-direction: column;
  opacity: 0;
}
.solar-energy-team .thumbnail .share-team-h1 .share-nav li {
  margin: 10px 0;
}
.solar-energy-team .thumbnail .share-team-h1 .share-nav li a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: var(--color-primary);
  display: block;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.solar-energy-team .thumbnail .share-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  left: 25px;
  bottom: 4px;
}
.solar-energy-team .thumbnail .share-icon .hide-share {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
}
.solar-energy-team .thumbnail .share-icon .hide-share a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solar-energy-team .thumbnail .share-icon i {
  font-size: 22px;
  color: #fff;
}
.solar-energy-team .thumbnail .share-icon:hover {
  opacity: 0.8;
}
.solar-energy-team .inner-content {
  padding: 30px;
}
.solar-energy-team .inner-content a .title {
  margin-bottom: 7px;
  transition: 0.3s;
}
.solar-energy-team .inner-content a .title:hover {
  color: var(--color-primary);
}
.solar-energy-team .inner-content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #74787C;
}

* {
  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: "Albert Sans", sans-serif;
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.05;
}

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 28px;
  }
  h4,
  .h4 {
    font-size: 24px;
  }
  h5,
  .h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 34px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5 {
    font-size: 20px;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-bold);
}

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

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

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
p.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}
p.has-large-font-size {
  line-height: 1.5;
  font-size: 36px;
}
p.has-medium-font-size {
  font-size: 24px;
  line-height: 36px;
}
p.has-small-font-size {
  font-size: 13px;
}
p.has-very-light-gray-color {
  color: var(--color-white);
}
p.has-background {
  padding: 20px 30px;
}
p.b1 {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
}
p.b2 {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
}
p.b3 {
  font-size: var(--font-size-b3);
  line-height: var(--line-height-b3);
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-area-start-one .accordion .accordion-item {
  background: #F6F6F6;
  padding: 35px 40px;
  margin-bottom: 20px;
  box-shadow: none;
  border: none;
}
@media only screen and (max-width: 767px) {
  .faq-area-start-one .accordion .accordion-item {
    padding: 15px;
  }
}
.faq-area-start-one .accordion .accordion-item h2 button {
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  margin-bottom: 12px;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .faq-area-start-one .accordion .accordion-item h2 button {
    font-size: 16px;
  }
}
.faq-area-start-one .accordion .accordion-item h2 .accordion-button {
  position: relative;
}
.faq-area-start-one .accordion .accordion-item h2 .accordion-button::after {
  display: none;
}
.faq-area-start-one .accordion .accordion-item h2 .accordion-button[aria-expanded=true] {
  color: #1F1F25;
}
.faq-area-start-one .accordion .accordion-item h2 .accordion-button[aria-expanded=true] i::before {
  content: "\f077";
}
.faq-area-start-one .accordion .accordion-item h2 .accordion-button i {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .faq-area-start-one .accordion .accordion-item h2 .accordion-button i {
    height: 35px;
    width: 35px;
    font-size: 14px;
    top: 7px;
  }
}
.faq-area-start-one .accordion .accordion-item .accordion-body {
  margin-top: 20px;
}
.faq-area-start-one .accordion .accordion-item .accordion-body .inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .faq-area-start-one .accordion .accordion-item .accordion-body .inner {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1199px) {
  .faq-area-start-one .accordion .accordion-item .accordion-body .inner {
    flex-direction: column;
  }
}
.faq-area-start-one .accordion .accordion-item .accordion-body .inner .thumb-area {
  flex-basis: 70%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .faq-area-start-one .accordion .accordion-item .accordion-body .inner .thumb-area {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .faq-area-start-one .accordion .accordion-item .accordion-body .inner .thumb-area {
    width: 100%;
  }
}
.faq-area-start-one .accordion .accordion-item .accordion-body .inner .thumb-area img {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .faq-area-start-one .accordion .accordion-item .accordion-body .inner .thumb-area img {
    width: 100%;
  }
}
.faq-area-start-one .accordion .accordion-item .accordion-body .inner .content .title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.faq-area-start-one .accordion .accordion-item .accordion-body .inner .content p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
}

.rts-single-wized {
  text-align: center;
}
.rts-single-wized .thumbnail img {
  width: 100%;
}
.rts-single-wized .title {
  margin-bottom: 10px;
  margin-top: 28px;
}
.rts-single-wized .opc {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #74787C;
  margin-bottom: 10px;
}
.rts-single-wized a.rts-btn {
  margin: auto;
}

.main-faq-inner-ac {
  display: flex;
}
.main-faq-inner-ac .left-thumbmail {
  width: 100%;
  min-width: -moz-max-content;
  min-width: max-content;
}
.main-faq-inner-ac .left-thumbmail img {
  width: 100%;
  min-width: 100%;
}
.main-faq-inner-ac .accordion-main-ac-wrapper {
  position: relative;
  z-index: 10;
  width: 912px;
  margin-left: -470px;
  background: #F7F7F7;
  border-radius: 10px;
  padding: 100px 80px;
  margin-top: 256px;
}
.main-faq-inner-ac .accordion-main-ac-wrapper .accordion .accordion-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  border: none;
  box-shadow: none;
  padding: 20px 30px;
}
.main-faq-inner-ac .accordion-main-ac-wrapper .accordion .accordion-item .accordion-header {
  background: transparent;
  border: none;
  box-shadow: none;
}
.main-faq-inner-ac .accordion-main-ac-wrapper .accordion .accordion-item .accordion-header button {
  border: none;
  box-shadow: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1F1F25;
}
.main-faq-inner-ac .accordion-main-ac-wrapper .accordion .accordion-item .accordion-header button::after {
  display: none;
}
.main-faq-inner-ac .accordion-main-ac-wrapper .accordion .accordion-item .accordion-header button[aria-expanded=true] {
  border: none;
  background: transparent;
}

.accordion-solar-faq {
  margin-top: 30px;
}
.accordion-solar-faq .accordion .accordion-item {
  background: #fff;
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
  padding: 10px 25px;
}
@media only screen and (max-width: 1199px) {
  .accordion-solar-faq .accordion .accordion-item {
    padding: 10px 0;
  }
}
.accordion-solar-faq .accordion .accordion-item .accordion-header button {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1F1F25;
  background-color: transparent;
  box-shadow: none;
}

.faq-solari-image-area .thumbnail-small {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.faq-solari-image-area .thumbnail-small .vedio-icone {
  right: 0;
  top: 50%;
  position: absolute;
}
.faq-solari-image-area .thumbnail-small .vedio-icone .video-play-button span {
  border-left: 15px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.faq-solari-image-area .thumbnail-small .vedio-icone .video-play-button::after {
  background: var(--color-primary);
}
.faq-solari-image-area .thumbnail-small .vedio-icone .video-play-button::before {
  background: rgba(74, 171, 61, 0.342);
  border: none;
}
.faq-solari-image-area .thumbnail-small .vedio-icone p.text {
  min-width: -moz-max-content;
  min-width: max-content;
  margin-top: 10px;
  margin-left: 65px;
  color: #000;
  font-weight: 700;
}
@media only screen and (max-width: 575px) {
  .faq-solari-image-area .thumbnail-small .vedio-icone p.text {
    display: none;
  }
}

.brand-area-h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .brand-area-h2 img {
    max-width: 100px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area-h2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .brand-area-h2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.brand-area-h2 img {
  max-width: 130px;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .brand-area-h2 img {
    max-width: 70px !important;
  }
}
.brand-area-h2 img:hover {
  transform: translateY(-5px);
}

.accordion-solar-faq .accordion .accordion-item .accordion-header button::after {
  background-image: none;
  content: "\f067";
  transform: none;
  display: block;
  font-family: fontAwesome;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: rgba(74, 171, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}
.accordion-solar-faq .accordion .accordion-item .accordion-header button[aria-expanded=true]::after {
  content: "\f068";
  background: var(--color-primary);
  color: #fff;
}

.single-footer-one-wrapper.two .single-footer-component.first {
  flex-basis: 39%;
}

.single-service-area-6 {
  position: relative;
}
.single-service-area-6 .thumbnail {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 100%;
}
.single-service-area-6 .thumbnail img.main {
  width: 100%;
}
.single-service-area-6 .inner-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.single-service-area-6 .inner-content .icon {
  margin-bottom: 110px;
}
.single-service-area-6 .inner-content .icon svg {
  width: 80px;
  height: 80px;
}
.single-service-area-6 .inner-content .content span {
  color: #fff;
}
.single-service-area-6 .inner-content .content a {
  margin-top: 10px;
  display: block;
}
.single-service-area-6 .inner-content .content a .title {
  color: #fff;
  margin-bottom: 10px;
  line-height: 38px;
  transition: 0.3s;
}
.single-service-area-6 .inner-content .content a:hover .title {
  color: var(--color-primary);
}
.single-service-area-6 .inner-content .content .read-more {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.single-service-area-6 .inner-content .content .read-more:hover {
  color: var(--color-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-service-area-6 .inner-content .icon {
    margin-bottom: 20px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .single-service-area-6 .inner-content .icon {
    margin-bottom: 20px;
    max-width: 21%;
  }
}
.rts-service-area-one a.rts-btn.btn-primary {
  border-radius: 5px;
  display: block;
  max-width: inherit;
  text-align: center;
}
.rts-service-area-one a.rts-btn.btn-primary::before {
  border-radius: 5px;
}
.rts-service-area-one .nav-link {
  border: 1px solid #EFEFEF;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: transparent !important;
}
.rts-service-area-one .nav-link[aria-selected=true] {
  background-color: #1F1F25 !important;
}
.rts-service-area-one .nav-link[aria-selected=true] .btn-main-wrapper-service-one .icon {
  background: var(--color-primary);
}
.rts-service-area-one .nav-link[aria-selected=true] .btn-main-wrapper-service-one .icon svg path {
  fill: #fff;
}
.rts-service-area-one .nav-link[aria-selected=true] .btn-main-wrapper-service-one .info-main .title {
  color: #fff;
}
.rts-service-area-one .nav-link[aria-selected=true] .btn-main-wrapper-service-one .info-main p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #74787C;
}

.btn-main-wrapper-service-one {
  display: flex;
  align-items: center;
}
.btn-main-wrapper-service-one .icon {
  width: 70px;
  height: 70px;
  background: #F5F5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-main-wrapper-service-one .icon svg path {
  fill: #1F1F25;
}
.btn-main-wrapper-service-one .info-main {
  margin-left: 23px;
}
.btn-main-wrapper-service-one .info-main .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 29px;
  color: #1F1F25;
  margin-bottom: 5px;
}
@media only screen and (max-width: 479px) {
  .btn-main-wrapper-service-one .info-main .title {
    margin-bottom: 0;
  }
}

.service-one-tab-conetnt .disc {
  padding: 27px 35px;
  background: #F6F6F6;
}
@media only screen and (max-width: 479px) {
  .service-one-tab-conetnt .disc {
    padding: 15px;
  }
}

.rts-problem-solution-area {
  background: #F7F7F7;
}

.rts-solution-left-area-left {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.rts-solution-left-area-left .small-image {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: -50%;
}
.rts-solution-left-area-left .small-image img {
  border-radius: 7px;
  max-width: 170px;
}

.solution-content-inner-one p.disc {
  margin-bottom: 30px;
}
.solution-content-inner-one .solution-main-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.solution-content-inner-one .solution-main-wrapper .single-solution {
  flex-basis: 48%;
  background: #FFFFFF;
  box-shadow: 0px 13px 25px 4px rgba(0, 0, 0, 0.03);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  border-radius: 7px;
}
.solution-content-inner-one .solution-main-wrapper .single-solution i {
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  color: var(--color-primary);
  margin-right: 15px;
  transition: 0.3s;
}
.solution-content-inner-one .solution-main-wrapper .single-solution p {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  transition: 0.3s;
  color: #1F1F25;
}
@media only screen and (max-width: 575px) {
  .solution-content-inner-one .solution-main-wrapper .single-solution p {
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.solution-content-inner-one .solution-main-wrapper .single-solution:hover {
  transform: translateY(-5px);
  background: var(--color-primary);
}
.solution-content-inner-one .solution-main-wrapper .single-solution:hover i {
  color: #fff;
}
.solution-content-inner-one .solution-main-wrapper .single-solution:hover p {
  color: #fff;
}
.solution-content-inner-one .cta-btn-solution {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 575px) {
  .solution-content-inner-one .cta-btn-solution {
    flex-direction: column;
    align-items: flex-start;
  }
}
.solution-content-inner-one .cta-btn-solution a.rts-btn.btn-primary i {
  margin-left: 7px;
}
.solution-content-inner-one .cta-btn-solution .call-btn {
  display: flex;
  align-items: center;
}
.solution-content-inner-one .cta-btn-solution .call-btn .icon {
  height: 90px;
  width: 90px;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  margin-left: 30px;
  border: 1px solid #EDD9D9;
}
@media only screen and (max-width: 1199px) {
  .solution-content-inner-one .cta-btn-solution .call-btn .icon {
    border: none;
  }
}
@media only screen and (max-width: 479px) {
  .solution-content-inner-one .cta-btn-solution .call-btn .icon {
    margin-left: 0;
  }
}
.solution-content-inner-one .cta-btn-solution .call-btn .icon i {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transform: rotate(-35deg);
}
.solution-content-inner-one .cta-btn-solution .call-btn .call-info {
  margin-left: 20px;
}
.solution-content-inner-one .cta-btn-solution .call-btn .call-info span {
  display: block;
  color: #74787C;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.solution-content-inner-one .cta-btn-solution .call-btn .call-info a {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #1F1F25;
  margin-top: 10px;
  display: block;
  transition: 0.3s;
}
@media only screen and (max-width: 1199px) {
  .solution-content-inner-one .cta-btn-solution .call-btn .call-info a {
    font-size: 16px;
  }
}
.solution-content-inner-one .cta-btn-solution .call-btn .call-info a:hover {
  color: var(--color-primary);
}

.g-40 {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.bg-service_s {
  background: #F5F5F5;
}

.service-single-s-main {
  background: #1F1F25;
  padding: 45px;
  border-radius: 7px;
}
@media only screen and (max-width: 575px) {
  .service-single-s-main {
    padding: 25px;
  }
}
.service-single-s-main .icon {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.service-single-s-main .icon svg path {
  fill: var(--color-primary);
}
.service-single-s-main a .title {
  color: #fff;
  margin-bottom: 8px;
}
.service-single-s-main p.disc {
  margin-bottom: 17px;
}
.service-single-s-main a.rts-read-more-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.service-single-s-main a.rts-read-more-btn i {
  margin-left: 7px;
  margin-bottom: -2px;
}
.service-single-s-main.yellow-bg {
  background: var(--color-primary);
}
.service-single-s-main.yellow-bg .icon svg path {
  fill: var(--color-primary);
}
.service-single-s-main.yellow-bg p.disc {
  color: #fff;
}

.short-service-style-one {
  background: #F7F7F7;
  border-radius: 7px;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .short-service-style-one {
    padding: 15px;
  }
}
.short-service-style-one .thumbnail img {
  width: 100%;
}

.short-service-style-one .thumbnail {
  margin-bottom: 25px;
  display: block;
  overflow: hidden;
  border-radius: 7px;
}
.short-service-style-one .thumbnail img {
  transition: 0.6s;
}
.short-service-style-one .thumbnail:hover img {
  transform: scale(1.15);
}
.short-service-style-one a .title {
  margin-bottom: 10px;
  transition: 0.3s;
}
.short-service-style-one a .title:hover {
  color: var(--color-primary);
}
.short-service-style-one p.disc {
  margin-bottom: 20px;
}
.short-service-style-one a.fancy-read-more-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #1F1F25;
}
.short-service-style-one a.fancy-read-more-btn i {
  width: 42px;
  height: 32px;
  display: block;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 33px 33px 0;
  color: #fff;
}

.left-service-details-wrapper .content--sd-top .title {
  margin-top: 40px;
  margin-bottom: 25px;
}
.left-service-details-wrapper .content--sd-top p.disc-1 {
  margin-bottom: 30px;
}
.left-service-details-wrapper .content--sd-top p.disc-2 {
  margin-bottom: 60px;
}
.left-service-details-wrapper .sm-thumbnail-sd img {
  width: 100%;
}
.left-service-details-wrapper .sm-sd-content-wrapper .title {
  font-size: 30px;
}
.left-service-details-wrapper .sm-sd-content-wrapper p.disc {
  margin-bottom: 30px;
}
.left-service-details-wrapper .sm-sd-content-wrapper .single-banifits {
  display: flex;
  align-items: center;
  margin: 7px 0;
}
.left-service-details-wrapper .sm-sd-content-wrapper .single-banifits i {
  color: var(--color-primary);
  margin-right: 10px;
}

.service-detials-step-2 .title {
  font-size: 30px;
}
.service-detials-step-2 .single-service-step {
  background: #fff;
  padding: 40px 20px;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 6px 39px rgba(0, 0, 0, 0.0392156863);
}
.service-detials-step-2 .single-service-step p.step {
  position: relative;
  color: #fff;
  z-index: 1;
  margin-bottom: 52px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 29px;
}
.service-detials-step-2 .single-service-step p.step::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: rgba(74, 171, 61, 0.05);
  height: 90px;
  width: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.service-detials-step-2 .single-service-step p.step::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: var(--color-primary);
  height: 60px;
  width: 60px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.service-detials-step-2 .single-service-step .title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}
.service-detials-step-2 .single-service-step p.disc {
  font-size: 16px;
  line-height: 26px;
}

.rts-problem-solution-area {
  position: relative;
}
.rts-problem-solution-area::after {
  position: absolute;
  content: "";
  height: 73px;
  width: 555px;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
}

.get-in-touch-single-side {
  text-align: left;
  margin-top: 24px;
}
.get-in-touch-single-side .rts-single--cta {
  display: flex;
  align-items: flex-start;
  margin: 15px 0;
}
.get-in-touch-single-side .rts-single--cta i {
  margin-top: 5px;
  margin-right: 15px;
  color: var(--color-primary);
  font-size: 18px;
}
.get-in-touch-single-side .rts-single--cta a {
  font-size: 16px;
  color: #74787c;
  transition: 0.3s;
}
.get-in-touch-single-side .rts-single--cta a:hover {
  color: var(--color-primary);
}

.service-one-tab-conetnt .thumbnail img {
  width: 100%;
}

.rts-single-service-area-condition {
  display: flex;
  align-items: center;
  padding: 40px 15px 40px 40px;
  border: 1px solid #F0EEED;
  border-radius: 10px;
  transition: 0.3s;
}
.rts-single-service-area-condition .icon-area {
  display: block;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: #FFF3EF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  transition: 0.3s;
}
.rts-single-service-area-condition .icon-area svg path {
  fill: var(--color-primary);
  transition: 0.3s;
}
.rts-single-service-area-condition .title {
  margin-bottom: 8px;
  text-transform: uppercase;
}
.rts-single-service-area-condition p.disc {
  margin-bottom: 0;
}
.rts-single-service-area-condition:hover {
  box-shadow: 0px 9px 41px rgba(113, 94, 87, 0.12);
}
.rts-single-service-area-condition:hover .icon-area {
  background: var(--color-primary);
}
.rts-single-service-area-condition:hover .icon-area svg path {
  fill: #fff;
}

.bg-service-air-con {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.air-condition-single-service-01 {
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 8px;
  position: relative;
}
.air-condition-single-service-01 .shapre-right-bottom {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.air-condition-single-service-01 .shapre-right-bottom svg path {
  transition: 0.3s;
}
.air-condition-single-service-01 .icon-area {
  background: #F6F6F6;
  height: 110px;
  min-width: 110px;
  max-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: 30px;
  transition: 0.3s;
}
.air-condition-single-service-01 .icon-area svg path {
  fill: var(--color-primary);
  transition: 0.3s;
}
.air-condition-single-service-01 .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #1F1F25;
  margin-bottom: 10px;
}
.air-condition-single-service-01 p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
  margin-bottom: 20px;
}
.air-condition-single-service-01 a.read-more-cn {
  position: relative;
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
}
.air-condition-single-service-01 a.read-more-cn i {
  margin-left: 5px;
  margin-bottom: -1px;
}
.air-condition-single-service-01 a.read-more-cn::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  height: 1px;
  width: 100%;
  background: #1F1F25;
  opacity: 0.15;
}
.air-condition-single-service-01:hover .icon-area {
  background: var(--color-primary);
}
.air-condition-single-service-01:hover .icon-area svg path {
  fill: #fff;
}
.air-condition-single-service-01:hover .shapre-right-bottom svg path {
  fill: var(--color-primary);
}

.single-counter-area-cleaning {
  height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.single-counter-area-cleaning::after {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translate(-50%, -50%);
  content: "";
  height: 115px;
  width: 115px;
  background: #FFFFFF;
  box-shadow: inset 0px 4px 26px rgba(23, 37, 57, 0.16);
  border-radius: 50%;
  z-index: -1;
}
.single-counter-area-cleaning .content {
  text-align: center;
  margin-top: 40px;
}
.single-counter-area-cleaning .content .title {
  margin-bottom: 10px;
}
.single-counter-area-cleaning .content span {
  text-transform: uppercase;
}
.single-counter-area-cleaning .icon {
  height: 88px;
  width: 88px;
  border-radius: 50px;
  background: #1646D2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.rts-single-service-solar-energy {
  padding: 50px 25px;
  background: #fff;
  box-shadow: 0px 10px 34px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  height: 100%;
  text-align: center;
}
.rts-single-service-solar-energy .icon {
  width: 100px;
  height: 100px;
  border: 1px solid #E9E9E9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
  margin-bottom: 30px;
}
.rts-single-service-solar-energy .title {
  margin-bottom: 12px;
  font-size: 20px;
  text-transform: uppercase;
}
.rts-single-service-solar-energy p.disc {
  margin-bottom: 25px;
}

.bg_dark-solar {
  background: #1B1B1B;
}

.our-service-area-start-solar .title-area-center h2.title {
  color: #fff;
}

.single-service-start {
  background: white;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.single-service-start .image-area {
  position: relative;
}
.single-service-start .image-area img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.single-service-start .image-area .icon {
  position: absolute;
  bottom: -40px;
  left: 30px;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EDEDED;
}
.single-service-start .image-area .icon svg path {
  fill: var(--color-primary);
}
.single-service-start .inner-content {
  padding: 30px;
  margin-top: 40px;
}
.single-service-start .inner-content .title {
  margin-bottom: 9px;
}
.single-service-start .inner-content p.disc {
  margin-bottom: 50px;
}
.single-service-start .inner-content a.rts-btn {
  margin-left: auto;
  right: -10px;
  position: absolute;
  bottom: 0;
  border-radius: 10px 0 0 0;
}
.single-service-start .inner-content a.rts-btn i {
  margin-left: 90px;
}
.single-service-start .inner-content a.rts-btn::before {
  border-radius: 10px 0 0 0 !important;
}

.solar-left-inner-area-cta .button-area {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .solar-left-inner-area-cta .button-area {
    flex-direction: column;
    align-items: flex-start;
  }
}
.solar-left-inner-area-cta .button-area .call-btn {
  display: flex;
  align-items: center;
}
.solar-left-inner-area-cta .button-area .call-btn i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.solar-left-inner-area-cta .button-area .call-btn .info {
  margin-left: 15px;
}
.solar-left-inner-area-cta .button-area .call-btn .info span {
  display: block;
}
.solar-left-inner-area-cta .button-area .call-btn .info a {
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #1F1F25;
  transition: 0.3s;
  font-family: var(--font-primary);
}
.solar-left-inner-area-cta .button-area .call-btn .info a:hover {
  color: var(--color-primary);
}

.cta-soalr-inner-main .thumbnail img {
  border-radius: 0 15px 15px 0;
}

.expertiex-solar-inner {
  margin-top: 40px;
}
.expertiex-solar-inner .single-exp {
  display: flex;
  margin-bottom: 30px;
}
@media only screen and (max-width: 575px) {
  .expertiex-solar-inner .single-exp {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.expertiex-solar-inner .single-exp img {
  min-width: -moz-max-content;
  min-width: max-content;
  -o-object-fit: contain;
     object-fit: contain;
}
.expertiex-solar-inner .single-exp .info-wrapper {
  margin-left: 30px;
}
@media only screen and (max-width: 575px) {
  .expertiex-solar-inner .single-exp .info-wrapper {
    margin-left: 0;
  }
}
.expertiex-solar-inner .single-exp .info-wrapper .title {
  margin-bottom: 5px;
}
.expertiex-solar-inner .single-exp .info-wrapper p.disc {
  margin-bottom: 0;
}

.rts-secvice-area-solaric-banner-bottom {
  margin-top: -160px;
}

.single-service-solari {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 10px 34px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 2;
  position: relative;
  height: 100%;
}
.single-service-solari .image-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  transition: 0.6s;
}
.single-service-solari .image-bg img {
  width: 100%;
  height: 100%;
  transition: 0.6s;
  opacity: 0;
}
.single-service-solari .image-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  transition: 0.4s;
}
.single-service-solari::after {
  position: absolute;
  content: "";
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  z-index: -1;
  border-radius: 10px;
}
.single-service-solari:hover .image-bg img {
  opacity: 1;
}
.single-service-solari:hover .image-bg::before {
  background: rgba(8, 8, 8, 0.4784313725);
}
.single-service-solari:hover::after {
  height: 0%;
}
.single-service-solari:hover .icon-area svg path {
  fill: #fff;
}
.single-service-solari:hover .title {
  color: #fff;
}
.single-service-solari:hover p.disc {
  color: #fff;
}
.single-service-solari .icon-area {
  margin-bottom: 26px;
}
.single-service-solari .icon-area svg path {
  transition: 0.3s;
}
.single-service-solari .title {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 20px;
  transition: 0.3s;
  color: #1F1F25;
  max-width: -moz-max-content;
  max-width: max-content;
}
.single-service-solari .title:hover {
  color: var(--color-primary);
}
.single-service-solari p.disc {
  margin-bottom: 0;
  color: #74787C;
  transition: 0.3s;
}

.rts-service-area-height-solari {
  background: #F6F6F6;
}

.single-solari-service-start {
  padding: 30px;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 100%;
  transition: 0.6s;
}
.single-solari-service-start .image-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  transition: 0.6s;
}
.single-solari-service-start .image-bg img {
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.single-solari-service-start .image-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.4784313725);
  z-index: 1;
  transition: 0.4s;
}
.single-solari-service-start:hover .image-bg {
  opacity: 1;
}
.single-solari-service-start:hover .icon-area {
  border: 1px solid transparent;
}
.single-solari-service-start:hover .icon-area svg path {
  fill: var(--color-primary);
}
.single-solari-service-start:hover::after {
  height: 0%;
}
.single-solari-service-start:hover .title {
  color: #fff;
}
.single-solari-service-start:hover p.disc {
  color: #fff;
}
.single-solari-service-start:hover a.read-more-btn {
  color: #fdfdfd;
  display: flex;
  align-items: center;
}
.single-solari-service-start:hover a.read-more-btn i {
  margin-left: 10px;
}
.single-solari-service-start::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transition: 0.6s;
}
.single-solari-service-start .icon-area {
  margin-bottom: 90px;
  height: 80px;
  width: 80px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
}
.single-solari-service-start .icon-area svg path {
  fill: var(--color-primary);
}
@media only screen and (max-width: 479px) {
  .single-solari-service-start .icon-area {
    margin-bottom: 40px;
  }
}
.single-solari-service-start .title {
  color: #1F1F25;
  transition: 0.3s;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #1F1F25;
}
.single-solari-service-start .title:hover {
  color: var(--color-primary);
}
.single-solari-service-start p.disc {
  color: #74787C;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.single-solari-service-start a.read-more-btn {
  color: #1F1F25;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.single-solari-service-start a.read-more-btn i {
  margin-left: 10px;
}
.single-solari-service-start a.read-more-btn:hover {
  color: var(--color-primary);
}

.single-solari-steps-start .thumbnail {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}
.single-solari-steps-start .thumbnail .steps {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 72px;
  display: flex;
  align-items: center;
  background: #fff;
  justify-content: center;
  border-radius: 0 10px 0 0;
}
.single-solari-steps-start .thumbnail .steps span {
  font-size: 34px;
  letter-spacing: 0.05em;
  font-weight: 900;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: var(--color-primary);
  color: #fff;
}
.single-solari-steps-start .thumbnail:hover img {
  transform: scale(1.1);
}
.single-solari-steps-start .thumbnail img {
  border-radius: 10px;
  transition: 0.5s;
}

.stok-bg {
  text-transform: uppercase;
  text-align: center;
  margin: auto;
  display: block;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(217, 217, 217, 0.267);
  font-size: 100px;
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: -30px;
  margin-right: 10%;
  z-index: -1;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .stok-bg {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .stok-bg {
    display: none;
  }
}

.single-feature-soalri-3 {
  padding: 30px;
  text-align: center;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  background: #fff;
  transition: 0.3s;
  height: 100%;
}
.single-feature-soalri-3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgb(74, 171, 61), rgba(74, 171, 61, 0));
  transition: 0.3s;
  opacity: 0;
}
.single-feature-soalri-3 .icon {
  margin-bottom: 30px;
}
.single-feature-soalri-3 .title {
  text-transform: uppercase;
}
.single-feature-soalri-3 p.disc {
  margin-bottom: 25px;
  color: #74787C;
}
.single-feature-soalri-3 a.read-more-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #1F1F25;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.single-feature-soalri-3 a.read-more-btn i {
  margin-left: 10px;
  transition: 0.3s;
  margin-bottom: -2px;
}
.single-feature-soalri-3 a.read-more-btn:hover {
  color: var(--color-primary);
}
.single-feature-soalri-3 a.read-more-btn:hover i {
  color: var(--color-primary);
}
.single-feature-soalri-3:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
}
.single-feature-soalri-3:hover::after {
  opacity: 1;
}

.tab-area-service-solari-3 ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .tab-area-service-solari-3 ul {
    gap: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .tab-area-service-solari-3 ul {
    gap: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tab-area-service-solari-3 ul {
    gap: 20px;
  }
}
.tab-area-service-solari-3 ul li {
  padding: 0;
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  .tab-area-service-solari-3 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.tab-area-service-solari-3 ul li .nav-link {
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  padding: 14px 23px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
  background: #fff;
  transition: 0.3s;
}
.tab-area-service-solari-3 ul li .nav-link .icon {
  margin-right: 15px;
}
.tab-area-service-solari-3 ul li .nav-link svg path {
  transition: 0.3s;
}
.tab-area-service-solari-3 ul li .nav-link p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  transition: 0.3s;
  color: #1F1F25;
  font-family: var(--font-primary);
}
.tab-area-service-solari-3 ul li .nav-link.active {
  background: var(--color-primary);
  border: none;
}
.tab-area-service-solari-3 ul li .nav-link.active svg path {
  fill: #fff;
}
.tab-area-service-solari-3 ul li .nav-link.active p {
  color: #fff;
}
.tab-area-service-solari-3 ul li .nav-link:hover {
  background: var(--color-primary);
  border: none;
}
.tab-area-service-solari-3 ul li .nav-link:hover svg path {
  fill: #fff;
}
.tab-area-service-solari-3 ul li .nav-link:hover p {
  color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  p br {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .header-four.header--sticky.sticky {
    padding: 0 30px;
  }
}

.tab-content-solari-service-m .inner-content-service-right-solari .title {
  margin-bottom: 5px;
}
.tab-content-solari-service-m .inner-content-service-right-solari p.disc {
  margin-bottom: 25px;
  width: 85%;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.tab-content-solari-service-m .service-singlew-main-wrapper-sm .single-service {
  display: flex;
  align-items: center;
  margin: 7px 0;
}
.tab-content-solari-service-m .service-singlew-main-wrapper-sm .single-service img {
  margin-right: 13px;
}
.tab-content-solari-service-m .service-singlew-main-wrapper-sm .single-service p {
  color: #1F1F25;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--font-primary);
  font-size: 15px;
}
.tab-content-solari-service-m a.rts-btn {
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: 48px;
}

.single-service-style-four-h4 {
  border-right: 1px solid #EFEFEF;
  position: relative;
}
.single-service-style-four-h4:hover::after {
  -webkit-text-stroke-color: var(--color-primary);
}
.single-service-style-four-h4.border-r_none {
  border: none;
}
.single-service-style-four-h4 .icon {
  margin-bottom: 60px;
}
.single-service-style-four-h4 .icon svg path {
  fill: var(--color-primary);
}
@media only screen and (max-width: 575px) {
  .single-service-style-four-h4 .icon {
    margin-bottom: 30px;
  }
}
.single-service-style-four-h4 .contenmt-inner .title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
}
.single-service-style-four-h4 .contenmt-inner .btn-read-more-c-primary {
  color: #1F1F25;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.single-service-style-four-h4 .contenmt-inner .btn-read-more-c-primary:hover {
  color: var(--color-primary);
}

.rts-btn {
  padding: 19px 40px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
  font-family: var(--font-secondary);
  border-radius: 100px;
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  min-width: -moz-max-content;
  min-width: max-content;
}
.rts-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  border-radius: 100px;
}
.rts-btn:focus {
  border: none;
  border: none;
  box-shadow: none;
}
.rts-btn:active {
  border: none;
  border: none;
  box-shadow: none;
}
.rts-btn:active:focus {
  box-shadow: none;
}
.rts-btn.btn-primary {
  color: #fff;
  background: #1f1f25;
}
.rts-btn.btn-primary::before {
  background: var(--color-primary);
}
.rts-btn.btn-primary:hover {
  background: #1f1f25;
  color: #fff;
}
.rts-btn.btn-primary:hover::before {
  background: var(--color-primary);
  transform: scaleX(0);
}
.rts-btn.btn-border {
  border: 2px solid #FFFFFF;
  color: white;
  color: #fff;
  background: #df2f03;
  z-index: 1;
  border: 1px solid rgba(31, 31, 37, 0.1);
}
.rts-btn.btn-border::before {
  background: #fff;
  border-radius: 0;
  z-index: -1;
}
.rts-btn.btn-border:hover {
  background: #1f1f25;
  color: #fff !important;
}
.rts-btn.btn-border:hover::before {
  background: var(--color-primary);
  transform: scaleX(0);
}
.rts-btn.btn-border.radious-0 {
  border-radius: 0;
  border: 1px solid rgba(31, 31, 37, 0.1);
  color: #1F1F25;
}
.rts-btn.btn-border.radious-0 i {
  margin-left: 8px;
}
.rts-btn.with-arrow i {
  margin-left: 10px;
  margin-bottom: -2px;
}

.index-two .rts-btn.btn-primary {
  border-radius: 4px;
}
.index-two .rts-btn.btn-primary::before {
  border-radius: 4px;
}

.blog-single-one .thumbnail {
  padding: 0 10px;
  display: block;
}
.blog-single-one .thumbnail .inner {
  overflow: hidden;
  display: block;
}
.blog-single-one .thumbnail .inner img {
  width: 100%;
  transition: 0.6s;
}
.blog-single-one .thumbnail .inner:hover img {
  transform: scale(1.15);
}
.blog-single-one .head {
  display: flex;
  align-items: center;
  padding: 20px;
  border-left: 10px solid var(--color-primary);
  border-right: 10px solid var(--color-primary);
}
.blog-single-one .head .single-info {
  display: flex;
  align-items: center;
}
.blog-single-one .head .single-info i {
  color: var(--color-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 16px;
  color: var(--color-primary);
}
.blog-single-one .head .single-info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #6E777D;
  margin-left: 8px;
  margin-bottom: -2px;
}
@media only screen and (max-width: 767px) {
  .blog-single-one .head .single-info p {
    font-size: 13px;
  }
}
.blog-single-one .head .single-info.date-area {
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-single-one .head .single-info.date-area {
    margin-right: 10px;
  }
}
.blog-single-one .body {
  padding: 23px 30px 30px 30px;
  background: #F7F7F7;
}
.blog-single-one .body a.rts-btn.btn-border {
  border: 1px solid var(--color-primary) !important;
  background: #1F1F25;
}
@media only screen and (max-width: 767px) {
  .blog-single-one .body {
    padding: 15px;
  }
}
.blog-single-one .body a .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #1F1F25;
  margin-bottom: 21px;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single-one .body a .title {
    font-size: 20px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-single-one .body a .title {
    font-size: 20px;
    line-height: 32px;
  }
}
.blog-single-one .body a .title:hover {
  color: var(--color-primary);
}

.rts-cl-home-blog {
  border-radius: 30px;
}
.rts-cl-home-blog .thumbnail img {
  border-radius: 30px 30px 0 0;
}
.rts-cl-home-blog .content-area {
  padding: 40px;
  border-radius: 0 0 30px 30px;
  background: #fff;
}
.rts-cl-home-blog .content-area .head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 17px;
}
.rts-cl-home-blog .content-area .head .single-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rts-cl-home-blog .content-area .head .single-info i {
  color: var(--color-primary);
}
.rts-cl-home-blog .content-area .body .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1F1F25;
  transition: 0.3s;
}
.rts-cl-home-blog .content-area .body .title:hover {
  color: var(--color-primary);
}
.rts-cl-home-blog .content-area .body .rts-btn.btn-primary {
  margin-top: 15px;
}

.index-cleaning-home .air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .thumbnail img {
  border-radius: 30px;
}
.index-cleaning-home .air-condition-swiper-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .inner-content p.disc {
  width: 75%;
}
.index-cleaning-home .air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content {
  width: 557px;
  height: 369px;
}

.rts-solari-blog-area-start {
  background: #F6F6F6;
  position: relative;
}
.rts-solari-blog-area-start .stok-bg {
  margin-left: -250px;
}

.single-blog-solaric-lg {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  height: 100%;
}
.single-blog-solaric-lg .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.single-blog-solaric-lg .thumbnail:hover img {
  transform: scale(1.1);
}
.single-blog-solaric-lg .thumbnail img {
  width: 100%;
  transition: 0.3s;
  border-radius: 10px;
}

.inner-content-solari-blog .head {
  display: flex;
  align-items: center;
  padding: 22px 0;
  margin: 0 20px;
  border-bottom: 1px solid #E6E6E6;
  gap: 40px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .inner-content-solari-blog .head {
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-content-solari-blog .head {
    gap: 15px;
    margin: 0;
  }
}
@media only screen and (max-width: 575px) {
  .inner-content-solari-blog .head {
    gap: 0;
  }
}
.inner-content-solari-blog .head .single i {
  color: var(--color-primary);
  margin-right: 10px;
}
.inner-content-solari-blog .body {
  margin-top: 25px;
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .inner-content-solari-blog .body {
    margin-left: 0;
    margin-right: 0;
  }
}
.inner-content-solari-blog .body a {
  margin-bottom: 20px;
}
.inner-content-solari-blog .body a .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  transition: 0.3s;
}
@media only screen and (max-width: 575px) {
  .inner-content-solari-blog .body a .title {
    font-size: 18px;
    line-height: 28px;
  }
}
.inner-content-solari-blog .body a:hover .title {
  color: var(--color-primary);
}
.inner-content-solari-blog .body a.rts-btn {
  padding: 12px 33px;
  margin-bottom: 15px;
}

.single-blog-solaric-sm {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .single-blog-solaric-sm {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-blog-solaric-sm:last-child {
  margin-bottom: 0;
}
.single-blog-solaric-sm .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 10px;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media only screen and (max-width: 1199px) {
  .single-blog-solaric-sm .thumbnail {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .single-blog-solaric-sm .thumbnail img {
    min-width: 100% !important;
  }
}
.single-blog-solaric-sm .thumbnail:hover img {
  transform: scale(1.1);
}
.single-blog-solaric-sm .thumbnail img {
  min-width: -moz-max-content;
  min-width: max-content;
  display: block;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-blog-solaric-sm .inner-content-solari-blog {
    margin-left: 30px;
  }
}
.single-blog-solaric-sm .inner-content-solari-blog .head {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-blog-solaric-sm .inner-content-solari-blog .head {
    margin: 0;
  }
}
@media only screen and (max-width: 479px) {
  .single-blog-solaric-sm .inner-content-solari-blog .head {
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 479px) {
  .single-blog-solaric-sm .inner-content-solari-blog .head span {
    font-size: 14px;
  }
}
.single-blog-solaric-sm .inner-content-solari-blog .body {
  margin-top: 12px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-blog-solaric-sm .inner-content-solari-blog .body {
    margin: 10px 0 0;
  }
}
.single-blog-solaric-sm .inner-content-solari-blog .body .title {
  font-size: 23px;
  line-height: 34px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-blog-solaric-sm .inner-content-solari-blog .body .title {
    font-size: 16px;
    line-height: 29px;
  }
}
@media only screen and (max-width: 1199px) {
  .single-blog-solaric-sm .inner-content-solari-blog .body .title br {
    display: none;
  }
}
.single-blog-solaric-sm .inner-content-solari-blog .body a.rts-btn {
  background: transparent !important;
  border: 1px solid #E8E8E8;
  color: #1F1F25;
  transition: 0.3s;
}
.single-blog-solaric-sm .inner-content-solari-blog .body a.rts-btn::before {
  background: transparent !important;
}
.single-blog-solaric-sm .inner-content-solari-blog .body a.rts-btn:hover {
  background: var(--color-primary) !important;
  color: #fff;
}

@media only screen and (max-width: 1199px) {
  br {
    display: none;
  }
}

.blog-style-four {
  position: relative;
  display: block;
  width: 100%;
}
.blog-style-four:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 13px;
  overflow: hidden;
}
.blog-style-four .thumbanil {
  border-radius: 15px;
  display: block;
  overflow: hidden;
}
.blog-style-four .thumbanil:hover img {
  transform: scale(1.2);
}
.blog-style-four .thumbanil img {
  width: 100%;
  transition: 0.7s;
}
.blog-style-four .inner-content-blog {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 90%;
}
@media only screen and (max-width: 479px) {
  .blog-style-four .inner-content-blog {
    bottom: 14px;
    left: 20px;
  }
}
.blog-style-four .inner-content-blog .head {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.blog-style-four .inner-content-blog .head .date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-style-four .inner-content-blog .head .date i {
  color: #fff;
}
.blog-style-four .inner-content-blog .head .date .info {
  color: #fff;
}
.blog-style-four .inner-content-blog a .title {
  margin-top: 30px !important;
  margin-bottom: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  position: relative;
  display: inline;
  background-image: linear-gradient(to right, var(--color-white) 0%, var(--color-white) 100%);
  background-size: 0px 1px;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1199px) {
  .blog-style-four .inner-content-blog a .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-style-four .inner-content-blog a .title {
    font-size: 20px;
    font-weight: 600;
  }
}
.blog-style-four:hover .inner-content-blog a .title {
  background-size: 100% 1px !important;
}

@media only screen and (max-width: 1199px) {
  .about-right-content-area-solar-energy .vedio-area-start .vedio-icone .video-play-button {
    left: 58%;
  }
}

@media screen and (max-width: 1100px) {
  .inner-content-solari-blog .head {
    gap: 20px;
  }
}
@media screen and (max-width: 992px) {
  .single-blog-solaric-lg {
    margin-bottom: 25px;
  }
}
.marquee {
  max-width: 1920px;
  white-space: nowrap;
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  bottom: 20px;
  margin-left: 40px;
}
.marquee .marquee__item {
  display: inline-block;
  will-change: transform;
  animation: marquee 120s linear infinite;
}
.marquee .marquee__item .banner-marque-bottom {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: 235px;
}
.marquee .marquee__item .banner-marque-bottom p {
  display: block;
  margin: 0;
  text-align: center;
  margin: auto;
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E6E6E6;
  font-weight: 700;
  font-size: 200px;
  line-height: 100px;
  font-family: var(--font-primary);
  font-family: var(--font-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .marquee .marquee__item .banner-marque-bottom p {
    font-size: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .marquee .marquee__item .banner-marque-bottom p {
    font-size: 100px;
  }
}

.rts-banner-three-solari {
  position: relative;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.fun-facts-area-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .fun-facts-area-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (max-width: 479px) {
  .fun-facts-area-wrapper {
    justify-content: center;
  }
}

.single-fun-facts {
  display: flex;
  align-items: center;
}
.single-fun-facts .icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F3;
  border-radius: 50%;
  margin-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-fun-facts .icon {
    width: 75px;
    height: 75px;
  }
}
.single-fun-facts .inner-content {
  position: relative;
}
.single-fun-facts .inner-content.bn::after {
  display: none;
}
.single-fun-facts .inner-content::after {
  content: "";
  position: absolute;
  right: -100px;
  height: 100%;
  width: 1px;
  background: #d1d1d1;
  top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-fun-facts .inner-content::after {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .single-fun-facts .inner-content::after {
    display: none;
  }
}
.single-fun-facts .inner-content .title {
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}
.single-fun-facts .inner-content .title .plus::after {
  position: absolute;
  content: "+";
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: #000;
}
.single-fun-facts .inner-content .title span.counter {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-fun-facts .inner-content .title span.counter {
    font-size: 27px;
    line-height: 36px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 767px) {
  .single-fun-facts .inner-content .title span.counter {
    font-size: 27px;
    line-height: 36px;
    font-weight: 500;
  }
}
.single-fun-facts .inner-content span {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  display: block;
  font-family: var(--font-primary);
}

.single-counter-up-start-solari {
  position: relative;
}
.single-counter-up-start-solari .bg-text {
  text-transform: uppercase;
  text-align: center;
  margin: auto;
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(217, 217, 217, 0.267);
  font-size: 100px;
  font-weight: 700;
  font-weight: 700;
  font-size: 120px;
  line-height: 120px;
  font-family: var(--font-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single-counter-up-start-solari .main-content .title {
  font-weight: 600;
  font-size: 34px;
  line-height: 44px;
  margin-bottom: -5px;
}
.single-counter-up-start-solari .main-content p {
  font-weight: 600;
  font-size: 24px;
  font-family: var(--font-primary);
  line-height: 58px;
  color: #1F1F25;
  margin-bottom: 0;
}

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

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

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

.m--0 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .ptb_lp--5 {
    padding: 5px 0;
  }
  .plr_lp--5 {
    padding: 0 5px;
  }
  .pt_lp--5 {
    padding-top: 5px;
  }
  .pb_lp--5 {
    padding-bottom: 5px;
  }
  .pl_lp--5 {
    padding-left: 5px;
  }
  .pr_lp--5 {
    padding-right: 5px;
  }
  .mt_lp--5 {
    margin-top: 5px;
  }
  .mb_lp--5 {
    margin-bottom: 5px;
  }
  .ptb_lp--10 {
    padding: 10px 0;
  }
  .plr_lp--10 {
    padding: 0 10px;
  }
  .pt_lp--10 {
    padding-top: 10px;
  }
  .pb_lp--10 {
    padding-bottom: 10px;
  }
  .pl_lp--10 {
    padding-left: 10px;
  }
  .pr_lp--10 {
    padding-right: 10px;
  }
  .mt_lp--10 {
    margin-top: 10px;
  }
  .mb_lp--10 {
    margin-bottom: 10px;
  }
  .ptb_lp--15 {
    padding: 15px 0;
  }
  .plr_lp--15 {
    padding: 0 15px;
  }
  .pt_lp--15 {
    padding-top: 15px;
  }
  .pb_lp--15 {
    padding-bottom: 15px;
  }
  .pl_lp--15 {
    padding-left: 15px;
  }
  .pr_lp--15 {
    padding-right: 15px;
  }
  .mt_lp--15 {
    margin-top: 15px;
  }
  .mb_lp--15 {
    margin-bottom: 15px;
  }
  .ptb_lp--20 {
    padding: 20px 0;
  }
  .plr_lp--20 {
    padding: 0 20px;
  }
  .pt_lp--20 {
    padding-top: 20px;
  }
  .pb_lp--20 {
    padding-bottom: 20px;
  }
  .pl_lp--20 {
    padding-left: 20px;
  }
  .pr_lp--20 {
    padding-right: 20px;
  }
  .mt_lp--20 {
    margin-top: 20px;
  }
  .mb_lp--20 {
    margin-bottom: 20px;
  }
  .ptb_lp--25 {
    padding: 25px 0;
  }
  .plr_lp--25 {
    padding: 0 25px;
  }
  .pt_lp--25 {
    padding-top: 25px;
  }
  .pb_lp--25 {
    padding-bottom: 25px;
  }
  .pl_lp--25 {
    padding-left: 25px;
  }
  .pr_lp--25 {
    padding-right: 25px;
  }
  .mt_lp--25 {
    margin-top: 25px;
  }
  .mb_lp--25 {
    margin-bottom: 25px;
  }
  .ptb_lp--30 {
    padding: 30px 0;
  }
  .plr_lp--30 {
    padding: 0 30px;
  }
  .pt_lp--30 {
    padding-top: 30px;
  }
  .pb_lp--30 {
    padding-bottom: 30px;
  }
  .pl_lp--30 {
    padding-left: 30px;
  }
  .pr_lp--30 {
    padding-right: 30px;
  }
  .mt_lp--30 {
    margin-top: 30px;
  }
  .mb_lp--30 {
    margin-bottom: 30px;
  }
  .ptb_lp--35 {
    padding: 35px 0;
  }
  .plr_lp--35 {
    padding: 0 35px;
  }
  .pt_lp--35 {
    padding-top: 35px;
  }
  .pb_lp--35 {
    padding-bottom: 35px;
  }
  .pl_lp--35 {
    padding-left: 35px;
  }
  .pr_lp--35 {
    padding-right: 35px;
  }
  .mt_lp--35 {
    margin-top: 35px;
  }
  .mb_lp--35 {
    margin-bottom: 35px;
  }
  .ptb_lp--40 {
    padding: 40px 0;
  }
  .plr_lp--40 {
    padding: 0 40px;
  }
  .pt_lp--40 {
    padding-top: 40px;
  }
  .pb_lp--40 {
    padding-bottom: 40px;
  }
  .pl_lp--40 {
    padding-left: 40px;
  }
  .pr_lp--40 {
    padding-right: 40px;
  }
  .mt_lp--40 {
    margin-top: 40px;
  }
  .mb_lp--40 {
    margin-bottom: 40px;
  }
  .ptb_lp--45 {
    padding: 45px 0;
  }
  .plr_lp--45 {
    padding: 0 45px;
  }
  .pt_lp--45 {
    padding-top: 45px;
  }
  .pb_lp--45 {
    padding-bottom: 45px;
  }
  .pl_lp--45 {
    padding-left: 45px;
  }
  .pr_lp--45 {
    padding-right: 45px;
  }
  .mt_lp--45 {
    margin-top: 45px;
  }
  .mb_lp--45 {
    margin-bottom: 45px;
  }
  .ptb_lp--50 {
    padding: 50px 0;
  }
  .plr_lp--50 {
    padding: 0 50px;
  }
  .pt_lp--50 {
    padding-top: 50px;
  }
  .pb_lp--50 {
    padding-bottom: 50px;
  }
  .pl_lp--50 {
    padding-left: 50px;
  }
  .pr_lp--50 {
    padding-right: 50px;
  }
  .mt_lp--50 {
    margin-top: 50px;
  }
  .mb_lp--50 {
    margin-bottom: 50px;
  }
  .ptb_lp--55 {
    padding: 55px 0;
  }
  .plr_lp--55 {
    padding: 0 55px;
  }
  .pt_lp--55 {
    padding-top: 55px;
  }
  .pb_lp--55 {
    padding-bottom: 55px;
  }
  .pl_lp--55 {
    padding-left: 55px;
  }
  .pr_lp--55 {
    padding-right: 55px;
  }
  .mt_lp--55 {
    margin-top: 55px;
  }
  .mb_lp--55 {
    margin-bottom: 55px;
  }
  .ptb_lp--60 {
    padding: 60px 0;
  }
  .plr_lp--60 {
    padding: 0 60px;
  }
  .pt_lp--60 {
    padding-top: 60px;
  }
  .pb_lp--60 {
    padding-bottom: 60px;
  }
  .pl_lp--60 {
    padding-left: 60px;
  }
  .pr_lp--60 {
    padding-right: 60px;
  }
  .mt_lp--60 {
    margin-top: 60px;
  }
  .mb_lp--60 {
    margin-bottom: 60px;
  }
  .ptb_lp--65 {
    padding: 65px 0;
  }
  .plr_lp--65 {
    padding: 0 65px;
  }
  .pt_lp--65 {
    padding-top: 65px;
  }
  .pb_lp--65 {
    padding-bottom: 65px;
  }
  .pl_lp--65 {
    padding-left: 65px;
  }
  .pr_lp--65 {
    padding-right: 65px;
  }
  .mt_lp--65 {
    margin-top: 65px;
  }
  .mb_lp--65 {
    margin-bottom: 65px;
  }
  .ptb_lp--70 {
    padding: 70px 0;
  }
  .plr_lp--70 {
    padding: 0 70px;
  }
  .pt_lp--70 {
    padding-top: 70px;
  }
  .pb_lp--70 {
    padding-bottom: 70px;
  }
  .pl_lp--70 {
    padding-left: 70px;
  }
  .pr_lp--70 {
    padding-right: 70px;
  }
  .mt_lp--70 {
    margin-top: 70px;
  }
  .mb_lp--70 {
    margin-bottom: 70px;
  }
  .ptb_lp--75 {
    padding: 75px 0;
  }
  .plr_lp--75 {
    padding: 0 75px;
  }
  .pt_lp--75 {
    padding-top: 75px;
  }
  .pb_lp--75 {
    padding-bottom: 75px;
  }
  .pl_lp--75 {
    padding-left: 75px;
  }
  .pr_lp--75 {
    padding-right: 75px;
  }
  .mt_lp--75 {
    margin-top: 75px;
  }
  .mb_lp--75 {
    margin-bottom: 75px;
  }
  .ptb_lp--80 {
    padding: 80px 0;
  }
  .plr_lp--80 {
    padding: 0 80px;
  }
  .pt_lp--80 {
    padding-top: 80px;
  }
  .pb_lp--80 {
    padding-bottom: 80px;
  }
  .pl_lp--80 {
    padding-left: 80px;
  }
  .pr_lp--80 {
    padding-right: 80px;
  }
  .mt_lp--80 {
    margin-top: 80px;
  }
  .mb_lp--80 {
    margin-bottom: 80px;
  }
  .ptb_lp--85 {
    padding: 85px 0;
  }
  .plr_lp--85 {
    padding: 0 85px;
  }
  .pt_lp--85 {
    padding-top: 85px;
  }
  .pb_lp--85 {
    padding-bottom: 85px;
  }
  .pl_lp--85 {
    padding-left: 85px;
  }
  .pr_lp--85 {
    padding-right: 85px;
  }
  .mt_lp--85 {
    margin-top: 85px;
  }
  .mb_lp--85 {
    margin-bottom: 85px;
  }
  .ptb_lp--90 {
    padding: 90px 0;
  }
  .plr_lp--90 {
    padding: 0 90px;
  }
  .pt_lp--90 {
    padding-top: 90px;
  }
  .pb_lp--90 {
    padding-bottom: 90px;
  }
  .pl_lp--90 {
    padding-left: 90px;
  }
  .pr_lp--90 {
    padding-right: 90px;
  }
  .mt_lp--90 {
    margin-top: 90px;
  }
  .mb_lp--90 {
    margin-bottom: 90px;
  }
  .ptb_lp--95 {
    padding: 95px 0;
  }
  .plr_lp--95 {
    padding: 0 95px;
  }
  .pt_lp--95 {
    padding-top: 95px;
  }
  .pb_lp--95 {
    padding-bottom: 95px;
  }
  .pl_lp--95 {
    padding-left: 95px;
  }
  .pr_lp--95 {
    padding-right: 95px;
  }
  .mt_lp--95 {
    margin-top: 95px;
  }
  .mb_lp--95 {
    margin-bottom: 95px;
  }
  .ptb_lp--100 {
    padding: 100px 0;
  }
  .plr_lp--100 {
    padding: 0 100px;
  }
  .pt_lp--100 {
    padding-top: 100px;
  }
  .pb_lp--100 {
    padding-bottom: 100px;
  }
  .pl_lp--100 {
    padding-left: 100px;
  }
  .pr_lp--100 {
    padding-right: 100px;
  }
  .mt_lp--100 {
    margin-top: 100px;
  }
  .mb_lp--100 {
    margin-bottom: 100px;
  }
  .ptb_lp--105 {
    padding: 105px 0;
  }
  .plr_lp--105 {
    padding: 0 105px;
  }
  .pt_lp--105 {
    padding-top: 105px;
  }
  .pb_lp--105 {
    padding-bottom: 105px;
  }
  .pl_lp--105 {
    padding-left: 105px;
  }
  .pr_lp--105 {
    padding-right: 105px;
  }
  .mt_lp--105 {
    margin-top: 105px;
  }
  .mb_lp--105 {
    margin-bottom: 105px;
  }
  .ptb_lp--110 {
    padding: 110px 0;
  }
  .plr_lp--110 {
    padding: 0 110px;
  }
  .pt_lp--110 {
    padding-top: 110px;
  }
  .pb_lp--110 {
    padding-bottom: 110px;
  }
  .pl_lp--110 {
    padding-left: 110px;
  }
  .pr_lp--110 {
    padding-right: 110px;
  }
  .mt_lp--110 {
    margin-top: 110px;
  }
  .mb_lp--110 {
    margin-bottom: 110px;
  }
  .ptb_lp--115 {
    padding: 115px 0;
  }
  .plr_lp--115 {
    padding: 0 115px;
  }
  .pt_lp--115 {
    padding-top: 115px;
  }
  .pb_lp--115 {
    padding-bottom: 115px;
  }
  .pl_lp--115 {
    padding-left: 115px;
  }
  .pr_lp--115 {
    padding-right: 115px;
  }
  .mt_lp--115 {
    margin-top: 115px;
  }
  .mb_lp--115 {
    margin-bottom: 115px;
  }
  .ptb_lp--120 {
    padding: 120px 0;
  }
  .plr_lp--120 {
    padding: 0 120px;
  }
  .pt_lp--120 {
    padding-top: 120px;
  }
  .pb_lp--120 {
    padding-bottom: 120px;
  }
  .pl_lp--120 {
    padding-left: 120px;
  }
  .pr_lp--120 {
    padding-right: 120px;
  }
  .mt_lp--120 {
    margin-top: 120px;
  }
  .mb_lp--120 {
    margin-bottom: 120px;
  }
  .ptb_lp--125 {
    padding: 125px 0;
  }
  .plr_lp--125 {
    padding: 0 125px;
  }
  .pt_lp--125 {
    padding-top: 125px;
  }
  .pb_lp--125 {
    padding-bottom: 125px;
  }
  .pl_lp--125 {
    padding-left: 125px;
  }
  .pr_lp--125 {
    padding-right: 125px;
  }
  .mt_lp--125 {
    margin-top: 125px;
  }
  .mb_lp--125 {
    margin-bottom: 125px;
  }
  .ptb_lp--130 {
    padding: 130px 0;
  }
  .plr_lp--130 {
    padding: 0 130px;
  }
  .pt_lp--130 {
    padding-top: 130px;
  }
  .pb_lp--130 {
    padding-bottom: 130px;
  }
  .pl_lp--130 {
    padding-left: 130px;
  }
  .pr_lp--130 {
    padding-right: 130px;
  }
  .mt_lp--130 {
    margin-top: 130px;
  }
  .mb_lp--130 {
    margin-bottom: 130px;
  }
  .ptb_lp--135 {
    padding: 135px 0;
  }
  .plr_lp--135 {
    padding: 0 135px;
  }
  .pt_lp--135 {
    padding-top: 135px;
  }
  .pb_lp--135 {
    padding-bottom: 135px;
  }
  .pl_lp--135 {
    padding-left: 135px;
  }
  .pr_lp--135 {
    padding-right: 135px;
  }
  .mt_lp--135 {
    margin-top: 135px;
  }
  .mb_lp--135 {
    margin-bottom: 135px;
  }
  .ptb_lp--140 {
    padding: 140px 0;
  }
  .plr_lp--140 {
    padding: 0 140px;
  }
  .pt_lp--140 {
    padding-top: 140px;
  }
  .pb_lp--140 {
    padding-bottom: 140px;
  }
  .pl_lp--140 {
    padding-left: 140px;
  }
  .pr_lp--140 {
    padding-right: 140px;
  }
  .mt_lp--140 {
    margin-top: 140px;
  }
  .mb_lp--140 {
    margin-bottom: 140px;
  }
  .ptb_lp--145 {
    padding: 145px 0;
  }
  .plr_lp--145 {
    padding: 0 145px;
  }
  .pt_lp--145 {
    padding-top: 145px;
  }
  .pb_lp--145 {
    padding-bottom: 145px;
  }
  .pl_lp--145 {
    padding-left: 145px;
  }
  .pr_lp--145 {
    padding-right: 145px;
  }
  .mt_lp--145 {
    margin-top: 145px;
  }
  .mb_lp--145 {
    margin-bottom: 145px;
  }
  .ptb_lp--150 {
    padding: 150px 0;
  }
  .plr_lp--150 {
    padding: 0 150px;
  }
  .pt_lp--150 {
    padding-top: 150px;
  }
  .pb_lp--150 {
    padding-bottom: 150px;
  }
  .pl_lp--150 {
    padding-left: 150px;
  }
  .pr_lp--150 {
    padding-right: 150px;
  }
  .mt_lp--150 {
    margin-top: 150px;
  }
  .mb_lp--150 {
    margin-bottom: 150px;
  }
  .ptb_lp--155 {
    padding: 155px 0;
  }
  .plr_lp--155 {
    padding: 0 155px;
  }
  .pt_lp--155 {
    padding-top: 155px;
  }
  .pb_lp--155 {
    padding-bottom: 155px;
  }
  .pl_lp--155 {
    padding-left: 155px;
  }
  .pr_lp--155 {
    padding-right: 155px;
  }
  .mt_lp--155 {
    margin-top: 155px;
  }
  .mb_lp--155 {
    margin-bottom: 155px;
  }
  .ptb_lp--160 {
    padding: 160px 0;
  }
  .plr_lp--160 {
    padding: 0 160px;
  }
  .pt_lp--160 {
    padding-top: 160px;
  }
  .pb_lp--160 {
    padding-bottom: 160px;
  }
  .pl_lp--160 {
    padding-left: 160px;
  }
  .pr_lp--160 {
    padding-right: 160px;
  }
  .mt_lp--160 {
    margin-top: 160px;
  }
  .mb_lp--160 {
    margin-bottom: 160px;
  }
  .ptb_lp--165 {
    padding: 165px 0;
  }
  .plr_lp--165 {
    padding: 0 165px;
  }
  .pt_lp--165 {
    padding-top: 165px;
  }
  .pb_lp--165 {
    padding-bottom: 165px;
  }
  .pl_lp--165 {
    padding-left: 165px;
  }
  .pr_lp--165 {
    padding-right: 165px;
  }
  .mt_lp--165 {
    margin-top: 165px;
  }
  .mb_lp--165 {
    margin-bottom: 165px;
  }
  .ptb_lp--170 {
    padding: 170px 0;
  }
  .plr_lp--170 {
    padding: 0 170px;
  }
  .pt_lp--170 {
    padding-top: 170px;
  }
  .pb_lp--170 {
    padding-bottom: 170px;
  }
  .pl_lp--170 {
    padding-left: 170px;
  }
  .pr_lp--170 {
    padding-right: 170px;
  }
  .mt_lp--170 {
    margin-top: 170px;
  }
  .mb_lp--170 {
    margin-bottom: 170px;
  }
  .ptb_lp--175 {
    padding: 175px 0;
  }
  .plr_lp--175 {
    padding: 0 175px;
  }
  .pt_lp--175 {
    padding-top: 175px;
  }
  .pb_lp--175 {
    padding-bottom: 175px;
  }
  .pl_lp--175 {
    padding-left: 175px;
  }
  .pr_lp--175 {
    padding-right: 175px;
  }
  .mt_lp--175 {
    margin-top: 175px;
  }
  .mb_lp--175 {
    margin-bottom: 175px;
  }
  .ptb_lp--180 {
    padding: 180px 0;
  }
  .plr_lp--180 {
    padding: 0 180px;
  }
  .pt_lp--180 {
    padding-top: 180px;
  }
  .pb_lp--180 {
    padding-bottom: 180px;
  }
  .pl_lp--180 {
    padding-left: 180px;
  }
  .pr_lp--180 {
    padding-right: 180px;
  }
  .mt_lp--180 {
    margin-top: 180px;
  }
  .mb_lp--180 {
    margin-bottom: 180px;
  }
  .ptb_lp--185 {
    padding: 185px 0;
  }
  .plr_lp--185 {
    padding: 0 185px;
  }
  .pt_lp--185 {
    padding-top: 185px;
  }
  .pb_lp--185 {
    padding-bottom: 185px;
  }
  .pl_lp--185 {
    padding-left: 185px;
  }
  .pr_lp--185 {
    padding-right: 185px;
  }
  .mt_lp--185 {
    margin-top: 185px;
  }
  .mb_lp--185 {
    margin-bottom: 185px;
  }
  .ptb_lp--190 {
    padding: 190px 0;
  }
  .plr_lp--190 {
    padding: 0 190px;
  }
  .pt_lp--190 {
    padding-top: 190px;
  }
  .pb_lp--190 {
    padding-bottom: 190px;
  }
  .pl_lp--190 {
    padding-left: 190px;
  }
  .pr_lp--190 {
    padding-right: 190px;
  }
  .mt_lp--190 {
    margin-top: 190px;
  }
  .mb_lp--190 {
    margin-bottom: 190px;
  }
  .ptb_lp--195 {
    padding: 195px 0;
  }
  .plr_lp--195 {
    padding: 0 195px;
  }
  .pt_lp--195 {
    padding-top: 195px;
  }
  .pb_lp--195 {
    padding-bottom: 195px;
  }
  .pl_lp--195 {
    padding-left: 195px;
  }
  .pr_lp--195 {
    padding-right: 195px;
  }
  .mt_lp--195 {
    margin-top: 195px;
  }
  .mb_lp--195 {
    margin-bottom: 195px;
  }
  .ptb_lp--200 {
    padding: 200px 0;
  }
  .plr_lp--200 {
    padding: 0 200px;
  }
  .pt_lp--200 {
    padding-top: 200px;
  }
  .pb_lp--200 {
    padding-bottom: 200px;
  }
  .pl_lp--200 {
    padding-left: 200px;
  }
  .pr_lp--200 {
    padding-right: 200px;
  }
  .mt_lp--200 {
    margin-top: 200px;
  }
  .mb_lp--200 {
    margin-bottom: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ptb_lg--5 {
    padding: 5px 0 !important;
  }
  .plr_lg--5 {
    padding: 0 5px !important;
  }
  .pt_lg--5 {
    padding-top: 5px !important;
  }
  .pb_lg--5 {
    padding-bottom: 5px !important;
  }
  .pl_lg--5 {
    padding-left: 5px !important;
  }
  .pr_lg--5 {
    padding-right: 5px !important;
  }
  .mt_lg--5 {
    margin-top: 5px !important;
  }
  .mb_lg--5 {
    margin-bottom: 5px !important;
  }
  .ml_lg--5 {
    margin-left: 5px !important;
  }
  .ptb_lg--10 {
    padding: 10px 0 !important;
  }
  .plr_lg--10 {
    padding: 0 10px !important;
  }
  .pt_lg--10 {
    padding-top: 10px !important;
  }
  .pb_lg--10 {
    padding-bottom: 10px !important;
  }
  .pl_lg--10 {
    padding-left: 10px !important;
  }
  .pr_lg--10 {
    padding-right: 10px !important;
  }
  .mt_lg--10 {
    margin-top: 10px !important;
  }
  .mb_lg--10 {
    margin-bottom: 10px !important;
  }
  .ml_lg--10 {
    margin-left: 10px !important;
  }
  .ptb_lg--15 {
    padding: 15px 0 !important;
  }
  .plr_lg--15 {
    padding: 0 15px !important;
  }
  .pt_lg--15 {
    padding-top: 15px !important;
  }
  .pb_lg--15 {
    padding-bottom: 15px !important;
  }
  .pl_lg--15 {
    padding-left: 15px !important;
  }
  .pr_lg--15 {
    padding-right: 15px !important;
  }
  .mt_lg--15 {
    margin-top: 15px !important;
  }
  .mb_lg--15 {
    margin-bottom: 15px !important;
  }
  .ml_lg--15 {
    margin-left: 15px !important;
  }
  .ptb_lg--20 {
    padding: 20px 0 !important;
  }
  .plr_lg--20 {
    padding: 0 20px !important;
  }
  .pt_lg--20 {
    padding-top: 20px !important;
  }
  .pb_lg--20 {
    padding-bottom: 20px !important;
  }
  .pl_lg--20 {
    padding-left: 20px !important;
  }
  .pr_lg--20 {
    padding-right: 20px !important;
  }
  .mt_lg--20 {
    margin-top: 20px !important;
  }
  .mb_lg--20 {
    margin-bottom: 20px !important;
  }
  .ml_lg--20 {
    margin-left: 20px !important;
  }
  .ptb_lg--25 {
    padding: 25px 0 !important;
  }
  .plr_lg--25 {
    padding: 0 25px !important;
  }
  .pt_lg--25 {
    padding-top: 25px !important;
  }
  .pb_lg--25 {
    padding-bottom: 25px !important;
  }
  .pl_lg--25 {
    padding-left: 25px !important;
  }
  .pr_lg--25 {
    padding-right: 25px !important;
  }
  .mt_lg--25 {
    margin-top: 25px !important;
  }
  .mb_lg--25 {
    margin-bottom: 25px !important;
  }
  .ml_lg--25 {
    margin-left: 25px !important;
  }
  .ptb_lg--30 {
    padding: 30px 0 !important;
  }
  .plr_lg--30 {
    padding: 0 30px !important;
  }
  .pt_lg--30 {
    padding-top: 30px !important;
  }
  .pb_lg--30 {
    padding-bottom: 30px !important;
  }
  .pl_lg--30 {
    padding-left: 30px !important;
  }
  .pr_lg--30 {
    padding-right: 30px !important;
  }
  .mt_lg--30 {
    margin-top: 30px !important;
  }
  .mb_lg--30 {
    margin-bottom: 30px !important;
  }
  .ml_lg--30 {
    margin-left: 30px !important;
  }
  .ptb_lg--35 {
    padding: 35px 0 !important;
  }
  .plr_lg--35 {
    padding: 0 35px !important;
  }
  .pt_lg--35 {
    padding-top: 35px !important;
  }
  .pb_lg--35 {
    padding-bottom: 35px !important;
  }
  .pl_lg--35 {
    padding-left: 35px !important;
  }
  .pr_lg--35 {
    padding-right: 35px !important;
  }
  .mt_lg--35 {
    margin-top: 35px !important;
  }
  .mb_lg--35 {
    margin-bottom: 35px !important;
  }
  .ml_lg--35 {
    margin-left: 35px !important;
  }
  .ptb_lg--40 {
    padding: 40px 0 !important;
  }
  .plr_lg--40 {
    padding: 0 40px !important;
  }
  .pt_lg--40 {
    padding-top: 40px !important;
  }
  .pb_lg--40 {
    padding-bottom: 40px !important;
  }
  .pl_lg--40 {
    padding-left: 40px !important;
  }
  .pr_lg--40 {
    padding-right: 40px !important;
  }
  .mt_lg--40 {
    margin-top: 40px !important;
  }
  .mb_lg--40 {
    margin-bottom: 40px !important;
  }
  .ml_lg--40 {
    margin-left: 40px !important;
  }
  .ptb_lg--45 {
    padding: 45px 0 !important;
  }
  .plr_lg--45 {
    padding: 0 45px !important;
  }
  .pt_lg--45 {
    padding-top: 45px !important;
  }
  .pb_lg--45 {
    padding-bottom: 45px !important;
  }
  .pl_lg--45 {
    padding-left: 45px !important;
  }
  .pr_lg--45 {
    padding-right: 45px !important;
  }
  .mt_lg--45 {
    margin-top: 45px !important;
  }
  .mb_lg--45 {
    margin-bottom: 45px !important;
  }
  .ml_lg--45 {
    margin-left: 45px !important;
  }
  .ptb_lg--50 {
    padding: 50px 0 !important;
  }
  .plr_lg--50 {
    padding: 0 50px !important;
  }
  .pt_lg--50 {
    padding-top: 50px !important;
  }
  .pb_lg--50 {
    padding-bottom: 50px !important;
  }
  .pl_lg--50 {
    padding-left: 50px !important;
  }
  .pr_lg--50 {
    padding-right: 50px !important;
  }
  .mt_lg--50 {
    margin-top: 50px !important;
  }
  .mb_lg--50 {
    margin-bottom: 50px !important;
  }
  .ml_lg--50 {
    margin-left: 50px !important;
  }
  .ptb_lg--55 {
    padding: 55px 0 !important;
  }
  .plr_lg--55 {
    padding: 0 55px !important;
  }
  .pt_lg--55 {
    padding-top: 55px !important;
  }
  .pb_lg--55 {
    padding-bottom: 55px !important;
  }
  .pl_lg--55 {
    padding-left: 55px !important;
  }
  .pr_lg--55 {
    padding-right: 55px !important;
  }
  .mt_lg--55 {
    margin-top: 55px !important;
  }
  .mb_lg--55 {
    margin-bottom: 55px !important;
  }
  .ml_lg--55 {
    margin-left: 55px !important;
  }
  .ptb_lg--60 {
    padding: 60px 0 !important;
  }
  .plr_lg--60 {
    padding: 0 60px !important;
  }
  .pt_lg--60 {
    padding-top: 60px !important;
  }
  .pb_lg--60 {
    padding-bottom: 60px !important;
  }
  .pl_lg--60 {
    padding-left: 60px !important;
  }
  .pr_lg--60 {
    padding-right: 60px !important;
  }
  .mt_lg--60 {
    margin-top: 60px !important;
  }
  .mb_lg--60 {
    margin-bottom: 60px !important;
  }
  .ml_lg--60 {
    margin-left: 60px !important;
  }
  .ptb_lg--65 {
    padding: 65px 0 !important;
  }
  .plr_lg--65 {
    padding: 0 65px !important;
  }
  .pt_lg--65 {
    padding-top: 65px !important;
  }
  .pb_lg--65 {
    padding-bottom: 65px !important;
  }
  .pl_lg--65 {
    padding-left: 65px !important;
  }
  .pr_lg--65 {
    padding-right: 65px !important;
  }
  .mt_lg--65 {
    margin-top: 65px !important;
  }
  .mb_lg--65 {
    margin-bottom: 65px !important;
  }
  .ml_lg--65 {
    margin-left: 65px !important;
  }
  .ptb_lg--70 {
    padding: 70px 0 !important;
  }
  .plr_lg--70 {
    padding: 0 70px !important;
  }
  .pt_lg--70 {
    padding-top: 70px !important;
  }
  .pb_lg--70 {
    padding-bottom: 70px !important;
  }
  .pl_lg--70 {
    padding-left: 70px !important;
  }
  .pr_lg--70 {
    padding-right: 70px !important;
  }
  .mt_lg--70 {
    margin-top: 70px !important;
  }
  .mb_lg--70 {
    margin-bottom: 70px !important;
  }
  .ml_lg--70 {
    margin-left: 70px !important;
  }
  .ptb_lg--75 {
    padding: 75px 0 !important;
  }
  .plr_lg--75 {
    padding: 0 75px !important;
  }
  .pt_lg--75 {
    padding-top: 75px !important;
  }
  .pb_lg--75 {
    padding-bottom: 75px !important;
  }
  .pl_lg--75 {
    padding-left: 75px !important;
  }
  .pr_lg--75 {
    padding-right: 75px !important;
  }
  .mt_lg--75 {
    margin-top: 75px !important;
  }
  .mb_lg--75 {
    margin-bottom: 75px !important;
  }
  .ml_lg--75 {
    margin-left: 75px !important;
  }
  .ptb_lg--80 {
    padding: 80px 0 !important;
  }
  .plr_lg--80 {
    padding: 0 80px !important;
  }
  .pt_lg--80 {
    padding-top: 80px !important;
  }
  .pb_lg--80 {
    padding-bottom: 80px !important;
  }
  .pl_lg--80 {
    padding-left: 80px !important;
  }
  .pr_lg--80 {
    padding-right: 80px !important;
  }
  .mt_lg--80 {
    margin-top: 80px !important;
  }
  .mb_lg--80 {
    margin-bottom: 80px !important;
  }
  .ml_lg--80 {
    margin-left: 80px !important;
  }
  .ptb_lg--85 {
    padding: 85px 0 !important;
  }
  .plr_lg--85 {
    padding: 0 85px !important;
  }
  .pt_lg--85 {
    padding-top: 85px !important;
  }
  .pb_lg--85 {
    padding-bottom: 85px !important;
  }
  .pl_lg--85 {
    padding-left: 85px !important;
  }
  .pr_lg--85 {
    padding-right: 85px !important;
  }
  .mt_lg--85 {
    margin-top: 85px !important;
  }
  .mb_lg--85 {
    margin-bottom: 85px !important;
  }
  .ml_lg--85 {
    margin-left: 85px !important;
  }
  .ptb_lg--90 {
    padding: 90px 0 !important;
  }
  .plr_lg--90 {
    padding: 0 90px !important;
  }
  .pt_lg--90 {
    padding-top: 90px !important;
  }
  .pb_lg--90 {
    padding-bottom: 90px !important;
  }
  .pl_lg--90 {
    padding-left: 90px !important;
  }
  .pr_lg--90 {
    padding-right: 90px !important;
  }
  .mt_lg--90 {
    margin-top: 90px !important;
  }
  .mb_lg--90 {
    margin-bottom: 90px !important;
  }
  .ml_lg--90 {
    margin-left: 90px !important;
  }
  .ptb_lg--95 {
    padding: 95px 0 !important;
  }
  .plr_lg--95 {
    padding: 0 95px !important;
  }
  .pt_lg--95 {
    padding-top: 95px !important;
  }
  .pb_lg--95 {
    padding-bottom: 95px !important;
  }
  .pl_lg--95 {
    padding-left: 95px !important;
  }
  .pr_lg--95 {
    padding-right: 95px !important;
  }
  .mt_lg--95 {
    margin-top: 95px !important;
  }
  .mb_lg--95 {
    margin-bottom: 95px !important;
  }
  .ml_lg--95 {
    margin-left: 95px !important;
  }
  .ptb_lg--100 {
    padding: 100px 0 !important;
  }
  .plr_lg--100 {
    padding: 0 100px !important;
  }
  .pt_lg--100 {
    padding-top: 100px !important;
  }
  .pb_lg--100 {
    padding-bottom: 100px !important;
  }
  .pl_lg--100 {
    padding-left: 100px !important;
  }
  .pr_lg--100 {
    padding-right: 100px !important;
  }
  .mt_lg--100 {
    margin-top: 100px !important;
  }
  .mb_lg--100 {
    margin-bottom: 100px !important;
  }
  .ml_lg--100 {
    margin-left: 100px !important;
  }
  .ptb_lg--105 {
    padding: 105px 0 !important;
  }
  .plr_lg--105 {
    padding: 0 105px !important;
  }
  .pt_lg--105 {
    padding-top: 105px !important;
  }
  .pb_lg--105 {
    padding-bottom: 105px !important;
  }
  .pl_lg--105 {
    padding-left: 105px !important;
  }
  .pr_lg--105 {
    padding-right: 105px !important;
  }
  .mt_lg--105 {
    margin-top: 105px !important;
  }
  .mb_lg--105 {
    margin-bottom: 105px !important;
  }
  .ml_lg--105 {
    margin-left: 105px !important;
  }
  .ptb_lg--110 {
    padding: 110px 0 !important;
  }
  .plr_lg--110 {
    padding: 0 110px !important;
  }
  .pt_lg--110 {
    padding-top: 110px !important;
  }
  .pb_lg--110 {
    padding-bottom: 110px !important;
  }
  .pl_lg--110 {
    padding-left: 110px !important;
  }
  .pr_lg--110 {
    padding-right: 110px !important;
  }
  .mt_lg--110 {
    margin-top: 110px !important;
  }
  .mb_lg--110 {
    margin-bottom: 110px !important;
  }
  .ml_lg--110 {
    margin-left: 110px !important;
  }
  .ptb_lg--115 {
    padding: 115px 0 !important;
  }
  .plr_lg--115 {
    padding: 0 115px !important;
  }
  .pt_lg--115 {
    padding-top: 115px !important;
  }
  .pb_lg--115 {
    padding-bottom: 115px !important;
  }
  .pl_lg--115 {
    padding-left: 115px !important;
  }
  .pr_lg--115 {
    padding-right: 115px !important;
  }
  .mt_lg--115 {
    margin-top: 115px !important;
  }
  .mb_lg--115 {
    margin-bottom: 115px !important;
  }
  .ml_lg--115 {
    margin-left: 115px !important;
  }
  .ptb_lg--120 {
    padding: 120px 0 !important;
  }
  .plr_lg--120 {
    padding: 0 120px !important;
  }
  .pt_lg--120 {
    padding-top: 120px !important;
  }
  .pb_lg--120 {
    padding-bottom: 120px !important;
  }
  .pl_lg--120 {
    padding-left: 120px !important;
  }
  .pr_lg--120 {
    padding-right: 120px !important;
  }
  .mt_lg--120 {
    margin-top: 120px !important;
  }
  .mb_lg--120 {
    margin-bottom: 120px !important;
  }
  .ml_lg--120 {
    margin-left: 120px !important;
  }
  .ptb_lg--125 {
    padding: 125px 0 !important;
  }
  .plr_lg--125 {
    padding: 0 125px !important;
  }
  .pt_lg--125 {
    padding-top: 125px !important;
  }
  .pb_lg--125 {
    padding-bottom: 125px !important;
  }
  .pl_lg--125 {
    padding-left: 125px !important;
  }
  .pr_lg--125 {
    padding-right: 125px !important;
  }
  .mt_lg--125 {
    margin-top: 125px !important;
  }
  .mb_lg--125 {
    margin-bottom: 125px !important;
  }
  .ml_lg--125 {
    margin-left: 125px !important;
  }
  .ptb_lg--130 {
    padding: 130px 0 !important;
  }
  .plr_lg--130 {
    padding: 0 130px !important;
  }
  .pt_lg--130 {
    padding-top: 130px !important;
  }
  .pb_lg--130 {
    padding-bottom: 130px !important;
  }
  .pl_lg--130 {
    padding-left: 130px !important;
  }
  .pr_lg--130 {
    padding-right: 130px !important;
  }
  .mt_lg--130 {
    margin-top: 130px !important;
  }
  .mb_lg--130 {
    margin-bottom: 130px !important;
  }
  .ml_lg--130 {
    margin-left: 130px !important;
  }
  .ptb_lg--135 {
    padding: 135px 0 !important;
  }
  .plr_lg--135 {
    padding: 0 135px !important;
  }
  .pt_lg--135 {
    padding-top: 135px !important;
  }
  .pb_lg--135 {
    padding-bottom: 135px !important;
  }
  .pl_lg--135 {
    padding-left: 135px !important;
  }
  .pr_lg--135 {
    padding-right: 135px !important;
  }
  .mt_lg--135 {
    margin-top: 135px !important;
  }
  .mb_lg--135 {
    margin-bottom: 135px !important;
  }
  .ml_lg--135 {
    margin-left: 135px !important;
  }
  .ptb_lg--140 {
    padding: 140px 0 !important;
  }
  .plr_lg--140 {
    padding: 0 140px !important;
  }
  .pt_lg--140 {
    padding-top: 140px !important;
  }
  .pb_lg--140 {
    padding-bottom: 140px !important;
  }
  .pl_lg--140 {
    padding-left: 140px !important;
  }
  .pr_lg--140 {
    padding-right: 140px !important;
  }
  .mt_lg--140 {
    margin-top: 140px !important;
  }
  .mb_lg--140 {
    margin-bottom: 140px !important;
  }
  .ml_lg--140 {
    margin-left: 140px !important;
  }
  .ptb_lg--145 {
    padding: 145px 0 !important;
  }
  .plr_lg--145 {
    padding: 0 145px !important;
  }
  .pt_lg--145 {
    padding-top: 145px !important;
  }
  .pb_lg--145 {
    padding-bottom: 145px !important;
  }
  .pl_lg--145 {
    padding-left: 145px !important;
  }
  .pr_lg--145 {
    padding-right: 145px !important;
  }
  .mt_lg--145 {
    margin-top: 145px !important;
  }
  .mb_lg--145 {
    margin-bottom: 145px !important;
  }
  .ml_lg--145 {
    margin-left: 145px !important;
  }
  .ptb_lg--150 {
    padding: 150px 0 !important;
  }
  .plr_lg--150 {
    padding: 0 150px !important;
  }
  .pt_lg--150 {
    padding-top: 150px !important;
  }
  .pb_lg--150 {
    padding-bottom: 150px !important;
  }
  .pl_lg--150 {
    padding-left: 150px !important;
  }
  .pr_lg--150 {
    padding-right: 150px !important;
  }
  .mt_lg--150 {
    margin-top: 150px !important;
  }
  .mb_lg--150 {
    margin-bottom: 150px !important;
  }
  .ml_lg--150 {
    margin-left: 150px !important;
  }
  .ptb_lg--155 {
    padding: 155px 0 !important;
  }
  .plr_lg--155 {
    padding: 0 155px !important;
  }
  .pt_lg--155 {
    padding-top: 155px !important;
  }
  .pb_lg--155 {
    padding-bottom: 155px !important;
  }
  .pl_lg--155 {
    padding-left: 155px !important;
  }
  .pr_lg--155 {
    padding-right: 155px !important;
  }
  .mt_lg--155 {
    margin-top: 155px !important;
  }
  .mb_lg--155 {
    margin-bottom: 155px !important;
  }
  .ml_lg--155 {
    margin-left: 155px !important;
  }
  .ptb_lg--160 {
    padding: 160px 0 !important;
  }
  .plr_lg--160 {
    padding: 0 160px !important;
  }
  .pt_lg--160 {
    padding-top: 160px !important;
  }
  .pb_lg--160 {
    padding-bottom: 160px !important;
  }
  .pl_lg--160 {
    padding-left: 160px !important;
  }
  .pr_lg--160 {
    padding-right: 160px !important;
  }
  .mt_lg--160 {
    margin-top: 160px !important;
  }
  .mb_lg--160 {
    margin-bottom: 160px !important;
  }
  .ml_lg--160 {
    margin-left: 160px !important;
  }
  .ptb_lg--165 {
    padding: 165px 0 !important;
  }
  .plr_lg--165 {
    padding: 0 165px !important;
  }
  .pt_lg--165 {
    padding-top: 165px !important;
  }
  .pb_lg--165 {
    padding-bottom: 165px !important;
  }
  .pl_lg--165 {
    padding-left: 165px !important;
  }
  .pr_lg--165 {
    padding-right: 165px !important;
  }
  .mt_lg--165 {
    margin-top: 165px !important;
  }
  .mb_lg--165 {
    margin-bottom: 165px !important;
  }
  .ml_lg--165 {
    margin-left: 165px !important;
  }
  .ptb_lg--170 {
    padding: 170px 0 !important;
  }
  .plr_lg--170 {
    padding: 0 170px !important;
  }
  .pt_lg--170 {
    padding-top: 170px !important;
  }
  .pb_lg--170 {
    padding-bottom: 170px !important;
  }
  .pl_lg--170 {
    padding-left: 170px !important;
  }
  .pr_lg--170 {
    padding-right: 170px !important;
  }
  .mt_lg--170 {
    margin-top: 170px !important;
  }
  .mb_lg--170 {
    margin-bottom: 170px !important;
  }
  .ml_lg--170 {
    margin-left: 170px !important;
  }
  .ptb_lg--175 {
    padding: 175px 0 !important;
  }
  .plr_lg--175 {
    padding: 0 175px !important;
  }
  .pt_lg--175 {
    padding-top: 175px !important;
  }
  .pb_lg--175 {
    padding-bottom: 175px !important;
  }
  .pl_lg--175 {
    padding-left: 175px !important;
  }
  .pr_lg--175 {
    padding-right: 175px !important;
  }
  .mt_lg--175 {
    margin-top: 175px !important;
  }
  .mb_lg--175 {
    margin-bottom: 175px !important;
  }
  .ml_lg--175 {
    margin-left: 175px !important;
  }
  .ptb_lg--180 {
    padding: 180px 0 !important;
  }
  .plr_lg--180 {
    padding: 0 180px !important;
  }
  .pt_lg--180 {
    padding-top: 180px !important;
  }
  .pb_lg--180 {
    padding-bottom: 180px !important;
  }
  .pl_lg--180 {
    padding-left: 180px !important;
  }
  .pr_lg--180 {
    padding-right: 180px !important;
  }
  .mt_lg--180 {
    margin-top: 180px !important;
  }
  .mb_lg--180 {
    margin-bottom: 180px !important;
  }
  .ml_lg--180 {
    margin-left: 180px !important;
  }
  .ptb_lg--185 {
    padding: 185px 0 !important;
  }
  .plr_lg--185 {
    padding: 0 185px !important;
  }
  .pt_lg--185 {
    padding-top: 185px !important;
  }
  .pb_lg--185 {
    padding-bottom: 185px !important;
  }
  .pl_lg--185 {
    padding-left: 185px !important;
  }
  .pr_lg--185 {
    padding-right: 185px !important;
  }
  .mt_lg--185 {
    margin-top: 185px !important;
  }
  .mb_lg--185 {
    margin-bottom: 185px !important;
  }
  .ml_lg--185 {
    margin-left: 185px !important;
  }
  .ptb_lg--190 {
    padding: 190px 0 !important;
  }
  .plr_lg--190 {
    padding: 0 190px !important;
  }
  .pt_lg--190 {
    padding-top: 190px !important;
  }
  .pb_lg--190 {
    padding-bottom: 190px !important;
  }
  .pl_lg--190 {
    padding-left: 190px !important;
  }
  .pr_lg--190 {
    padding-right: 190px !important;
  }
  .mt_lg--190 {
    margin-top: 190px !important;
  }
  .mb_lg--190 {
    margin-bottom: 190px !important;
  }
  .ml_lg--190 {
    margin-left: 190px !important;
  }
  .ptb_lg--195 {
    padding: 195px 0 !important;
  }
  .plr_lg--195 {
    padding: 0 195px !important;
  }
  .pt_lg--195 {
    padding-top: 195px !important;
  }
  .pb_lg--195 {
    padding-bottom: 195px !important;
  }
  .pl_lg--195 {
    padding-left: 195px !important;
  }
  .pr_lg--195 {
    padding-right: 195px !important;
  }
  .mt_lg--195 {
    margin-top: 195px !important;
  }
  .mb_lg--195 {
    margin-bottom: 195px !important;
  }
  .ml_lg--195 {
    margin-left: 195px !important;
  }
  .ptb_lg--200 {
    padding: 200px 0 !important;
  }
  .plr_lg--200 {
    padding: 0 200px !important;
  }
  .pt_lg--200 {
    padding-top: 200px !important;
  }
  .pb_lg--200 {
    padding-bottom: 200px !important;
  }
  .pl_lg--200 {
    padding-left: 200px !important;
  }
  .pr_lg--200 {
    padding-right: 200px !important;
  }
  .mt_lg--200 {
    margin-top: 200px !important;
  }
  .mb_lg--200 {
    margin-bottom: 200px !important;
  }
  .ml_lg--200 {
    margin-left: 200px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb_md--0 {
    padding: 0 !important;
  }
  .pl_md--0 {
    padding-left: 0 !important;
  }
  .pr_md--0 {
    padding-right: 0 !important;
  }
  .pt_md--0 {
    padding-top: 0 !important;
  }
  .pb_md--0 {
    padding-bottom: 0 !important;
  }
  .mr_md--0 {
    margin-right: 0 !important;
  }
  .ml_md--0 {
    margin-left: 0 !important;
  }
  .mt_md--0 {
    margin-top: 0 !important;
  }
  .mb_md--0 {
    margin-bottom: 0 !important;
  }
  .ptb_md--250 {
    padding: 250px 0 !important;
  }
  .ptb_md--5 {
    padding: 5px 0 !important;
  }
  .plr_md--5 {
    padding: 0 5px !important;
  }
  .pt_md--5 {
    padding-top: 5px !important;
  }
  .pb_md--5 {
    padding-bottom: 5px !important;
  }
  .pl_md--5 {
    padding-left: 5px !important;
  }
  .pr_md--5 {
    padding-right: 5px !important;
  }
  .mt_md--5 {
    margin-top: 5px !important;
  }
  .mb_md--5 {
    margin-bottom: 5px !important;
  }
  .ptb_md--10 {
    padding: 10px 0 !important;
  }
  .plr_md--10 {
    padding: 0 10px !important;
  }
  .pt_md--10 {
    padding-top: 10px !important;
  }
  .pb_md--10 {
    padding-bottom: 10px !important;
  }
  .pl_md--10 {
    padding-left: 10px !important;
  }
  .pr_md--10 {
    padding-right: 10px !important;
  }
  .mt_md--10 {
    margin-top: 10px !important;
  }
  .mb_md--10 {
    margin-bottom: 10px !important;
  }
  .ptb_md--15 {
    padding: 15px 0 !important;
  }
  .plr_md--15 {
    padding: 0 15px !important;
  }
  .pt_md--15 {
    padding-top: 15px !important;
  }
  .pb_md--15 {
    padding-bottom: 15px !important;
  }
  .pl_md--15 {
    padding-left: 15px !important;
  }
  .pr_md--15 {
    padding-right: 15px !important;
  }
  .mt_md--15 {
    margin-top: 15px !important;
  }
  .mb_md--15 {
    margin-bottom: 15px !important;
  }
  .ptb_md--20 {
    padding: 20px 0 !important;
  }
  .plr_md--20 {
    padding: 0 20px !important;
  }
  .pt_md--20 {
    padding-top: 20px !important;
  }
  .pb_md--20 {
    padding-bottom: 20px !important;
  }
  .pl_md--20 {
    padding-left: 20px !important;
  }
  .pr_md--20 {
    padding-right: 20px !important;
  }
  .mt_md--20 {
    margin-top: 20px !important;
  }
  .mb_md--20 {
    margin-bottom: 20px !important;
  }
  .ptb_md--25 {
    padding: 25px 0 !important;
  }
  .plr_md--25 {
    padding: 0 25px !important;
  }
  .pt_md--25 {
    padding-top: 25px !important;
  }
  .pb_md--25 {
    padding-bottom: 25px !important;
  }
  .pl_md--25 {
    padding-left: 25px !important;
  }
  .pr_md--25 {
    padding-right: 25px !important;
  }
  .mt_md--25 {
    margin-top: 25px !important;
  }
  .mb_md--25 {
    margin-bottom: 25px !important;
  }
  .ptb_md--30 {
    padding: 30px 0 !important;
  }
  .plr_md--30 {
    padding: 0 30px !important;
  }
  .pt_md--30 {
    padding-top: 30px !important;
  }
  .pb_md--30 {
    padding-bottom: 30px !important;
  }
  .pl_md--30 {
    padding-left: 30px !important;
  }
  .pr_md--30 {
    padding-right: 30px !important;
  }
  .mt_md--30 {
    margin-top: 30px !important;
  }
  .mb_md--30 {
    margin-bottom: 30px !important;
  }
  .ptb_md--35 {
    padding: 35px 0 !important;
  }
  .plr_md--35 {
    padding: 0 35px !important;
  }
  .pt_md--35 {
    padding-top: 35px !important;
  }
  .pb_md--35 {
    padding-bottom: 35px !important;
  }
  .pl_md--35 {
    padding-left: 35px !important;
  }
  .pr_md--35 {
    padding-right: 35px !important;
  }
  .mt_md--35 {
    margin-top: 35px !important;
  }
  .mb_md--35 {
    margin-bottom: 35px !important;
  }
  .ptb_md--40 {
    padding: 40px 0 !important;
  }
  .plr_md--40 {
    padding: 0 40px !important;
  }
  .pt_md--40 {
    padding-top: 40px !important;
  }
  .pb_md--40 {
    padding-bottom: 40px !important;
  }
  .pl_md--40 {
    padding-left: 40px !important;
  }
  .pr_md--40 {
    padding-right: 40px !important;
  }
  .mt_md--40 {
    margin-top: 40px !important;
  }
  .mb_md--40 {
    margin-bottom: 40px !important;
  }
  .ptb_md--45 {
    padding: 45px 0 !important;
  }
  .plr_md--45 {
    padding: 0 45px !important;
  }
  .pt_md--45 {
    padding-top: 45px !important;
  }
  .pb_md--45 {
    padding-bottom: 45px !important;
  }
  .pl_md--45 {
    padding-left: 45px !important;
  }
  .pr_md--45 {
    padding-right: 45px !important;
  }
  .mt_md--45 {
    margin-top: 45px !important;
  }
  .mb_md--45 {
    margin-bottom: 45px !important;
  }
  .ptb_md--50 {
    padding: 50px 0 !important;
  }
  .plr_md--50 {
    padding: 0 50px !important;
  }
  .pt_md--50 {
    padding-top: 50px !important;
  }
  .pb_md--50 {
    padding-bottom: 50px !important;
  }
  .pl_md--50 {
    padding-left: 50px !important;
  }
  .pr_md--50 {
    padding-right: 50px !important;
  }
  .mt_md--50 {
    margin-top: 50px !important;
  }
  .mb_md--50 {
    margin-bottom: 50px !important;
  }
  .ptb_md--55 {
    padding: 55px 0 !important;
  }
  .plr_md--55 {
    padding: 0 55px !important;
  }
  .pt_md--55 {
    padding-top: 55px !important;
  }
  .pb_md--55 {
    padding-bottom: 55px !important;
  }
  .pl_md--55 {
    padding-left: 55px !important;
  }
  .pr_md--55 {
    padding-right: 55px !important;
  }
  .mt_md--55 {
    margin-top: 55px !important;
  }
  .mb_md--55 {
    margin-bottom: 55px !important;
  }
  .ptb_md--60 {
    padding: 60px 0 !important;
  }
  .plr_md--60 {
    padding: 0 60px !important;
  }
  .pt_md--60 {
    padding-top: 60px !important;
  }
  .pb_md--60 {
    padding-bottom: 60px !important;
  }
  .pl_md--60 {
    padding-left: 60px !important;
  }
  .pr_md--60 {
    padding-right: 60px !important;
  }
  .mt_md--60 {
    margin-top: 60px !important;
  }
  .mb_md--60 {
    margin-bottom: 60px !important;
  }
  .ptb_md--65 {
    padding: 65px 0 !important;
  }
  .plr_md--65 {
    padding: 0 65px !important;
  }
  .pt_md--65 {
    padding-top: 65px !important;
  }
  .pb_md--65 {
    padding-bottom: 65px !important;
  }
  .pl_md--65 {
    padding-left: 65px !important;
  }
  .pr_md--65 {
    padding-right: 65px !important;
  }
  .mt_md--65 {
    margin-top: 65px !important;
  }
  .mb_md--65 {
    margin-bottom: 65px !important;
  }
  .ptb_md--70 {
    padding: 70px 0 !important;
  }
  .plr_md--70 {
    padding: 0 70px !important;
  }
  .pt_md--70 {
    padding-top: 70px !important;
  }
  .pb_md--70 {
    padding-bottom: 70px !important;
  }
  .pl_md--70 {
    padding-left: 70px !important;
  }
  .pr_md--70 {
    padding-right: 70px !important;
  }
  .mt_md--70 {
    margin-top: 70px !important;
  }
  .mb_md--70 {
    margin-bottom: 70px !important;
  }
  .ptb_md--75 {
    padding: 75px 0 !important;
  }
  .plr_md--75 {
    padding: 0 75px !important;
  }
  .pt_md--75 {
    padding-top: 75px !important;
  }
  .pb_md--75 {
    padding-bottom: 75px !important;
  }
  .pl_md--75 {
    padding-left: 75px !important;
  }
  .pr_md--75 {
    padding-right: 75px !important;
  }
  .mt_md--75 {
    margin-top: 75px !important;
  }
  .mb_md--75 {
    margin-bottom: 75px !important;
  }
  .ptb_md--80 {
    padding: 80px 0 !important;
  }
  .plr_md--80 {
    padding: 0 80px !important;
  }
  .pt_md--80 {
    padding-top: 80px !important;
  }
  .pb_md--80 {
    padding-bottom: 80px !important;
  }
  .pl_md--80 {
    padding-left: 80px !important;
  }
  .pr_md--80 {
    padding-right: 80px !important;
  }
  .mt_md--80 {
    margin-top: 80px !important;
  }
  .mb_md--80 {
    margin-bottom: 80px !important;
  }
  .ptb_md--85 {
    padding: 85px 0 !important;
  }
  .plr_md--85 {
    padding: 0 85px !important;
  }
  .pt_md--85 {
    padding-top: 85px !important;
  }
  .pb_md--85 {
    padding-bottom: 85px !important;
  }
  .pl_md--85 {
    padding-left: 85px !important;
  }
  .pr_md--85 {
    padding-right: 85px !important;
  }
  .mt_md--85 {
    margin-top: 85px !important;
  }
  .mb_md--85 {
    margin-bottom: 85px !important;
  }
  .ptb_md--90 {
    padding: 90px 0 !important;
  }
  .plr_md--90 {
    padding: 0 90px !important;
  }
  .pt_md--90 {
    padding-top: 90px !important;
  }
  .pb_md--90 {
    padding-bottom: 90px !important;
  }
  .pl_md--90 {
    padding-left: 90px !important;
  }
  .pr_md--90 {
    padding-right: 90px !important;
  }
  .mt_md--90 {
    margin-top: 90px !important;
  }
  .mb_md--90 {
    margin-bottom: 90px !important;
  }
  .ptb_md--95 {
    padding: 95px 0 !important;
  }
  .plr_md--95 {
    padding: 0 95px !important;
  }
  .pt_md--95 {
    padding-top: 95px !important;
  }
  .pb_md--95 {
    padding-bottom: 95px !important;
  }
  .pl_md--95 {
    padding-left: 95px !important;
  }
  .pr_md--95 {
    padding-right: 95px !important;
  }
  .mt_md--95 {
    margin-top: 95px !important;
  }
  .mb_md--95 {
    margin-bottom: 95px !important;
  }
  .ptb_md--100 {
    padding: 100px 0 !important;
  }
  .plr_md--100 {
    padding: 0 100px !important;
  }
  .pt_md--100 {
    padding-top: 100px !important;
  }
  .pb_md--100 {
    padding-bottom: 100px !important;
  }
  .pl_md--100 {
    padding-left: 100px !important;
  }
  .pr_md--100 {
    padding-right: 100px !important;
  }
  .mt_md--100 {
    margin-top: 100px !important;
  }
  .mb_md--100 {
    margin-bottom: 100px !important;
  }
  .ptb_md--105 {
    padding: 105px 0 !important;
  }
  .plr_md--105 {
    padding: 0 105px !important;
  }
  .pt_md--105 {
    padding-top: 105px !important;
  }
  .pb_md--105 {
    padding-bottom: 105px !important;
  }
  .pl_md--105 {
    padding-left: 105px !important;
  }
  .pr_md--105 {
    padding-right: 105px !important;
  }
  .mt_md--105 {
    margin-top: 105px !important;
  }
  .mb_md--105 {
    margin-bottom: 105px !important;
  }
  .ptb_md--110 {
    padding: 110px 0 !important;
  }
  .plr_md--110 {
    padding: 0 110px !important;
  }
  .pt_md--110 {
    padding-top: 110px !important;
  }
  .pb_md--110 {
    padding-bottom: 110px !important;
  }
  .pl_md--110 {
    padding-left: 110px !important;
  }
  .pr_md--110 {
    padding-right: 110px !important;
  }
  .mt_md--110 {
    margin-top: 110px !important;
  }
  .mb_md--110 {
    margin-bottom: 110px !important;
  }
  .ptb_md--115 {
    padding: 115px 0 !important;
  }
  .plr_md--115 {
    padding: 0 115px !important;
  }
  .pt_md--115 {
    padding-top: 115px !important;
  }
  .pb_md--115 {
    padding-bottom: 115px !important;
  }
  .pl_md--115 {
    padding-left: 115px !important;
  }
  .pr_md--115 {
    padding-right: 115px !important;
  }
  .mt_md--115 {
    margin-top: 115px !important;
  }
  .mb_md--115 {
    margin-bottom: 115px !important;
  }
  .ptb_md--120 {
    padding: 120px 0 !important;
  }
  .plr_md--120 {
    padding: 0 120px !important;
  }
  .pt_md--120 {
    padding-top: 120px !important;
  }
  .pb_md--120 {
    padding-bottom: 120px !important;
  }
  .pl_md--120 {
    padding-left: 120px !important;
  }
  .pr_md--120 {
    padding-right: 120px !important;
  }
  .mt_md--120 {
    margin-top: 120px !important;
  }
  .mb_md--120 {
    margin-bottom: 120px !important;
  }
  .ptb_md--125 {
    padding: 125px 0 !important;
  }
  .plr_md--125 {
    padding: 0 125px !important;
  }
  .pt_md--125 {
    padding-top: 125px !important;
  }
  .pb_md--125 {
    padding-bottom: 125px !important;
  }
  .pl_md--125 {
    padding-left: 125px !important;
  }
  .pr_md--125 {
    padding-right: 125px !important;
  }
  .mt_md--125 {
    margin-top: 125px !important;
  }
  .mb_md--125 {
    margin-bottom: 125px !important;
  }
  .ptb_md--130 {
    padding: 130px 0 !important;
  }
  .plr_md--130 {
    padding: 0 130px !important;
  }
  .pt_md--130 {
    padding-top: 130px !important;
  }
  .pb_md--130 {
    padding-bottom: 130px !important;
  }
  .pl_md--130 {
    padding-left: 130px !important;
  }
  .pr_md--130 {
    padding-right: 130px !important;
  }
  .mt_md--130 {
    margin-top: 130px !important;
  }
  .mb_md--130 {
    margin-bottom: 130px !important;
  }
  .ptb_md--135 {
    padding: 135px 0 !important;
  }
  .plr_md--135 {
    padding: 0 135px !important;
  }
  .pt_md--135 {
    padding-top: 135px !important;
  }
  .pb_md--135 {
    padding-bottom: 135px !important;
  }
  .pl_md--135 {
    padding-left: 135px !important;
  }
  .pr_md--135 {
    padding-right: 135px !important;
  }
  .mt_md--135 {
    margin-top: 135px !important;
  }
  .mb_md--135 {
    margin-bottom: 135px !important;
  }
  .ptb_md--140 {
    padding: 140px 0 !important;
  }
  .plr_md--140 {
    padding: 0 140px !important;
  }
  .pt_md--140 {
    padding-top: 140px !important;
  }
  .pb_md--140 {
    padding-bottom: 140px !important;
  }
  .pl_md--140 {
    padding-left: 140px !important;
  }
  .pr_md--140 {
    padding-right: 140px !important;
  }
  .mt_md--140 {
    margin-top: 140px !important;
  }
  .mb_md--140 {
    margin-bottom: 140px !important;
  }
  .ptb_md--145 {
    padding: 145px 0 !important;
  }
  .plr_md--145 {
    padding: 0 145px !important;
  }
  .pt_md--145 {
    padding-top: 145px !important;
  }
  .pb_md--145 {
    padding-bottom: 145px !important;
  }
  .pl_md--145 {
    padding-left: 145px !important;
  }
  .pr_md--145 {
    padding-right: 145px !important;
  }
  .mt_md--145 {
    margin-top: 145px !important;
  }
  .mb_md--145 {
    margin-bottom: 145px !important;
  }
  .ptb_md--150 {
    padding: 150px 0 !important;
  }
  .plr_md--150 {
    padding: 0 150px !important;
  }
  .pt_md--150 {
    padding-top: 150px !important;
  }
  .pb_md--150 {
    padding-bottom: 150px !important;
  }
  .pl_md--150 {
    padding-left: 150px !important;
  }
  .pr_md--150 {
    padding-right: 150px !important;
  }
  .mt_md--150 {
    margin-top: 150px !important;
  }
  .mb_md--150 {
    margin-bottom: 150px !important;
  }
  .ptb_md--155 {
    padding: 155px 0 !important;
  }
  .plr_md--155 {
    padding: 0 155px !important;
  }
  .pt_md--155 {
    padding-top: 155px !important;
  }
  .pb_md--155 {
    padding-bottom: 155px !important;
  }
  .pl_md--155 {
    padding-left: 155px !important;
  }
  .pr_md--155 {
    padding-right: 155px !important;
  }
  .mt_md--155 {
    margin-top: 155px !important;
  }
  .mb_md--155 {
    margin-bottom: 155px !important;
  }
  .ptb_md--160 {
    padding: 160px 0 !important;
  }
  .plr_md--160 {
    padding: 0 160px !important;
  }
  .pt_md--160 {
    padding-top: 160px !important;
  }
  .pb_md--160 {
    padding-bottom: 160px !important;
  }
  .pl_md--160 {
    padding-left: 160px !important;
  }
  .pr_md--160 {
    padding-right: 160px !important;
  }
  .mt_md--160 {
    margin-top: 160px !important;
  }
  .mb_md--160 {
    margin-bottom: 160px !important;
  }
  .ptb_md--165 {
    padding: 165px 0 !important;
  }
  .plr_md--165 {
    padding: 0 165px !important;
  }
  .pt_md--165 {
    padding-top: 165px !important;
  }
  .pb_md--165 {
    padding-bottom: 165px !important;
  }
  .pl_md--165 {
    padding-left: 165px !important;
  }
  .pr_md--165 {
    padding-right: 165px !important;
  }
  .mt_md--165 {
    margin-top: 165px !important;
  }
  .mb_md--165 {
    margin-bottom: 165px !important;
  }
  .ptb_md--170 {
    padding: 170px 0 !important;
  }
  .plr_md--170 {
    padding: 0 170px !important;
  }
  .pt_md--170 {
    padding-top: 170px !important;
  }
  .pb_md--170 {
    padding-bottom: 170px !important;
  }
  .pl_md--170 {
    padding-left: 170px !important;
  }
  .pr_md--170 {
    padding-right: 170px !important;
  }
  .mt_md--170 {
    margin-top: 170px !important;
  }
  .mb_md--170 {
    margin-bottom: 170px !important;
  }
  .ptb_md--175 {
    padding: 175px 0 !important;
  }
  .plr_md--175 {
    padding: 0 175px !important;
  }
  .pt_md--175 {
    padding-top: 175px !important;
  }
  .pb_md--175 {
    padding-bottom: 175px !important;
  }
  .pl_md--175 {
    padding-left: 175px !important;
  }
  .pr_md--175 {
    padding-right: 175px !important;
  }
  .mt_md--175 {
    margin-top: 175px !important;
  }
  .mb_md--175 {
    margin-bottom: 175px !important;
  }
  .ptb_md--180 {
    padding: 180px 0 !important;
  }
  .plr_md--180 {
    padding: 0 180px !important;
  }
  .pt_md--180 {
    padding-top: 180px !important;
  }
  .pb_md--180 {
    padding-bottom: 180px !important;
  }
  .pl_md--180 {
    padding-left: 180px !important;
  }
  .pr_md--180 {
    padding-right: 180px !important;
  }
  .mt_md--180 {
    margin-top: 180px !important;
  }
  .mb_md--180 {
    margin-bottom: 180px !important;
  }
  .ptb_md--185 {
    padding: 185px 0 !important;
  }
  .plr_md--185 {
    padding: 0 185px !important;
  }
  .pt_md--185 {
    padding-top: 185px !important;
  }
  .pb_md--185 {
    padding-bottom: 185px !important;
  }
  .pl_md--185 {
    padding-left: 185px !important;
  }
  .pr_md--185 {
    padding-right: 185px !important;
  }
  .mt_md--185 {
    margin-top: 185px !important;
  }
  .mb_md--185 {
    margin-bottom: 185px !important;
  }
  .ptb_md--190 {
    padding: 190px 0 !important;
  }
  .plr_md--190 {
    padding: 0 190px !important;
  }
  .pt_md--190 {
    padding-top: 190px !important;
  }
  .pb_md--190 {
    padding-bottom: 190px !important;
  }
  .pl_md--190 {
    padding-left: 190px !important;
  }
  .pr_md--190 {
    padding-right: 190px !important;
  }
  .mt_md--190 {
    margin-top: 190px !important;
  }
  .mb_md--190 {
    margin-bottom: 190px !important;
  }
  .ptb_md--195 {
    padding: 195px 0 !important;
  }
  .plr_md--195 {
    padding: 0 195px !important;
  }
  .pt_md--195 {
    padding-top: 195px !important;
  }
  .pb_md--195 {
    padding-bottom: 195px !important;
  }
  .pl_md--195 {
    padding-left: 195px !important;
  }
  .pr_md--195 {
    padding-right: 195px !important;
  }
  .mt_md--195 {
    margin-top: 195px !important;
  }
  .mb_md--195 {
    margin-bottom: 195px !important;
  }
  .ptb_md--200 {
    padding: 200px 0 !important;
  }
  .plr_md--200 {
    padding: 0 200px !important;
  }
  .pt_md--200 {
    padding-top: 200px !important;
  }
  .pb_md--200 {
    padding-bottom: 200px !important;
  }
  .pl_md--200 {
    padding-left: 200px !important;
  }
  .pr_md--200 {
    padding-right: 200px !important;
  }
  .mt_md--200 {
    margin-top: 200px !important;
  }
  .mb_md--200 {
    margin-bottom: 200px !important;
  }
}
@media only screen and (max-width: 767px) {
  .ptb_sm--250 {
    padding: 250px 0 !important;
  }
  .ptb_sm--0 {
    padding: 0 !important;
  }
  .pl_sm--0 {
    padding-left: 0 !important;
  }
  .pr_sm--0 {
    padding-right: 0 !important;
  }
  .pt_sm--0 {
    padding-top: 0 !important;
  }
  .pb_sm--0 {
    padding-bottom: 0 !important;
  }
  .mr_sm--0 {
    margin-right: 0 !important;
  }
  .ml_sm--0 {
    margin-left: 0 !important;
  }
  .mt_sm--0 {
    margin-top: 0 !important;
  }
  .mb_sm--0 {
    margin-bottom: 0 !important;
  }
  .pt_sm--150 {
    padding-top: 150px !important;
  }
  .pb_sm--110 {
    padding-bottom: 110px !important;
  }
  .ptb_sm--5 {
    padding: 5px 0 !important;
  }
  .plr_sm--5 {
    padding: 0 5px !important;
  }
  .pt_sm--5 {
    padding-top: 5px !important;
  }
  .pb_sm--5 {
    padding-bottom: 5px !important;
  }
  .pl_sm--5 {
    padding-left: 5px !important;
  }
  .pr_sm--5 {
    padding-right: 5px !important;
  }
  .mt_sm--5 {
    margin-top: 5px !important;
  }
  .ml_sm--5 {
    margin-left: 5px !important;
  }
  .mr_sm--5 {
    margin-right: 5px !important;
  }
  .mb_sm--5 {
    margin-bottom: 5px !important;
  }
  .ptb_sm--10 {
    padding: 10px 0 !important;
  }
  .plr_sm--10 {
    padding: 0 10px !important;
  }
  .pt_sm--10 {
    padding-top: 10px !important;
  }
  .pb_sm--10 {
    padding-bottom: 10px !important;
  }
  .pl_sm--10 {
    padding-left: 10px !important;
  }
  .pr_sm--10 {
    padding-right: 10px !important;
  }
  .mt_sm--10 {
    margin-top: 10px !important;
  }
  .ml_sm--10 {
    margin-left: 10px !important;
  }
  .mr_sm--10 {
    margin-right: 10px !important;
  }
  .mb_sm--10 {
    margin-bottom: 10px !important;
  }
  .ptb_sm--15 {
    padding: 15px 0 !important;
  }
  .plr_sm--15 {
    padding: 0 15px !important;
  }
  .pt_sm--15 {
    padding-top: 15px !important;
  }
  .pb_sm--15 {
    padding-bottom: 15px !important;
  }
  .pl_sm--15 {
    padding-left: 15px !important;
  }
  .pr_sm--15 {
    padding-right: 15px !important;
  }
  .mt_sm--15 {
    margin-top: 15px !important;
  }
  .ml_sm--15 {
    margin-left: 15px !important;
  }
  .mr_sm--15 {
    margin-right: 15px !important;
  }
  .mb_sm--15 {
    margin-bottom: 15px !important;
  }
  .ptb_sm--20 {
    padding: 20px 0 !important;
  }
  .plr_sm--20 {
    padding: 0 20px !important;
  }
  .pt_sm--20 {
    padding-top: 20px !important;
  }
  .pb_sm--20 {
    padding-bottom: 20px !important;
  }
  .pl_sm--20 {
    padding-left: 20px !important;
  }
  .pr_sm--20 {
    padding-right: 20px !important;
  }
  .mt_sm--20 {
    margin-top: 20px !important;
  }
  .ml_sm--20 {
    margin-left: 20px !important;
  }
  .mr_sm--20 {
    margin-right: 20px !important;
  }
  .mb_sm--20 {
    margin-bottom: 20px !important;
  }
  .ptb_sm--25 {
    padding: 25px 0 !important;
  }
  .plr_sm--25 {
    padding: 0 25px !important;
  }
  .pt_sm--25 {
    padding-top: 25px !important;
  }
  .pb_sm--25 {
    padding-bottom: 25px !important;
  }
  .pl_sm--25 {
    padding-left: 25px !important;
  }
  .pr_sm--25 {
    padding-right: 25px !important;
  }
  .mt_sm--25 {
    margin-top: 25px !important;
  }
  .ml_sm--25 {
    margin-left: 25px !important;
  }
  .mr_sm--25 {
    margin-right: 25px !important;
  }
  .mb_sm--25 {
    margin-bottom: 25px !important;
  }
  .ptb_sm--30 {
    padding: 30px 0 !important;
  }
  .plr_sm--30 {
    padding: 0 30px !important;
  }
  .pt_sm--30 {
    padding-top: 30px !important;
  }
  .pb_sm--30 {
    padding-bottom: 30px !important;
  }
  .pl_sm--30 {
    padding-left: 30px !important;
  }
  .pr_sm--30 {
    padding-right: 30px !important;
  }
  .mt_sm--30 {
    margin-top: 30px !important;
  }
  .ml_sm--30 {
    margin-left: 30px !important;
  }
  .mr_sm--30 {
    margin-right: 30px !important;
  }
  .mb_sm--30 {
    margin-bottom: 30px !important;
  }
  .ptb_sm--35 {
    padding: 35px 0 !important;
  }
  .plr_sm--35 {
    padding: 0 35px !important;
  }
  .pt_sm--35 {
    padding-top: 35px !important;
  }
  .pb_sm--35 {
    padding-bottom: 35px !important;
  }
  .pl_sm--35 {
    padding-left: 35px !important;
  }
  .pr_sm--35 {
    padding-right: 35px !important;
  }
  .mt_sm--35 {
    margin-top: 35px !important;
  }
  .ml_sm--35 {
    margin-left: 35px !important;
  }
  .mr_sm--35 {
    margin-right: 35px !important;
  }
  .mb_sm--35 {
    margin-bottom: 35px !important;
  }
  .ptb_sm--40 {
    padding: 40px 0 !important;
  }
  .plr_sm--40 {
    padding: 0 40px !important;
  }
  .pt_sm--40 {
    padding-top: 40px !important;
  }
  .pb_sm--40 {
    padding-bottom: 40px !important;
  }
  .pl_sm--40 {
    padding-left: 40px !important;
  }
  .pr_sm--40 {
    padding-right: 40px !important;
  }
  .mt_sm--40 {
    margin-top: 40px !important;
  }
  .ml_sm--40 {
    margin-left: 40px !important;
  }
  .mr_sm--40 {
    margin-right: 40px !important;
  }
  .mb_sm--40 {
    margin-bottom: 40px !important;
  }
  .ptb_sm--45 {
    padding: 45px 0 !important;
  }
  .plr_sm--45 {
    padding: 0 45px !important;
  }
  .pt_sm--45 {
    padding-top: 45px !important;
  }
  .pb_sm--45 {
    padding-bottom: 45px !important;
  }
  .pl_sm--45 {
    padding-left: 45px !important;
  }
  .pr_sm--45 {
    padding-right: 45px !important;
  }
  .mt_sm--45 {
    margin-top: 45px !important;
  }
  .ml_sm--45 {
    margin-left: 45px !important;
  }
  .mr_sm--45 {
    margin-right: 45px !important;
  }
  .mb_sm--45 {
    margin-bottom: 45px !important;
  }
  .ptb_sm--50 {
    padding: 50px 0 !important;
  }
  .plr_sm--50 {
    padding: 0 50px !important;
  }
  .pt_sm--50 {
    padding-top: 50px !important;
  }
  .pb_sm--50 {
    padding-bottom: 50px !important;
  }
  .pl_sm--50 {
    padding-left: 50px !important;
  }
  .pr_sm--50 {
    padding-right: 50px !important;
  }
  .mt_sm--50 {
    margin-top: 50px !important;
  }
  .ml_sm--50 {
    margin-left: 50px !important;
  }
  .mr_sm--50 {
    margin-right: 50px !important;
  }
  .mb_sm--50 {
    margin-bottom: 50px !important;
  }
  .ptb_sm--55 {
    padding: 55px 0 !important;
  }
  .plr_sm--55 {
    padding: 0 55px !important;
  }
  .pt_sm--55 {
    padding-top: 55px !important;
  }
  .pb_sm--55 {
    padding-bottom: 55px !important;
  }
  .pl_sm--55 {
    padding-left: 55px !important;
  }
  .pr_sm--55 {
    padding-right: 55px !important;
  }
  .mt_sm--55 {
    margin-top: 55px !important;
  }
  .ml_sm--55 {
    margin-left: 55px !important;
  }
  .mr_sm--55 {
    margin-right: 55px !important;
  }
  .mb_sm--55 {
    margin-bottom: 55px !important;
  }
  .ptb_sm--60 {
    padding: 60px 0 !important;
  }
  .plr_sm--60 {
    padding: 0 60px !important;
  }
  .pt_sm--60 {
    padding-top: 60px !important;
  }
  .pb_sm--60 {
    padding-bottom: 60px !important;
  }
  .pl_sm--60 {
    padding-left: 60px !important;
  }
  .pr_sm--60 {
    padding-right: 60px !important;
  }
  .mt_sm--60 {
    margin-top: 60px !important;
  }
  .ml_sm--60 {
    margin-left: 60px !important;
  }
  .mr_sm--60 {
    margin-right: 60px !important;
  }
  .mb_sm--60 {
    margin-bottom: 60px !important;
  }
  .ptb_sm--65 {
    padding: 65px 0 !important;
  }
  .plr_sm--65 {
    padding: 0 65px !important;
  }
  .pt_sm--65 {
    padding-top: 65px !important;
  }
  .pb_sm--65 {
    padding-bottom: 65px !important;
  }
  .pl_sm--65 {
    padding-left: 65px !important;
  }
  .pr_sm--65 {
    padding-right: 65px !important;
  }
  .mt_sm--65 {
    margin-top: 65px !important;
  }
  .ml_sm--65 {
    margin-left: 65px !important;
  }
  .mr_sm--65 {
    margin-right: 65px !important;
  }
  .mb_sm--65 {
    margin-bottom: 65px !important;
  }
  .ptb_sm--70 {
    padding: 70px 0 !important;
  }
  .plr_sm--70 {
    padding: 0 70px !important;
  }
  .pt_sm--70 {
    padding-top: 70px !important;
  }
  .pb_sm--70 {
    padding-bottom: 70px !important;
  }
  .pl_sm--70 {
    padding-left: 70px !important;
  }
  .pr_sm--70 {
    padding-right: 70px !important;
  }
  .mt_sm--70 {
    margin-top: 70px !important;
  }
  .ml_sm--70 {
    margin-left: 70px !important;
  }
  .mr_sm--70 {
    margin-right: 70px !important;
  }
  .mb_sm--70 {
    margin-bottom: 70px !important;
  }
  .ptb_sm--75 {
    padding: 75px 0 !important;
  }
  .plr_sm--75 {
    padding: 0 75px !important;
  }
  .pt_sm--75 {
    padding-top: 75px !important;
  }
  .pb_sm--75 {
    padding-bottom: 75px !important;
  }
  .pl_sm--75 {
    padding-left: 75px !important;
  }
  .pr_sm--75 {
    padding-right: 75px !important;
  }
  .mt_sm--75 {
    margin-top: 75px !important;
  }
  .ml_sm--75 {
    margin-left: 75px !important;
  }
  .mr_sm--75 {
    margin-right: 75px !important;
  }
  .mb_sm--75 {
    margin-bottom: 75px !important;
  }
  .ptb_sm--80 {
    padding: 80px 0 !important;
  }
  .plr_sm--80 {
    padding: 0 80px !important;
  }
  .pt_sm--80 {
    padding-top: 80px !important;
  }
  .pb_sm--80 {
    padding-bottom: 80px !important;
  }
  .pl_sm--80 {
    padding-left: 80px !important;
  }
  .pr_sm--80 {
    padding-right: 80px !important;
  }
  .mt_sm--80 {
    margin-top: 80px !important;
  }
  .ml_sm--80 {
    margin-left: 80px !important;
  }
  .mr_sm--80 {
    margin-right: 80px !important;
  }
  .mb_sm--80 {
    margin-bottom: 80px !important;
  }
  .ptb_sm--85 {
    padding: 85px 0 !important;
  }
  .plr_sm--85 {
    padding: 0 85px !important;
  }
  .pt_sm--85 {
    padding-top: 85px !important;
  }
  .pb_sm--85 {
    padding-bottom: 85px !important;
  }
  .pl_sm--85 {
    padding-left: 85px !important;
  }
  .pr_sm--85 {
    padding-right: 85px !important;
  }
  .mt_sm--85 {
    margin-top: 85px !important;
  }
  .ml_sm--85 {
    margin-left: 85px !important;
  }
  .mr_sm--85 {
    margin-right: 85px !important;
  }
  .mb_sm--85 {
    margin-bottom: 85px !important;
  }
  .ptb_sm--90 {
    padding: 90px 0 !important;
  }
  .plr_sm--90 {
    padding: 0 90px !important;
  }
  .pt_sm--90 {
    padding-top: 90px !important;
  }
  .pb_sm--90 {
    padding-bottom: 90px !important;
  }
  .pl_sm--90 {
    padding-left: 90px !important;
  }
  .pr_sm--90 {
    padding-right: 90px !important;
  }
  .mt_sm--90 {
    margin-top: 90px !important;
  }
  .ml_sm--90 {
    margin-left: 90px !important;
  }
  .mr_sm--90 {
    margin-right: 90px !important;
  }
  .mb_sm--90 {
    margin-bottom: 90px !important;
  }
  .ptb_sm--95 {
    padding: 95px 0 !important;
  }
  .plr_sm--95 {
    padding: 0 95px !important;
  }
  .pt_sm--95 {
    padding-top: 95px !important;
  }
  .pb_sm--95 {
    padding-bottom: 95px !important;
  }
  .pl_sm--95 {
    padding-left: 95px !important;
  }
  .pr_sm--95 {
    padding-right: 95px !important;
  }
  .mt_sm--95 {
    margin-top: 95px !important;
  }
  .ml_sm--95 {
    margin-left: 95px !important;
  }
  .mr_sm--95 {
    margin-right: 95px !important;
  }
  .mb_sm--95 {
    margin-bottom: 95px !important;
  }
  .ptb_sm--100 {
    padding: 100px 0 !important;
  }
  .plr_sm--100 {
    padding: 0 100px !important;
  }
  .pt_sm--100 {
    padding-top: 100px !important;
  }
  .pb_sm--100 {
    padding-bottom: 100px !important;
  }
  .pl_sm--100 {
    padding-left: 100px !important;
  }
  .pr_sm--100 {
    padding-right: 100px !important;
  }
  .mt_sm--100 {
    margin-top: 100px !important;
  }
  .ml_sm--100 {
    margin-left: 100px !important;
  }
  .mr_sm--100 {
    margin-right: 100px !important;
  }
  .mb_sm--100 {
    margin-bottom: 100px !important;
  }
  .ptb_sm--105 {
    padding: 105px 0 !important;
  }
  .plr_sm--105 {
    padding: 0 105px !important;
  }
  .pt_sm--105 {
    padding-top: 105px !important;
  }
  .pb_sm--105 {
    padding-bottom: 105px !important;
  }
  .pl_sm--105 {
    padding-left: 105px !important;
  }
  .pr_sm--105 {
    padding-right: 105px !important;
  }
  .mt_sm--105 {
    margin-top: 105px !important;
  }
  .ml_sm--105 {
    margin-left: 105px !important;
  }
  .mr_sm--105 {
    margin-right: 105px !important;
  }
  .mb_sm--105 {
    margin-bottom: 105px !important;
  }
  .ptb_sm--110 {
    padding: 110px 0 !important;
  }
  .plr_sm--110 {
    padding: 0 110px !important;
  }
  .pt_sm--110 {
    padding-top: 110px !important;
  }
  .pb_sm--110 {
    padding-bottom: 110px !important;
  }
  .pl_sm--110 {
    padding-left: 110px !important;
  }
  .pr_sm--110 {
    padding-right: 110px !important;
  }
  .mt_sm--110 {
    margin-top: 110px !important;
  }
  .ml_sm--110 {
    margin-left: 110px !important;
  }
  .mr_sm--110 {
    margin-right: 110px !important;
  }
  .mb_sm--110 {
    margin-bottom: 110px !important;
  }
  .ptb_sm--115 {
    padding: 115px 0 !important;
  }
  .plr_sm--115 {
    padding: 0 115px !important;
  }
  .pt_sm--115 {
    padding-top: 115px !important;
  }
  .pb_sm--115 {
    padding-bottom: 115px !important;
  }
  .pl_sm--115 {
    padding-left: 115px !important;
  }
  .pr_sm--115 {
    padding-right: 115px !important;
  }
  .mt_sm--115 {
    margin-top: 115px !important;
  }
  .ml_sm--115 {
    margin-left: 115px !important;
  }
  .mr_sm--115 {
    margin-right: 115px !important;
  }
  .mb_sm--115 {
    margin-bottom: 115px !important;
  }
  .ptb_sm--120 {
    padding: 120px 0 !important;
  }
  .plr_sm--120 {
    padding: 0 120px !important;
  }
  .pt_sm--120 {
    padding-top: 120px !important;
  }
  .pb_sm--120 {
    padding-bottom: 120px !important;
  }
  .pl_sm--120 {
    padding-left: 120px !important;
  }
  .pr_sm--120 {
    padding-right: 120px !important;
  }
  .mt_sm--120 {
    margin-top: 120px !important;
  }
  .ml_sm--120 {
    margin-left: 120px !important;
  }
  .mr_sm--120 {
    margin-right: 120px !important;
  }
  .mb_sm--120 {
    margin-bottom: 120px !important;
  }
  .ptb_sm--125 {
    padding: 125px 0 !important;
  }
  .plr_sm--125 {
    padding: 0 125px !important;
  }
  .pt_sm--125 {
    padding-top: 125px !important;
  }
  .pb_sm--125 {
    padding-bottom: 125px !important;
  }
  .pl_sm--125 {
    padding-left: 125px !important;
  }
  .pr_sm--125 {
    padding-right: 125px !important;
  }
  .mt_sm--125 {
    margin-top: 125px !important;
  }
  .ml_sm--125 {
    margin-left: 125px !important;
  }
  .mr_sm--125 {
    margin-right: 125px !important;
  }
  .mb_sm--125 {
    margin-bottom: 125px !important;
  }
  .ptb_sm--130 {
    padding: 130px 0 !important;
  }
  .plr_sm--130 {
    padding: 0 130px !important;
  }
  .pt_sm--130 {
    padding-top: 130px !important;
  }
  .pb_sm--130 {
    padding-bottom: 130px !important;
  }
  .pl_sm--130 {
    padding-left: 130px !important;
  }
  .pr_sm--130 {
    padding-right: 130px !important;
  }
  .mt_sm--130 {
    margin-top: 130px !important;
  }
  .ml_sm--130 {
    margin-left: 130px !important;
  }
  .mr_sm--130 {
    margin-right: 130px !important;
  }
  .mb_sm--130 {
    margin-bottom: 130px !important;
  }
  .ptb_sm--135 {
    padding: 135px 0 !important;
  }
  .plr_sm--135 {
    padding: 0 135px !important;
  }
  .pt_sm--135 {
    padding-top: 135px !important;
  }
  .pb_sm--135 {
    padding-bottom: 135px !important;
  }
  .pl_sm--135 {
    padding-left: 135px !important;
  }
  .pr_sm--135 {
    padding-right: 135px !important;
  }
  .mt_sm--135 {
    margin-top: 135px !important;
  }
  .ml_sm--135 {
    margin-left: 135px !important;
  }
  .mr_sm--135 {
    margin-right: 135px !important;
  }
  .mb_sm--135 {
    margin-bottom: 135px !important;
  }
  .ptb_sm--140 {
    padding: 140px 0 !important;
  }
  .plr_sm--140 {
    padding: 0 140px !important;
  }
  .pt_sm--140 {
    padding-top: 140px !important;
  }
  .pb_sm--140 {
    padding-bottom: 140px !important;
  }
  .pl_sm--140 {
    padding-left: 140px !important;
  }
  .pr_sm--140 {
    padding-right: 140px !important;
  }
  .mt_sm--140 {
    margin-top: 140px !important;
  }
  .ml_sm--140 {
    margin-left: 140px !important;
  }
  .mr_sm--140 {
    margin-right: 140px !important;
  }
  .mb_sm--140 {
    margin-bottom: 140px !important;
  }
  .ptb_sm--145 {
    padding: 145px 0 !important;
  }
  .plr_sm--145 {
    padding: 0 145px !important;
  }
  .pt_sm--145 {
    padding-top: 145px !important;
  }
  .pb_sm--145 {
    padding-bottom: 145px !important;
  }
  .pl_sm--145 {
    padding-left: 145px !important;
  }
  .pr_sm--145 {
    padding-right: 145px !important;
  }
  .mt_sm--145 {
    margin-top: 145px !important;
  }
  .ml_sm--145 {
    margin-left: 145px !important;
  }
  .mr_sm--145 {
    margin-right: 145px !important;
  }
  .mb_sm--145 {
    margin-bottom: 145px !important;
  }
  .ptb_sm--150 {
    padding: 150px 0 !important;
  }
  .plr_sm--150 {
    padding: 0 150px !important;
  }
  .pt_sm--150 {
    padding-top: 150px !important;
  }
  .pb_sm--150 {
    padding-bottom: 150px !important;
  }
  .pl_sm--150 {
    padding-left: 150px !important;
  }
  .pr_sm--150 {
    padding-right: 150px !important;
  }
  .mt_sm--150 {
    margin-top: 150px !important;
  }
  .ml_sm--150 {
    margin-left: 150px !important;
  }
  .mr_sm--150 {
    margin-right: 150px !important;
  }
  .mb_sm--150 {
    margin-bottom: 150px !important;
  }
  .ptb_sm--155 {
    padding: 155px 0 !important;
  }
  .plr_sm--155 {
    padding: 0 155px !important;
  }
  .pt_sm--155 {
    padding-top: 155px !important;
  }
  .pb_sm--155 {
    padding-bottom: 155px !important;
  }
  .pl_sm--155 {
    padding-left: 155px !important;
  }
  .pr_sm--155 {
    padding-right: 155px !important;
  }
  .mt_sm--155 {
    margin-top: 155px !important;
  }
  .ml_sm--155 {
    margin-left: 155px !important;
  }
  .mr_sm--155 {
    margin-right: 155px !important;
  }
  .mb_sm--155 {
    margin-bottom: 155px !important;
  }
  .ptb_sm--160 {
    padding: 160px 0 !important;
  }
  .plr_sm--160 {
    padding: 0 160px !important;
  }
  .pt_sm--160 {
    padding-top: 160px !important;
  }
  .pb_sm--160 {
    padding-bottom: 160px !important;
  }
  .pl_sm--160 {
    padding-left: 160px !important;
  }
  .pr_sm--160 {
    padding-right: 160px !important;
  }
  .mt_sm--160 {
    margin-top: 160px !important;
  }
  .ml_sm--160 {
    margin-left: 160px !important;
  }
  .mr_sm--160 {
    margin-right: 160px !important;
  }
  .mb_sm--160 {
    margin-bottom: 160px !important;
  }
  .ptb_sm--165 {
    padding: 165px 0 !important;
  }
  .plr_sm--165 {
    padding: 0 165px !important;
  }
  .pt_sm--165 {
    padding-top: 165px !important;
  }
  .pb_sm--165 {
    padding-bottom: 165px !important;
  }
  .pl_sm--165 {
    padding-left: 165px !important;
  }
  .pr_sm--165 {
    padding-right: 165px !important;
  }
  .mt_sm--165 {
    margin-top: 165px !important;
  }
  .ml_sm--165 {
    margin-left: 165px !important;
  }
  .mr_sm--165 {
    margin-right: 165px !important;
  }
  .mb_sm--165 {
    margin-bottom: 165px !important;
  }
  .ptb_sm--170 {
    padding: 170px 0 !important;
  }
  .plr_sm--170 {
    padding: 0 170px !important;
  }
  .pt_sm--170 {
    padding-top: 170px !important;
  }
  .pb_sm--170 {
    padding-bottom: 170px !important;
  }
  .pl_sm--170 {
    padding-left: 170px !important;
  }
  .pr_sm--170 {
    padding-right: 170px !important;
  }
  .mt_sm--170 {
    margin-top: 170px !important;
  }
  .ml_sm--170 {
    margin-left: 170px !important;
  }
  .mr_sm--170 {
    margin-right: 170px !important;
  }
  .mb_sm--170 {
    margin-bottom: 170px !important;
  }
  .ptb_sm--175 {
    padding: 175px 0 !important;
  }
  .plr_sm--175 {
    padding: 0 175px !important;
  }
  .pt_sm--175 {
    padding-top: 175px !important;
  }
  .pb_sm--175 {
    padding-bottom: 175px !important;
  }
  .pl_sm--175 {
    padding-left: 175px !important;
  }
  .pr_sm--175 {
    padding-right: 175px !important;
  }
  .mt_sm--175 {
    margin-top: 175px !important;
  }
  .ml_sm--175 {
    margin-left: 175px !important;
  }
  .mr_sm--175 {
    margin-right: 175px !important;
  }
  .mb_sm--175 {
    margin-bottom: 175px !important;
  }
  .ptb_sm--180 {
    padding: 180px 0 !important;
  }
  .plr_sm--180 {
    padding: 0 180px !important;
  }
  .pt_sm--180 {
    padding-top: 180px !important;
  }
  .pb_sm--180 {
    padding-bottom: 180px !important;
  }
  .pl_sm--180 {
    padding-left: 180px !important;
  }
  .pr_sm--180 {
    padding-right: 180px !important;
  }
  .mt_sm--180 {
    margin-top: 180px !important;
  }
  .ml_sm--180 {
    margin-left: 180px !important;
  }
  .mr_sm--180 {
    margin-right: 180px !important;
  }
  .mb_sm--180 {
    margin-bottom: 180px !important;
  }
  .ptb_sm--185 {
    padding: 185px 0 !important;
  }
  .plr_sm--185 {
    padding: 0 185px !important;
  }
  .pt_sm--185 {
    padding-top: 185px !important;
  }
  .pb_sm--185 {
    padding-bottom: 185px !important;
  }
  .pl_sm--185 {
    padding-left: 185px !important;
  }
  .pr_sm--185 {
    padding-right: 185px !important;
  }
  .mt_sm--185 {
    margin-top: 185px !important;
  }
  .ml_sm--185 {
    margin-left: 185px !important;
  }
  .mr_sm--185 {
    margin-right: 185px !important;
  }
  .mb_sm--185 {
    margin-bottom: 185px !important;
  }
  .ptb_sm--190 {
    padding: 190px 0 !important;
  }
  .plr_sm--190 {
    padding: 0 190px !important;
  }
  .pt_sm--190 {
    padding-top: 190px !important;
  }
  .pb_sm--190 {
    padding-bottom: 190px !important;
  }
  .pl_sm--190 {
    padding-left: 190px !important;
  }
  .pr_sm--190 {
    padding-right: 190px !important;
  }
  .mt_sm--190 {
    margin-top: 190px !important;
  }
  .ml_sm--190 {
    margin-left: 190px !important;
  }
  .mr_sm--190 {
    margin-right: 190px !important;
  }
  .mb_sm--190 {
    margin-bottom: 190px !important;
  }
  .ptb_sm--195 {
    padding: 195px 0 !important;
  }
  .plr_sm--195 {
    padding: 0 195px !important;
  }
  .pt_sm--195 {
    padding-top: 195px !important;
  }
  .pb_sm--195 {
    padding-bottom: 195px !important;
  }
  .pl_sm--195 {
    padding-left: 195px !important;
  }
  .pr_sm--195 {
    padding-right: 195px !important;
  }
  .mt_sm--195 {
    margin-top: 195px !important;
  }
  .ml_sm--195 {
    margin-left: 195px !important;
  }
  .mr_sm--195 {
    margin-right: 195px !important;
  }
  .mb_sm--195 {
    margin-bottom: 195px !important;
  }
  .ptb_sm--200 {
    padding: 200px 0 !important;
  }
  .plr_sm--200 {
    padding: 0 200px !important;
  }
  .pt_sm--200 {
    padding-top: 200px !important;
  }
  .pb_sm--200 {
    padding-bottom: 200px !important;
  }
  .pl_sm--200 {
    padding-left: 200px !important;
  }
  .pr_sm--200 {
    padding-right: 200px !important;
  }
  .mt_sm--200 {
    margin-top: 200px !important;
  }
  .ml_sm--200 {
    margin-left: 200px !important;
  }
  .mr_sm--200 {
    margin-right: 200px !important;
  }
  .mb_sm--200 {
    margin-bottom: 200px !important;
  }
  .pl_sm--0 {
    padding-left: 0;
  }
  .pr_sm--0 {
    padding-right: 0;
  }
  .pt_sm--0 {
    padding-top: 0;
  }
  .pb_sm--0 {
    padding-bottom: 0;
  }
  .mr_sm--0 {
    margin-right: 0;
  }
  .ml_sm--0 {
    margin-left: 0;
  }
  .mt_sm--0 {
    margin-top: 0;
  }
  .mb_sm--0 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .ptb_mobile--5 {
    padding: 5px 0 !important;
  }
  .plr_mobile--5 {
    padding: 0 5px !important;
  }
  .pt_mobile--5 {
    padding-top: 5px !important;
  }
  .pb_mobile--5 {
    padding-bottom: 5px !important;
  }
  .pl_mobile--5 {
    padding-left: 5px !important;
  }
  .pr_mobile--5 {
    padding-right: 5px !important;
  }
  .mt_mobile--5 {
    margin-top: 5px !important;
  }
  .mb_mobile--5 {
    margin-bottom: 5px !important;
  }
  .ptb_mobile--10 {
    padding: 10px 0 !important;
  }
  .plr_mobile--10 {
    padding: 0 10px !important;
  }
  .pt_mobile--10 {
    padding-top: 10px !important;
  }
  .pb_mobile--10 {
    padding-bottom: 10px !important;
  }
  .pl_mobile--10 {
    padding-left: 10px !important;
  }
  .pr_mobile--10 {
    padding-right: 10px !important;
  }
  .mt_mobile--10 {
    margin-top: 10px !important;
  }
  .mb_mobile--10 {
    margin-bottom: 10px !important;
  }
  .ptb_mobile--15 {
    padding: 15px 0 !important;
  }
  .plr_mobile--15 {
    padding: 0 15px !important;
  }
  .pt_mobile--15 {
    padding-top: 15px !important;
  }
  .pb_mobile--15 {
    padding-bottom: 15px !important;
  }
  .pl_mobile--15 {
    padding-left: 15px !important;
  }
  .pr_mobile--15 {
    padding-right: 15px !important;
  }
  .mt_mobile--15 {
    margin-top: 15px !important;
  }
  .mb_mobile--15 {
    margin-bottom: 15px !important;
  }
  .ptb_mobile--20 {
    padding: 20px 0 !important;
  }
  .plr_mobile--20 {
    padding: 0 20px !important;
  }
  .pt_mobile--20 {
    padding-top: 20px !important;
  }
  .pb_mobile--20 {
    padding-bottom: 20px !important;
  }
  .pl_mobile--20 {
    padding-left: 20px !important;
  }
  .pr_mobile--20 {
    padding-right: 20px !important;
  }
  .mt_mobile--20 {
    margin-top: 20px !important;
  }
  .mb_mobile--20 {
    margin-bottom: 20px !important;
  }
  .ptb_mobile--25 {
    padding: 25px 0 !important;
  }
  .plr_mobile--25 {
    padding: 0 25px !important;
  }
  .pt_mobile--25 {
    padding-top: 25px !important;
  }
  .pb_mobile--25 {
    padding-bottom: 25px !important;
  }
  .pl_mobile--25 {
    padding-left: 25px !important;
  }
  .pr_mobile--25 {
    padding-right: 25px !important;
  }
  .mt_mobile--25 {
    margin-top: 25px !important;
  }
  .mb_mobile--25 {
    margin-bottom: 25px !important;
  }
  .ptb_mobile--30 {
    padding: 30px 0 !important;
  }
  .plr_mobile--30 {
    padding: 0 30px !important;
  }
  .pt_mobile--30 {
    padding-top: 30px !important;
  }
  .pb_mobile--30 {
    padding-bottom: 30px !important;
  }
  .pl_mobile--30 {
    padding-left: 30px !important;
  }
  .pr_mobile--30 {
    padding-right: 30px !important;
  }
  .mt_mobile--30 {
    margin-top: 30px !important;
  }
  .mb_mobile--30 {
    margin-bottom: 30px !important;
  }
  .ptb_mobile--35 {
    padding: 35px 0 !important;
  }
  .plr_mobile--35 {
    padding: 0 35px !important;
  }
  .pt_mobile--35 {
    padding-top: 35px !important;
  }
  .pb_mobile--35 {
    padding-bottom: 35px !important;
  }
  .pl_mobile--35 {
    padding-left: 35px !important;
  }
  .pr_mobile--35 {
    padding-right: 35px !important;
  }
  .mt_mobile--35 {
    margin-top: 35px !important;
  }
  .mb_mobile--35 {
    margin-bottom: 35px !important;
  }
  .ptb_mobile--40 {
    padding: 40px 0 !important;
  }
  .plr_mobile--40 {
    padding: 0 40px !important;
  }
  .pt_mobile--40 {
    padding-top: 40px !important;
  }
  .pb_mobile--40 {
    padding-bottom: 40px !important;
  }
  .pl_mobile--40 {
    padding-left: 40px !important;
  }
  .pr_mobile--40 {
    padding-right: 40px !important;
  }
  .mt_mobile--40 {
    margin-top: 40px !important;
  }
  .mb_mobile--40 {
    margin-bottom: 40px !important;
  }
  .ptb_mobile--45 {
    padding: 45px 0 !important;
  }
  .plr_mobile--45 {
    padding: 0 45px !important;
  }
  .pt_mobile--45 {
    padding-top: 45px !important;
  }
  .pb_mobile--45 {
    padding-bottom: 45px !important;
  }
  .pl_mobile--45 {
    padding-left: 45px !important;
  }
  .pr_mobile--45 {
    padding-right: 45px !important;
  }
  .mt_mobile--45 {
    margin-top: 45px !important;
  }
  .mb_mobile--45 {
    margin-bottom: 45px !important;
  }
  .ptb_mobile--50 {
    padding: 50px 0 !important;
  }
  .plr_mobile--50 {
    padding: 0 50px !important;
  }
  .pt_mobile--50 {
    padding-top: 50px !important;
  }
  .pb_mobile--50 {
    padding-bottom: 50px !important;
  }
  .pl_mobile--50 {
    padding-left: 50px !important;
  }
  .pr_mobile--50 {
    padding-right: 50px !important;
  }
  .mt_mobile--50 {
    margin-top: 50px !important;
  }
  .mb_mobile--50 {
    margin-bottom: 50px !important;
  }
  .ptb_mobile--55 {
    padding: 55px 0 !important;
  }
  .plr_mobile--55 {
    padding: 0 55px !important;
  }
  .pt_mobile--55 {
    padding-top: 55px !important;
  }
  .pb_mobile--55 {
    padding-bottom: 55px !important;
  }
  .pl_mobile--55 {
    padding-left: 55px !important;
  }
  .pr_mobile--55 {
    padding-right: 55px !important;
  }
  .mt_mobile--55 {
    margin-top: 55px !important;
  }
  .mb_mobile--55 {
    margin-bottom: 55px !important;
  }
  .ptb_mobile--60 {
    padding: 60px 0 !important;
  }
  .plr_mobile--60 {
    padding: 0 60px !important;
  }
  .pt_mobile--60 {
    padding-top: 60px !important;
  }
  .pb_mobile--60 {
    padding-bottom: 60px !important;
  }
  .pl_mobile--60 {
    padding-left: 60px !important;
  }
  .pr_mobile--60 {
    padding-right: 60px !important;
  }
  .mt_mobile--60 {
    margin-top: 60px !important;
  }
  .mb_mobile--60 {
    margin-bottom: 60px !important;
  }
  .ptb_mobile--65 {
    padding: 65px 0 !important;
  }
  .plr_mobile--65 {
    padding: 0 65px !important;
  }
  .pt_mobile--65 {
    padding-top: 65px !important;
  }
  .pb_mobile--65 {
    padding-bottom: 65px !important;
  }
  .pl_mobile--65 {
    padding-left: 65px !important;
  }
  .pr_mobile--65 {
    padding-right: 65px !important;
  }
  .mt_mobile--65 {
    margin-top: 65px !important;
  }
  .mb_mobile--65 {
    margin-bottom: 65px !important;
  }
  .ptb_mobile--70 {
    padding: 70px 0 !important;
  }
  .plr_mobile--70 {
    padding: 0 70px !important;
  }
  .pt_mobile--70 {
    padding-top: 70px !important;
  }
  .pb_mobile--70 {
    padding-bottom: 70px !important;
  }
  .pl_mobile--70 {
    padding-left: 70px !important;
  }
  .pr_mobile--70 {
    padding-right: 70px !important;
  }
  .mt_mobile--70 {
    margin-top: 70px !important;
  }
  .mb_mobile--70 {
    margin-bottom: 70px !important;
  }
  .ptb_mobile--75 {
    padding: 75px 0 !important;
  }
  .plr_mobile--75 {
    padding: 0 75px !important;
  }
  .pt_mobile--75 {
    padding-top: 75px !important;
  }
  .pb_mobile--75 {
    padding-bottom: 75px !important;
  }
  .pl_mobile--75 {
    padding-left: 75px !important;
  }
  .pr_mobile--75 {
    padding-right: 75px !important;
  }
  .mt_mobile--75 {
    margin-top: 75px !important;
  }
  .mb_mobile--75 {
    margin-bottom: 75px !important;
  }
  .ptb_mobile--80 {
    padding: 80px 0 !important;
  }
  .plr_mobile--80 {
    padding: 0 80px !important;
  }
  .pt_mobile--80 {
    padding-top: 80px !important;
  }
  .pb_mobile--80 {
    padding-bottom: 80px !important;
  }
  .pl_mobile--80 {
    padding-left: 80px !important;
  }
  .pr_mobile--80 {
    padding-right: 80px !important;
  }
  .mt_mobile--80 {
    margin-top: 80px !important;
  }
  .mb_mobile--80 {
    margin-bottom: 80px !important;
  }
  .ptb_mobile--85 {
    padding: 85px 0 !important;
  }
  .plr_mobile--85 {
    padding: 0 85px !important;
  }
  .pt_mobile--85 {
    padding-top: 85px !important;
  }
  .pb_mobile--85 {
    padding-bottom: 85px !important;
  }
  .pl_mobile--85 {
    padding-left: 85px !important;
  }
  .pr_mobile--85 {
    padding-right: 85px !important;
  }
  .mt_mobile--85 {
    margin-top: 85px !important;
  }
  .mb_mobile--85 {
    margin-bottom: 85px !important;
  }
  .ptb_mobile--90 {
    padding: 90px 0 !important;
  }
  .plr_mobile--90 {
    padding: 0 90px !important;
  }
  .pt_mobile--90 {
    padding-top: 90px !important;
  }
  .pb_mobile--90 {
    padding-bottom: 90px !important;
  }
  .pl_mobile--90 {
    padding-left: 90px !important;
  }
  .pr_mobile--90 {
    padding-right: 90px !important;
  }
  .mt_mobile--90 {
    margin-top: 90px !important;
  }
  .mb_mobile--90 {
    margin-bottom: 90px !important;
  }
  .ptb_mobile--95 {
    padding: 95px 0 !important;
  }
  .plr_mobile--95 {
    padding: 0 95px !important;
  }
  .pt_mobile--95 {
    padding-top: 95px !important;
  }
  .pb_mobile--95 {
    padding-bottom: 95px !important;
  }
  .pl_mobile--95 {
    padding-left: 95px !important;
  }
  .pr_mobile--95 {
    padding-right: 95px !important;
  }
  .mt_mobile--95 {
    margin-top: 95px !important;
  }
  .mb_mobile--95 {
    margin-bottom: 95px !important;
  }
  .ptb_mobile--100 {
    padding: 100px 0 !important;
  }
  .plr_mobile--100 {
    padding: 0 100px !important;
  }
  .pt_mobile--100 {
    padding-top: 100px !important;
  }
  .pb_mobile--100 {
    padding-bottom: 100px !important;
  }
  .pl_mobile--100 {
    padding-left: 100px !important;
  }
  .pr_mobile--100 {
    padding-right: 100px !important;
  }
  .mt_mobile--100 {
    margin-top: 100px !important;
  }
  .mb_mobile--100 {
    margin-bottom: 100px !important;
  }
}
.slick-gutter-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.slick-gutter-5 .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 479px) {
  .small-margin-pricing {
    margin-bottom: 25px !important;
  }
}

@media only screen and (max-width: 479px) {
  .contact-input {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mb_dec--35 {
    margin-bottom: -50px;
  }
}

@media only screen and (max-width: 767px) {
  .mb_dec--35 {
    margin-bottom: -75px;
  }
}
@media only screen and (max-width: 575px) {
  .mb_dec--35 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .mt-contact-sm {
    margin-top: 30px !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-pb {
    padding-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-input {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-input {
    padding-bottom: 30px;
  }
}

.pb_xl--130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1199px) {
  .pb_xl--130 {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1199px) {
  .mt_experience {
    margin-top: -10px;
  }
}

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

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

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

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

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

.g-24 {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.g-40 {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.thumbnail-about-six {
  position: relative;
}
.thumbnail-about-six .about-move {
  position: absolute;
  left: -70px;
  bottom: -30px;
}
@media only screen and (max-width: 767px) {
  .thumbnail-about-six .rt-images {
    display: none;
  }
}

.experience-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.experience-area .expe-year {
  font-size: 66px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  -webkit-text-stroke: 1px;
  color: transparent;
  -webkit-text-stroke-color: #1F1F25;
}
.experience-area h5 {
  color: #1F1F25;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 0;
}

.bg-h-light {
  background: #F6F6F6;
}

@media only screen and (max-width: 767px) {
  .rts-about-inner-area-content {
    margin-top: 30px;
  }
}

.about-image-left {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-left {
    position: relative;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .about-image-left {
    position: relative;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-left .thumbnail {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .about-image-left .thumbnail {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-left .thumbnail img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .about-image-left .thumbnail img {
    width: 100%;
  }
}
.about-image-left::after {
  position: absolute;
  content: "";
  background: var(--color-primary);
  width: 12px;
  height: 239px;
  top: 0;
  right: -35px;
  position: absolute;
  content: "";
  background: var(--color-primary);
  width: 10px;
  height: 239px;
  top: 0;
  right: -20px;
}
.about-image-left .small-image {
  position: absolute;
  right: -50%;
  top: 62%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .about-image-left .small-image {
    left: 50px;
  }
}
.about-image-left .exp-badge {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 39px 47px;
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-left .exp-badge {
    padding: 20px 10px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-image-left .exp-badge {
    padding: 20px 10px;
    right: 0;
  }
}
.about-image-left .exp-badge .title {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 0;
}
.about-image-left .exp-badge span {
  margin-left: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .about-image-left .small-image img {
    max-width: 200px;
  }
}

.bg-feedback-about {
  background-image: url(../images/about/06.png);
}

.rts-team-bg-2 {
  background-image: url(../images/about/05.jpg);
}

.feedback-about-swiper-wrapper {
  margin-top: 45px;
}

.single-feedback-about {
  padding: 40px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #efefef;
}
@media only screen and (max-width: 479px) {
  .single-feedback-about {
    padding: 20px;
  }
}
.single-feedback-about .head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EFEFEF;
}
.single-feedback-about .head .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 0;
  color: #1F1F25;
}
.single-feedback-about .head span {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #74787C;
}
.single-feedback-about .body p {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: #1F1F25;
}

.bg-abc-wrapper {
  background-image: url(../images/about/05.jpg);
}

.cpmpay-story-single-about a.thumnail {
  display: block;
  overflow: hidden;
}
.cpmpay-story-single-about a.thumnail img {
  transition: 0.6s;
  width: 100%;
}
.cpmpay-story-single-about a.thumnail:hover img {
  transform: scale(1.15);
}
.cpmpay-story-single-about .body {
  padding: 40px;
  background: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .cpmpay-story-single-about .body {
    padding: 10px;
  }
}
.cpmpay-story-single-about .body a.rts-btn.btn-border {
  border: 1px solid var(--color-primary) !important;
  background: #1F1F25;
}
.cpmpay-story-single-about .header-story {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cpmpay-story-single-about .header-story .single {
  display: flex;
  align-items: center;
}
.cpmpay-story-single-about .header-story .single i {
  color: var(--color-primary);
  margin-right: 10px;
}
.cpmpay-story-single-about a .title {
  margin-top: 20px;
  transition: 0.3s;
}
.cpmpay-story-single-about a .title:hover {
  color: var(--color-primary);
}

.mySwiper-about-feedback {
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  margin-top: -72px;
}
.mySwiper-about-feedback .swiper-pagination {
  right: auto;
  text-align: left;
}
.mySwiper-about-feedback .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary);
}

.ac-about-right-image-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-inner-content-ac {
  margin-bottom: 30px;
}

.rts-about-area-ac .thumbnail-sm img {
  width: 80%;
}
.rts-about-area-ac .card-list-ac-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.rts-about-area-ac .card-list-ac-area .single {
  display: flex;
  align-items: center;
  gap: 20px;
}
.rts-about-area-ac .card-list-ac-area .single .icon {
  margin-bottom: 0;
  width: 70px;
  height: 70px;
  box-shadow: 0px 4px 32px rgba(111, 115, 152, 0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rts-about-area-ac .card-list-ac-area .single .title {
  margin-bottom: 0;
  margin-left: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

.ac-about-right-image-inner {
  position: relative;
}
.ac-about-right-image-inner .small-top {
  position: absolute;
  top: -60px;
  right: -150px;
}
.ac-about-right-image-inner .small-bottom {
  position: absolute;
  bottom: 10px;
  left: 80px;
}

.cleaning-home-about-left-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.index-cleaning-home {
  background: #F7F7F7;
}

.bg-white {
  background: #fff;
}

.inner-content-about-cleaning .experience {
  display: flex;
  align-items: center;
  gap: 30px;
}
.inner-content-about-cleaning .experience img {
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.09));
}
.inner-content-about-cleaning .experience p {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #1F1F25;
}
.inner-content-about-cleaning .short-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 29px;
  background: #FFFFFF;
  box-shadow: 0px 14px 41px rgba(46, 54, 74, 0.07);
  border-radius: 20px;
  margin-top: 30px;
}
.inner-content-about-cleaning .short-cta .call {
  display: flex;
  align-items: center;
  gap: 25px;
}
.inner-content-about-cleaning .short-cta .call .info span {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #74787C;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.inner-content-about-cleaning .short-cta .call .info a {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #1F1F25;
}

.rts-more-about-company-cleaning {
  -webkit-clip-path: polygon(71% 0, 100% 12%, 100% 100%, 0 100%, 0 14%);
          clip-path: polygon(71% 0, 100% 12%, 100% 100%, 0 100%, 0 14%);
  background-image: url(../images/about/19.jpg);
}
.rts-more-about-company-cleaning .title-area-left p.pre {
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}
.rts-more-about-company-cleaning .title-area-left .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #fff;
  margin-top: -10px;
}

.single-solution-start-cleaning {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 8px 30px rgba(106, 106, 106, 0.1);
  border-radius: 20px;
  display: flex;
  gap: 23px;
}
.single-solution-start-cleaning .title {
  margin-bottom: 10px;
}
.single-solution-start-cleaning p {
  margin-bottom: 0;
}

.thumbnail-solari-about {
  position: relative;
}
.thumbnail-solari-about .video-play-button::after {
  background: #fff !important;
  border: transparent !important;
}
.thumbnail-solari-about .video-play-button::before {
  background: rgba(31, 31, 37, 0.3) !important;
  border: transparent !important;
}
.thumbnail-solari-about .experiencea-area {
  left: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 0.5px solid var(--color-primary);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  position: absolute;
  background: #fff;
}
@media only screen and (max-width: 575px) {
  .thumbnail-solari-about .experiencea-area {
    left: 335px;
  }
}
@media only screen and (max-width: 479px) {
  .thumbnail-solari-about .experiencea-area {
    display: none;
  }
}
.thumbnail-solari-about .experiencea-area .title {
  font-weight: 700;
  font-size: 34px;
  line-height: 45px;
  color: #1F1F25;
  margin-bottom: -7px;
}
.thumbnail-solari-about .experiencea-area p {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #1F1F25;
}

.rts-about-left-image-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 50px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-about-left-image-area {
    justify-content: flex-start;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-about-left-image-area {
    padding-right: 0;
  }
}
.rts-about-left-image-area .small-image-area {
  background: #fff;
  width: 57%;
  border-radius: 10px;
  position: absolute;
  right: -20px;
  bottom: 30px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .rts-about-left-image-area .small-image-area {
    width: 70%;
  }
}
.rts-about-left-image-area .small-image-area p {
  margin-left: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1F1F25;
}
@media only screen and (max-width: 767px) {
  .rts-about-left-image-area .small-image-area p {
    font-size: 14px;
    line-height: 21px;
  }
}

.custom-nav-soalr-about {
  margin-bottom: 20px;
}
.custom-nav-soalr-about li {
  margin-right: 20px;
}
.custom-nav-soalr-about li button {
  padding: 15px 33px;
  background: #fff !important;
  color: #1F1F25 !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  border-radius: 5px !important;
}
.custom-nav-soalr-about li button.active {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.single-about-content-solar p.disc {
  margin-bottom: 30px;
  width: 90%;
}
.single-about-content-solar .left-area-wrapper img {
  width: 100%;
  padding-right: 20px;
  border-radius: 20px;
}
.single-about-content-solar .single-ckeck-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.single-about-content-solar .single-ckeck-wrapper img {
  margin-right: 10px;
}
.single-about-content-solar .single-ckeck-wrapper p {
  color: #1F1F25;
  font-weight: 600;
  font-size: 16px;
  line-height: 31px;
}
.single-about-content-solar .vedio-area-start {
  position: relative;
  margin-top: 30px;
}

.vedio-area-start {
  position: relative;
  margin-top: 30px;
  padding: 30px 35px;
  background: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 575px) {
  .vedio-area-start {
    padding: 20px 10px;
  }
}
.vedio-area-start .vedio-icone .play-video .text {
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-bottom: 0;
  margin-left: 90px;
  color: #1F1F25;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .vedio-area-start .vedio-icone .play-video .text {
    display: none;
  }
}
.vedio-area-start .vedio-icone .play-video .text::after {
  position: absolute;
  content: "";
  left: -40px;
  height: 1px;
  width: 30px;
  background: var(--color-primary);
  top: 44%;
}
.vedio-area-start .vedio-icone .video-play-button {
  left: 44%;
}
@media only screen and (max-width: 575px) {
  .vedio-area-start .vedio-icone .video-play-button {
    left: 74%;
  }
}
@media only screen and (max-width: 479px) {
  .vedio-area-start .vedio-icone .video-play-button {
    left: 82%;
  }
}

.about-area-solari-3-right .solari-title-area-three {
  text-align: left;
}
.about-area-solari-3-right .solari-title-area-three .pre-title {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
}

.vedio-icone .video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  display: flex;
}
.vedio-icone .video-play-button::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -32%;
  top: -31%;
  display: block;
  width: 130px;
  height: 130px;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  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: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid var(--color-primary);
  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: -moz-max-content;
  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.8);
  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;
}

.solari-about-left-content .content-inner p.disc {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .solari-about-left-content .content-inner p.disc {
    width: 100%;
  }
}
.solari-about-left-content .content-inner .power-soalr-area {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media only screen and (max-width: 575px) {
  .solari-about-left-content .content-inner .power-soalr-area {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.solari-about-left-content .content-inner .power-soalr-area .single {
  display: flex;
  align-items: center;
  gap: 20px;
}
.solari-about-left-content .content-inner .power-soalr-area .single .info .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.solari-about-left-content .content-inner .power-soalr-area .single .info span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #1F1F25;
}
.solari-about-left-content .content-inner .solari-about-button-area {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media only screen and (max-width: 575px) {
  .solari-about-left-content .content-inner .solari-about-button-area {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.solari-about-left-content .content-inner .solari-about-button-area .call-button {
  display: flex;
  align-items: center;
  gap: 14px;
}
.solari-about-left-content .content-inner .solari-about-button-area .call-button i {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.08);
  color: var(--color-primary);
}
.solari-about-left-content .content-inner .solari-about-button-area .call-button .info span {
  color: #74787C;
  display: block;
  margin-bottom: 6px;
}
.solari-about-left-content .content-inner .solari-about-button-area .call-button .info a .title {
  color: #1F1F25;
  margin-bottom: 0;
  transition: 0.3s;
}
.solari-about-left-content .content-inner .solari-about-button-area .call-button .info a:hover .title {
  color: var(--color-primary);
}

.bg-lighten {
  background: #F6F6F6;
}

.about-lefta-area-solari-2 {
  position: relative;
}
.about-lefta-area-solari-2 .thumbnail-image-bottom {
  position: absolute;
  right: 0;
  bottom: -100px;
}
.about-lefta-area-solari-2 .top-left-img {
  position: absolute;
  left: -80px;
  top: -80px;
  animation: rotateIt 13s linear infinite;
}
.about-lefta-area-solari-2 .left-top-speen-style {
  position: absolute;
  left: -80px;
  top: -80px;
}
.about-lefta-area-solari-2 .top-left-speen {
  max-width: -moz-max-content;
  max-width: max-content;
}
.about-lefta-area-solari-2 .top-left-speen a.uni-circle-text {
  position: relative;
}
.about-lefta-area-solari-2 .top-left-speen a.uni-circle-text::after {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(131, 131, 131, 0.175);
  position: absolute;
  transform: scale(0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: #1F1F25;
}
.about-lefta-area-solari-2 .top-left-speen a.uni-circle-text .uni-animation-spin {
  display: inline-flex;
  animation: rotateIt 15s linear 0s infinite;
}

.solari-title-area-three span.pre-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 16px;
  padding-left: 60px;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  margin-bottom: 16px;
}
.solari-title-area-three span.pre-title::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-image: url(../images/banner/shape/03.png);
  height: 7px;
  width: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .solari-title-area-three p.disc br {
    display: none;
  }
}

.about-area-solari-3-right .inner-content p.disc {
  margin-bottom: 30px;
}
.about-area-solari-3-right .inner-content .importanc-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EAEAEA;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .about-area-solari-3-right .inner-content .importanc-wrapper {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .about-area-solari-3-right .inner-content .importanc-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-area-solari-3-right .inner-content .importanc-wrapper .single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: #fff;
  border-radius: 10px;
}
.about-area-solari-3-right .inner-content .importanc-wrapper .single .icon {
  margin-right: 12px;
}
.about-area-solari-3-right .inner-content .importanc-wrapper .single .icon-last {
  margin-left: 15px;
}
.about-area-solari-3-right .inner-content .importanc-wrapper .single .title {
  margin-bottom: 0px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.about-area-solari-3-right .inner-content .importanc-wrapper .single p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #1F1F25;
  font-family: var(--font-primary);
}
.about-area-solari-3-right .inner-content .author-button-area {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 60px;
}
@media only screen and (max-width: 575px) {
  .about-area-solari-3-right .inner-content .author-button-area {
    gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-area-solari-3-right .inner-content .author-button-area .author-area {
  display: flex;
  align-items: center;
}
.about-area-solari-3-right .inner-content .author-button-area .author-area .name-area {
  margin-left: 15px;
}
.about-area-solari-3-right .inner-content .author-button-area .author-area .name-area .title {
  margin-bottom: 5px;
}

.rts-about-area-start-h3-soalri {
  position: relative;
  z-index: 1;
}
.rts-about-area-start-h3-soalri .bottom-left-img {
  position: absolute;
  left: 70px;
  bottom: 0;
  z-index: -1;
}

.bg-about-h4 {
  background: #F6F6F6;
}

.about-inner-four-h4 .check-area-wrapper .single-check {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.about-inner-four-h4 .check-area-wrapper .single-check img {
  margin-right: 13px;
}
.about-inner-four-h4 .check-area-wrapper .single-check p {
  color: #1F1F25;
  font-weight: 500;
  line-height: 28px;
  font-size: 16px;
}

.mittion-right-left-h4 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mittion-right-left-h4 {
    justify-content: flex-start;
  }
}

.bg-why-choose-us {
  background: #F6F6F6;
}

.single-reason-style-4 {
  display: flex;
  align-items: center;
  gap: 29px;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media only screen and (max-width: 575px) {
  .single-reason-style-4 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.single-reason-style-4 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 4px 30px 0px rgba(31, 31, 37, 0.062745098);
}
.single-reason-style-4 .content-info a .title {
  margin-bottom: 5px;
  font-size: 22px;
  color: #1F1F25;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}
.single-reason-style-4 .content-info p.dsic {
  color: var(#74787C);
  font-size: 16px;
  line-height: 26px;
}

.counter-main-wrapper-h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-main-wrapper-h4 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-main-wrapper-h4 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-main-wrapper-h4 .single-counter-up {
  position: relative;
  z-index: 1;
}
.counter-main-wrapper-h4 .single-counter-up .water-text {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0px;
  display: flex;
  align-items: center;
}
.counter-main-wrapper-h4 .single-counter-up .water-text p {
  color: transparent;
  font-weight: 700;
  font-size: 120px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ebebeb;
}
@media only screen and (max-width: 1199px) {
  .counter-main-wrapper-h4 .single-counter-up .water-text p {
    font-size: 80px;
  }
}
.counter-main-wrapper-h4 .single-counter-up .water-text span {
  color: transparent;
  font-weight: 700;
  font-size: 120px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ebebeb;
  margin-top: -40px;
}
@media only screen and (max-width: 1199px) {
  .counter-main-wrapper-h4 .single-counter-up .water-text span {
    font-size: 80px;
  }
}
.counter-main-wrapper-h4 .single-counter-up .title {
  color: #1F1F25;
  font-size: 34px;
  font-family: Exo;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: -10px;
}
.counter-main-wrapper-h4 .single-counter-up p.content {
  color: #1F1F25;
  font-size: 24px;
  font-weight: 600;
  line-height: 58px;
}

.title-main-area-four-water .title {
  text-align: center;
  -webkit-text-stroke: 0.5px #D9D9D9;
  color: rgba(0, 0, 255, 0);
  font-size: 120px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .title-main-area-four-water .title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .title-main-area-four-water .title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-main-area-four-water .title {
    font-size: 80px;
    min-width: -moz-max-content;
    min-width: max-content;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .title-main-area-four-water .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .title-main-area-four-water .title {
    font-size: 20px;
  }
}

.thumbanil-about-four {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.thumbanil-about-four .small-bottom-right {
  position: absolute;
  bottom: -40px;
  right: -40px;
  padding: 30px;
  background-image: url(../images/about/30.jpg);
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .thumbanil-about-four .small-bottom-right {
    top: 50px;
    right: 50px;
    bottom: auto;
    padding: 15px;
  }
}
.thumbanil-about-four .small-bottom-right .title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 38px;
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .thumbanil-about-four .small-bottom-right .title {
    font-size: 20px;
    line-height: 26px;
  }
}

.cta-call-to-action-shop {
  background: var(--color-primary);
}

.single-counter-area {
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
}
.single-counter-area.none::after {
  display: none;
}
.single-counter-area::after {
  position: absolute;
  right: 55px;
  height: 80px;
  width: 1px;
  top: 50%;
  transform: translateY(-50%);
  background: #00A04A;
  content: "";
}
@media only screen and (max-width: 575px) {
  .single-counter-area svg {
    max-width: 40px;
  }
}
.single-counter-area .content .title {
  margin-bottom: 6px;
  color: #fff;
  font-weight: 500;
}
.single-counter-area .content p.disc {
  color: #fff;
  margin: 0;
}

.swiper-category-shop {
  overflow: hidden;
  position: relative;
  padding-bottom: 20px;
}
.swiper-category-shop .swiper-pagination {
  bottom: 0;
  top: auto;
  border-radius: 2px;
  background: #EFEFEF !important;
}
.swiper-category-shop .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--color-primary);
  border-radius: 2px;
}

.path-vert {
  stroke-dasharray: 1000;
  /*   stroke-dashoffset: 800; */
  animation: draw1 2s linear alternate;
}

@keyframes draw1 {
  from {
    stroke-dashoffset: 1200;
  }
  to {
    stroke-dashoffset: 600;
  }
}
.container-full {
  max-width: 1920px;
  max-width: 1920px;
  margin: auto;
}

.title--between-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 479px) {
  .title--between-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.title--between-wrapper .button-area {
  display: flex;
  align-items: center;
  margin-top: 75px;
}
@media only screen and (max-width: 479px) {
  .title--between-wrapper .button-area {
    margin-top: 30px;
  }
}
.title--between-wrapper .button-area .swiper-button-next,
.title--between-wrapper .button-area .swiper-button-prev {
  height: 80px;
  width: 80px;
  background: transparent;
  border-radius: 50%;
  background-image: none;
  transition: 0.3s;
}
@media only screen and (max-width: 479px) {
  .title--between-wrapper .button-area .swiper-button-next,
  .title--between-wrapper .button-area .swiper-button-prev {
    height: 60px;
    width: 60px;
  }
}
.title--between-wrapper .button-area .swiper-button-next::after,
.title--between-wrapper .button-area .swiper-button-prev::after {
  color: #1F1F25 !important;
}
.title--between-wrapper .button-area .swiper-button-next:hover,
.title--between-wrapper .button-area .swiper-button-prev:hover {
  background: var(--color-primary);
}
.title--between-wrapper .button-area .swiper-button-next:hover::after,
.title--between-wrapper .button-area .swiper-button-prev:hover::after {
  color: #fff !important;
}
.title--between-wrapper .button-area .swiper-button-next {
  position: relative;
  margin-left: auto;
  right: -70px;
}
@media only screen and (max-width: 479px) {
  .title--between-wrapper .button-area .swiper-button-next {
    right: -212px;
  }
}
.title--between-wrapper .button-area .swiper-button-next::after {
  position: absolute;
  content: "\f061";
  font-size: 22px;
  color: #fff;
  font-family: "FontAwesome";
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.title--between-wrapper .button-area .swiper-button-next:hover {
  transform: translateX(15px);
}
.title--between-wrapper .button-area .swiper-button-prev {
  position: relative;
  left: -110px;
}
@media only screen and (max-width: 479px) {
  .title--between-wrapper .button-area .swiper-button-prev {
    left: -33px;
  }
}
.title--between-wrapper .button-area .swiper-button-prev:hover {
  transform: translateX(-15px);
}
.title--between-wrapper .button-area .swiper-button-prev::after {
  position: absolute;
  content: "\f060";
  font-size: 22px;
  color: #fff;
  font-family: "FontAwesome";
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-one-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.project-one-wrapper::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8901960784);
  z-index: 0;
  opacity: 0;
  transition: 0.6s;
  pointer-events: none;
}
.project-one-wrapper::before {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 0;
  height: 10px;
  width: 100%;
  background: var(--color-primary);
  z-index: 0;
  z-index: 5;
  transition: 0.6s;
}
.project-one-wrapper .shape {
  position: absolute;
  z-index: 5;
  top: -180px;
  right: -180px;
  transition: 0.6s;
  pointer-events: none;
}
.project-one-wrapper .thumbnail {
  display: block;
}
.project-one-wrapper .thumbnail img {
  transition: 0.6s;
}
.project-one-wrapper .content {
  position: absolute;
  bottom: 50px;
  left: 40px;
  transition: 0.3s;
  z-index: 5;
  transform: scaleY(0);
}
.project-one-wrapper .content span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
.project-one-wrapper .content .title {
  margin-bottom: 30px;
  color: #fff;
  transition: 0.3s;
}
.project-one-wrapper .content .title:hover {
  color: var(--color-primary);
}
.project-one-wrapper:hover::after {
  opacity: 1;
}
.project-one-wrapper:hover::before {
  bottom: 0;
}
.project-one-wrapper:hover .shape {
  top: -90px;
  right: -100px;
}
.project-one-wrapper:hover .content {
  left: 40px;
  transform: scaleY(1);
}
.project-one-wrapper:hover .thumbnail img {
  transform: scale(1.15);
}

.project-one-wrapper .thumbnail img {
  width: 100%;
}

.portfolio-disc-content {
  margin-top: 50px;
}
.portfolio-disc-content .title-area span {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--color-primary);
}
.portfolio-disc-content .title-area .title {
  margin-top: 15px;
  font-size: 30px;
}
.portfolio-disc-content p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
  margin-bottom: 25px;
}
.portfolio-disc-content p.quote {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #1F1F25;
}

.big-bg-porduct-details {
  margin-top: 50px;
  border-radius: 7px;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .big-bg-porduct-details {
    padding-left: 0px;
  }
}

.big-bg-porduct-details .project-info {
  background: #F7F7F7;
  border-radius: 0 0 0 0;
}

.big-bg-porduct-details .project-info .info-head {
  padding: 24px 40px;
  background: var(--color-primary);
  border-radius: 0 0 0 0;
  border-radius: 7px 7px 0 0;
}

.big-bg-porduct-details .project-info .info-head .title {
  color: #fff;
  margin-bottom: 0;
}

.big-bg-porduct-details .project-info .info-body {
  padding: 15px 40px;
}
@media only screen and (max-width: 767px) {
  .big-bg-porduct-details .project-info .info-body {
    padding: 15px 20px;
  }
}

.big-bg-porduct-details .project-info .info-body .single-info {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #E9E9E9;
}
.big-bg-porduct-details .project-info .info-body .single-info.last {
  border: none;
}

.big-bg-porduct-details .project-info .info-body .single-info .info-details {
  margin-left: 20px;
}

.big-bg-porduct-details .project-info .info-body .single-info .info-ico i {
  height: 50px;
  width: 50px;
  background: #F9F0F0;
  color: var(--color-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0px 6px 31px rgba(0, 0, 0, 0.05);
}

.big-bg-porduct-details .project-info .info-body .single-info .info-details span {
  margin-bottom: 5px;
}

.big-bg-porduct-details .project-info .info-body .single-info .info-details .name {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 3px;
}

.check-area-pd {
  margin-top: 30px;
  margin-bottom: 30px;
}
.check-area-pd .single {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.check-area-pd .single i {
  margin-top: 5px;
  margin-right: 10px;
  color: var(--color-primary);
}
.check-area-pd .single p {
  margin-bottom: 0;
  color: #74787C;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

#form-messages.success {
  color: var(--color-primary);
}
#form-messages.error {
  color: var(--color-danger);
}

.air-condition-swiper-wrapper {
  position: relative;
  overflow: hidden;
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .single-case-ac .inner-content {
  bottom: 30px;
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content {
  position: absolute;
  left: 30px !important;
  bottom: -20px;
  width: 87%;
  height: 97px;
  background: #FFFFFF;
  transition: 0.6s;
  border-radius: 10px;
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content .inner {
  position: absolute;
  position: absolute;
  left: 20px;
  top: 20px;
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content .inner span.pre {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #1F1F25;
  display: block;
  margin-bottom: 10px;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content .inner span.pre::after {
  position: absolute;
  content: "";
  right: -15px;
  top: 40%;
  transform: translate(50%);
  height: 1px;
  width: 15px;
  background: #1F1F25;
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content .inner .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #1F1F25;
  margin-bottom: 25px;
  transition: 0.3s;
}
@media only screen and (max-width: 479px) {
  .air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content .inner .title {
    font-size: 17px;
  }
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content .inner .title:hover {
  color: var(--color-primary);
}
.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .inner-content {
  opacity: 1;
  left: 15px;
}

.single-cleaning-project {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  gap: 30px;
}
.single-cleaning-project a.thumbnail {
  display: block;
  width: 100%;
}
.single-cleaning-project a.thumbnail img {
  border-radius: 30px 0 0 30px;
  min-width: -moz-max-content;
  min-width: max-content;
  width: -moz-max-content;
  width: max-content;
}
.single-cleaning-project .project-content-area {
  padding: 35px;
  margin-left: 30px;
}
.single-cleaning-project .project-content-area .icon {
  height: 90px;
  width: 90px;
  background: #EFF3FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
.single-cleaning-project .project-content-area .icon svg path {
  fill: var(--color-primary);
}
.single-cleaning-project .project-content-area .title {
  margin-bottom: 10px;
}
.single-cleaning-project .project-content-area .title:hover {
  color: var(--color-primary);
}
.single-cleaning-project .project-content-area p.disc {
  margin-bottom: 30px;
}

.cta-cleaning-p {
  padding: 80px;
  border-radius: 40px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 120px;
}
.cta-cleaning-p input {
  height: 60px;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 5px 25px;
}
.cta-cleaning-p a.rts-btn.btn-primary {
  background: #fff;
  display: flex;
  align-items: center;
}
.cta-cleaning-p a.rts-btn.btn-primary i {
  margin-left: 5px;
  margin-top: 2px;
}
.cta-cleaning-p a.rts-btn.btn-primary::before {
  background: #1F1F25;
}
.cta-cleaning-p a.rts-btn.btn-primary:hover {
  color: #1F1F25;
}

.cta-main-wrapper-cleaning {
  background-image: url(../images/cta/04.jpg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px;
  border-radius: 40px;
  margin-top: -150px;
}
.cta-main-wrapper-cleaning .left-content p.pre {
  color: #fff;
  margin-bottom: 10px;
}
.cta-main-wrapper-cleaning .left-content .title {
  color: #fff;
  margin-bottom: 0;
}

.project-soalr-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  .project-soalr-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.project-soalr-wrapper .title {
  margin-bottom: 0;
}

.container-120 {
  max-width: 1920px;
  padding: 0 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-120 {
    padding: 0 65px;
  }
}
@media only screen and (max-width: 767px) {
  .container-120 {
    padding: 0;
  }
}

.rts-solar-single-product-one {
  position: relative;
  overflow: hidden;
}
.rts-solar-single-product-one .inner-content {
  padding: 27px 30px;
  background: #fff;
  border-radius: 5px 0 0 5px;
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 92%;
}
.rts-solar-single-product-one .inner-content a .title {
  margin-bottom: 7px;
  transition: 0.3s;
}
.rts-solar-single-product-one .inner-content a .title:hover {
  color: var(--color-primary);
}

.project-details-carousel-big {
  overflow: hidden;
  position: relative;
}
.project-details-carousel-big .swiper-button-next,
.project-details-carousel-big .swiper-button-prev {
  background-image: none;
  opacity: 0;
  transition: 0.3s;
}
.project-details-carousel-big .swiper-button-next::after,
.project-details-carousel-big .swiper-button-prev::after {
  content: "\f061";
  font-family: "fontawesome";
  font-size: 22px;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-details-carousel-big .swiper-button-next:hover,
.project-details-carousel-big .swiper-button-prev:hover {
  transform: scale(1.2);
}
.project-details-carousel-big .swiper-button-next {
  right: 80px;
}
.project-details-carousel-big .swiper-button-next::after {
  color: var(--color-primary);
}
.project-details-carousel-big .swiper-button-prev {
  left: 60px;
}
.project-details-carousel-big .swiper-button-prev::after {
  color: var(--color-primary);
  content: "\f060";
}
.project-details-carousel-big:hover .swiper-button-next,
.project-details-carousel-big:hover .swiper-button-prev {
  opacity: 1;
}

#gallery {
  padding-top: 40px;
}
@media screen and (min-width: 991px) {
  #gallery {
    padding: 0;
  }
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
}
.img-wrapper img {
  width: 100%;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}
@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#nextButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
}
#prevButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}
#exitButton:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}

.product-bg-h3 {
  background-image: url(../images/project/27.jpg);
}

.rts-product-area.product-bg-h3 .solari-title-area-three .title {
  color: #fff;
}
.rts-product-area.product-bg-h3 .solari-title-area-three p.disc {
  color: #D9D9D9;
}

.flot-wrapper {
  width: 150%;
  overflow: hidden;
}

.single-progress-area-h4 {
  margin-top: 30px;
}
.single-progress-area-h4:first-child {
  margin-top: 0;
}
.single-progress-area-h4 .page-wrapper {
  width: calc(100% - 100px);
  margin: 100px auto 200px;
}
.single-progress-area-h4 .progress {
  height: 6px;
  position: relative;
  margin-top: 14px;
  border-radius: 4px;
}
.single-progress-area-h4 .progress .bg--primary {
  background: var(--color-primary);
}
.single-progress-area-h4 .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
}
.single-progress-area-h4 .progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}
.single-progress-area-h4 .progress-top p {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #1F1F25;
  margin-bottom: 0;
  font-family: var(--font-primary);
}
.single-progress-area-h4 .progress-top span.parcent {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #111A2E;
}

.bg-yellow {
  background: #F26722;
}

.bg-dark {
  background: #1F1F25;
}

.rts-solar-supply-start .solari-title-area-three .title {
  font-size: 40px;
  line-height: 60px;
}
@media only screen and (max-width: 575px) {
  .rts-solar-supply-start .solari-title-area-three .title {
    font-size: 32px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 1199px) {
  .rts-solar-supply-start .solari-title-area-three .title br {
    display: none;
  }
}

.map-area-h3 img {
  width: 100%;
}

.swiper-h1-solari-main-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
}
.swiper-h1-solari-main-wrapper .rts-solar-single-product-one:hover .thumbnail img {
  transform: scale(1.2);
}
.swiper-h1-solari-main-wrapper .rts-solar-single-product-one .thumbnail {
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.swiper-h1-solari-main-wrapper .rts-solar-single-product-one .thumbnail img {
  width: 100%;
  transition: 1s;
  display: block;
}
.swiper-h1-solari-main-wrapper .swiper-pagination-bullet {
  background: var(--color-primary);
}

.word-line {
  overflow: hidden;
}

.skew-up {
  opacity: 0;
}

.rts-solar-single-product-one {
  border-radius: 10px;
}
.rts-solar-single-product-one .thumbnail {
  border-radius: 10px;
  display: block;
}
.rts-solar-single-product-one .thumbnail img {
  transition: 0.3s;
}
.rts-solar-single-product-one:hover .thumbnail img {
  transform: scale(1.2);
}

.single-case-ac .thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.single-case-ac .thumbnail img {
  transition: 0.3s;
}
.single-case-ac .thumbnail:hover img {
  transform: scale(1.09);
}

.single-product-main-four {
  display: flex;
  align-items: center;
  gap: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-product-main-four {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 80px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single-product-main-four {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 80px;
    gap: 30px;
  }
}

.bg-lighten {
  background: #F6F6F6;
}

.mission-accordion-area {
  margin-top: -100px;
  position: relative;
  z-index: 5;
  width: 536px;
  margin-left: 150px;
}
@media only screen and (max-width: 767px) {
  .mission-accordion-area {
    margin-top: -130px;
    position: relative;
    z-index: 5;
    width: 536px;
    margin-left: 0;
    padding-right: 15px;
  }
}
.mission-accordion-area .accordion .accordion-item {
  border: none;
  box-shadow: none;
  background: #fff;
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  border-radius: 6px;
  transition: none;
}
.mission-accordion-area .accordion .accordion-item .accordion-header {
  background: transparent;
}
.mission-accordion-area .accordion .accordion-item .accordion-header .accordion-button {
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
  color: #1F1F25;
  line-height: 28px;
  border-radius: 6px 6px 0 0;
  padding: 23px 22px;
  background: transparent;
  position: relative;
}
.mission-accordion-area .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: none;
  content: "+";
  font-family: "fontAwesome";
  transform: none;
  top: 22px;
  position: absolute;
  right: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(74, 171, 61, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.mission-accordion-area .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true]::after {
  content: "\f068";
}
.mission-accordion-area .accordion .accordion-item .accordion-body {
  padding: 0 22px 22px 22px;
}

.single-shopping-product {
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.single-shopping-product:hover .button-cart-area .inner {
  transform: translateY(-28px);
}
.single-shopping-product .button-cart-area {
  height: 23px;
  overflow: hidden;
}
.single-shopping-product .button-cart-area .inner {
  transition: 0.3s;
}
.single-shopping-product .button-cart-area .pricing-area {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  justify-content: center;
  transition: 0.3s;
  width: 100%;
}
.single-shopping-product .button-cart-area .pricing-area .active {
  font-weight: 600;
  line-height: 26px;
  color: #1F1F25;
}
.single-shopping-product .button-cart-area .pricing-area .none {
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  color: #74787C;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.single-shopping-product .button-cart-area .pricing-area .none::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 1px;
  background: #74787C;
  top: 50%;
  transform: translateY(-50%);
}
.single-shopping-product .button-cart-area .cart-btn {
  transition: 0.5s;
}
.single-shopping-product .button-cart-area .cart-btn i {
  color: #D01010;
}
.single-shopping-product:hover a.thumbnail img {
  transform: scale(1.2);
}
.single-shopping-product a.thumbnail {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  display: block;
}
.single-shopping-product a.thumbnail img {
  width: 100%;
  transition: 0.5s;
}
.single-shopping-product .inner-content {
  margin-top: 30px;
}
.single-shopping-product .inner-content .title {
  margin-bottom: 9px;
  transition: 0.3s;
}
.single-shopping-product .inner-content .title:hover {
  color: var(--color-primary);
}
.single-shopping-product .inner-content a.cart-btn {
  color: #1F1F25;
  font-weight: 600;
  line-height: 16px;
  transition: 0.3s;
}
.single-shopping-product .inner-content a.cart-btn i {
  margin-right: 8px;
}
.single-shopping-product .inner-content a.cart-btn:hover {
  color: var(--color-primary);
}
.single-shopping-product .invisible-btn {
  position: absolute;
  left: 50%;
  top: 35%;
  transition: 0.3s;
  transform: translateX(-50%) scale(0);
}
.single-shopping-product .invisible-btn ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}
.single-shopping-product .invisible-btn ul li {
  margin: 0 5px;
}
.single-shopping-product .invisible-btn ul li a {
  width: 40px;
  height: 40px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.single-shopping-product .invisible-btn ul li a i {
  color: var(--color-primary);
  transition: 0.3s;
}
.single-shopping-product .invisible-btn ul li a:hover {
  background: var(--color-primary);
}
.single-shopping-product .invisible-btn ul li a:hover i {
  color: #fff !important;
}

.single-category {
  position: relative;
  max-width: 100%;
}
.single-category .thumbnail {
  width: 100%;
  display: block;
}
.single-category .thumbnail img {
  width: 100%;
}
.single-category .single-category {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  text-align: center;
}
.single-category .single-category .title {
  min-width: -moz-max-content;
  min-width: max-content;
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
}
.single-category .single-category .arrow-btn-solari {
  display: flex;
  text-align: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  transition: 0.3s;
}
.single-category .single-category .arrow-btn-solari:hover {
  color: var(--color-primary);
}
.single-category .single-category .arrow-btn-solari i {
  margin-left: 5px;
}

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

.video-thumbnail-img {
  position: relative;
}
.video-thumbnail-img .vedio-icone .video-play-button::after {
  background: #fff;
  border: none;
}
.video-thumbnail-img .vedio-icone .video-play-button::before {
  background: rgba(255, 255, 255, 0.2666666667);
  border: none;
}

.rts-elevate-pagination ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}
.rts-elevate-pagination ul li {
  margin: 0;
  margin-right: 10px;
}
.rts-elevate-pagination ul li button {
  width: 50px;
  height: 50px;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  border: 1px solid #E9E9E9;
  transition: 0.3s;
}
.rts-elevate-pagination ul li button.active {
  background: var(--color-primary);
  color: #fff;
}
.rts-elevate-pagination ul li button:hover {
  background: var(--color-primary);
  color: #fff;
}

.rts-single-working-process {
  background-image: url(../images/working-process/01.png);
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  height: 386px;
  padding: 50px 40px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 1199px) {
  .rts-single-working-process {
    padding: 25px;
  }
}
.rts-single-working-process:hover .icon {
  background: var(--color-primary);
}
.rts-single-working-process:hover .icon svg path {
  fill: #fff;
}
.rts-single-working-process::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3215686275);
  filter: blur(120px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.35;
}
.rts-single-working-process .icon {
  width: 100px;
  height: 100px;
  background: rgba(74, 171, 61, 0.0705882353);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}
.rts-single-working-process .icon svg path {
  fill: var(--color-primary);
  transition: 0.3s;
}
@media only screen and (max-width: 1199px) {
  .rts-single-working-process .content .title {
    font-size: 22px;
  }
}
.rts-single-working-process .content p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.rts-single-working-process .content .step_number {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rts-single-working-process .content .step_number span {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.bg-testimonials-1 {
  background-image: url(../images/testimonials/01.jpg);
}

.rts-single-testimonials-one {
  padding: 40px;
  background: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  .rts-single-testimonials-one {
    padding: 15px;
  }
}
.rts-single-testimonials-one p.disc {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #F1F1F1;
  margin-bottom: 30px;
}
.rts-single-testimonials-one .awener-area {
  display: flex;
  align-items: center;
}
.rts-single-testimonials-one .awener-area a {
  margin-right: 12px;
  display: block;
}
.rts-single-testimonials-one .awener-area .main .title {
  margin-bottom: 3px;
  transition: 0.3s;
}
.rts-single-testimonials-one .awener-area .main .title:hover {
  color: var(--color-primary);
}
.rts-single-testimonials-one .awener-area .main span {
  color: var(--color-primary);
}

.flot-wrapper {
  cursor: url(../images/project/shape/03.png), auto;
}
.flot-wrapper .single-project-solari-h3 {
  cursor: url(../images/project/shape/03.png), auto;
}
.flot-wrapper .single-project-solari-h3 .thumbnail {
  cursor: url(../images/project/shape/03.png), auto;
}

.faq-section-start-solar .stok-bg.images-r.left {
  left: 5%;
}

.stok-bg.images-r.left {
  text-align: left;
  left: 11%;
}

.bg-tst-ac {
  background-image: url(../images/about/05.jpg);
}

.rts-service-area-height-solari .stok-bg {
  z-index: 0;
}
.rts-service-area-height-solari .stok-bg.images-r.left {
  text-align: left;
  left: 2%;
}

.rts-case-studyes .stok-bg {
  z-index: 0;
}

.air-condition-swiper-main-wrapper {
  margin-top: 50px;
  overflow: hidden;
}
.air-condition-swiper-main-wrapper .single-test {
  padding: 32px 40px;
  background: #fff;
  border-radius: 10px;
}
.air-condition-swiper-main-wrapper .single-test .profile-area {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EFEFEF;
}
.air-condition-swiper-main-wrapper .single-test .profile-area img {
  margin-right: 20px;
}
.air-condition-swiper-main-wrapper .single-test .profile-area .admin .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 0px;
}
.air-condition-swiper-main-wrapper .single-test .profile-area .admin span {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
.air-condition-swiper-main-wrapper .single-test p.disc {
  color: #171C26;
}

.thumbnail-img-testimonials-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.thumbnail-img-testimonials-right .thumbnail {
  margin-top: 0;
}
.thumbnail-img-testimonials-right .thumbnail img {
  border: 10px solid #fff;
  border-radius: 10px;
}
.thumbnail-img-testimonials-right .inner-content {
  position: absolute;
  width: 306px;
  height: 275px;
  background: #171C26;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  left: 290px;
  top: 30%;
}
.thumbnail-img-testimonials-right .inner-content .thumbnail {
  margin-top: 15px;
  border: none;
}
.thumbnail-img-testimonials-right .inner-content .thumbnail img {
  border: none;
  border-radius: 0;
}
.thumbnail-img-testimonials-right .inner-content p.disc {
  font-weight: 500;
  margin-top: 30px;
  font-size: 22px;
  line-height: 30px;
  font-family: var(--font-primary);
  color: #fff;
  margin-bottom: 0;
}

.rts-feedback-area-solar-energy {
  background: #1B1B1B;
}
.rts-feedback-area-solar-energy p.pre {
  color: var(--color-primary);
}
.rts-feedback-area-solar-energy .title {
  color: #fff;
}

.rts-single-feedback-solar-energy {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  background: #1F1F1F;
  border-radius: 15px;
}
@media only screen and (max-width: 1199px) {
  .rts-single-feedback-solar-energy {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .rts-single-feedback-solar-energy {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rts-single-feedback-solar-energy .client-image {
  width: -moz-max-content;
  width: max-content;
}
.rts-single-feedback-solar-energy .client-image img {
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 7px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
}
.rts-single-feedback-solar-energy .content p.para {
  color: #FFFFFF;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #2C2C2C;
}
.rts-single-feedback-solar-energy .content .cottom-review-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rts-single-feedback-solar-energy .content .cottom-review-area p {
  margin-bottom: 0;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}
.rts-single-feedback-solar-energy .content .cottom-review-area .stars i {
  color: var(--color-primary);
}

.mySwiper-testimonials-solari {
  overflow: hidden;
  max-width: 655px;
  margin: auto;
}

.testimonials-review-main-wrapper {
  text-align: center;
}
.testimonials-review-main-wrapper .single-review-area-soalri {
  max-width: 820px;
  margin: auto;
}
.testimonials-review-main-wrapper .single-review-area-soalri p.dsic {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}
.testimonials-review-main-wrapper .single-review-area-soalri .quote {
  margin-bottom: 25px;
}
.testimonials-review-main-wrapper .single-review-area-soalri p .disc {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #7E7E7E;
}
.testimonials-review-main-wrapper .single-review-area-soalri .author-area {
  margin-top: 30px;
}
.testimonials-review-main-wrapper .single-review-area-soalri .author-area .authoe {
  margin-bottom: 14px;
}
.testimonials-review-main-wrapper .single-review-area-soalri .author-area .title {
  margin-bottom: 2px;
}
.testimonials-review-main-wrapper .single-review-area-soalri .author-area span {
  letter-spacing: 0.1em;
  color: #7E7E7E;
}
.testimonials-review-main-wrapper .single-review-area-soalri .author-area .star-area {
  margin-top: 7px;
}
.testimonials-review-main-wrapper .single-review-area-soalri .author-area .star-area i {
  font-size: 16px;
  color: var(--color-primary);
}

.rts-client-review-area-h2 {
  position: relative;
  z-index: 10;
}
.rts-client-review-area-h2 .stok-bg {
  margin-left: -190px;
}
.rts-client-review-area-h2 .shape-author-img {
  position: absolute;
  left: 20%;
  top: 200px;
}
@media only screen and (max-width: 767px) {
  .rts-client-review-area-h2 .shape-author-img {
    display: none;
  }
}
.rts-client-review-area-h2 .shape-author-img-2 {
  position: absolute;
  right: 20%;
  top: 200px;
}
@media only screen and (max-width: 767px) {
  .rts-client-review-area-h2 .shape-author-img-2 {
    display: none;
  }
}

.gsap-marker-end,
.gsap-marker-start {
  display: none !important;
}

.gsap-marker-scroller-end {
  display: none !important;
}

.gsap-marker-scroller-start {
  display: none !important;
}

.rts-solari-blog-area-start.rts-section-gap.reveal .stok-bg {
  z-index: 0;
}

.mySwiper-testimonials-solari {
  position: relative;
  padding-bottom: 93px;
}
.mySwiper-testimonials-solari .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mySwiper-testimonials-solari .swiper-pagination-bullet {
  background-color: #BBBBBB;
  opacity: 1;
}
.mySwiper-testimonials-solari .swiper-pagination-bullet-active {
  background-color: transparent;
  opacity: 1;
  background-image: url(../images/banner/shape/01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
}

.single-pricing-solari-area {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  transition: 0.3s;
}
@media only screen and (max-width: 575px) {
  .single-pricing-solari-area {
    padding: 20px;
  }
}
.single-pricing-solari-area::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #4AAB3D, rgba(74, 171, 61, 0));
  transition: 0.3s;
  opacity: 0;
}
.single-pricing-solari-area .pre-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #4AAB3D;
}
.single-pricing-solari-area .title-price {
  font-weight: 700;
  font-size: 34px;
  color: #1F1F25;
  line-height: 44px;
  margin-top: 14px;
}
.single-pricing-solari-area .title-price span {
  font-weight: 600;
  font-size: 16px;
  line-height: 44px;
}
.single-pricing-solari-area .pricing-oppertunity-wrapper {
  margin-bottom: 30px;
}
.single-pricing-solari-area .pricing-oppertunity-wrapper .single {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.single-pricing-solari-area .pricing-oppertunity-wrapper .single::after {
  position: absolute;
  left: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.single-pricing-solari-area a.rts-btn {
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  background: transparent;
  color: var(--color-primary);
}
.single-pricing-solari-area a.rts-btn::before {
  background: transparent;
  border: 1px solid var(--color-primary);
}
.single-pricing-solari-area:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
}
.single-pricing-solari-area:hover::after {
  opacity: 1;
}

.single-team-solari-h3 {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  display: block;
}
.single-team-solari-h3:last-child {
  margin-bottom: 0;
}
.single-team-solari-h3 .name-social-area-wrapper {
  position: absolute;
  bottom: 0px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  opacity: 0;
  bottom: -50px;
  transition: 0.3s;
}
.single-team-solari-h3 .name-social-area-wrapper .name-area p {
  margin-bottom: 0;
  background: var(--color-primary);
  padding: 2px 8px;
  color: #fff;
  border-radius: 5px 5px 0 0;
  max-width: -moz-max-content;
  max-width: max-content;
}
.single-team-solari-h3 .name-social-area-wrapper .name-area .title {
  border-radius: 0 0 5px 5px;
  background: #fff;
  padding: 5px 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.single-team-solari-h3 .name-social-area-wrapper .share-icon i {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.single-team-solari-h3:hover .name-social-area-wrapper {
  opacity: 1;
  bottom: 0;
}

.single-project-solari-h3 {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  display: block;
}
.single-project-solari-h3 .thumbnail img {
  width: 100%;
  border-radius: 10px;
}
.single-project-solari-h3:last-child {
  margin-bottom: 0;
}
.single-project-solari-h3 .name-social-area-wrapper {
  position: absolute;
  bottom: 0px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  opacity: 0;
  bottom: -50px;
  transition: 0.3s;
}
.single-project-solari-h3 .name-social-area-wrapper .name-area p {
  margin-bottom: 0;
  background: var(--color-primary);
  padding: 2px 8px;
  color: #fff;
  border-radius: 5px 5px 0 0;
  max-width: -moz-max-content;
  max-width: max-content;
}
.single-project-solari-h3 .name-social-area-wrapper .name-area .title {
  border-radius: 0 0 5px 5px;
  background: #fff;
  padding: 5px 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}
.single-project-solari-h3 .name-social-area-wrapper .share-icon i {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}
.single-project-solari-h3:hover .name-social-area-wrapper {
  opacity: 1;
  bottom: 0;
}

.mt-dec--200 {
  margin-top: -330px;
}

.solari-title-area-three.text-left span.pre-title {
  margin: 0;
  margin-bottom: 16px;
}

.pt--210 {
  padding-top: 210px;
}

.index-shop .rts-btn {
  border-radius: 6px;
}
.index-shop .rts-btn::before {
  border-radius: 6px;
}

.banner-shop-content-wrapper .pre {
  font-size: 16px;
}

.shop-container-featuer {
  max-width: 1760px;
  margin: auto;
}

.single-featue-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px 30px 30px;
  background: #E3FAEA;
  border-radius: 10px;
}
@media only screen and (max-width: 575px) {
  .single-featue-item {
    padding: 15px;
  }
}
.single-featue-item .right-img-area img {
  transition: 0.6s;
}
.single-featue-item:hover .right-img-area img {
  transform: scale(1.05);
}
.single-featue-item .left-content-inner span.offer {
  color: #D01010;
  font-weight: 600;
  line-height: 26px;
  font-size: 16px;
}
.single-featue-item .left-content-inner .title {
  font-weight: 600;
  line-height: 32px;
  font-size: 24px;
  color: #1F1F25;
  margin-top: 12px;
}
@media only screen and (max-width: 1199px) {
  .single-featue-item .left-content-inner .title {
    line-height: 30px;
    font-size: 18px;
  }
}
.single-featue-item .left-content-inner a.rts-btn {
  padding: 11px 28px;
}

.category-title-left-area a.rts-btn {
  padding: 15px 45px;
}

.title-shop-main-center {
  text-align: center;
}

/*--------------------------------------------------------------
Heading  css
--------------------------------------------------------------*/
.react-heading,
.rs-dual-heading {
  position: relative;
}
.react-heading.title-border-yes .title,
.rs-dual-heading.title-border-yes .title {
  border-bottom: 1px solid #F1F1F1;
  padding-bottom: 20px;
}
.react-heading .title-inner,
.rs-dual-heading .title-inner {
  position: relative;
  z-index: 1;
}
.react-heading .title-inner > span,
.rs-dual-heading .title-inner > span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Exo", sans-serif;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.react-heading .title-inner .sub-text,
.rs-dual-heading .title-inner .sub-text {
  margin: 0 0 16px;
  display: block;
  color: var(--color-primary);
  font-size: 15px;
  line-height: 16px;
  font-family: "Exo", sans-serif;
  font-weight: 600;
  z-index: 1;
}
.react-heading .title-inner .sub-text.title-upper,
.rs-dual-heading .title-inner .sub-text.title-upper {
  text-transform: uppercase;
}
.react-heading .title-inner .sub-text span.high_light_text,
.rs-dual-heading .title-inner .sub-text span.high_light_text {
  font-size: 15px;
  background: var(--color-primary);
  border-radius: 3px;
  margin-right: 6px;
  font-weight: 600;
  padding: 3px 7px;
}
.react-heading .title-inner.yes .title,
.rs-dual-heading .title-inner.yes .title {
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  color: #333;
  -webkit-text-stroke: 1px white;
  -webkit-text-fill-color: transparent;
}
.react-heading .title-inner .title,
.rs-dual-heading .title-inner .title {
  color: #1F1F25;
  margin-top: 8px;
  margin-bottom: 5px;
  font-size: 48px;
  line-height: 62px;
  z-index: 1;
}
.react-heading .title-inner .title.title-upper,
.rs-dual-heading .title-inner .title.title-upper {
  text-transform: uppercase;
}
.react-heading .title-inner .title span,
.rs-dual-heading .title-inner .title span {
  font-weight: 100;
  position: relative;
  z-index: 1;
  display: block;
}
.react-heading .title-inner .title .high_light_text,
.rs-dual-heading .title-inner .title .high_light_text {
  color: var(--color-primary);
  font-family: "Exo", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}
.react-heading span.watermark,
.rs-dual-heading span.watermark {
  font-size: 150px;
  position: absolute;
  left: 0;
  top: 0;
  text-transform: uppercase;
  font-family: "Exo", sans-serif;
  font-weight: 700;
  opacity: 0.06;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 95px;
  display: flex;
  align-items: center;
  -webkit-text-stroke: 1px #000000;
}
.react-heading .rt-button a,
.rs-dual-heading .rt-button a {
  color: #ffffff;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.react-heading .rt-button a:hover,
.rs-dual-heading .rt-button a:hover {
  color: var(--color-primary);
}
.react-heading .rt-button a i,
.rs-dual-heading .rt-button a i {
  display: inline-block;
  margin-left: 10px;
  color: #ffffff;
  height: 27px;
  width: 27px;
  background: var(--color-primary);
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
}
.react-heading.big .title-inner h2,
.rs-dual-heading.big .title-inner h2 {
  font-size: 36px;
  line-height: 44px;
}
.react-heading.big .description p,
.rs-dual-heading.big .description p {
  font-size: 20px;
  line-height: 32px;
}
.react-heading.style4 .title-inner .title,
.rs-dual-heading.style4 .title-inner .title {
  margin-bottom: 8px;
}
.react-heading.style4 .title-inner .title-img,
.rs-dual-heading.style4 .title-inner .title-img {
  margin-bottom: 12px;
}
.react-heading.style5 .sub-text,
.rs-dual-heading.style5 .sub-text {
  display: inline-block;
}
.react-heading.style2,
.rs-dual-heading.style2 {
  position: relative;
  padding-bottom: 15px;
}
.react-heading.style2:after,
.rs-dual-heading.style2:after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  width: 45px;
  height: 2px;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.react-heading.style2:before,
.rs-dual-heading.style2:before {
  content: "";
  position: absolute;
  background: var(--color-primary);
  width: 13px;
  height: 2px;
  left: 48px;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.react-heading.style2.center:after,
.rs-dual-heading.style2.center:after {
  transform: translateX(-50%);
  left: 50%;
}
.react-heading.style2.right:after,
.rs-dual-heading.style2.right:after {
  left: auto;
  right: 0;
}
.react-heading.style2 h2,
.rs-dual-heading.style2 h2 {
  margin-bottom: 12px;
}
.react-heading.style2 .description p,
.rs-dual-heading.style2 .description p {
  margin-bottom: 12px;
}
.react-heading.style2.Lite:after,
.rs-dual-heading.style2.Lite:after {
  background: #fff !important;
}
.react-heading.style2 .title:after,
.rs-dual-heading.style2 .title:after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  width: 7px;
  height: 2px;
  left: 64px;
  bottom: -15px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.react-heading.style3,
.rs-dual-heading.style3 {
  position: relative;
  padding-bottom: 12px;
}
.react-heading.style3 h2,
.rs-dual-heading.style3 h2 {
  margin-bottom: 12px;
}
.react-heading.style3 .description,
.rs-dual-heading.style3 .description {
  position: relative;
  padding-left: 80px;
}
.react-heading.style3 .description:after,
.rs-dual-heading.style3 .description:after {
  content: "";
  position: absolute;
  border: 0;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  left: 0;
  top: 14px;
}
.react-heading.style3 .description p,
.rs-dual-heading.style3 .description p {
  margin-bottom: 12px;
}
.react-heading.style3.Lite .description:after,
.rs-dual-heading.style3.Lite .description:after {
  background: #fff !important;
}
.react-heading.style1,
.rs-dual-heading.style1 {
  position: relative;
  padding-bottom: 12px;
}
.react-heading.style1 h2,
.rs-dual-heading.style1 h2 {
  margin-bottom: 12px;
}
.react-heading.style1 .description,
.rs-dual-heading.style1 .description {
  position: relative;
  padding-right: 80px;
}
.react-heading.style1 .description:after,
.rs-dual-heading.style1 .description:after {
  content: "";
  position: absolute;
  border: 0;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  right: 0;
  top: 14px;
}
.react-heading.style1 .description p,
.rs-dual-heading.style1 .description p {
  margin-bottom: 12px;
}
.react-heading.style1.Lite .description:after,
.rs-dual-heading.style1.Lite .description:after {
  background: #fff !important;
}
.react-heading.style8,
.rs-dual-heading.style8 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
}
.react-heading.style8 .title-inner,
.rs-dual-heading.style8 .title-inner {
  padding-left: 25px;
  position: relative;
  display: inline-block;
}
.react-heading.style8 .title-inner .sub-text,
.rs-dual-heading.style8 .title-inner .sub-text {
  margin-bottom: 5px;
}
.react-heading.style8 .title-inner:after,
.rs-dual-heading.style8 .title-inner:after {
  content: "";
  position: absolute;
  border: 0;
  width: 2px;
  height: 100%;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  left: 0;
  top: 0;
}
.react-heading.style8 .description,
.rs-dual-heading.style8 .description {
  padding-left: 25px;
  position: relative;
}
.react-heading.style8 .description:after,
.rs-dual-heading.style8 .description:after {
  content: "";
  position: absolute;
  border: 0;
  width: 2px;
  height: 100%;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  left: 0;
  top: 0;
}
.react-heading.style8 h2,
.rs-dual-heading.style8 h2 {
  margin-bottom: 5px;
}
.react-heading.style8.text-center .description,
.rs-dual-heading.style8.text-center .description {
  padding-top: 15px;
  padding-left: 0px;
}
.react-heading.style8.text-center .description:after,
.rs-dual-heading.style8.text-center .description:after {
  display: none;
}
.react-heading.style8.Lite .title-inner:after,
.rs-dual-heading.style8.Lite .title-inner:after {
  background: #fff;
}
.react-heading.style8.Lite .description:after,
.rs-dual-heading.style8.Lite .description:after {
  background: #fff !important;
}
.react-heading.style6 .title-inner,
.rs-dual-heading.style6 .title-inner {
  position: relative;
  padding-bottom: 12px;
}
.react-heading.style6 .title-inner h2,
.rs-dual-heading.style6 .title-inner h2 {
  margin-bottom: 12px;
}
.react-heading.style6 .title-inner .sub-text,
.rs-dual-heading.style6 .title-inner .sub-text {
  position: relative;
  padding-left: 14px;
}
.react-heading.style6 .title-inner .sub-text:after,
.rs-dual-heading.style6 .title-inner .sub-text:after {
  content: "";
  position: absolute;
  background: var(--color-primary);
  width: 2px;
  height: 14px;
  left: 0;
  top: 1px;
  z-index: 1;
}
.react-heading.style6 .title-inner .sub-text p,
.rs-dual-heading.style6 .title-inner .sub-text p {
  margin-bottom: 12px;
}
.react-heading.style6.text-center .title-inner .sub-text, .react-heading.style6.text-right .title-inner .sub-text,
.rs-dual-heading.style6.text-center .title-inner .sub-text,
.rs-dual-heading.style6.text-right .title-inner .sub-text {
  display: inline-block;
}
.react-heading.style6.text-center .sub-text,
.rs-dual-heading.style6.text-center .sub-text {
  position: relative;
  padding-left: 0px;
  padding-top: 60px;
  color: #1F1F25;
}
.react-heading.style6.text-center .sub-text:after,
.rs-dual-heading.style6.text-center .sub-text:after {
  content: "";
  width: 77px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -1px;
  width: 2px;
  height: 50px;
}
.react-heading.style6.Lite .sub-text:after,
.rs-dual-heading.style6.Lite .sub-text:after {
  background: #fff !important;
}
.react-heading.style6.dark .sub-text:after,
.rs-dual-heading.style6.dark .sub-text:after {
  background: #232023 !important;
}
.react-heading.style4.left .title-inner .sub-text,
.rs-dual-heading.style4.left .title-inner .sub-text {
  padding-left: 43px;
}
.react-heading.style4.left .title-inner .sub-text:before,
.rs-dual-heading.style4.left .title-inner .sub-text:before {
  left: 0;
}
.react-heading.style4.right .title-inner .sub-text,
.rs-dual-heading.style4.right .title-inner .sub-text {
  padding-right: 43px;
}
.react-heading.style4.right .title-inner .sub-text:after,
.rs-dual-heading.style4.right .title-inner .sub-text:after {
  right: 0;
}
.react-heading.style4 .title-inner,
.rs-dual-heading.style4 .title-inner {
  position: relative;
  padding-bottom: 12px;
}
.react-heading.style4 .title-inner h2,
.rs-dual-heading.style4 .title-inner h2 {
  margin-bottom: 12px;
  display: block;
}
.react-heading.style4 .title-inner .sub-text,
.rs-dual-heading.style4 .title-inner .sub-text {
  position: relative;
  color: #1F1F25;
  display: inline-block;
}
.react-heading.style4 .title-inner .sub-text:before, .react-heading.style4 .title-inner .sub-text:after,
.rs-dual-heading.style4 .title-inner .sub-text:before,
.rs-dual-heading.style4 .title-inner .sub-text:after {
  content: "";
  position: absolute;
  border: 0;
  width: 35px;
  height: 2px;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  left: -20px;
  top: 12px;
}
.react-heading.style4 .title-inner .sub-text:before,
.rs-dual-heading.style4 .title-inner .sub-text:before {
  left: -40px;
}
.react-heading.style4 .title-inner .sub-text:after,
.rs-dual-heading.style4 .title-inner .sub-text:after {
  left: auto;
  right: -40px;
}
.react-heading.style4 .title-inner .sub-text p,
.rs-dual-heading.style4 .title-inner .sub-text p {
  margin-bottom: 12px;
}
.react-heading.style4.Lite .sub-text:before, .react-heading.style4.Lite .sub-text:after,
.rs-dual-heading.style4.Lite .sub-text:before,
.rs-dual-heading.style4.Lite .sub-text:after {
  background: #fff !important;
}
.react-heading.style4.text-center .title-inner .sub-text, .react-heading.style4.text-right .title-inner .sub-text,
.rs-dual-heading.style4.text-center .title-inner .sub-text,
.rs-dual-heading.style4.text-right .title-inner .sub-text {
  display: inline-block;
}
.react-heading.style7 .title-inner,
.rs-dual-heading.style7 .title-inner {
  position: relative;
  padding-bottom: 12px;
}
.react-heading.style7 .title-inner h2,
.rs-dual-heading.style7 .title-inner h2 {
  margin-bottom: 12px;
}
.react-heading.style7 .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner .sub-text {
  position: relative;
  padding-right: 65px;
  display: inline-block;
  color: #1F1F25;
}
.react-heading.style7 .title-inner .sub-text:after,
.rs-dual-heading.style7 .title-inner .sub-text:after {
  content: "";
  position: absolute;
  border: 0;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  right: 0;
  top: 12px;
}
.react-heading.style7 .title-inner .sub-text p,
.rs-dual-heading.style7 .title-inner .sub-text p {
  margin-bottom: 12px;
}
.react-heading.style7 .title-inner.Lite .sub-text:after,
.rs-dual-heading.style7 .title-inner.Lite .sub-text:after {
  background: #fff !important;
}
.react-heading.style7 .title-inner.text-center .title-inner .sub-text, .react-heading.style7 .title-inner.text-right .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner.text-center .title-inner .sub-text,
.rs-dual-heading.style7 .title-inner.text-right .title-inner .sub-text {
  display: inline-block;
}
.react-heading.style9 .title-img img,
.rs-dual-heading.style9 .title-img img {
  position: relative;
}
.react-heading.style9 .title-inner .title-img.top,
.rs-dual-heading.style9 .title-inner .title-img.top {
  margin-bottom: 15px;
}
.react-heading.style9 .title-upper,
.rs-dual-heading.style9 .title-upper {
  margin-bottom: 5px;
}
.react-heading.style9 .bottom-line .title,
.rs-dual-heading.style9 .bottom-line .title {
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 20px;
}
.react-heading.style9 .bottom-line .title:after,
.rs-dual-heading.style9 .bottom-line .title:after {
  content: "";
  position: absolute;
  border: 0;
  width: 80px;
  height: 2px;
  background: var(--color-primary);
  z-index: 9;
  margin-left: 0;
  bottom: 0;
  left: 0;
}
.react-heading.style9.text-center .bottom-line .title:after,
.rs-dual-heading.style9.text-center .bottom-line .title:after {
  transform: translateX(-50%);
  left: 50%;
}
.react-heading.style10.text-center,
.rs-dual-heading.style10.text-center {
  text-align: left !important;
}
.react-heading.style10.text-center .title-inner,
.rs-dual-heading.style10.text-center .title-inner {
  text-align: center;
}
.react-heading.style10.text-right,
.rs-dual-heading.style10.text-right {
  text-align: left !important;
}
.react-heading.style10.text-right .title-inner,
.rs-dual-heading.style10.text-right .title-inner {
  text-align: right;
}
.react-heading.style10 .title-inner,
.rs-dual-heading.style10 .title-inner {
  transform: rotate(-90deg) translatex(-50%);
  display: inline-block;
  transform-origin: left center 0;
}
.react-heading.style10 .title-inner .title,
.rs-dual-heading.style10 .title-inner .title {
  white-space: nowrap;
  position: relative;
  top: 40px;
  left: 10px;
  margin-bottom: 0;
}
.react-heading.style10 .description,
.rs-dual-heading.style10 .description {
  transform: rotate(-90deg);
  display: inline-block;
}
.react-heading.style11,
.rs-dual-heading.style11 {
  text-align: right !important;
}
.react-heading.style11.text-center,
.rs-dual-heading.style11.text-center {
  text-align: right !important;
}
.react-heading.style11.text-center .title-inner,
.rs-dual-heading.style11.text-center .title-inner {
  text-align: center;
}
.react-heading.style11.text-right,
.rs-dual-heading.style11.text-right {
  text-align: right !important;
}
.react-heading.style11.text-right .title-inner,
.rs-dual-heading.style11.text-right .title-inner {
  text-align: right;
}
.react-heading.style11 .title-inner,
.rs-dual-heading.style11 .title-inner {
  transform: rotate(90deg);
  display: inline-block;
}
.react-heading.style11 .description,
.rs-dual-heading.style11 .description {
  transform: rotate(90deg);
  display: inline-block;
}
.react-heading.style12 .sub-text,
.rs-dual-heading.style12 .sub-text {
  display: inline-block;
  position: relative;
}
.react-heading.style12 .sub-text:before,
.rs-dual-heading.style12 .sub-text:before {
  content: "";
  position: absolute;
  background: #086ad8;
  left: -15px;
  top: 0px;
  z-index: 1;
  width: 2px;
  height: 14px;
}
.react-heading.style12 .sub-text:after,
.rs-dual-heading.style12 .sub-text:after {
  content: "";
  position: absolute;
  background: #086ad8;
  right: -15px;
  top: 0px;
  z-index: 1;
  width: 2px;
  height: 14px;
}
.react-heading.style13 .title-inner .sub-text,
.rs-dual-heading.style13 .title-inner .sub-text {
  position: relative;
  display: unset;
  padding: 0 10px;
}
.react-heading.style13 .title-inner .title span.watermark,
.rs-dual-heading.style13 .title-inner .title span.watermark {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #777777;
  opacity: 0.1;
}

.list-style {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-style li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 5px;
}
.list-style li:before {
  content: "\f0a9";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

.no-padding {
  padding: 0 !important;
}

.rt-features-list.separator_yes {
  position: relative;
}

.rt-features-list.separator_yes:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  background: #F36464;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.font-size-0 {
  font-size: 0;
}

.img-border-radius img {
  border-radius: 15px !important;
}

.menu-area .navbar ul > li > a span {
  position: relative;
  transition: 0.5s;
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  border-radius: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.slider-style5 .slider-content-area {
  display: block;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: left;
}
.slider-style5 .slider-content-area .bottom--area {
  display: flex;
  align-items: center;
}
.slider-style5 .slider-content-area .bottom--area .single--item-img {
  margin-right: 20px;
}
.slider-style5 .slider-content-area h5 {
  margin-bottom: 0;
}
.slider-style5 .slider-content-area .slider-subtitle {
  margin-bottom: 0;
}

.rts-btn {
  padding: 17px 30px;
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
}
.rts-btn:hover {
  background-color: #1F1F25;
}

.navigation-center-bottom {
  padding-top: 80px;
}
.navigation-center-bottom .swiper-button-next {
  right: 44%;
  top: 97px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
  border-radius: 8px;
}
.navigation-center-bottom .swiper-button-prev {
  left: 44%;
  top: 97px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
  border-radius: 8px;
}
.navigation-center-bottom .swiper-pagination-fraction {
  font-weight: 700;
  font-size: 16px;
  color: #1C2539;
}
.navigation-center-bottom .swiper-pagination-fraction .swiper-pagination-current {
  color: #F64A00;
}

.blog--style2 ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.blog--style2 .blog-gird-item .grid-item {
  margin-bottom: 20px;
}
.blog--style2 .blog-gird-item .grid-item:last-child {
  margin-bottom: 0;
}
.blog--style2 .image-part {
  margin-right: 10px;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}
.blog--style2 .blog-content {
  margin-left: 10px;
}
.blog--style2 .blog-content .blog-meta li {
  font-size: 14px;
}
.blog--style2 .blog-content .blog-meta li i {
  padding-right: 10px;
}
.blog--style2 .blog-content .blog-meta li.cat_list {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.mfp-close {
  opacity: 0.9;
}

/* -----------------------
Team Member
--------------------------*/
.rs-addon-slider {
  margin: 0;
}
.rs-addon-slider .team-item {
  padding: 0 15px;
}

.rts-team .gray_yes .team-inner-wrap:hover img {
  filter: grayscale(100);
}

.content .elementor-widget-container:hover .react-heading .title {
  color: #fff;
}
.content.left .elementor-widget-container {
  transform: translateX(-60px);
  animation: slide-one 10s linear infinite;
}
.content.left.one .elementor-widget-container {
  transform: translateX(0px);
  animation: slide-one1 10s linear infinite;
}

@keyframes slide-one {
  0% {
    transform: translate3d(-60px, 0, 0);
  }
  25% {
    transform: translate3d(-30px, 0, 0);
  }
  50% {
    transform: translate3d(0, 0, 0);
  }
  75% {
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    transform: translate3d(-60px, 0, 0);
  }
}
@keyframes slide-one1 {
  0% {
    transform: translate3d(0px, 0, 0);
  }
  25% {
    transform: translate3d(-30px, 0, 0);
  }
  50% {
    transform: translate3d(-60px, 0, 0);
  }
  75% {
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 1300px) {
  .content.left .elementor-widget-container,
  .content.left.one .elementor-widget-container {
    animation: none;
    transform: translateX(0);
  }
}
.no-box-shadow .counter-top-area.style2 .rts-counter-list .count-text {
  box-shadow: none;
}

.icon-button a {
  background: var(--color-primary);
  color: #fff;
  padding: 3px 17px;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 25px;
  border-radius: 18px;
}
.icon-button a:hover {
  color: #fff;
  background: #1F1F25;
}
.icon-button a i:before {
  font-size: inherit;
}

.blogfull .icon-button a {
  margin-bottom: 0px;
}

.bg-overflow-hidden {
  overflow: hidden;
}

.cta-input-arae {
  position: relative;
}
.cta-input-arae input {
  border-radius: 100px;
  margin-bottom: 0 !important;
}
.cta-input-arae input[type=submit] {
  position: absolute;
  border-radius: 100px;
  max-width: -moz-max-content;
  max-width: max-content;
  right: -2px;
}

.mfp-iframe-holder .mfp-close {
  width: 30px !important;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
}

/** Portfolio CSS ---------------------
--------------------------------------*/
.portfolio-filter {
  text-align: center;
  max-width: 1290px;
  margin: auto;
  margin-bottom: 20px;
}
.portfolio-filter button {
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  margin-right: 7px;
}
.portfolio-filter span {
  color: #333;
  padding: 10px;
  cursor: pointer;
  display: inline-block;
}
.portfolio-filter span.active {
  color: var(--color-primary);
}
.portfolio-filter span:hover {
  color: var(--color-primary);
}

.sticky_search i:before {
  font-weight: 700 !important;
}

/*CTA CSS-----------------
--------------------------*/
.rs-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.rs-cta .cta-content {
  text-align: left;
  order: unset;
}
.rs-cta .cta-content .cta-title h3.title {
  margin: 0 0 10px;
}
.rs-cta .cta-content .cta-text .desc {
  margin: 0;
}
.rs-cta .rs-button {
  order: unset;
}
.rs-cta .rs-button .readon {
  line-height: 1;
  color: #fff;
  border-radius: 0;
  font-weight: 500;
}
.rs-cta .rs-button .readon:hover {
  background: #1F1F25;
}
.rs-cta .rs-button .readon i {
  margin: 0;
  transform: translateX(5px);
  transition: all ease 0.3s;
}

/******* RS Tab CSS  **********
-----------------------------*/
.rstab-main ul.nav {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.rstab-main ul.nav.bubble li a.active {
  position: relative;
}
.rstab-main ul.nav.bubble li a.active:after {
  top: 100%;
  left: 15%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: var(--color-primary);
  border-width: 12px;
  margin-left: -30px;
}
.rstab-main ul.nav li a {
  background: #f1f1f1;
  padding: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 1px;
}
.rstab-main ul.nav li a.active {
  background: var(--color-primary);
  color: #fff;
}
.rstab-main ul.nav li a i {
  margin-left: 50px;
  color: #1F1F25;
}
.rstab-main ul.nav li:first-child {
  margin-left: 0 !important;
}
.rstab-main ul.nav li:last-child {
  margin-right: 0 !important;
}
.rstab-main ul.nav li a:hover {
  background: var(--color-primary);
}
.rstab-main ul.nav.icon_top li a,
.rstab-main ul.nav.icon_top li a img,
.rstab-main ul.nav.icon_top li a i {
  display: block;
}
.rstab-main .tab-content {
  background: #f9f9f9;
  padding: 10px;
  overflow: hidden;
}
.rstab-main .tab-content p:last-child {
  margin: 0;
}
.rstab-main.vertical {
  display: flex;
}
.rstab-main.vertical ul.nav {
  margin: 0 20px 0 0;
  display: block;
}
.rstab-main.vertical ul.nav.bubble li a.active {
  position: relative;
}
.rstab-main.vertical ul.nav.bubble li a.active:after {
  top: 100%;
  left: auto;
  right: -24px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: var(--color-primary);
  border-width: 12px;
  margin-left: -30px;
}
.rstab-main .tab-pane.active {
  animation: slide-down 2s ease-out;
}
.rstab-main.no_item_menu ul {
  display: inline-flex;
}
.rstab-main.no_item_menu.left {
  text-align: left;
}
.rstab-main.no_item_menu.center {
  text-align: center;
}
.rstab-main.no_item_menu.right {
  text-align: right;
}
.rstab-main.bottom {
  display: flex;
  flex-wrap: wrap;
}
.rstab-main.bottom ul.nav {
  order: 2;
  width: 100%;
}
.rstab-main.bottom ul.nav a {
  box-shadow: 0px 30px 50px rgba(0, 14, 32, 0.1);
  border-radius: 10px;
}
.rstab-main.bottom .tab-content {
  order: 1;
  box-shadow: 0px 30px 50px rgba(15, 18, 22, 0.14);
}
.rstab-main.bottom iframe {
  width: 970px;
  height: 576px;
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
}
.rstab-main.style-2.vertical .row {
  align-items: center;
}
.rstab-main.style-2.vertical ul.nav {
  display: flex;
  margin: 0;
}
.rstab-main.style-2.vertical ul.nav li {
  margin-right: 0 !important;
}
.rstab-main.style-2.vertical ul.nav li a {
  padding: 20px 0;
}
.rstab-main.style-2.vertical ul.nav li a i {
  float: right;
  margin-top: 10px !important;
}
.rstab-main.style-2.vertical ul.nav li img {
  position: relative;
  top: -3px;
}
.rstab-main.style-2 .tab-pane img.alignleft {
  margin-right: 65px;
}
.rstab-main.style-2 .tab-pane .text-list {
  margin: 0;
  list-style: none;
  float: left;
}
.rstab-main.style-2 .tab-pane .text-list li {
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  margin-bottom: 8px;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  list-style: none;
}
.rstab-main.style-2 .tab-pane .text-list li:before {
  content: "\f00c";
  position: absolute;
  font-family: "Font awesome 5 Pro";
  font-size: 16px;
  color: #ffa84b;
  left: 0;
  top: -7px;
  z-index: 1;
  line-height: 40px;
  text-align: center;
}
.rstab-main.style-2 .tab-pane .text-list li:last-child {
  border: none !important;
}

.rsaddon_pro_box.default .pointer-events {
  pointer-events: none;
}

.rt-pricing-table-features-list .rt-circle-check:before {
  margin: 0;
}

.rsaddon_pro_box .portfolio-item .portfolio-content .p-category a {
  pointer-events: none;
}

.elementor-invisible.elementor-widget-rs-timecounter {
  visibility: visible;
}

.rs-dual-heading .second_title {
  color: #1F1F25;
}

.rs-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.rs-image.yes .veritcal {
  animation-name: veritcal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@keyframes veritcal {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
.rs-image.yes .horizontal {
  animation-name: horizontal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@keyframes horizontal {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}

/* -----------------------
    Features List CSS
--------------------------*/
.rt-features-list-content ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.rt-features-list-content ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
.rt-features-list-content ul li .icon i {
  color: #1F1F25;
  font-size: 16px;
  display: inline-block;
}
.rt-features-list-content ul li .sub-text {
  font-size: 16px;
  line-height: 24px;
  display: block;
  font-weight: 600;
  font-family: "Exo", sans-serif;
  margin-bottom: -3px;
  color: var(--color-primary);
}
.rt-features-list-content ul li .text-heading {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #1F1F25;
  font-family: "Exo", sans-serif;
  transition: 0.3s;
  display: inline-block;
}
.rt-features-list-content ul li .text-heading span {
  display: block;
}
.rt-features-list-content ul li .message {
  margin: 0;
}
.rt-features-list-content .separator_yes.rotate_yes:after {
  top: -7px;
  transform: skew(-10deg);
}

body button.metform-btn, body button.metform-btn:not(.toggle) {
  background: var(--color-primary);
}

.right_icon_yes ul li a {
  padding-right: 0 !important;
  position: relative;
}
.right_icon_yes ul li a:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "\f178";
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
  color: var(--color-primary);
}

.left_icon_yes ul li a {
  padding-right: 0 !important;
  position: relative;
  padding-left: 25px;
}
.left_icon_yes ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f061";
  font-size: 16px;
  font-family: "Font Awesome 5 Pro";
}

.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);
  transition: all 200ms linear;
}

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

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

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

.progress-wrap::before {
  position: absolute;
  font-family: "rt-icons";
  content: "\e82d";
  text-align: center;
  line-height: 46px;
  font-size: 15px;
  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;
  transition: all 200ms linear;
}

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

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

.rtelements-unique-slider.cta_bottom_border .grid-item.slick-slide {
  position: relative;
}
.rtelements-unique-slider.cta_bottom_border .grid-item.slick-slide.slick-center:before, .rtelements-unique-slider.cta_bottom_border .grid-item.slick-slide:hover:before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background-image: -webkit-linear-gradient(0deg, #43baff 0%, #7141b1 100%);
  bottom: 0;
  left: 5%;
}

.rt-portfolio-style6 .portfolio-item .portfolio-img:before {
  bottom: unset;
  top: 0;
}
.rt-portfolio-style6 .portfolio-item .pf-btn2 {
  right: unset;
  left: 50px;
  bottom: 45px;
  border: none !important;
  background: transparent !important;
  padding-left: 0 !important;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 26px;
}
.rt-portfolio-style6 .portfolio-item .portfolio-content {
  bottom: unset;
  top: 0;
  left: 0;
  padding: 50px;
}
.rt-portfolio-style6 .portfolio-item .portfolio-content .p-category {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  opacity: 0;
  transition: all 2s;
}
.rt-portfolio-style6 .portfolio-item .portfolio-content .p-category .separator {
  transition: all 2s;
  opacity: 0;
  color: rgba(255, 255, 255, 0.5);
}
.rt-portfolio-style6 .portfolio-item .portfolio-content .title {
  transition: all 2s;
  opacity: 0;
}
.rt-portfolio-style6 .portfolio-item:hover .separator,
.rt-portfolio-style6 .portfolio-item:hover .p-category,
.rt-portfolio-style6 .portfolio-item:hover .title {
  opacity: 1;
}

/* Product Filter CSS -----------------
-----------------------------*/
.product-filter {
  margin-bottom: 20px;
}
.product-filter span {
  color: #333;
  padding: 10px;
  cursor: pointer;
  display: inline-block;
}
.product-filter span.active {
  color: var(--color-primary);
}
.product-filter span:hover {
  color: var(--color-primary);
}

.logo-border-radius .rs-grid-img {
  border-radius: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  background-image: none !important;
  width: 40px !important;
  height: 35px !important;
  transition: all 0.5s;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none !important;
  content: "";
}
.swiper-button-prev:before,
.swiper-button-next:before {
  content: "\e80f";
  font-family: "rt-icons";
  padding-right: 10px !important;
  color: #040404;
  position: absolute;
  left: 13px;
  bottom: 10px;
  font-style: normal;
  font-weight: lighter;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-prev:before {
  content: "\e80d";
}

.rt-line-height {
  line-height: 14px;
}

.react-heading .title-inner .sub-text span {
  padding: 2px 8px;
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}

.elementor-widget-rt-logo .rt-addon-slider {
  align-items: center;
}

.menu-area.separator_yes {
  position: relative;
}
.menu-area.separator_yes:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #F36464;
}

.logo-grid-height .rt-grid-figure {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.make-white-image img {
  filter: brightness(0) invert(1) !important;
}

.home-one-gallery .gallery-icon {
  overflow: hidden;
}

/*jump animation */
@keyframes jump-1 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, 20px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump-2 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.menu-area .icon1 .navbar ul > li.menu-item-has-children > a:before {
  content: "\e805";
  font-size: 12px;
}

/** Draw Vertical Line **/
.path-vert {
  stroke-dasharray: 1000;
  /*   stroke-dashoffset: 800; */
  animation: draw1 2s linear alternate;
}

@keyframes draw1 {
  from {
    stroke-dashoffset: 1200;
  }
  to {
    stroke-dashoffset: 600;
  }
}
/* Header Top Line Shape Single menu */
.rt-features-list-portfolio-content {
  background: #f7f7f7;
  border-radius: 0 0 0 0;
}
.rt-features-list-portfolio-content .pinfo--sidebar-title {
  padding: 24px 40px;
  background: var(--color-primary);
  border-radius: 0 0 0 0;
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
  border-radius: 7px 7px 0 0;
}
.rt-features-list-portfolio-content .info-body {
  padding: 15px 40px;
}
.rt-features-list-portfolio-content .info-body .single-info {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #E9E9E9;
}
.rt-features-list-portfolio-content .info-body .single-info i {
  height: 50px;
  width: 50px;
  background: #F9F0F0;
  color: var(--color-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.rt-features-list-portfolio-content .info-body .single-info .info-details {
  margin-left: 20px;
}
.rt-features-list-portfolio-content .info-body .single-info .info-details span {
  margin-bottom: 5px;
}
.rt-features-list-portfolio-content .info-body .single-info .info-details .name {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 3px;
}
.rt-features-list-portfolio-content .info-body .single-info:last-child {
  border-bottom: none;
}

.border-icon-list .elementor-icon-list-items li .elementor-icon-list-icon {
  position: relative;
  top: -11px;
}

.single .reactheme-porfolio-details .ps-navigation {
  padding: 60px 60px 50px;
  background: #f8f8f8;
  border: none;
  margin-bottom: 110px;
}
.single .reactheme-porfolio-details .ps-navigation .rts-left-write-blog-wrapper-main {
  display: flex;
  justify-content: space-between;
}
.single .reactheme-porfolio-details .ps-navigation .rts-left-write-blog-wrapper-main .single {
  display: flex;
  align-items: center;
  gap: 50px;
  cursor: pointer;
}
.single .reactheme-porfolio-details .ps-navigation .rts-left-write-blog-wrapper-main .left-icon-area {
  text-align: left;
}
.single .reactheme-porfolio-details .ps-navigation .rts-left-write-blog-wrapper-main .right-icon-area {
  text-align: right;
}

.show-icon-box-shadow .icon {
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
}
@keyframes loop {
  0% {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
  }
  50% {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
  }
  51% {
    transform-origin: 100% 50%;
  }
  100% {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
  }
}
.rts-img-reveal-wrapper {
  position: fixed;
  width: 250px;
  height: 270px;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 9;
}

.rts-img-reveal-wrapper__inner,
.rts-img-reveal-wrapper__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.rts-img-reveal-wrapper__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #181314;
}

.rts-img-reveal-wrapper__img {
  background-size: cover;
  background-position: 50% 50%;
}

.rts-tab-advance {
  display: flex;
  align-items: flex-start;
}
.rts-tab-advance .nav {
  margin: 0;
  margin-top: 25px;
  margin-right: 25px;
  max-width: -moz-min-content;
  max-width: min-content;
}
.rts-tab-advance .nav li button {
  border: 1px solid #EFEFEF;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: transparent;
  display: flex;
  align-items: center;
  min-width: 425px;
}
.rts-tab-advance .nav li button .icon {
  background: #F5F5F5;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  min-width: 70px;
  text-align: center;
  line-height: 70px;
  margin-right: 25px;
}
.rts-tab-advance .nav li button .button_content {
  text-align: left;
  font-size: 22px;
  font-family: "Exo", sans-serif;
  font-weight: 700;
  line-height: 29px;
  color: #1F1F25;
}
.rts-tab-advance .nav li button .button_content p {
  margin: 0;
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #74787C;
}
.rts-tab-advance .nav li .nav-link.active {
  background: #1F1F25;
}
.rts-tab-advance .nav li .nav-link.active .icon {
  background: var(--color-primary);
}
.rts-tab-advance .nav li .nav-link.active .icon svg path {
  fill: #fff;
}
.rts-tab-advance .nav li .nav-link.active .icon i {
  color: #fff;
}
.rts-tab-advance .nav li .nav-link.active .button_content {
  color: #fff;
}

.tab-custom-nav .nav {
  float: right;
  position: relative;
  bottom: 102px;
  z-index: 1;
}
.tab-custom-nav .tab-content {
  clear: both;
}

.vertical_advanced_tabs .rts-tab-advance {
  display: block;
}
.vertical_advanced_tabs .rts-tab-advance .nav {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.vertical_advanced_tabs .rts-tab-advance .nav li {
  margin-right: 20px;
}
.vertical_advanced_tabs .rts-tab-advance .nav li button {
  min-width: auto;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 33px;
  background: #FBF1EB;
  margin: 0px;
}
.vertical_advanced_tabs .rts-tab-advance .nav li button .button_content {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 29px;
  color: #1F1F25;
}
.vertical_advanced_tabs .rts-tab-advance .nav li button .icon {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  min-width: auto;
  text-align: center;
  line-height: 35px;
  margin-right: 15px;
}
.vertical_advanced_tabs .rts-tab-advance .nav li .nav-link.active {
  background: var(--color-primary);
  color: #ffffff;
}
.vertical_advanced_tabs .rts-tab-advance .nav li .nav-link.active .icon {
  background: #fbf1eb;
}
.vertical_advanced_tabs .rts-tab-advance .nav li .nav-link.active .icon i {
  color: #1F1F25;
}
.vertical_advanced_tabs .rts-tab-advance .nav:last-child {
  margin-right: 0;
}

.rs-business-hour .rs-business-schedule {
  display: flex;
  justify-content: space-between;
  padding: 8px;
}

.react-button a {
  display: inline-block;
  color: #fff;
  padding: 17px 33px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Albert Sans", sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: capitalize;
  background: #1F1F25;
  border-radius: 100px;
  vertical-align: middle;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition-property: color;
  transition-duration: 0.3s;
  transition: 0.3s;
  z-index: 1;
  overflow: hidden;
}
.react-button a i {
  margin-left: 3px;
}
.react-button a svg {
  width: 20px;
  position: relative;
}
.react-button a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--color-primary);
  border-radius: 4px;
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition: 0.5s;
  z-index: -1;
}
.react-button a:hover::before {
  transform: scaleX(0);
  background: var(--color-primary);
}
.react-button a:hover {
  background: #1F1F25;
  color: #ffffff;
}
.react-button.secondary_btn a {
  color: #FFFFFF;
  background: transparent !important;
  border: 2px solid #fff;
  box-sizing: border-box;
  transition: 0.3s;
}
.react-button.secondary_btn a:hover {
  border: 2px solid transparent;
}
.react-button.secondary_btn a::before {
  background: var(--color-primary);
  transform: scaleX(0);
  transition: 0.5s;
}
.react-button.secondary_btn a:hover::before {
  transform: scaleX(1);
}

.rt-btn-3 .button-circle-text {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1F1F25;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  transition: 0.3s;
}
.rt-btn-3 .button-circle-text i {
  padding: 16px 13px;
  border: 1px solid #1F1F25;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.rt-btn-3 .button-circle-text:hover i {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
}
.rt-btn-3 .button-circle-text:hover {
  color: var(--color-primary);
}

.counter-top-area.yes .rs-counter-list .count-text .rs-counter {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-top-area {
  position: relative;
}
.counter-top-area .rts-counter-list .counter-icon {
  display: inline-block;
}
.counter-top-area .rts-counter-list .counter-icon i {
  font-size: 50px;
  color: #dcdcdc;
  line-height: 60px;
  transition: all 0.3s ease 0s;
}
.counter-top-area .rts-counter-list .count-text span {
  color: var(--color-primary);
}
.counter-top-area .rts-counter-list .count-text .rs-counter {
  font-size: 50px;
  color: var(--color-primary);
  line-height: 60px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.counter-top-area .rts-counter-list .count-text .title {
  font-size: 18px;
  color: #666;
  line-height: 18px;
  transition: all 0.3s ease 0s;
  display: inline-block;
}
.counter-top-area.style1 {
  text-align: center;
}
.counter-top-area.style1 .count-number span {
  padding: 10px 0px 10px 0px;
}
.counter-top-area.style2 .rts-counter-list .rts-counter-list-inner {
  display: flex;
  align-items: center;
}
.counter-top-area.style2 .rts-counter-list .rts-counter-list-inner .counter-icon img {
  width: 80px;
  height: 80px;
  padding: 20px;
  overflow: visible;
  border-radius: 50%;
}
.counter-top-area.style2 .rts-counter-list .text {
  font-weight: 400;
  line-height: 26px;
  margin-top: 17px;
}
.counter-top-area.style3 .rts-counter-list .count-text {
  display: flex;
  align-items: center;
}
.counter-top-area.style3 .rts-counter-list .count-text .count-number .rs-counter {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Exo", sans-serif;
}
.counter-top-area.style3 .rts-counter-list .count-text .title {
  margin-left: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.react-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.react-image.yes .veritcal {
  animation-name: veritcal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  position: absolute;
  right: 0;
  top: -150px;
}
@keyframes veritcal {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 30px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.react-image.yes .veritcal_two {
  animation-name: veritcal_two;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@keyframes veritcal_two {
  0% {
    transform: translateY(100px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}
.react-image.yes .horizontal {
  animation-name: horizontal;
  animation-timing-function: linear;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}
@keyframes horizontal {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}
.react-image.yes .rotated_style {
  animation: rotate1 30s linear infinite;
  -webkit-animation: rotate1 30s linear infinite;
}
@keyframes rotate1 {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

.image-rotate {
  animation: rotation infinite 14s linear;
}

/* Rotation frame*/
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
rt-grid-figure .logo-img {
  text-align: center;
}
rt-grid-figure .logo-img a {
  transition: all 0.5s;
}
rt-grid-figure .logo-img img {
  margin: 0 auto;
  transition: all 0.5s;
  border-radius: 15px;
}
rt-grid-figure .logo-img:hover img {
  opacity: 1;
}
rt-grid-figure .logo-img:hover a.back {
  display: block;
}
rt-grid-figure .logo-img:hover a.back-exists {
  display: none;
}
rt-grid-figure .logo-img.logo-gray a:hover img {
  opacity: 80%;
}

.rts-mailchimp .mc4wp-form-fields {
  display: flex;
  align-items: baseline;
}
.rts-mailchimp .mc4wp-form-fields p {
  margin: 0;
}
.rts-mailchimp .mailchimp--submit {
  position: relative;
}
.rts-mailchimp .mailchimp--submit:after {
  position: absolute;
  content: "\e80f";
  left: 107px;
  top: 6px;
  color: #fff;
  font-family: "rt-icons";
}

.rts-mailchimp.yes {
  position: relative;
}
.rts-mailchimp.yes input[type=submit] {
  font-size: 0;
}
.rts-mailchimp.yes .fa-location-arrow {
  position: absolute;
  right: 17px;
  bottom: 16px;
  color: #fff;
}

.rts-addon-number .number-part {
  position: relative;
  text-align: center;
}
.rts-addon-number .number-part .number-icon {
  display: inline-block;
  padding: 5px;
  font-size: 50px;
  color: var(--color-primary);
  transition: all ease 0.3s;
}
.rts-addon-number .number-part .number-icon i {
  transition: all ease 0.3s;
}
.rts-addon-number .number-part .number-icon img {
  max-width: unset;
  width: 50px;
  height: 50px;
}
.rts-addon-number .number-part .number-icon.grayscale img {
  filter: gray;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.3s ease 0s;
}
.rts-addon-number .number-part .number-icon.grayscale img:hover {
  filter: none;
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}
.rts-addon-number .number-part .number-icon:hover {
  color: #1F1F25;
}
.rts-addon-number .number-part .number-icon:after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  opacity: 0;
  transition: all 0.3s ease 0s;
  visibility: hidden;
}
.rts-addon-number .number-part .number-text {
  position: relative;
}
.rts-addon-number .number-part .number-text .number-area {
  display: inline-block;
  margin-bottom: 40px;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease 0s;
  text-align: center;
}
.rts-addon-number .number-part .number-text .number-area .number-prefix {
  color: #fff;
  background-color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
}
.rts-addon-number .number-part .number-text .number-area .number-prefix:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  background: rgba(232, 28, 46, 0.1019607843);
  height: 90px;
  width: 90px;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
}
.rts-addon-number .number-part .number-text .number-prefix {
  display: block;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #1F1F25;
}
.rts-addon-number .number-part .number-text .number-title {
  position: relative;
}
.rts-addon-number .number-part .number-text .number-title .title {
  font-size: 24px;
  margin: 0 0 10px;
  color: #1F1F25;
}
.rts-addon-number .number-part .number-text .number-title .title a {
  color: #1F1F25;
}
.rts-addon-number .number-part .number-text .number-title .title a:hover {
  color: #FD8F14;
}
.rts-addon-number .number-part .number-text .number-txt {
  color: #6e777d;
  margin: 0;
}
.rts-addon-number .number-part .number-text .number-btn-part {
  margin: 15px 0 0;
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn {
  position: relative;
  display: inline-block;
  color: #1F1F25;
  transition: all ease 0.3s;
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn i {
  transition: all ease 0.3s;
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn:hover {
  color: var(--color-primary);
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn.icon-after span {
  float: left;
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn.icon-after i {
  margin-left: 10px;
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn.icon-before span {
  float: right;
}
.rts-addon-number .number-part .number-text .number-btn-part .number-btn.icon-before i {
  margin-right: 10px;
}
.rts-addon-number .number-part:after {
  content: "";
  width: 0;
  height: 4px;
  background: var(--color-primary);
  position: absolute;
  transition: all 0.3s ease 0s;
  bottom: 0;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}
.rts-addon-number .number-part:hover .number-icon {
  color: #1F1F25;
}
.rts-addon-number .number-part:hover .number-icon:after {
  opacity: 1;
  visibility: visible;
}
.rts-addon-number .number-part:hover .number-text .number-title .title {
  color: var(--color-primary);
}
.rts-addon-number .number-part:hover .number-text .number-title .title a {
  color: var(--color-primary);
}
.rts-addon-number .number-part:hover:after {
  width: 100%;
}
.rts-addon-number.number-style2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transition: all 0.3s ease 0s;
}
.rts-addon-number.number-style2 .number-part {
  background: 0 0;
  text-align: left;
  position: relative;
  z-index: 1;
}
.rts-addon-number.number-style2:hover:before {
  transform: scaleY(1);
}
.rts-addon-number.number-style3 .number-part {
  border-bottom-width: 4px;
  transition: all 0.3s ease 0s;
  position: relative;
}
.rts-addon-number.number-style3 .number-part .number-icon {
  width: 90px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0px 3px 36px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease 0s;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 100%;
}
.rts-addon-number.number-style3 .number-part .number-icon i {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.rts-addon-number.number-style3 .number-part .number-icon img {
  width: 45px;
  height: 45px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.rts-addon-number.number-style3 .number-part:hover .number-icon {
  top: -35px;
}
.rts-addon-number.number-style4 .number-part {
  display: inline-flex;
}

.swipper-bulet-pagination {
  margin-top: 100px;
}
.swipper-bulet-pagination .swiper-pagination-bullets {
  position: absolute;
  bottom: -108px;
  left: 47.5%;
  max-width: -moz-max-content;
  max-width: max-content;
  background: #fff;
  padding: 5px 15px;
  border-radius: 33px;
}
.swipper-bulet-pagination .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #EDEDED;
  border-radius: 50%;
  opacity: 1;
}
.swipper-bulet-pagination .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 9px;
  height: 9px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 1;
}

.swiper-pagination-new.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  margin: auto;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.rs-skill-bar .skillbar {
  background: #eeeeee;
  display: inline-block;
  height: 6px;
  position: relative;
  width: 100%;
}
.rs-skill-bar .skillbar .skillbar-bar {
  background: #FD8F14;
  height: 8px;
  width: 0;
  margin-bottom: 0;
}
.rs-skill-bar .skillbar .skillbar-title,
.rs-skill-bar .skillbar .skill-bar-percent {
  position: absolute;
}
.rs-skill-bar .skillbar .skillbar-title {
  color: #212121;
  font-size: 20px;
  font-weight: 600;
}
.rs-skill-bar .skillbar .skill-bar-percent {
  font-size: 15px;
  font-weight: 700;
  color: #1F1F25;
}
.rs-skill-bar.animation .skillbar .skillbar-bar, .rs-skill-bar.striped .skillbar .skillbar-bar {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.rs-skill-bar.animation .skillbar .skillbar-bar {
  animation: rs-progress-pie-stripes 1s linear infinite;
}
.rs-skill-bar.style1 .skillbar .skillbar-title {
  top: -45px;
}
.rs-skill-bar.style1 .skillbar .skill-bar-percent {
  right: 0;
  top: -41px;
}
.rs-skill-bar.style2 .skillbar .skillbar-title {
  left: 0;
  padding: 2px 20px 0;
  top: 0;
  width: 160px;
  background: #83b614;
}
.rs-skill-bar.style2 .skillbar .skill-bar-percent {
  right: 10px;
  top: 0;
}

.border-left-20 .react-addon-services.services-style2 .services-part .services-icon {
  margin-right: 20px;
}

.react-addon-services.gray_yes:hover img {
  filter: grayscale(100);
}

.gap-30 .services-icon {
  display: none;
}

.rt-slider-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
  position: absolute;
  right: 30px;
  bottom: 27px;
  z-index: 1;
}
.rt-slider-navigation .rt-slider-prev i,
.rt-slider-navigation .rt-slider-next i {
  font-size: 26px;
  padding: 15px 18px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 200;
  transition: 0.3s;
}
.rt-slider-navigation .rt-slider-prev i:hover {
  background: #1F1F25;
}
.rt-slider-navigation .rt-slider-next i:hover {
  background: #1F1F25;
}

.rts-tab-style-one .button-area {
  padding: 30px;
  border: 1px solid #EDEFF3;
  border-radius: 20px;
  background: #fff;
  text-align: left;
  min-width: -moz-max-content;
  min-width: max-content;
}
.rts-tab-style-one .button-area button {
  background: transparent !important;
  color: #5D666F;
  padding-bottom: 20px;
  border-bottom: 1px solid #EDEFF3;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding-left: 0;
}
.rts-tab-style-one .button-area button:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.rts-tab-style-one .button-area button.active {
  color: #0B4DF5;
}
.rts-tab-style-one .tab-content {
  margin-left: 25px;
}
.rts-tab-style-one .tab-content .rts-tab-content-one {
  margin-right: -8px;
  font-size: 16px;
  font-weight: 500;
  color: #1C2539;
  line-height: 26px;
  margin-top: -4px;
  margin-bottom: 24px;
  animation: slide-down 2s ease-out;
}
.rts-tab-style-one .tab-content .rts-tab-content-one ul {
  list-style: none;
  margin: 20px 0 0;
}
.rts-tab-style-one .tab-content .rts-tab-content-one ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #5D666F;
  font-weight: 400;
  position: relative;
  padding-left: 28px;
}
.rts-tab-style-one .tab-content .rts-tab-content-one ul li:before {
  content: "\e853";
  position: absolute;
  font-family: "rt-icons";
  left: 0;
  top: 0;
  font-size: 20px;
  color: #0B4DF5;
}
.rts-tab-style-one .tab-content .rts-tab-content-one a.rts-btn {
  margin-top: 40px;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (max-width: 1024px) {
  .rstab-main.vertical ul.nav {
    margin-right: 0;
  }
  .rts-tab-content-one {
    animation: slide-down 2.5s ease-out;
  }
  .rstab-main.vertical ul.nav.bubble li a.active:after {
    display: none;
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.react-video {
  position: relative;
  background-repeat: no-repeat !important;
  background-size: content !important;
}
.react-video.center .overly-border {
  margin: 0 auto;
}
.react-video.left .overly-border {
  margin-left: 0;
  margin-right: auto;
}
.react-video.right .overly-border {
  margin-left: auto;
  margin-right: 0;
}
.react-video.style1 .video-desc {
  top: 60px;
}
.react-video .video-desc {
  z-index: 1;
  font-size: 20px;
  position: relative;
}
.react-video .video-desc span {
  display: block;
  font-size: 22px;
  font-weight: 400;
}
.react-video .overly-border {
  border-radius: 50%;
  position: absolute;
  width: 100px;
  height: 100px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.react-video .video-content {
  z-index: 10;
}
.react-video .video-content h4 {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
}
.react-video:hover .popup-videos {
  animation-duration: 0.8s;
}
.react-video .popup-videos {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 60px;
  padding: 0;
  margin: 0 auto;
  left: 50%;
  top: 50%;
  z-index: 9;
  text-align: center;
  background: #fff;
  border: 2px solid var(--color-primary);
}
.react-video .popup-videos:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 200ms;
}
.react-video .popup-videos:before {
  border: 1px solid var(--color-primary);
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.react-video .popup-videos i {
  text-indent: 5px;
  transition: 0.3s ease all;
  font-size: 15px;
  color: var(--color-primary);
  position: relative;
  top: -4px;
}
.react-video .popup-videos i:before {
  color: var(--color-primary);
  top: -1px;
}
.react-video .popup-videos span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 27px solid #fff;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.react-video:hover .overly-border:before, .react-video:hover .overly-border:after {
  opacity: 1;
  transform: scale(1);
}
.react-video.style2 .overly-border {
  width: 60px;
  height: 60px;
}

.menu-cart-area i {
  cursor: pointer;
}
.menu-cart-area h2 {
  display: none;
}

.body-overlay-cart.overlayshow {
  visibility: visible;
  opacity: 0.5;
  pointer-events: unset;
}

.body-overlay-cart {
  z-index: 999;
}

.body-overlay-cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
}

.cart-icon-total-products {
  font-size: 13px;
  line-height: 20px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  font-size: 14px;
  width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.5s ease;
  z-index: 999;
  padding: 20px;
}

.cart-icon-total-products.visible-cart {
  visibility: visible !important;
  transform: translate(0) !important;
}

.menu-cart-area {
  position: relative;
  cursor: pointer;
}
.menu-cart-area span.icon-num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  position: absolute;
  right: -10px;
  bottom: -2px;
}

.cart-icon-total-products .cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}
.cart-icon-total-products .cart-header .cart-heading {
  font-size: 17px;
  font-weight: 600;
  color: #1F1F25;
  margin: 0;
  list-style: 20px;
}
.cart-icon-total-products .widgettitle {
  display: none;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .cart_list li {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 12px;
  margin-bottom: 12px;
  padding-left: 35px;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .cart_list li:last-child {
  border-bottom: 0;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .cart_list li a {
  color: #1F1F25;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .cart_list li a.remove {
  line-height: 20px;
  top: 3px;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .quantity {
  border: none;
  padding: 3px 0 0;
  display: block;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .buttons a {
  text-align: center;
  background: 0 0;
  background: #1F1F25;
  color: #fff;
  font-weight: 700;
  font-family: "Exo", sans-serif;
  border: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .buttons a:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--color-primary);
  transform: translateY(110%);
  transition: 0.3s;
  transition-delay: 0.1s;
  z-index: -1;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .buttons a.checkout {
  background: var(--color-primary);
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .buttons a.checkout:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1F1F25;
  transform: translateY(110%);
  transition: 0.3s;
  transition-delay: 0.1s;
  z-index: -1;
}
.cart-icon-total-products .woocommerce.widget_shopping_cart .buttons a:hover:after {
  transform: translateY(0);
}

.cart-icon-total-products .woocommerce ul.cart_list li img, .cart-icon-total-products .woocommerce ul.product_list_widget li img {
  width: 70px;
}

.cart-icon-total-products .woocommerce-mini-cart__total.total {
  padding-top: 30px;
}
.cart-icon-total-products .woocommerce-mini-cart__total.total strong {
  font-size: 18px;
  text-transform: uppercase;
}
.cart-icon-total-products .woocommerce-mini-cart__total .woocommerce-Price-amount {
  float: right;
  font-size: 18px;
  color: #404040;
  font-weight: 700;
}

.close-cart i {
  cursor: pointer;
}

.tab-about .elementor-tab-title.elementor-active {
  background: var(--color-primary) !important;
}

.tab-about .elementor-tab-title {
  border-radius: 5px;
  padding: 15px 33px !important;
  border: none !important;
}

.tab-about .elementor-tab-title:hover {
  background: var(--color-primary) !important;
}

.tab-about .elementor-tab-title {
  border-radius: 5px;
  padding: 15px 33px !important;
  border: 1px solid #ddd !important;
  margin-bottom: 15px;
}

.react-addon-services.services-style2 .services-part .services-icon {
  background: rgba(74, 171, 61, 0.0705882353) !important;
}

.react-addon-services.services-style2 .services-part:hover .services-icon {
  background: var(--color-primary) !important;
}

input.numInput.flatpickr-hour::-moz-selection, input.numInput.flatpickr-minute::-moz-selection {
  background: transparent;
  color: #393939;
}

input.numInput.flatpickr-hour::selection, input.numInput.flatpickr-minute::selection {
  background: transparent;
  color: #393939;
}

.appoinment-year .counter-top-area {
  position: absolute;
  bottom: 20px;
  padding: 31px 6px 35px 40px;
  background: #1F1F25;
  display: flex;
  align-items: center;
  margin-left: -100px;
  border-radius: 100px;
  z-index: 5;
  animation: jump-1 20s linear infinite;
  width: 100%;
  left: 87px;
}

.accordion-item .accordion-body .inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.accordion-item .accordion-body .inner .thumb-area {
  flex-basis: 70%;
}

.accordion-item .accordion-body .inner .thumb-area img {
  width: 100%;
}

.accordion-item .accordion-body .inner .content .title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.accordion-item .accordion-body .inner .content p.disc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #74787C;
}

.rts-single-wized .wized-body {
  position: relative;
}

.search-faq {
  background: #fff;
  height: 55px;
  border-radius: 100px;
  padding-right: 70px;
  padding-left: 25px;
  border: 1px solid transparent;
}

.btn-faq {
  position: absolute;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 55px;
  width: 55px;
  border-radius: 100px;
  background: var(--color-primary);
  display: inline-block;
  padding: 0 19px;
  right: 0;
}

.btn-faq i {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
}

.rts-single-wized {
  background: #F6F6F6;
  border-radius: 7px;
  padding: 40px;
  margin-bottom: 40px;
}

.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content {
  bottom: 30px;
}

.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content {
  opacity: 0;
}

.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide-active .single-case-ac .inner-content {
  opacity: 1;
}

.btn-watch-video {
  line-height: 32px;
  height: 40px;
  border-radius: 22px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 4px 46px 5px 20px;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.2s ease-in;
  position: relative;
  margin-left: 25px;
}

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

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

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

.bg-primary-solari {
  background: var(--color-primary);
}

.btn-watch-video span.text {
  position: absolute;
  display: block;
  right: -100px;
  top: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
}

@keyframes waves {
  0% {
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "alpha(opacity=90)";
  }
  100% {
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
  }
}
.btnn-icon .elementor-icon-box-icon span.elementor-icon.elementor-animation- {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.08);
  color: var(--color-primary);
}

.experiencea-area {
  left: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 0.5px solid var(--color-primary);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  position: absolute;
  background: #fff;
}

.experiencea-area h3 {
  margin-bottom: 0;
}

.accc .rts-accordion.style2 .accordion-item .accordion-header button {
  box-shadow: 0px 4px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.accc .rts-accordion.style2 .accordion-item {
  box-shadow: 0px 4px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.accc .rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon i, .accc .rts-accordion.style2 .accordion-item .accordion-header button .accordion-icon-active i {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  line-height: 30px;
}

.react-video .popp .popup-videos {
  background: var(--color-primary);
  border: none;
}

.react-video .popp .popup-videos i:before {
  color: var(--font-primary);
}

.mySwiper-testimonials-solari {
  padding-bottom: 80px !important;
}

.mySwiper-testimonials-solari span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 10px;
  height: 10px;
}

.testimonials-review-main-wrapper .single-review-area-soalri .author-area .star-area i {
  font-size: 16px;
  color: var(--color-primary);
  margin: 0 2px;
}

.logo-banner .logo-img img {
  max-width: 130px;
  transition: 0.3s;
}

.logo-banner .logo-img img:hover {
  transform: translateY(-5px);
}

.casestudy-two .air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content {
  opacity: 1;
}

.casestudy-two .single-case-ac .thumbnail img {
  transition: 0.3s;
  width: 100%;
}

.blog2 .rt-blog-slider.slider-style-1 .blog-item .blog_content .blog-btn a {
  border: 1px solid var(--color-primary);
}

.popupicon .react-video .popup-videos {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 90px;
}

.marquee .marquee {
  position: unset !important;
}

@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}
.image-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-heading .sub-text {
  margin: 0 !important;
}

.image-heading .title-img {
  margin: 0 !important;
}

.single__tab__link {
  display: flex !important;
  align-items: center !important;
}

.abouttabarea ul li {
  margin-right: 10px;
}

.abouttabarea ul li button.nav-link {
  padding: 12px 30px;
  border-radius: 10px;
}

.abouttabarea ul li button.nav-link .icon {
  margin-right: 15px;
}

.single__tab__link.active .icon svg path, .single__tab__link.active .button_content {
  color: red;
}

.price-btn {
  text-align: center;
}

.pbtn::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff !important;
  border-radius: 100px;
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition: 0.5s;
  z-index: -1;
}

.pbtn {
  border: 1px solid var(--color-primary);
  color: var(--color-primary) !important;
}

.pbtn:hover {
  background: #1F1F25;
  color: #fff !important;
  border-color: #1F1F25;
}

.rt-pricing-table-period {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #1F1F25 !important;
}

.llg .rt-grid-figure .logo-img {
  text-align: left !important;
}

.white-icon {
  color: white;
}

.circle-container {
  position: relative;
  width: 300px; /* Adjust as needed */
  height: 300px; /* Adjust as needed */
  margin: 0 auto;
  overflow: hidden;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circle-text span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.tcc .accordion-header .accordion-button {
  border-radius: 6px !important;
}

.elementor-4154 .elementor-element.elementor-element-f1ffdbd .rts-accordion.style2 .accordion-item .accordion-header button {
  border-radius: 6px;
}

.shop-title {
  font-style: italic;
  font-weight: 500 !important;
  font-family: var(--font-secondary);
  text-transform: capitalize;
  margin-top: 12px;
}

.rts-shop-section .single-shopping-product .invisible-btn ul li .yith-wcwl-wishlistexistsbrowse a {
  display: none !important;
}

.rt-pricing-table-features-list svg circle {
  fill: var(--color-primary);
}

.rts-shop-section .yith-wcwl-wishlistexistsbrowse .feedback i {
  width: 40px;
  height: 40px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.rts-shop-section .add_to_wishlist i.yith-wcwl-icon.fa.fa-heart-o {
  margin-right: 0 !important;
}

.rts-shop-section .yith-wcwl-add-to-wishlist {
  margin-top: 0 !important;
}

.rts-shop-section .compare-button a:before {
  content: "\e811"; /* Unicode escape sequence for the desired icon */
  font-family: "rt-icons"; /* Specify the Font Awesome font family */
  font-weight: normal; /* Required to make sure the icon is displayed */
  vertical-align: middle;
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  z-index: 22;
  color: var(--color-primary);
}

.rts-shop-section .compare-button a:hover:before {
  color: #fff;
}

.rts-shop-section .added-to-compare-popup {
  display: none !important;
}

.rts-shop-section .compare-button a.compare.added {
  display: none !important;
}

.single-shopping-product ins span.woocommerce-Price-amount.amount bdi, .single-shopping-product .pricing-area span.woocommerce-Price-amount.amount bdi {
  font-weight: 600;
  line-height: 26px;
  color: #1F1F25;
}

.single-shopping-product del span.woocommerce-Price-amount.amount bdi, .single-shopping-product del span.woocommerce-Price-amount.amount bdi span {
  font-weight: 600 !important;
  line-height: 26px !important;
  text-transform: capitalize;
  color: #74787C !important;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}

ul.offcanvas-icon.layout-1 li {
  margin-bottom: 0;
}

#reactheme-header .header-inner .menu-area {
  background: unset !important;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky {
  background: #fff;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky .jjj {
  background: #fff;
  z-index: 9999;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky .elementor-widget-heading .elementor-heading-title[class*=elementor-size-] > a {
  color: var(--color-primary);
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky a.nav-menu-link.menu-button span {
  background: var(--color-primary);
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky {
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  z-index: 9900;
}

.header-style-1 ul.offcanvas-icon.layout-1 li {
  margin-top: 0;
}

.header-style-1 ul.offcanvas-icon {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky .hhh {
  background: #1B1B1B !important;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky .hhh .elementor-widget-heading .elementor-heading-title[class*=elementor-size-] > a {
  color: #fff;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky .hhh a.nav-menu-link.menu-button span {
  background: #fff;
}

.header-style-1 .header-inner.menu-sticky.stuck.sticky {
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  z-index: 9900;
}

.header-style-1 ul.offcanvas-icon.layout-1 li {
  margin-top: 0;
}

.header-style-1 ul.offcanvas-icon {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.sticky .hhh .menu-area .navbar ul li .sub-menu {
  top: 130%;
}

.header-style-1 .hhh ul.offcanvas-icon {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px !important;
  color: #fff;
}

.hhh .nav-menu-link svg rect {
  fill: #fff !important;
}

.ssss .single-feature-soalri-3 {
  background: #fff;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 6px 39px rgba(0, 0, 0, 0.0392156863);
}

.navbar-menu ul#menu-services-menu li:hover {
  background: var(--color-primary);
  transform: translateY(-5px) scale(1.03);
  color: var(--color-white);
}

.navbar-menu ul#menu-services-menu li:hover a {
  color: var(--color-white);
}

.navbar-menu ul#menu-services-menu li:hover a:after {
  color: var(--color-white);
}

.name-social-area-wrapper .name-area p a {
  color: #fff !important;
}

@media (max-width: 1096px) {
  .watermark {
    display: none !important;
  }
}
@media (max-width: 574px) {
  h2.title.word-line {
    font-size: 24px !important;
  }
  .react-heading .title-inner .sub-text {
    margin: 0 !important;
  }
  .react-heading .title-inner .title, .rs-dual-heading .title-inner .title {
    line-height: 36px;
  }
}
@media (max-width: 1024px) and (min-width: 575px) {
  .react-heading .title-inner .sub-text {
    margin: 0 !important;
  }
  .react-heading .title-inner .title, .rs-dual-heading .title-inner .title {
    line-height: 50px;
  }
}
.word-line span.high_light_text {
  padding: 8px !important;
}

.air-condition-swiper-wrapper .swiper-wrapper .swiper-slide .single-case-ac .inner-content {
  position: absolute;
  left: 30px !important;
  width: 87%;
  height: 87px !important;
  background: #FFFFFF;
  transition: 0.6s;
  border-radius: 10px;
  overflow: hidden !important;
}

.single-case-ac .thumbnail img {
  transition: 0.3s;
  width: 100% !important;
}

.title-img.top img {
  margin-bottom: 8px;
}

.abouttabarea ul#v-pills-tab {
  justify-content: center;
}

.abouttabarea ul#v-pills-tab {
  margin: 0;
}

.elementor-widget-rt-price-table .elementor-widget-container {
  border-radius: 10px;
}

.elementor-widget-rt-price-table .elementor-widget-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #4AAB3D, rgba(74, 171, 61, 0));
  transition: 0.3s;
  opacity: 0 !important;
}

.elementor-widget-rt-price-table .elementor-widget-container:hover::after {
  opacity: 1 !important;
}

.single-service-style-four-h4 {
  position: relative;
}

.num-icon {
  position: absolute;
  right: 40px;
  bottom: 0;
  font-size: 32px;
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: 6px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #D9D9D9;
  transition: 0.3s;
}

.num-icon:hover {
  -webkit-text-stroke-color: var(--color-primary);
}

.testi-single {
  margin-bottom: 20px;
}

.swiper-category-shop .swiper-pagination {
  bottom: 0 !important;
  top: auto !important;
  border-radius: 2px;
  background: #EFEFEF !important;
}

.swiper-category-shop .single-category {
  margin-bottom: 20px;
}

.single-product-main-four {
  display: flex;
  align-items: center;
  gap: 130px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-product-main-four {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .single-product-main-four {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-product-main-four {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 80px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single-product-main-four {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 80px;
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .single-product-main-four p {
    padding: 0 70px 0 0;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .single-product-main-four p {
    padding: 0 70px 0 0;
  }
}
.topp {
  display: flex;
  align-items: center;
}

.solari-title-area-four .topp span.pre-title {
  margin-bottom: 0 !important;
  padding-left: 20px !important;
}

.solari-title-area-four h2.title {
  margin-top: 16px !important;
}

.our-latest-project-area .swipper-bulet-pagination .swiper-pagination-bullets {
  background: none !important;
}

.our-latest-project-area {
  position: relative;
}
.our-latest-project-area .swipper-bulet-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: none !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .our-latest-project-area .swipper-bulet-pagination {
    right: 20px;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .our-latest-project-area .swipper-bulet-pagination {
    right: 20px;
  }
}
@media (max-width: 991px) {
  .our-latest-project-area .swipper-bulet-pagination {
    top: unset;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    width: 100%;
  }
}
.our-latest-project-area .swipper-bulet-pagination .swiper-pagination-bullet {
  position: relative;
  display: block;
  margin: 40px 0 !important;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
}
@media (max-width: 991px) {
  .our-latest-project-area .swipper-bulet-pagination .swiper-pagination-bullet {
    display: inline-block;
    margin: 20px !important;
  }
}
.our-latest-project-area .swipper-bulet-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-info .elementor-icon-box-icon {
  margin-top: 12px;
}

.header-two h2 a:hover {
  color: var(--color-primary) !important;
}

.jjj h2 a:hover {
  color: var(--color-primary) !important;
}

.bg-text-stok-shop {
  font-size: 200px;
  color: white;
  -webkit-text-fill-color: rgba(141, 138, 138, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(189, 189, 189, 0.36);
  font-weight: 700;
  font-family: var(--font-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  min-width: -moz-max-content;
  min-width: max-content;
}/*# sourceMappingURL=elements.css.map */