/*-----------------------------------------------------------------------------------

    Theme Name: Dustrilox - Construction & Industry HTML5 Template
    Author: Theme Pure
    Support: basictheme@gmail.com
    Description: Dustrilox - Construction & Industry HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

    01. THEME DEFAULT CSS
    02. background CSS
	03. spacing css
	04. buttons css
	05. carousel css
	06. page-title css
	07. modal css
	08. section-title css
	09. breadcrumb css
	10. animation css
	11. preloader css
	12. header css
	13. meanmenu css
	14. slider css
	15. services css
	16. about css
	17. banner css
	18. feature css
	19. projects css
	20. testimonial css
	21. team css
	22. blog css
	23. brand css
	24. process css
	25. pricing css
	26. fact css
	27. portfolio css
	28. faq css
	29. contact css
	30. sidebar css
	31. footer css

**********************************************/
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'gilroy', sans-serif;
  --tp-ff-heading: 'gilroy', sans-serif;
  --tp-ff-p: 'gilroy', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-common-black-2: #24292d;
  --tp-heading-primary: #282828;
  --tp-grey-1: #c5c5c5;
  --tp-grey-2: #aeaeae;
  --tp-grey-3: #acacac;
  --tp-grey-4: #999999;
  --tp-grey-5: #f7f7f7;
  --tp-grey-6: #b7b7b7;
  --tp-grey-7: #a6aeb5;
  --tp-grey-8: #edf2f6;
  --tp-text-body: #777777;
  --tp-text-1: #000;
  --tp-theme-1: #7fd3ea;
  --tp-theme-2: #d75a4a;
  --tp-border-1: #ededed;
  --tp-border-2: #e9e9e9;
  --tp-border-3: #999999;
  /**
  @font weight declaration
  */
  --tp-fw-normal: normal;
  --tp-fw-elight: 200;
  --tp-fw-light: 300;
  --tp-fw-regular: 400;
  --tp-fw-medium: 500;
  --tp-fw-sbold: 600;
  --tp-fw-bold: 700;
  --tp-fw-ebold: 800;
  --tp-fw-black: 900;
  /**
  @font size declaration
  */
  --tp-fz-body: 14px;
  --tp-fz-p: 14px;
  --tp-fz-h1: 40px;
  --tp-fz-h2: 36px;
  --tp-fz-h3: 24px;
  --tp-fz-h4: 20px;
  --tp-fz-h5: 16px;
  --tp-fz-h6: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
    typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: var(--tp-fz-body);
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
  margin-top: 0px;
  font-weight: var(--tp-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: var(--tp-fz-h1);
}

h2 {
  font-size: var(--tp-fz-h2);
}

h3 {
  font-size: var(--tp-fz-h3);
}

h4 {
  font-size: var(--tp-fz-h4);
}

h5 {
  font-size: var(--tp-fz-h5);
}

h6 {
  font-size: var(--tp-fz-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: var(--tp-fw-normal);
  color: var(--tp-text-body);
  margin-bottom: 15px;
  line-height: 25px;
}

img {
  max-width: 100%;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: rgba(var(--tp-common-black), 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 1680px;
  }
}

@media (min-width: 1400px) {
  .custom-container-3 {
    max-width: 1200px;
  }
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

.grey-bg-5 {
  background: var(--tp-grey-5);
}

.grey-bg-8 {
  background: var(--tp-grey-8);
}

.theme-bg {
  background: var(--tp-theme-1);
}

.white-bg {
  background: var(--tp-common-white);
}

.black-bg {
  background: var(--tp-common-black);
}

.black-bg-2 {
  background: var(--tp-common-black-2);
}

.black-bg-3 {
  background: var(--tp-heading-primary);
}

/*----------------------------------------*/
/*  00. SPACING CSS START
/*----------------------------------------*/
.pt-250 {
  padding-top: 250px;
}

.pb-205 {
  padding-bottom: 205px;
}

.header_btn {
  font-size: 18px;
  color: #1e1e1e;
  background: var(--tp-theme-1);
  border-radius: 30px;
  padding: 15px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header_btn {
    padding: 13px 23px;
  }
}

.header_btn:hover {
  color: #fff;
  background: var(--tp-theme-2);
}

.btn1 {
  font-size: 18px;
  color: #1e1e1e;
  background: var(--tp-theme-1);
  padding: 13px 30px;
  border-radius: 30px;
  display: inline-block;
}

.btn1:hover {
  color: #fff;
  background: var(--tp-theme-2);
}

.btn2 {
  font-size: 18px;
  color: #fff;
  background: var(--tp-theme-2);
  padding: 13px 30px;
  border-radius: 30px;
}

.btn2:hover {
  color: #1e1e1e;
  background: var(--tp-theme-1);
}

.tp-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  position: relative;
}
.tp-btn i {
  margin-left: 15px;
}
.tp-btn:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
}
.tp-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-2 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: rgba(10, 10, 10, 0.7);
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-2 i {
  margin-left: 15px;
}
.tp-btn-2:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
  border-color: var(--tp-common-white);
}
.tp-btn-2:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-2::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-ts {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-common-white);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-common-white);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-ts i {
  margin-left: 15px;
}
.tp-btn-ts:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-ts:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-ts::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-ps {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 1px solid transparent;
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  position: relative;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tp-btn-ps i {
  margin-left: 15px;
}
.tp-btn-ps:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
}
.tp-btn-ps:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-ps::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-d {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-grey-8);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-d i {
  margin-left: 15px;
}
.tp-btn-d:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-d:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-d::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-df {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-common-white);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-df i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.tp-btn-df:hover {
  box-shadow: none;
  color: var(--tp-common-white);
  padding-right: 75px;
}
.tp-btn-df:hover i {
  visibility: visible;
  opacity: 1;
}
.tp-btn-df:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-df::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-df-active {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  padding-right: 75px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-df-active i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: 0.3s;
}
.tp-btn-df-active:hover {
  box-shadow: none;
  color: var(--tp-heading-primary);
  border-color: var(--tp-grey-8);
}
.tp-btn-df-active:hover::after {
  transform: skewX(45deg) scale(1, 1);
  background: var(--tp-common-white);
}
.tp-btn-df-active::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-df-active-2 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 80px;
  line-height: 76px;
  padding: 0px 40px;
  padding-right: 75px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-df-active-2 i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: 0.3s;
}
.tp-btn-df-active-2:hover {
  box-shadow: none;
  color: var(--tp-heading-primary);
}
.tp-btn-df-active-2:hover::after {
  transform: skewX(45deg) scale(1, 1);
  background: var(--tp-common-white);
}
.tp-btn-df-active-2::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}
@media (max-width: 575px) {
  .tp-btn-df-active-2 {
    padding: 0px 20px;
    padding-right: 64px;
  }
}

.tp-btn-3 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-2);
  border-color: transparent;
  color: var(--tp-theme-1);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-theme-2);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-3 i {
  margin-left: 15px;
}
.tp-btn-3:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-3:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-3::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-4 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f5f5f5;
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 10px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid #f5f5f5;
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-4 i {
  margin-left: 15px;
}
.tp-btn-4:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
}
.tp-btn-4:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-4::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-4-active {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-theme-1);
  border-color: transparent;
  color: var(--tp-common-white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-theme-1);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-btn-4-active i {
  margin-left: 15px;
}
.tp-btn-4-active:hover {
  box-shadow: none;
  color: var(--tp-theme-1);
  border-color: #f5f5f5;
  background: #f5f5f5;
}
.tp-btn-4-active:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-4-active::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-common-white);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-join-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-join-btn i {
  margin-right: 10px;
  color: var(--tp-theme-1);
}
.tp-join-btn:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-join-btn:hover i {
  color: var(--tp-common-white);
}
.tp-join-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-join-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-touch-btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-grey-8);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.tp-touch-btn i {
  margin-left: 10px;
}
.tp-touch-btn:hover {
  box-shadow: none;
  color: var(--tp-common-white);
  border-color: var(--tp-common-white);
}
.tp-touch-btn:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-touch-btn::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

.tp-btn-white {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--tp-common-white);
  border-color: transparent;
  color: var(--tp-heading-primary);
  border-radius: 5px;
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  height: 60px;
  line-height: 56px;
  padding: 0px 40px;
  border: 2px solid var(--tp-common-white);
  border-style: solid;
  box-shadow: none;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  position: relative;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
}
.tp-btn-white i {
  margin-left: 15px;
  color: var(--tp-text-body);
}
.tp-btn-white:hover {
  box-shadow: none;
  color: var(--tp-common-white);
}
.tp-btn-white:hover i {
  color: var(--tp-common-white);
}
.tp-btn-white:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.tp-btn-white::after {
  position: absolute;
  content: "";
  z-index: -1;
  display: block;
  left: -20%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  background: var(--tp-theme-1);
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.5s ease 0s;
}

/*--
    - Carousel
-----------------------------------------*/
.ms-button {
  font-size: 20px;
  background-color: rgba(10, 10, 10, 0.7);
  height: 65px;
  width: 65px;
  line-height: 65px;
  font-size: 20px;
  color: var(--tp-common-white);
  border-radius: 6px;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  top: 50%;
  margin: 0px;
  vertical-align: middle;
  transition: all 0.3s ease-out 0s;
}
.ms-button::after {
  display: none;
}
.ms-button:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

@media (max-width: 575px) {
  .ms-button {
    display: none;
  }
}

.swiper-button-next {
  right: 80px;
  left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-button-next {
    right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-button-next {
    right: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .swiper-button-next {
    right: 5px;
  }
}

.swiper-button-prev {
  left: 80px;
  right: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .swiper-button-prev {
    left: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .swiper-button-prev {
    left: 5px;
  }
}

.ms-button-2 {
  font-size: 20px;
  background-color: var(--tp-common-white);
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-size: 20px;
  color: var(--tp-heading-primary);
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
  text-align: center;
  top: 50%;
  margin: 0px;
  vertical-align: middle;
  transition: all 0.3s ease-out 0s;
  position: absolute;
}
.ms-button-2::after {
  display: none;
}
.ms-button-2:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ms-button-2 {
    top: 82%;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ms-button-2 {
    display: none;
  }
}

.ms-button-3 {
  font-size: 14px;
  position: relative;
  font-weight: var(--tp-fw-sbold);
  color: #c6c9cd;
}
.ms-button-3 i {
  margin: 0 5px;
}
.ms-button-3::after {
  display: none;
}
.ms-button-3:hover {
  color: var(--tp-theme-1);
}
@media (max-width: 575px) {
  .ms-button-3 {
    display: none;
  }
}
.ms-button-3-border::before {
  position: absolute;
  content: "";
  background: #c6c9cd;
  width: 2px;
  height: 10px;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

.ms-button-4 i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: var(--tp-common-white);
  color: var(--tp-heading-primary);
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
  transition: 0.3s;
}
.ms-button-4 i:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.project__slider-arrow-wrapper {
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project__slider-arrow-wrapper {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .project__slider-arrow-wrapper {
    display: none;
  }
}

.project__slider-arrow {
  width: 150px;
  display: flex;
  justify-content: space-between;
}

.related__services-arrow {
  position: absolute;
  right: 16%;
  top: 13%;
  width: 115px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .related__services-arrow {
    top: 10%;
  }
}
@media (max-width: 575px) {
  .related__services-arrow {
    top: 12%;
    right: 12%;
  }
}

.ts-pagination {
  top: 50%;
  right: 0;
  text-align: right;
}
.ts-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 20px;
  display: block;
  border-radius: 6px;
  background: #000;
  margin: 5px 0 !important;
  position: relative;
}
.ts-pagination .swiper-pagination-bullet-active {
  background: var(--tp-theme-1);
  height: 30px;
}

.ts-pagination.swiper-pagination-bullets {
  bottom: auto;
  left: auto;
  width: auto;
  position: absolute;
  right: 20px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

/*--
    - Page title
-----------------------------------------*/
/*----------------------------------------*/
/*  21. PAGE TITLE CSS START
/*----------------------------------------*/
.page__title {
  font-size: 70px;
  color: var(--tp-common-white);
  line-height: 62px;
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .page__title {
    font-size: 45px;
  }
}
.page__title-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page__title-wrapper .breadcrumb-menu ul li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
.page__title-wrapper .breadcrumb-menu ul li::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  height: 15px;
  width: 2px;
  position: absolute;
  left: -3px;
  top: 5px;
}
.page__title-wrapper .breadcrumb-menu ul li:first-child::before {
  display: none;
}
.page__title-wrapper .breadcrumb-menu ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
}
.page__title-wrapper .breadcrumb-menu ul li a:hover {
  color: var(--tp-theme-1);
}
.page__title-wrapper .breadcrumb-menu ul li span {
  color: var(--tp-common-white);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
}
.page__title-height {
  min-height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page__title-height {
    min-height: 500px;
  }
}
@media (max-width: 575px) {
  .page__title-height {
    min-height: 450px;
  }
}
.page__title-overlay {
  position: relative;
}
.page__title-overlay::after {
  background-image: -moz-linear-gradient(90deg, rgb(52, 58, 64) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(52, 58, 64) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(52, 58, 64) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  position: absolute;
}
.page__title-overlay::before {
  background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(52, 58, 64) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(52, 58, 64) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(52, 58, 64) 100%);
  width: 100%;
  height: 100%;
  content: "";
  bottom: 0;
  position: absolute;
}

/*----------------------------------------*/
/*  00. Modal CSS START
/*----------------------------------------*/
/* 01. ========= search-modal ========== */
#search-modal {
  background: rgba(0, 0, 0, 0.65);
}
#search-modal button span {
  color: #fff;
  top: 50px;
  right: 50px;
  position: absolute;
  font-size: 50px;
}
#search-modal button span:hover {
  transform: rotate(90deg);
  color: var(--tp-theme-1);
}
#search-modal .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: none;
  outline: 0;
}
#search-modal .modal-dialog .modal-content {
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
#search-modal .modal-dialog .modal-content form {
  max-width: 555px;
  position: relative;
}
#search-modal .modal-dialog .modal-content form input {
  width: 100%;
  font-size: 36px;
  border: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.938);
  background: 0 0;
  color: #fff;
  padding-bottom: 12px;
  padding-right: 40px;
  outline: none;
}
#search-modal .modal-dialog .modal-content form input::-webkit-input-placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input:-ms-input-placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input::-ms-input-placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form input::placeholder {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.938);
}
#search-modal .modal-dialog .modal-content form button {
  position: absolute;
  right: 0;
  margin-bottom: 3px;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.938);
  background: 0 0;
  border: none;
  cursor: pointer;
  top: 11px;
}

/*----------------------------------------*/
/*  05. Section Tilte CSS START
/*----------------------------------------*/
.section-title h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--tp-heading-primary);
}
.section-title p {
  font-size: 18px;
  color: #4b4b4b;
}

/* 00. ========= pluse animation ========== */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* 00. ========= video-ripple ========== */
@keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
/* 00. ========= FadeIn custom ========== */
@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

/* 00. ========= modeal-video-animation ========== */
@keyframes waveAlarm {
  0% {
    transform: scale(1);
    opacity: 40%;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* 00. ========= ripple animation ========== */
@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* 00. ========= sticky animation ========== */
@-webkit-keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/preloader.svg);
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.header-area {
  z-index: 222;
  width: 100%;
}

.header__sticky {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 99;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  -webkit-animation: sticky 1s;
  animation: sticky 1s;
  background: #fff;
}

.header__sticky.header__bottom-2 {
  padding: 15px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__sticky.header__bottom-2 {
    padding: 30px 0;
  }
}

.header__sticky.header__area-3 {
  background: #ffebeb;
  padding: 25px 0;
}

.logo {
  width: 160px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.logo img {
  width: 100%;
}

.main-menu ul li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 22px;
  }
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li.has-dropdown > a {
  font-family: "gilroy", sans-serif;
  padding-right: 14px;
}
.main-menu ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: -4px;
  top: 42px;
  font-size: 14px;
  font-size: 14px;
  color: var(--tp-grey-2);
  font-family: "Font Awesome 6 Pro";
}
.main-menu ul li a {
  color: var(--tp-heading-primary);
  font-size: 18px;
  line-height: 20px;
  padding: 40px 0;
  display: inline-block;
  transition: 0.3s;
}
.main-menu ul li .active {
  color: var(--tp-common-white);
}
.main-menu ul li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background-color: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 0px 15px;
  transition: 0.3s;
  border-top: 4px solid var(--tp-theme-1);
}
.main-menu ul li .sub-menu li {
  margin: 0;
  padding: 0;
  display: inline;
  position: relative;
  width: 100%;
  display: block;
}
.main-menu ul li .sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 5px 25px;
  transition: 0.3s;
  color: var(--tp-heading-primary);
  text-transform: capitalize;
}
.main-menu ul li .sub-menu li .active {
  color: var(--tp-theme-1);
}
.main-menu ul li .sub-menu li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu ul li .sub-menu li > .sub-menu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > .sub-menu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu-2 ul li a {
  color: var(--tp-common-white);
  padding: 20px 0;
}
.main-menu-2 ul li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu-2 ul li:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu-2 ul li.has-dropdown > a {
  padding-right: 14px;
}
.main-menu-2 ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: -4px;
  top: 22px;
  font-size: 14px;
  font-size: 14px;
  color: var(--tp-grey-2);
  font-family: "Font Awesome 6 Pro";
}
.main-menu-2 ul li .has-dropdown:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu-2 ul li.has-dropdown:hover > a::after {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li {
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-3 ul li {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-3 ul li {
    margin-right: 22px;
  }
}
.main-menu-3 ul li:last-child {
  margin-right: 0;
}
.main-menu-3 ul li.has-dropdown > a {
  padding-right: 14px;
}
.main-menu-3 ul li.has-dropdown > a::after {
  position: absolute;
  content: "\f107";
  right: -4px;
  top: 0;
  font-size: 14px;
  font-size: 14px;
  color: var(--tp-grey-2);
  font-family: "Font Awesome 6 Pro";
}
.main-menu-3 ul li > a {
  color: var(--tp-heading-primary);
  position: relative;
  font-size: 16px;
  font-weight: var(--tp-fw-medium);
}
.main-menu-3 ul li .active {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 120%;
}
.main-menu-3 ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 220px;
  background-color: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 0px 15px;
  transition: 0.3s;
  text-align: left;
  border-top: 4px solid var(--tp-theme-1);
}
.main-menu-3 ul li .sub-menu li {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.main-menu-3 ul li .sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  display: block;
  padding: 5px 25px;
  transition: 0.3s;
  color: #000;
}
.main-menu-3 ul li .sub-menu li a::before {
  display: none;
}
.main-menu-3 ul li .sub-menu li .active {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li .sub-menu li:hover > a {
  color: var(--tp-theme-1);
}
.main-menu-3 ul li .sub-menu li .sub-menu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu-3 ul li .sub-menu li:hover > .sub-menu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu-3 ul li:hover a::before {
  width: 100%;
  left: 0;
  right: auto;
}

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

.header-info {
  display: flex;
}
.header-info .info-item span {
  font-size: 12px;
  display: inline-block;
  font-weight: var(--tp-fw-sbold);
}
.header-info .info-item h5 {
  font-size: 14px;
  color: var(--tp-common-white);
}
.header-info .info-item-right {
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-info .info-item-right {
    margin-right: 20px;
  }
}

.header__area-3 {
  position: absolute;
  z-index: 222;
  width: 100%;
}
.header__top {
  padding: 10px 0;
}
.header__top-info {
  display: flex;
  justify-content: end;
}
.header__top-info p {
  font-size: 14px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
.header__top-info p a {
  text-decoration: underline;
}
.header__top-info-text {
  margin-right: 50px;
  position: relative;
}
.header__top-info-text::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: #ff7d42;
  right: -25px;
  top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__top-info-text::before {
    display: none;
  }
}
.header__top-info-text span {
  font-weight: var(--tp-fw-sbold);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__top-info {
    display: block;
  }
}
.header__top-right {
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__top-2 {
    display: none;
  }
}
.header__sm-links {
  position: relative;
  margin-right: 60px;
}
.header__sm-links::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: #ff7d42;
  right: -40px;
  top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__sm-links::before {
    right: -15px;
  }
}
.header__sm-links a {
  font-size: 16px;
  font-weight: var(--tp-fw-sbold);
  color: var(--tp-common-white);
  margin-right: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__sm-links a {
    margin-right: 15px;
  }
}
.header__sm-links a:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__sm-links {
    margin-right: 15px;
  }
}
.header__lang .nice-select {
  height: auto;
  background: transparent;
  border: 0;
  line-height: 25px;
  color: var(--tp-common-white);
  font-weight: var(--tp-fw-sbold);
}
.header__lang .nice-select::after {
  width: 7px;
  height: 7px;
  border-color: var(--tp-common-white);
}
.header__lang .option {
  color: var(--tp-heading-primary);
}
.header__lang .option:hover, .header__lang .option.selected.focus {
  color: var(--tp-theme-1);
}
.header__smcontact {
  display: flex;
  justify-content: end;
}
.header__inner {
  padding: 20px 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__inner-2 {
    display: none;
  }
}
.header__smcontact-list {
  display: flex;
  color: var(--tp-common-white);
  position: relative;
  transition: 0.3s;
  margin-right: 30px;
  align-items: center;
}
.header__smcontact-list:last-child {
  margin-right: 0;
}
.header__smcontact-list .sm-clist__icon i {
  font-size: 30px;
  color: var(--tp-theme-1);
  transition: 0.3s;
  margin-right: 10px;
}
.header__smcontact-list .sm-clist__icon-2 i {
  font-size: 15px;
  color: var(--tp-grey-3);
  margin-left: 30px;
}
.header__smcontact-list .sm-clist__text span {
  font-size: 14px;
  color: var(--tp-grey-3);
  display: inline-block;
}
.header__smcontact-list .sm-clist__text h4 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 0;
}
.header__smcontact-list .sm-clist__text-2 h4 {
  font-size: 15px;
}
.header__smcontact-list-df {
  background: var(--tp-common-white);
  padding: 5px 20px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  margin-top: -20px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__smcontact-list-df {
    margin-top: 0;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
  }
}
.header__smcontact-list-df:hover {
  background: var(--tp-theme-1);
}
.header__smcontact-list-df:hover .sm-clist__text-2 span, .header__smcontact-list-df:hover h4 {
  color: var(--tp-common-white);
}
.header__smcontact-list-df:hover .sm-clist__icon-2 i {
  color: var(--tp-common-white);
}
.header__smcontact-list-3 {
  background: var(--tp-common-white);
  width: 190px;
  height: 65px;
  border-radius: 6px;
  padding: 10px 15px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .header__smcontact-list-3 {
    display: none;
  }
}
.header__smcontact-list-3:hover {
  background: var(--tp-heading-primary);
}
.header__smcontact-list-3:hover .sm-clist__text-2 span, .header__smcontact-list-3:hover h4 {
  color: var(--tp-common-white);
}
.header__smcontact-list-3:hover .sm-clist__icon-2 i {
  color: var(--tp-common-white);
  margin-right: 0;
}
.header__inner-logo {
  padding: 20px 30px;
  background: var(--tp-common-white);
  width: 175px;
  height: 80px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__inner-logo {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header__inner-logo {
    display: none;
  }
}
.header__inner-logo::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: auto;
  right: 0;
  width: 100%;
  height: 10%;
  background: var(--tp-theme-1);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  z-index: -1;
}
.header__sm-action {
  display: flex;
  justify-content: end;
}
.header__sm-action-item {
  margin-right: 40px;
}
.header__sm-action-item:last-child {
  margin-right: 0;
}
.header__sm-action-item i {
  font-size: 15px;
  color: var(--tp-common-white);
}
.header__sm-action .right-border {
  position: relative;
}
.header__sm-action .right-border::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background: var(--tp-grey-3);
  right: -25px;
  top: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header__bottom-2 {
    padding: 30px 0;
  }
}
.header__side {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .header__side {
    justify-content: space-between;
  }
}
.header__side-icon {
  margin-right: 30px;
  height: 60px;
  width: 60px;
  background: var(--tp-common-white);
  border-radius: 50%;
  margin-right: 50px;
  padding: 14px 0;
  cursor: pointer;
}
.header__side-icon span {
  height: 2px;
  width: 15px;
  display: block;
  background: var(--tp-heading-primary);
  margin: 6px auto;
  transition: 0.3s;
}
.header__side-icon span.bar2 {
  width: 30px;
}
.header__side-icon:hover span, .header__side-icon .basic-bar span.bar2 {
  width: 30px;
}
.header__logo-overlay {
  position: relative;
  width: 175px;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 6px;
  margin-top: -30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__logo-overlay {
    margin-top: 0;
  }
}
.header__logo-overlay::after {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 40px;
  border-radius: 6px;
  background-color: var(--tp-theme-1);
  z-index: -1;
}

.menu-counter {
  counter-reset: count;
}
.menu-counter > nav > ul > li::before {
  color: var(--tp-grey-2);
  font-size: 14px;
  counter-increment: count;
  content: "0" counter(count);
  transition: all 500ms ease;
  display: block;
}
.menu-counter > nav > ul > li:hover::before {
  color: var(--tp-theme-1);
}

/*----------------------------------------*/
/*  03. MEAN MENU CSS START
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--tp-heading-primary);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--tp-heading-primary);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: #ebebeb;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tp-common-white);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--tp-heading-primary);
}

/*----------------------------------------*/
/*  03. SLIDER CSS START
/*----------------------------------------*/
.slider__area {
  position: relative;
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.slider__area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: #111212;
}
.slider-contant {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.slider-contant h2 {
  color: var(--tp-theme-1);
  font-size: 70px;
  font-weight: 500;
}
.slider-contant h2 span {
  color: var(--tp-theme-2);
}
.slider-contant p {
  color: #fff;
  font-size: 18px;
  margin-top: 30px;
  line-height: 30px;
  margin-bottom: 35px;
}
.slider-btn-area a {
  margin-right: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-btn-area a {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .slider-btn-area a {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}
.slider-right-side-img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

img.shap-img-1 {
  position: absolute;
  top: 164PX;
  left: 100px;
  z-index: 9;
  transform: rotateY(20deg);
  box-shadow: 10px 17.321px 59px 0px rgba(0, 0, 0, 0.07);
}

img.shap-img-2 {
  position: absolute;
  top: 100PX;
  right: -80px;
  transform: rotateY(20deg);
  box-shadow: 10px 17.321px 59px 0px rgba(0, 0, 0, 0.07);
}

/*----------------------------------------*/
/*  00. SERVICES CSS START
/*----------------------------------------*/
.services-item {
  position: relative;
  cursor: pointer;
  margin-bottom: 30px;
}
.services-item .services-img {
  position: relative;
  border-radius: 30px;
}
.services-item .services-img img {
  border-radius: 30px;
  width: 100%;
  height: 350px;
}
.services-item .services-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  transition: all 0.3s;
  border-radius: 30px;
}
.services-item .services-img::after {
  position: absolute;
  content: "";
  background-image: linear-gradient(0deg, var(--tp-theme-1), transparent);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  border-radius: 30px;
}
.services-item .services-contant {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.services-item .services-contant h3 {
  font-size: 24px;
  color: #fff;
}
.services-item:hover ::before {
  opacity: 0;
  visibility: hidden;
}
.services-item:hover ::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .service-btn-area a {
    display: block;
    margin-bottom: 20px;
  }
}

/*----------------------------------------*/
/*  03. ABout CSS START
/*----------------------------------------*/
.about-contant {
  margin-top: 38px;
  margin-left: -20px;
}
@media (max-width: 575px) {
  .about-contant {
    margin-left: 0px;
  }
}
.about-contant h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
.about-fe-list ul {
  padding-left: 20px;
  list-style-type: none;
}
.about-fe-list ul li {
  position: relative;
  color: #4b4b4b;
  font-size: 16px;
  margin-bottom: 20px;
}
.about-fe-list ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--tp-theme-1);
  left: -20px;
  top: 7px;
  border-radius: 50%;
}

/*----------------------------------------*/
/*  00. product CSS START
/*----------------------------------------*/
.product__area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-item {
  background: #fff;
  padding: 30px 30px;
  border-radius: 20px;
  transition: all 0.3s;
}
.product-item:hover {
  transform: translateY(-30px);
}
.product-item-contant h3 {
  font-size: 18px;
  color: var(--tp-heading-primary);
  font-weight: 600;
  margin-top: 24px;
  line-height: 1.5;
}
.product-price span {
  font-size: 18px;
  margin-bottom: 20px;
  display: inline-block;
  margin-top: 10px;
}

span.sele-price {
  font-size: 15px;
  text-decoration: line-through;
  margin-right: 30px;
  color: var(--tp-theme-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  span.sele-price {
    margin-right: 20px;
  }
}

span.main-price {
  font-size: 18px;
  text-decoration: line-through;
  margin-right: 30px;
  color: var(--tp-theme-1);
  font-weight: 600;
}

.product-add-to-cart-btn .btn1 {
  padding: 13px 20px;
}

/*----------------------------------------*/
/*  04. Portfolio CSS START
/*----------------------------------------*/
.portfolio-item {
  background-color: rgb(255, 255, 255);
  box-shadow: 10px 17.321px 59px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  border-radius: 30px;
}
.portfolio-contant {
  padding: 30px 20px;
  position: relative;
}
.portfolio-contant .hart-icon {
  position: absolute;
  right: 40px;
  top: -26px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 64px;
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.15);
}
.portfolio-contant .hart-icon i {
  font-size: 30px;
  color: var(--tp-theme-2);
}
.portfolio-contant h3 {
  font-size: 18px;
  color: var(--tp-heading-primary);
  line-height: 1.5;
}
.portfolio-contant .portfolio-fs-list ul {
  list-style: none;
}
.portfolio-contant .portfolio-fs-list ul li {
  color: #555555;
  font-size: 14px;
}
.portfolio-contant .portfolio-fs-list ul li i {
  margin-right: 8px;
}

/*----------------------------------------*/
/*  00. Sidebar CSS START
/*----------------------------------------*/
.sidebar__area {
  position: fixed;
  right: -485px;
  top: 0;
  width: 465px;
  height: 100%;
  background: var(--tp-common-white) none repeat scroll 0 0;
  overflow-y: scroll;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -o-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
}
@media (max-width: 575px) {
  .sidebar__area {
    width: 290px;
  }
}
.sidebar__area.sidebar-opened {
  right: 0px;
}
.sidebar__area-2 {
  left: -485px;
}
.sidebar__area-2.sidebar-opened {
  left: 0px;
}
.sidebar__wrapper {
  position: relative;
  padding: 45px;
  background: var(--tp-grey-5);
}
@media (max-width: 575px) {
  .sidebar__wrapper {
    padding: 20px;
  }
}
.sidebar__close {
  position: absolute;
  top: 35px;
  right: 45px;
}
@media (max-width: 575px) {
  .sidebar__close {
    top: 22px;
    right: 20px;
  }
}
.sidebar__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 45px;
  width: 45px;
  line-height: 49px;
  background: #000;
  color: #fff;
  border-radius: 50%;
}
.sidebar__close-btn:hover {
  background: var(--tp-theme-1);
}
.sidebar__close-btn-3 {
  background: #666;
}
.sidebar__close-btn-3:hover {
  background: #666;
}
.sidebar__logo {
  width: 160px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  color: var(--tp-heading-primary);
}
.sidebar__search input::placeholder {
  color: var(--tp-grey-2);
}
.sidebar__search input:focus {
  border-color: var(--tp-heading-primary);
}
.sidebar__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--tp-grey-2);
  transition: 0.3s;
}
.sidebar__search button:hover {
  color: var(--tp-heading-primary);
}
.sidebar__text p {
  margin-bottom: 25px;
  font-size: 16px;
}
.sidebar__contact h4 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--tp-heading-primary);
}
.sidebar__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar__contact ul li:hover i {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: #ebebeb;
}
.sidebar__contact ul li:hover a {
  color: var(--tp-theme-1);
}
.sidebar__contact-icon i {
  display: inline-block;
  color: var(--tp-heading-primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}
.sidebar__contact-text a {
  font-size: 18px;
  font-weight: 400;
  color: var(--tp-heading-primary);
}
.sidebar__map iframe {
  width: 100%;
  height: 200px;
  border: none;
}
.sidebar__social ul li {
  display: inline-block;
}
.sidebar__social ul li:not(:last-child) {
  margin-right: 5px;
}
.sidebar__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: #f1f1f1;
  color: var(--tp-theme-1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.sidebar__social ul li a:hover {
  background: var(--tp-heading-primary);
  color: var(--tp-common-white);
}

.side-menu-icon i {
  color: #333;
  font-size: 32px;
  cursor: pointer;
  position: relative;
  top: 5px;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  00. Footer CSS START
/*----------------------------------------*/
.footer-area {
  background: #fbfbfb;
}
.footer-about-area {
  padding-right: 100px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-about-area {
    padding-right: 0;
  }
}
.footer-about-contant {
  margin-top: 40px;
}
.footer-about-contant h4 {
  font-size: 18px;
  color: var(--tp-heading-primary);
  margin-bottom: 30px;
}
.footer-about-contant p {
  color: #616161;
  line-height: 25px;
}
.footer-contact-info {
  margin-top: 90px;
  padding-left: 101px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-contact-info {
    padding-left: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-contact-info {
    margin-top: 0px;
    padding-left: 0px;
  }
}
.footer-contact-info h4 {
  font-size: 18px;
  color: var(--tp-heading-primary);
  margin-bottom: 30px;
}
.footer-contant-info-list ul {
  list-style: none;
}
.footer-contant-info-list ul li {
  margin-bottom: 10px;
  overflow: hidden;
}
.footer-contant-info-list ul li a {
  color: #616161;
  font-size: 15px;
  width: 93%;
  float: left;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-contant-info-list ul li a {
    width: 90%;
  }
}
.footer-contant-info-list ul li i {
  font-size: 20px;
  width: 7%;
  float: left;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-contant-info-list ul li i {
    width: 10%;
  }
}

.copyright-area {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 2px solid #b7b7b7;
}

.trams-condi-area {
  text-align: right;
}
@media (max-width: 575px) {
  .trams-condi-area {
    text-align: center;
  }
}

.copyright-text p {
  color: #616161;
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .copyright-text p {
    text-align: center;
  }
}

.slider-contant {
    transform: translateY(50%) !important;
}
div#site-logo {
    width: 160px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin: 0;
}
span.woocommerce-Price-amount.amount bdi {
    font-size: 15px;
    text-decoration: line-through;
    margin-right: 30px;
    color: rgb(230 153 153);
    margin-bottom: 20px;
    display: inline-block;
    margin-top: 10px;
}
ins span.woocommerce-Price-amount.amount bdi {
    font-size: 18px;
    text-decoration: line-through;
    margin-right: 30px;
    color: #add;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    margin-top: 10px;
}
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
    padding: 19px 20px;
    font-size: 14px;
    color: rgb(191, 191, 191);
    display: inline-block;
    background: hsl(193deg 60% 39%);
    border-radius: 30px;
}
p.product.woocommerce.add_to_cart_inline {
    border-width: 0 !important;
}

/*# sourceMappingURL=style.css.map */
