/*-----------------------------------------------------------------
Theme Name: Labwide
Author: Valorwide
Author URI: https://themeforest.net/user/valorwide
Version: 1.0.0
Description: Labwide - Laboratory & Research Html Template <

-------------------------------------------------------------------
 CSS TABLE OF CONTENTS
-------------------------------------------------------------------

    01.Mixins
    02.Variables
    03.Typography
    04.Buttons
    05.Gutter
    06.Container
    07.Animation
    08.Helping
    09.MeanMenu
    10.Preloader
    11.Title
    12.Common
    13.Header
    14.Breadcumb
    15.Footer
    16.Intro
    17.Service
    18.About
    19.Project
    20.Blog
    21.Testimonial
    22.Video
    23.Brand
    24.Research
    25.Team
    26.Faq
    27.Contact
    28.Sidebar
    29.Facts

------------------------------------------------------------------*/
/* 01.Mixins */
/* 02.Variables */
/*----------------------------------------------
    # All Variables here
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --body: #fff;
  --black: #222;
  --white: #fff;
  --theme: #2DCE98;
  --theme2: #00A6ED;
  --theme3: #ECF4FE;
  --title: #1B3A57;
  --orange: #e78c45;
  --text: #858585;
  --text2: #cbcbcb;
  --border: #D9E2EC;
  --border-2: #D9D9D9;
  --border-3: #54595F;
  --border-4: #E0E0E0;
  --border-5: #424242;
  --bg-1: #161921;
  --bg-2: #1B3A57;
  --bg-3: #D9E2EC;
  --bg-4: #F6F7F8;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

/* 03.Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input::placeholder {
  color: #767771;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--title);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  line-height: 145%;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 145%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--title);
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: var(--theme) !important;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.info-text-style {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.form-contl {
  position: relative;
  margin-top: 30px;
}
.form-contl input {
  position: relative;
  padding: 17px 20px;
  height: 60px;
  background: var(--theme2);
  width: 100%;
  border: 1px solid #6E6E6E;
  opacity: 0.8;
}
.form-contl input::placeholder {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
}
.form-contl input.style2 {
  border: none;
}
.form-contl button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
}
.form-contl button.style2 {
  background: transparent;
  color: var(--theme);
}

input.form-control,
textarea.form-control {
  outline: none;
  box-shadow: none;
  background-color: var(--white);
  padding: 20px 30px;
  border: none;
  font-size: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

input.form-control:focus,
textarea.form-control:focus {
  background-color: var(--white);
  border: none;
  outline: none;
  box-shadow: none;
}

input {
  width: 100%;
  height: 65px;
  border-radius: 5px;
  background: var(--white);
  outline: none;
  border: none;
  padding: 18px 30px;
}
input::placeholder {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

textarea {
  padding: 18px 30px;
}
textarea::placeholder {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}

label {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 13px;
  font-size: 16px;
  color: var(--text);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

input[type=checkbox]:checked ~ label:after {
  opacity: 1;
}

input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
  line-height: 30px;
}

input[type=checkbox] ~ label:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3.5px;
  background: var(--white);
  border: 1px solid var(--border-2);
  height: 20px;
  width: 20px;
  text-align: center;
  z-index: 9;
}

input[type=checkbox] ~ label:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  background: var(--theme);
  height: 8px;
  width: 8px;
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  z-index: 9;
}

input[type=checkbox].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type=checkbox].style2 ~ label:before {
  background-color: white;
  border: 1px solid #f7ccd7;
  height: 14px;
  width: 14px;
  line-height: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  top: 6px;
}

input[type=checkbox].style2:checked ~ label:before {
  color: var(--theme);
}

input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type=radio] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-weight: 700;
  background: var(--white);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type=radio]:checked ~ label::before {
  border-color: var(--theme);
  background-color: var(--theme);
  color: var(--white);
}

/* 04.Buttons */
/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.theme-btn {
  display: inline-block;
  position: relative;
  gap: 10px;
  color: var(--white);
  background: var(--title);
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  padding: 15px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 1;
  line-height: 1;
  overflow: hidden;
  border-radius: 56px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.theme-btn i {
  margin-left: 6px;
}
.theme-btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--text);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn.style2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--theme2);
  color: var(--white);
}
.theme-btn.style2:before {
  transition-duration: 800ms;
  background: var(--theme);
}
.theme-btn.style2 svg path,
.theme-btn.style2 svg rect {
  fill: var(--title);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.theme-btn.style2:hover svg path,
.theme-btn.style2:hover svg rect {
  fill: var(--white);
}
.theme-btn.style3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--theme);
  color: var(--white);
  width: max-content;
}
.theme-btn.style3:before {
  transition-duration: 800ms;
  background: var(--theme2);
  color: var(--white);
}
.theme-btn.style3 svg path,
.theme-btn.style3 svg rect {
  fill: var(--white);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.theme-btn.style3:hover {
  color: var(--white) !important;
}
.theme-btn.style3:hover svg path,
.theme-btn.style3:hover svg rect {
  fill: var(--white) !important;
}
.theme-btn.style4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  color: var(--title);
  border: 1px solid var(--border-4);
  width: max-content;
}
.theme-btn.style4:before {
  transition-duration: 800ms;
  background: var(--theme);
  color: var(--white);
}
.theme-btn.style4 svg path,
.theme-btn.style4 svg rect {
  fill: var(--title);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.theme-btn.style4:hover {
  color: var(--white) !important;
}
.theme-btn.style4:hover svg path,
.theme-btn.style4:hover svg rect {
  fill: var(--white);
}
.theme-btn.style5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--theme2);
  color: var(--white);
  border: 1px solid var(--border-4);
}
.theme-btn.style5:before {
  transition-duration: 800ms;
  background: var(--theme);
  color: var(--white);
}
.theme-btn.style5 svg path,
.theme-btn.style5 svg rect {
  fill: var(--title);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.theme-btn.style5:hover {
  color: var(--white) !important;
}
.theme-btn.style5:hover svg path,
.theme-btn.style5:hover svg rect {
  fill: var(--white);
}
.theme-btn:hover {
  color: var(--white) !important;
}
.theme-btn:hover:before {
  top: -96%;
}

.slider-arrow-btn {
  display: flex;
  gap: 15px;
}

.slider-arrow.style1 {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--theme);
  color: var(--white);
  margin-top: -0.4em;
  box-shadow: 0px 10px 30px 0px rgba(52, 55, 170, 0.15);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.slider-arrow.style1:hover {
  background: var(--white);
  color: var(--theme);
  box-shadow: 0px 10px 30px 0px rgba(52, 55, 170, 0.15);
}
.slider-arrow.style1.style2 {
  background: var(--theme2);
  color: var(--title);
}
.slider-arrow.style1.style2:hover {
  background: var(--theme);
  color: var(--white);
}

.link-btn.style1 {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 15px;
  background: var(--theme2);
}
.link-btn.style1 i,
.link-btn.style1 svg {
  margin-left: 0px;
}
@media (max-width: 1399px) {
  .link-btn.style1 {
    display: inline-block;
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
}
.link-btn.style2 {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 15px;
  background: var(--theme);
  transition: all 0.4s;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 767px) {
  .link-btn.style2 {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
  }
}
.link-btn.style2:hover {
  background-color: var(--theme2);
}
.link-btn.style4 {
  display: inline-block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 15px;
  background: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.link-btn.style5 {
  display: inline-block;
  width: 116px;
  height: 116px;
  line-height: 116px;
  text-align: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 15px;
  background: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 767px) {
  .link-btn.style5 {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
}
.link-btn.style6 {
  display: inline-block;
  width: 61px;
  height: 61px;
  line-height: 58px;
  text-align: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 15px;
  background-color: var(--bg-3);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.link-btn.style6:hover {
  background-color: var(--theme);
}
.link-btn.style7 {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 15px;
  background: var(--white);
  border: 1px solid var(--border-4);
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.link-btn.style7 svg path {
  fill: var(--theme);
}
.link-btn.style7:hover {
  background: var(--theme);
}
.link-btn.style7:hover svg path {
  fill: var(--white);
}
@media (max-width: 767px) {
  .link-btn.style7 {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-weight: 400;
  }
}

/* 05.Gutter */
/*----------------------------------------------
    # Gutter  style here
----------------------------------------------*/
@media (min-width: 1600px) {
  .gx-25 {
    --bs-gutter-x: 25px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-95 {
    --bs-gutter-x: 95px;
  }
  .gx-114 {
    --bs-gutter-x: 114px;
  }
  .gx-85 {
    --bs-gutter-x: 85px;
  }
  .gx-134 {
    --bs-gutter-x: 134px;
  }
  .gx-150 {
    --bs-gutter-x: 150px;
  }
  .gx-165 {
    --bs-gutter-x: 165px;
  }
}
.gy-30 {
  --bs-gutter-y: 30px;
}

.gx-0 {
  --bs-gutter-x: 0px;
}

/* 06.Container */
/*----------------------------------------------
    # Container  style here
----------------------------------------------*/
@media (min-width: 1700px) {
  .header-1 .container {
    max-width: 1750px;
  }
  .header-2 .container,
  .header-3 .container {
    max-width: 1750px;
  }
  .intro-container-wrapper.style1 .container {
    max-width: 1750px;
  }
  .intro-container-wrapper.style3 .container {
    max-width: 1750px;
  }
  .intro-container-wrapper.style2 .container {
    max-width: 1750px;
  }
  .intro-wrapper.style1 .container {
    max-width: 1550px;
  }
  .intro-wrapper.style2 .container {
    max-width: 1550px;
  }
  .contact-container-wrapper.style2 .container {
    max-width: 1810px;
  }
  .testimonial-container-wrapper.style2 .container {
    max-width: 1820px;
  }
  .testimonial-container-wrapper.style3 .container {
    max-width: 1850px;
  }
  .testimonial-wrapper.style2 .container {
    max-width: 1250px;
  }
  .testimonial-wrapper.style3 .container {
    max-width: 1730px;
  }
  .service-container-wrapper.style2 .container {
    max-width: 1410px;
  }
  .faq-wrapper.style3 .container {
    max-width: 1850px;
  }
  .video-container-wrapper.style3 .container {
    max-width: 1850px;
  }
  .service-container-wrapper.style3 .container {
    max-width: 1750px;
  }
  .research-container-wrapper.style1 .container {
    max-width: 1680px;
  }
  .project-container-wrapper.style4 .container {
    max-width: 1740px;
  }
  .contact-wrapper.style3 .container {
    max-width: 1750px;
  }
}
/* 07.Animation */
/*----------------------------------------------
    # All Animation style here
----------------------------------------------*/
.ripple-animation {
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.ripple-effect {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #F3E7E0;
  border: 1px solid var(--white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgb(255, 238, 211);
  box-shadow: 0 0 0 0 rgb(255, 217, 196);
  animation: rippleOne 2s infinite;
}
.ripple-effect .playerImg {
  width: 19px;
  height: 24px;
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
  100% {
    width: var(--progress-width);
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation,
.play-btn:after,
.play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.wave-anim {
  width: 105px;
  height: 69px;
  background-repeat: repeat;
  background-size: auto;
  animation: wave 70s linear infinite;
}

@keyframes wave {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left -2000px;
  }
}
.fancy-animation {
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.movingX {
  animation: movingX 8s linear infinite;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.movingCar {
  animation: movingCar 25s linear infinite;
}

@keyframes movingCar {
  0% {
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    transform: translateX(calc(-100vw + 108%));
  }
  51% {
    transform: translateX(calc(-100vw + 108%)) rotateY(180deg);
  }
  100% {
    transform: translateX(0) rotateY(180deg);
  }
}
.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving2 {
  animation: moving2 8s linear infinite;
}

@keyframes moving2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.moving3 {
  animation: moving3 8s linear infinite;
}

@keyframes moving3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.spin {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-color-ani,
.color-animate {
  animation: bgColor 6s linear infinite;
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
.spin2 {
  animation: spin2 10s linear infinite;
}

@keyframes spin2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*animation bubble****************/
.animation-bubble {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.animation-bubble div[class^=bubble-] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../img/shape/star.html) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .animation-bubble > :nth-child(even) {
    display: none;
  }
}
.bubble-1 {
  bottom: -5px;
  left: 68%;
  animation: bubble-animation 4.5s infinite ease-in -6.57s;
}

.bubble-2 {
  bottom: -71px;
  left: 97%;
  animation: bubble-animation 4.5s infinite ease-in -5.07s;
}

.bubble-3 {
  bottom: -71px;
  left: 43%;
  animation: bubble-animation 4.5s infinite ease-in -6.73s;
}

.bubble-4 {
  bottom: -3.8px;
  left: 82%;
  animation: bubble-animation 4.5s infinite ease-in -4.04s;
}

.bubble-5 {
  bottom: -73.4px;
  left: 29%;
  animation: bubble-animation 4.5s infinite ease-in -3.11s;
}

.bubble-6 {
  bottom: -71px;
  left: 41%;
  animation: bubble-animation 4.5s infinite ease-in -5.95s;
}

.bubble-7 {
  bottom: -79.4px;
  left: 14%;
  animation: bubble-animation 4.5s infinite ease-in -3.68s;
}

.bubble-8 {
  bottom: -115.4px;
  left: 90%;
  animation: bubble-animation 4.5s infinite ease-in -3.89s;
}

.bubble-9 {
  bottom: -44.6px;
  left: 33%;
  animation: bubble-animation 4.5s infinite ease-in -1.09s;
}

.bubble-10 {
  bottom: -6.2px;
  left: 59%;
  animation: bubble-animation 4.5s infinite ease-in -0.96s;
}

@keyframes bubble-animation {
  0% {
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes icon-anim {
  0% {
    top: 26px;
    right: 90px;
  }
  25% {
    top: 86px;
    right: 110px;
  }
  100% {
    top: 26px;
    right: 90px;
  }
}
.img-shine {
  position: relative;
}

.img-shine:after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-20deg);
}

.img-shine:hover:after {
  animation: imgShine 1s;
}

@keyframes imgShine {
  100% {
    left: 125%;
  }
}
/* 08.Helping */
/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}

.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(245, 255, 255, 0.3);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.bg-cover-2 {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
  width: 100%;
  height: 100%;
}

.page-nav-wrap ul li {
  display: inline-block;
  text-align: center;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid #E3E3E3;
  color: var(--title);
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.box-shadow {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}

.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-110 {
  padding-top: 110px;
}
@media (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}

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

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

.margin-top-10 {
  margin-top: -10px;
}

.margin-top-5 {
  margin-top: -5px;
}

.margin-top-60 {
  margin-top: -65px;
}
@media (max-width: 1399px) {
  .margin-top-60 {
    margin-top: -25px;
  }
}
@media (max-width: 1199px) {
  .margin-top-60 {
    margin-top: -27px;
  }
}
@media (max-width: 991px) {
  .margin-top-60 {
    margin-top: -75px;
  }
}
@media (max-width: 767px) {
  .margin-top-60 {
    margin-top: -65px;
  }
}

.margin-top-8 {
  margin-top: -10px;
}

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

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

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

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

.mr-7 {
  margin-right: 7px;
}

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

.mr-44 {
  margin-right: 44px;
}

.mb-40 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mb-40 {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .mb-40 {
    margin-bottom: 25px;
  }
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.mt-n10 {
  margin-top: -10px;
}

.mt-n5 {
  margin-top: -5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .mb-md-100 {
    margin-bottom: 100px;
  }
}
.pb-262 {
  padding-bottom: 262px !important;
}
@media (max-width: 767px) {
  .pb-262 {
    padding-bottom: 80px !important;
  }
}

.mxw-345 {
  max-width: 345px;
}

.mxw-410 {
  max-width: 410px;
}

.mxw-440 {
  max-width: 440px;
}

.mxw-530 {
  max-width: 530px;
}

.mxw-565 {
  max-width: 565px;
}

.mxw-570 {
  max-width: 570px;
}

.mxw-586 {
  max-width: 586px;
}

.mxw-612 {
  max-width: 612px;
}

.mxw-630 {
  max-width: 630px;
}

.mxw-685 {
  max-width: 685px;
}

.mxw-690 {
  max-width: 690px;
}

.mxw-708 {
  max-width: 708px;
}

.mxw-850 {
  max-width: 850px;
}

.mxw-848 {
  max-width: 848px;
}

.mxw-705 {
  max-width: 705px;
}

.mxw-720 {
  max-width: 720px;
}

.mxw-770 {
  max-width: 770px;
}

.mxw-937 {
  max-width: 937px;
}

.mxw-300 {
  max-width: 300px;
}

.mxw-564 {
  max-width: 564px !important;
}

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

.center {
  text-align: center;
  margin: 0 auto;
}

.bg-theme {
  background-color: var(--theme) !important;
}

.bg-theme2 {
  background: var(--theme2) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-color1 {
  background-color: #161921;
}

.bg-color2 {
  background-color: #343434;
}

.bg-color4 {
  background-color: var(--bg-4) !important;
}

.bg-title {
  background-color: var(--title);
}

.text-title {
  color: var(--title);
}

.text-dark2 {
  color: #838387 !important;
}

.text-bg-color2 {
  color: var(--theme2) !important;
}

.text-theme-color {
  color: var(--theme) !important;
}

.text-theme-color2 {
  color: var(--theme2) !important;
}

.text-orange-color {
  color: var(--orange) !important;
}

.bg-transparent {
  background: transparent;
}

.border-theme {
  border: 1px solid var(--theme);
}

.border-dark {
  border-bottom: 1px solid #54595F;
}

.mbn-1-9em {
  margin-bottom: -1.9em !important;
}
@media (max-width: 767px) {
  .mbn-1-9em {
    margin-bottom: -41px !important;
  }
}

.mbn-3em {
  margin-bottom: -3em !important;
}
@media (max-width: 767px) {
  .mbn-3em {
    margin-bottom: 0 !important;
  }
}

.mtn-3em {
  margin-top: -3em !important;
}
@media (max-width: 767px) {
  .mtn-3em {
    margin-top: -41px !important;
  }
}

/* 09.MeanMenu */
/*----------------------------------------------
    # Meanmenu style here
----------------------------------------------*/
.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 .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

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

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

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

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

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

.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);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* 10.Preloader */
/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Roboto", sans-serif, "Roboto", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--title);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--title);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.back-to-top {
  border-radius: 12px;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--title);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* 11.Title */
/*----------------------------------------------
    # Title style here
----------------------------------------------*/
.section-title .subtitle {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
  width: max-content;
}
.section-title .title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .section-title .title {
    line-height: 1.4;
  }
}
.section-title .title .color-text {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 7.68px;
}
.section-title .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}

@media (max-width: 767.98px) {
  .section-title .title {
    font-size: 36px;
  }
  .section-title .title .color-text {
    font-size: 26px;
  }
}
@media (max-width: 575.98px) {
  .section-title .title {
    font-size: 28px;
  }
}
/* 12.Common */
.brandSliderTwo .brand-logo {
  text-align: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--theme3);
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 28px;
  background-color: var(--theme);
  opacity: 1;
  border-radius: 8px;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.social-media li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--theme2);
  color: var(--theme);
  transition: all 0.4s;
  border-radius: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.social-media li a:hover {
  background: var(--theme);
  color: var(--white) !important;
  border: 1px solid var(--border);
}
.social-media.style2 li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: var(--white);
  color: var(--title);
  transition: all 0.4s;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.social-media.style2 li a:hover {
  background: var(--theme);
  color: var(--white) !important;
  border: 1px solid var(--theme);
}
.social-media.style3 li a {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  background: transparent;
  color: var(--title);
  transition: all 0.4s;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.social-media.style3 li a:hover {
  color: var(--theme) !important;
  border: none;
}

.fancy-box-wrapper.style1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fancy-box-wrapper.style1 .item h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.fancy-box-wrapper.style1 .item .counter {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 46px;
}

.fancy-box.style1 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fancy-box.style1 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme2);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.fancy-box.style1 h4 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.54px;
}
.fancy-box.style2 {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 30px;
}
.fancy-box.style2 .content {
  max-width: 205px;
}
.fancy-box.style2 .content h4 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -0.48px;
  margin-bottom: 1px;
}
.fancy-box.style2 .content .text {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.32px;
}
.fancy-box.style3 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 30px;
  border-right: 1px solid var(--border);
}
.fancy-box.style3 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.fancy-box.style3 h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  max-width: 130px;
}
@media (max-width: 767px) {
  .fancy-box.style3 {
    border-right: 0;
    border-bottom: 1px solid var(--border-4);
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.fancy-box.style4 {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: var(--white);
  box-shadow: 0px 6px 25px 0px rgba(0, 0, 0, 0.05);
}
.fancy-box.style4 .icon {
  width: 63px;
  height: 63px;
  line-height: 63px;
  text-align: center;
  background: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.fancy-box.style4 .text {
  max-width: 110px;
}
.fancy-box.style5 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fancy-box.style5 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: var(--theme2);
}
.fancy-box.style6 {
  display: flex;
  align-items: center;
  gap: 13px;
}

.counter-box.style1 {
  display: inline-block;
  padding: 42px 30px;
  border-radius: 30px;
  background: var(--theme);
}
@media (max-width: 1199px) {
  .counter-box.style1 {
    padding: 10px;
  }
}
.counter-box.style1 .number {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.9px;
}
.counter-box.style1 .number span {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1399px) {
  .counter-box.style1 .number span {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .counter-box.style1 .number span {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .counter-box.style1 .number span {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .counter-box.style1 .number span {
    font-size: 60px;
  }
}
.counter-box.style1 .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 767px) {
  .counter-box.style2 {
    text-align: center;
  }
}
.counter-box.style2 .counter span {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.counter-box.style2 .counter span.plus {
  font-weight: 300;
}
.counter-box.style2 .line {
  position: relative;
  width: 374px;
  height: 19px;
  flex-shrink: 0;
  border-top: 1px solid var(--theme);
  background: var(--white);
  margin-top: -35px;
  margin-bottom: 0px;
  z-index: 2;
}
.counter-box.style2 .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.counter-box.style3 {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.counter-box.style3 .counter span {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .counter-box.style3 .counter span {
    font-size: 65px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
}
.counter-box.style3 .text {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.checklist-wrapper.style1 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.checklist.style1 li {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 20px;
}
.checklist.style1 li img {
  margin-right: 10px;
}
.checklist.style2 {
  margin-top: 20px;
}
.checklist.style2 li {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.contact-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-meta .video-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-meta .video-box .video-wrap {
  position: relative;
}
.contact-meta .video-box .video-wrap .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  animation: 6s rippleOne linear infinite;
}
.contact-meta .video-box h4 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 35.04px;
}
@media (max-width: 767px) {
  .contact-meta {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 107px;
  padding-top: 24px;
  background: var(--theme);
  z-index: 9;
}
.marquee-wrapper.style-1 {
  background-color: transparent;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .marquee-wrapper.style-1 {
    margin-bottom: 0px;
    margin: 30px 0;
  }
}
@media (max-width: 767px) {
  .marquee-wrapper.style-1 {
    margin-bottom: -50px;
    margin: 0px 0px;
  }
}
.marquee-wrapper.style-1.text-slider {
  height: auto;
}
.marquee-wrapper.style-2 {
  line-height: 55px;
}

.text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}
@media (max-width: 767px) {
  .text-slider {
    font-size: 36px;
  }
}
.text-slider img {
  margin-bottom: 10px;
  margin-right: 8px;
  margin-left: 10px;
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}
.marquee-item.style1 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: transparent;
  -webkit-text-stroke: 1px #bcb8b1;
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.marquee-item.style1 .text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}
.marquee-item.style-2 .text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}
@media (max-width: 767px) {
  .marquee-item.style-2 .text-slider {
    font-size: 36px;
  }
}
.marquee-item.style-2 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme2), var(--theme2));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
}
.marquee-item.style-2 .text-style:hover {
  color: var(--theme2);
  background-size: 100% 3px;
  opacity: 0.7;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.marque-section-2 {
  position: relative;
}

.modal-details .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E5E5E5;
}
.modal-details .title-box .title h3 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-transform: capitalize;
}
.modal-details .title-box .price {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}
.modal-details .desc p {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.progress-wrap {
  margin-bottom: 15px;
}
.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.progress-wrap .progress-meta .title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.progress-wrap .progress-meta .percentage {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 500px) {
  .progress-wrap .progress-meta {
    gap: 210px;
  }
}
@media (max-width: 470px) {
  .progress-wrap .progress-meta {
    gap: 150px;
  }
}
.progress-wrap .progress-container {
  position: relative;
  max-width: 504px;
  height: 7px;
  background-color: #D9DDFF !important;
  border-radius: 10px;
  overflow: visible;
}
.progress-wrap .progress-container .progress-bar {
  height: 7px;
  background-color: var(--theme2);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 575px) {
  .progress-wrap .progress-container {
    width: 85%;
  }
}
.progress-wrap .progress-container.style2:before, .progress-wrap .progress-container.style2:after {
  background-color: var(--theme2);
}

.arrow-button {
  position: absolute;
  z-index: 9;
}
.arrow-button .arrow-prev {
  margin-right: 12px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  border: 1px solid var(--theme);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.arrow-button .arrow-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 8px;
  background-color: var(--white);
  color: var(--theme);
  border: 1px solid var(--theme);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.arrow-button .arrow-next:hover,
.arrow-button .arrow-prev:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme2);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}

.before-after-section .thumb {
  width: 100%;
}
.before-after-section .thumb img {
  width: 100%;
}

.comment-list .comment-item {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-2);
}
.comment-list .comment-item .post-comment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.comment-list .comment-item .post-comment .comment-content .name {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.comment-list .comment-item .post-comment .comment-content .commented-on {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .comment-list .comment-item .post-comment .comment-content .commented-on {
    margin-bottom: -10px;
  }
}
.comment-list .comment-item .post-comment .comment-content .star {
  position: absolute;
  top: 15px;
  right: 15px;
}
@media (max-width: 575px) {
  .comment-list .comment-item .post-comment .comment-content .star {
    position: relative;
    margin: 0px 0 25px 12px;
  }
}
@media (max-width: 575px) {
  .comment-list .comment-item .post-comment {
    display: flex;
    flex-direction: column;
  }
}

.star-wrapper.style1 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.star-wrapper.style1 li {
  color: var(--theme);
}

.profile-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.profile-meta .content h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
.profile-meta .content p {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.comment-form {
  margin-top: var(--blog-space-y, 50px);
  padding: 60px;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: var(--theme2);
  border: 0;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.comment-form .inner-title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 25px;
}
.comment-form .rating {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 15px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .comment-form {
    padding: 30px;
  }
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.inner-section-padding {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .inner-section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .inner-section-padding {
    padding: 90px 0;
  }
}
@media (max-width: 575px) {
  .inner-section-padding {
    padding: 80px 0;
  }
}

.section-padding {
  padding: 140px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 120px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 120px 0;
  }
}
@media (max-width: 575px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding1 {
  padding: 100px 0px;
}
@media (max-width: 1199px) {
  .section-padding1 {
    padding: 80px 0px;
  }
}
@media (max-width: 991px) {
  .section-padding1 {
    padding: 60px 0px;
  }
}

.section-padding2 {
  padding: 110px 0 270px;
}
@media (max-width: 1199px) {
  .section-padding2 {
    padding: 90px 0 240px;
  }
}
@media (max-width: 991px) {
  .section-padding2 {
    padding: 80px 0 230px;
  }
}
@media (max-width: 767px) {
  .section-padding2 {
    padding: 80px 0 190px;
  }
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}

.mask-content {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center center;
  -webkit-mask-position: center center;
  width: 100%;
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: 165px;
  height: 165px;
  line-height: 165px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--white);
  background: var(--theme);
  backdrop-filter: blur(21px);
  color: var(--title);
  font-size: var(--icon-font-size, 24px);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
.play-btn > i.fa-play {
  font-size: 56px;
}
@media (max-width: 767px) {
  .play-btn > i {
    width: 100px;
    height: 100px;
    line-height: 100px;
  }
  .play-btn > i.fa-play {
    font-size: 35px;
  }
}
.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--theme);
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.play-btn:after {
  animation-delay: 2s;
}
.play-btn:hover i {
  background-color: var(--theme2);
  color: var(--white);
}
.play-btn:hover:after, .play-btn:hover:before {
  background-color: var(--theme2);
}
.play-btn.style2:before, .play-btn.style2:after {
  background-color: transparent;
  border: 1px solid var(--white);
}
.play-btn.style3 > i {
  background-color: var(--theme);
  color: var(--white);
  font-size: 20px;
}
.play-btn.style3:before, .play-btn.style3:after {
  background-color: var(--white);
}
.play-btn.style3:hover > i {
  background-color: var(--white);
  color: var(--theme);
}
.play-btn.style4 {
  position: absolute;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  top: 15%;
  left: 75%;
  transform: translate(-75%, -15%);
  -webkit-transform: translate(-75%, -15%);
  -moz-transform: translate(-75%, -15%);
  -ms-transform: translate(-75%, -15%);
  -o-transform: translate(-75%, -15%);
}
.play-btn.style4 > i {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 70px;
  text-align: center;
  background: var(--theme);
  border: 9px solid #C3C9FF;
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
}
.play-btn.style4:before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
}
.play-btn.style4:after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  padding: 25px 0;
}
@media (max-width: 767px) {
  .scrolling-wrap {
    gap: 10px;
    padding: 15px 0;
  }
}
.scrolling-wrap.style2 {
  background: #EEF4FB;
}
.scrolling-wrap.style2 .comm.style2 .cmn-textslide {
  -webkit-text-stroke: 1px var(--title);
  -webkit-text-fill-color: var(--title);
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 5.5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap.style2 .comm.style2 .cmn-textslide {
    font-size: 45px;
  }
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  -webkit-animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm .dot {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap .comm .dot {
    font-size: 45px;
  }
}
.scrolling-wrap .comm .cmn-textslide {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 45px;
  }
}
.scrolling-wrap .comm .cmn-textslide.style2 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap .comm .cmn-textslide.style2 {
    font-size: 45px;
  }
}
.scrolling-wrap .comm .cmn-textslide.style3 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap .comm .cmn-textslide.style3 {
    font-size: 45px;
  }
}
.scrolling-wrap .comm.style2 {
  animation: scroll2 60s linear infinite;
  -webkit-animation: scroll2 60s linear infinite;
}
.scrolling-wrap .comm.style2 .dot {
  -webkit-text-stroke: 1px var(--title);
  -webkit-text-fill-color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap .comm.style2 .dot {
    font-size: 45px;
  }
}
.scrolling-wrap .comm.style2 .cmn-textslide {
  -webkit-text-stroke: 1px var(--title);
  -webkit-text-fill-color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .scrolling-wrap .comm.style2 .cmn-textslide {
    font-size: 45px;
  }
}
.scrolling-wrap .comm.style2 .cmn-textslide.style2 {
  font-weight: 500;
}
.scrolling-wrap .comm.style2 .cmn-textslide.style3 {
  font-weight: 600;
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .scrolling-wrap {
    gap: 14px;
  }
  .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.social-profile {
  position: absolute;
  right: 0px;
  bottom: 0px;
  max-height: 380px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  z-index: 9;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.social-profile ul {
  position: absolute;
  bottom: 80px;
  right: 10px;
  padding: 15px 10px;
  margin: 0 auto;
  background-color: var(--white);
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  border-radius: 144px;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  -webkit-border-radius: 144px;
  -moz-border-radius: 144px;
  -ms-border-radius: 144px;
  -o-border-radius: 144px;
}
.social-profile ul li {
  margin-bottom: 8px;
  display: block;
  text-align: center;
}
.social-profile ul li:last-child {
  margin-bottom: 0px;
}
.social-profile ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  background: var(--title);
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.social-profile ul li a:hover {
  background: var(--theme);
  color: var(--white) !important;
}
@media (max-width: 767px) {
  .social-profile ul {
    bottom: 130px;
    right: 20px;
  }
}
@media (max-width: 440px) {
  .social-profile ul {
    bottom: 70px;
    right: 10px;
  }
}
@media (max-width: 360px) {
  .social-profile ul {
    bottom: 40px;
    right: -10px;
  }
}
.social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  background-color: var(--border);
  color: var(--title);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}
@media (max-width: 1399px) {
  .social-profile .plus-btn {
    width: 56px;
    height: 56px;
    line-height: 56px;
  }
}
.social-profile:hover .plus-btn {
  background-color: var(--title);
  color: var(--white);
}
.social-profile:hover .plus-btn svg path {
  fill: var(--white);
}
.social-profile:hover ul {
  transform: translateY(-41%);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-41%);
  -moz-transform: translateY(-41%);
  -ms-transform: translateY(-41%);
  -o-transform: translateY(-41%);
}

/* 13.Header */
/*----------------------------------------------
    # Header style here
----------------------------------------------*/
.header-section-1 {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}

.header-section-2 {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}
.main-header-wrapper .main-header-items {
  width: 100%;
}
.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #D4DCED;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #D4DCED;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-1 {
  background-color: var(--white);
}
.header-1.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-1 .mega-menu-wrapper {
  position: relative;
  z-index: 9;
  border: 1px solid #D8D9DA;
  background-color: var(--white);
  padding: 0 50px;
}
@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
.header-1 .mega-menu-wrapper .header-main .main-menu ul li {
  margin-inline-end: 55px;
}
@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 35px;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 5px;
  }
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-1 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-1 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-1 .header-right {
    gap: 5px !important;
  }
}
.header-1 .header-right .header-search {
  position: relative;
}
.header-1 .header-right .header-search input {
  position: relative;
  border-radius: 25px;
  border: 1px solid #D8D9DA;
  height: 50px;
}
.header-1 .header-right .header-search .search-button {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.header-1 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-1 .header-right .header-button {
    display: none;
  }
}
.header-1 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1899px) {
  .header-1 .header-right .sidebar__toggle {
    margin-left: 10px;
  }
}
@media (max-width: 1399px) {
  .header-1 .header-right .sidebar__toggle {
    color: var(--theme);
  }
}
@media (min-width: 350px) and (max-width: 390px) {
  .header-1 .header-right .sidebar__toggle {
    margin-right: 5px;
  }
}

.header-2 {
  background-color: transparent;
}
.header-2 .header-main .main-menu ul li {
  margin-inline-end: 55px;
}
.header-2.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-2.sticky-bg-dark .header-right .header-contact-info.style2 .content h6 {
  color: var(--white) !important;
}
.header-2.sticky-bg-dark .header-right .header-contact-info.style2 .content h5 a {
  color: var(--white) !important;
}
.header-2.sticky-bg-dark .header-right .search-icon {
  color: var(--white) !important;
}
.header-2.sticky-bg-dark .header-right .header__cart > a {
  color: var(--white) !important;
}
.header-2.sticky-bg-dark .header-right .sidebar__toggle {
  color: var(--white) !important;
}
.header-2.sticky-bg-dark .header-right .sidebar__toggle svg line {
  stroke: var(--white) !important;
}
.header-2 .mega-menu-wrapper {
  position: relative;
  z-index: 9;
}
@media (max-width: 470px) {
  .header-2 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 10px;
  }
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-2 .header-right {
  gap: 30px !important;
  margin-right: 330px;
}
@media (max-width: 1899px) {
  .header-2 .header-right {
    margin-right: 180px;
  }
}
@media (max-width: 1399px) {
  .header-2 .header-right {
    gap: 3px !important;
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .header-2 .header-right {
    gap: 5px !important;
  }
}
.header-2 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-2 .header-right .header-button {
    display: none;
  }
}
.header-2 .header-right .header-contact-info.style2 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-2 .header-right .header-contact-info.style2 .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--theme);
}
.header-2 .header-right .header-contact-info.style2 .content h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
}
.header-2 .header-right .header-contact-info.style2 .content h5 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1399px) {
  .header-2 .header-right .header-contact-info.style2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-2 .header-right .search-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .header-2 .header-right .header__cart {
    display: none;
  }
}
.header-2 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-2 .header-right .sidebar__toggle {
    color: var(--theme);
  }
}

.header-3 {
  background-color: transparent;
}
.header-3.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-3.sticky-bg-dark .header-left .search-icon {
  color: var(--white) !important;
}
.header-3.sticky-bg-dark .header-left .header__cart > a {
  color: var(--white) !important;
}
.header-3.sticky-bg-dark .header-left .sidebar__toggle {
  color: var(--white) !important;
}
.header-3.sticky-bg-dark .header-left .sidebar__toggle svg line {
  stroke: var(--white) !important;
}
.header-3.sticky-bg-dark .header-right .header-contact-info.style2 .content h6 {
  color: var(--white) !important;
  margin-bottom: 8px;
}
.header-3.sticky-bg-dark .header-right .header-contact-info.style2 .content h5 a {
  color: var(--white) !important;
}
.header-3 .header-left {
  gap: 30px;
}
.header-3 .header-left .sidebar__toggle {
  color: var(--white);
  margin-right: 15px;
}
@media (max-width: 1399px) {
  .header-3 .header-left .sidebar__toggle {
    color: var(--white);
  }
}
@media (max-width: 767px) {
  .header-3 .header-left .search-icon {
    display: none;
  }
}
.header-3 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 470px) {
  .header-3 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li {
  margin-inline-end: 65px;
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 5px;
  }
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-3 .header-right {
  gap: 30px !important;
}
.header-3 .header-right .header-phone .img {
  margin-right: 20px;
}
.header-3 .header-right .header-phone a {
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
}
.header-3 .header-right .sidebar__toggle {
  margin-left: 30px;
}
.header-3 .header-right .header-search {
  margin-left: 40px;
}
.header-3 .header-right .header-search .search-button {
  width: 50px;
  height: 50px;
  background: var(--theme);
}
@media (max-width: 1399px) {
  .header-3 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-3 .header-right {
    gap: 5px !important;
  }
}
.header-3 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-3 .header-right .header-button {
    display: none;
  }
}
.header-3 .header-right .header-contact-info.style2 {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-3 .header-right .header-contact-info.style2 .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--theme);
}
.header-3 .header-right .header-contact-info.style2 .content h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1899px) {
  .header-3 .header-right .header-contact-info.style2 .content h6 {
    font-size: 13px;
  }
}
.header-3 .header-right .header-contact-info.style2 .content h5 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1899px) {
  .header-3 .header-right .header-contact-info.style2 .content h5 a {
    font-size: 14px;
  }
}

.header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-right {
    gap: 5px;
  }
  .header-right .theme-btn {
    display: none;
  }
}
.header-right .search-icon {
  color: var(--text);
  font-size: 18px;
}
.header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .header-right .header__cart {
    padding: 0px 10px;
  }
}
.header-right .header__cart:hover > a {
  color: var(--theme);
}
.header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}
.header-right .header__cart > a {
  font-size: 18px;
  color: var(--text);
  padding: 15px 0;
  position: relative;
}
.header-right .header__cart > a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 991px) {
  .header-right .header__cart > a::before {
    top: 7px;
    right: 11px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
  color: var(--theme2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 30px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
  width: 30%;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
  display: inline-block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
  text-align: left;
  width: 70%;
  margin-left: 15px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
  color: var(--theme2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
  color: var(--title);
  font-size: 14px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
  color: var(--theme);
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
  float: right;
  color: var(--theme);
  font-weight: 700;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
  border: 1px solid var(--theme2);
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
  background: var(--theme2);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
  background: var(--title);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
  background: var(--theme2);
}

.sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--text);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  z-index: 99;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  padding: 20px 0;
  text-align: left;
  position: relative;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li a {
    letter-spacing: 1px;
  }
}
.header-main .main-menu ul li a i {
  margin-left: 7px;
}
.header-main .main-menu ul li a:hover, .header-main .main-menu ul li a.active {
  color: var(--title) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 113%;
  inset-inline-start: 0;
  width: max-content;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--title);
  border-top: 6px solid var(--theme);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .main-menu ul li .submenu li {
  position: relative;
  z-index: 9;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 999;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: var(--title);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li a.active, .header-main .main-menu ul li .submenu li a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--theme2);
  color: var(--white) !important;
  padding: 11px 35px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme2);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  position: absolute;
  z-index: 9;
  width: 710px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  position: relative;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--title) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--theme2);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--title);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-icon {
  color: var(--title);
  font-size: 18px;
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--title);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.sticky-bg-dark {
  background-color: #161921;
}
.sticky.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.sticky.header-1 {
  padding: 0 10px;
}
.sticky.header-1 .logo {
  display: block;
}
.sticky.header-1 .mega-menu-wrapper {
  border: none;
}
.sticky.header-1 .mega-menu-wrapper::before {
  display: none;
}
.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-1 .header-main .main-menu ul li a.active, .sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-1 {
    padding: 0;
  }
}
.sticky.header-1 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-2 {
  padding: 0 10px;
}
.sticky.header-2 .header-right {
  gap: 30px !important;
  margin-right: 0px;
}
.sticky.header-2 .logo {
  display: block;
}
.sticky.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-2 .header-main .main-menu ul li a.active, .sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-2 {
    padding: 0;
  }
}
.sticky.header-2 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-3 {
  padding: 0 10px;
}
.sticky.header-3 .logo {
  display: block;
}
.sticky.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-3 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-3 .header-main .main-menu ul li a.active, .sticky.header-3 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-3 {
    padding: 0;
  }
}
.sticky.header-3 .theme-btn {
  background: var(--white);
  color: var(--title);
}

.offcanvas__info {
  background: var(--title) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
  background-color: var(--bg-1);
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme2);
  color: var(--title) !important;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

.header-section-2 .header-right .header-phone .img {
  margin-right: 20px;
}
.header-section-2 .header-right .header-phone a {
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
}
.header-section-2 .header-right .header-search {
  margin-left: 20px;
}
.header-section-2 .header-right .header-search .search-button {
  width: 50px;
  height: 50px;
  background: var(--theme);
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding-top: 150px;
  padding-bottom: 50px;
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: var(--theme);
}
.breadcrumb-wrapper .shape-image {
  position: absolute;
  right: 0;
  bottom: 10%;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .shape-image {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.breadcrumb-wrapper .page-heading .shape {
  position: absolute;
  top: 0px;
  right: 180px;
  animation: float-bob-x 5s linear infinite;
  -webkit-animation: float-bob-x 5s linear infinite;
}
.breadcrumb-wrapper .page-heading .title .title-heading {
  display: inline-block;
  padding: 8px 24px;
  background-color: var(--theme2);
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
  border-radius: 60px;
  transform: rotate(-20deg);
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  color: var(--theme2);
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  max-width: 528px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme2);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
  opacity: 0.8;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    display: block;
  }
  .breadcrumb-wrapper .page-heading h1 {
    max-width: 100%;
  }
}
.breadcrumb-wrapper .breadcrumb-wrapper-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items {
    flex-wrap: wrap;
  }
}
.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
  position: relative;
  height: 380px;
  margin-bottom: -50px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image {
    margin-bottom: 0;
  }
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
    width: 100%;
    height: 100%;
  }
}
.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
  position: absolute;
  top: -60px;
  bottom: 0;
  left: -27%;
  z-index: -1;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image .bar-shape {
    display: none;
  }
}
.breadcrumb-wrapper .breadcrumb-wrapper-items .breadcrumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.error-wrapper {
  position: relative;
}
.error-wrapper .shape1 {
  position: absolute;
  top: 60%;
  left: 10%;
  z-index: 1;
}
.error-wrapper .shape2 {
  position: absolute;
  top: 10%;
  right: 8%;
  z-index: 1;
}
.error-wrapper .error-items h1 {
  color: var(--title);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.error-wrapper .error-items p {
  color: var(--text);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 30px;
}
.error-wrapper .error-items .btn-wrapper {
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
}

/* 14.Breadcumb */
.breadcrumb-section {
  padding: 0 106px;
}
.breadcrumb-section .breadcrumb-bg {
  padding: 157px 30px 186px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
}
.breadcrumb-section .breadcrumb-bg .breadcrumb-text .breadcrumb-title {
  color: var(--white);
  font-size: 70px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
.breadcrumb-section .breadcrumb-bg .breadcrumb-text ul li {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
}
.breadcrumb-section .breadcrumb-bg .breadcrumb-text ul li a {
  color: var(--white);
}

@media (max-width: 1799.98px) {
  .breadcrumb-section {
    padding: 0 15px;
  }
}
@media (max-width: 1399.98px) {
  .breadcrumb-section {
    padding: 0 46px;
  }
}
@media (max-width: 1199.98px) {
  .breadcrumb-section .breadcrumb-bg {
    padding: 100px 30px 100px;
  }
  .breadcrumb-section .breadcrumb-bg .breadcrumb-text .breadcrumb-title {
    font-size: 52px;
  }
  .breadcrumb-section .breadcrumb-bg .breadcrumb-text ul li {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb-section {
    padding: 0 40px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb-section {
    padding: 0 33px;
  }
  .breadcrumb-section .breadcrumb-bg {
    padding: 70px 30px 70px;
  }
  .breadcrumb-section .breadcrumb-bg .breadcrumb-text .breadcrumb-title {
    font-size: 38px;
  }
  .breadcrumb-section .breadcrumb-bg .breadcrumb-text ul li {
    font-size: 15px;
  }
}
@media (max-width: 575.98px) {
  .breadcrumb-section .breadcrumb-bg .breadcrumb-text .breadcrumb-title {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .breadcrumb-section {
    padding: 0 12px;
  }
}
/* 15.Footer */
/*----------------------------------------------
    # Footer style here
----------------------------------------------*/
.footer-section-one {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 69px 0 19px 0;
}
.footer-section-one .footer-top-area {
  padding-bottom: 60px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.15);
}
.footer-section-one .footer-top-area .logo p {
  color: var(--white);
  margin-top: 30px;
}
.footer-section-one .newsletter .text {
  margin-bottom: 30px;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.footer-section-one .newsletter .input-groups input {
  height: 60px;
  border-radius: 50px;
  color: var(--title);
}
.footer-section-one .newsletter .input-groups .submit-btn {
  right: 10px;
  background-color: var(--theme);
  width: 40px;
  height: 40px;
}
.footer-section-one .footer-widget .widget-link {
  position: relative;
}
.footer-section-one .footer-widget .widget-link a {
  position: relative;
  color: var(--white);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: capitalize;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer-section-one .footer-widget .widget-link a {
    font-size: 51px;
  }
}
.footer-section-one .footer-widget .widget-link span {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .footer-section-one .footer-widget .widget-link span {
    font-size: 51px;
  }
}
.footer-section-one .footer-widget .widget-link .link-box {
  position: absolute;
  top: 0;
  right: 195px;
  z-index: 3;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .footer-section-one .footer-widget .widget-link .link-box {
    right: 30px;
  }
}
.footer-section-one .footer-widget .widget-link .link-box h6 {
  position: absolute;
  top: 25%;
  left: 50%;
  color: var(--white);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .footer-section-one .footer-widget .widget-link .link-box h6 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}
.footer-section-one .footer-widget .widget-link:hover .link-box {
  right: 225px;
}
@media (max-width: 767px) {
  .footer-section-one .footer-widget .widget-link:hover .link-box {
    right: 90px;
  }
}
.footer-section-one .footer-contact-info {
  padding-top: 45px;
  margin-top: 45px;
  border-top: 1px solid rgba(217, 226, 236, 0.15);
}
.footer-section-one .footer-contact-info .info-wrapper {
  display: flex;
  align-items: center;
  gap: 96px;
}
@media (max-width: 1199px) {
  .footer-section-one .footer-contact-info .info-wrapper {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-section-one .footer-contact-info .info-wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.footer-section-one .footer-contact-info .info-wrapper .info a {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.footer-section-one .footer-contact-info .social-links {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: end;
}
@media (max-width: 1199px) {
  .footer-section-one .footer-contact-info .social-links {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-section-one .footer-contact-info .social-links {
    flex-direction: column;
  }
}
.footer-section-one .footer-contact-info .social-links li a {
  display: inline-block;
  padding: 5px 25px;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  border-radius: 29px;
  border: 1px solid #FFF;
}
.footer-section-one .copyright {
  border-top: 1px solid rgba(217, 226, 236, 0.15);
  padding-top: 19px;
  margin-top: 50px;
}
.footer-section-one .copyright p {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.footer-section-two {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 69px 0 19px 0;
}
.footer-section-two .footer-top-area {
  padding-bottom: 60px;
  margin-bottom: 45px;
  border-bottom: 1px solid rgba(217, 226, 236, 0.15);
}
.footer-section-two .footer-top-area .logo p {
  color: var(--white);
  margin-top: 30px;
}
.footer-section-two .footer-top-area .newsletter .title {
  margin-bottom: 30px;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
}
.footer-section-two .footer-top-area .newsletter .input-groups input {
  height: 60px;
  border-radius: 50px;
  color: var(--title);
}
.footer-section-two .footer-top-area .newsletter .input-groups .submit-btn {
  right: 10px;
  background-color: var(--theme);
  width: 40px;
  height: 40px;
}
.footer-section-two .footer-widget .widget-title {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 46px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}
.footer-section-two .footer-widget .widget-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 129px;
  height: 1px;
  background: rgba(217, 226, 236, 0.15);
  content: "";
}
.footer-section-two .footer-widget .contact-info li {
  gap: 7px;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  padding-right: 40px;
}
.footer-section-two .footer-widget .contact-info li a {
  color: var(--white);
}
.footer-section-two .footer-widget .contact-info li img {
  position: relative;
  top: 5px;
}
.footer-section-two .footer-widget .contact-info li + li {
  margin-top: 12px;
}
.footer-section-two .footer-widget .links li a {
  color: var(--white);
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 29px;
}
.footer-section-two .footer-widget .links li + li {
  margin-top: 15px;
}
.footer-section-two .copyright {
  border-top: 1px solid rgba(217, 226, 236, 0.15);
  padding-top: 19px;
  margin-top: 50px;
}
.footer-section-two .copyright p {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {
  .footer-section-two .footer-widget .contact-info li {
    padding-right: 0;
  }
}
/* 16.Intro */
.intro-container-wrapper.style1 {
  position: relative;
  padding: 221px 0 70px;
  border-radius: 0px 0px 30px 30px;
  background: #F5F5F5;
}
@media (max-width: 767px) {
  .intro-container-wrapper.style1 {
    padding: 221px 0 0;
  }
}
.intro-container-wrapper.style1 .intro-main {
  position: relative;
}
.intro-container-wrapper.style1 .intro-main .intro-box {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50px;
  background: var(--theme);
  padding: 80px;
  width: 575px;
}
@media (max-width: 1399px) {
  .intro-container-wrapper.style1 .intro-main .intro-box {
    right: -90px;
  }
}
@media (max-width: 1199px) {
  .intro-container-wrapper.style1 .intro-main .intro-box {
    top: 20px;
    right: 10px;
    padding: 30px;
    width: 467px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .intro-container-wrapper.style1 .intro-main .intro-box {
    top: 0px;
    right: 0px;
    padding: 15px;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
  }
}
@media (min-width: 350px) and (max-width: 390px) {
  .intro-container-wrapper.style1 .intro-main .intro-box {
    top: 0px;
    right: 0px;
    padding: 15px;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
  }
}
.intro-container-wrapper.style1 .intro-main .intro-box h3 {
  color: var(--title);
  font-family: var(--title);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
}
.intro-container-wrapper.style1 .intro-main .intro-box .text {
  color: var(--black);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 180px;
  max-width: 336px;
}
@media (max-width: 1199px) {
  .intro-container-wrapper.style1 .intro-main .intro-box .text {
    margin-bottom: 60px;
  }
}
.intro-container-wrapper.style1 .intro-main .intro-box .shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.intro-container-wrapper.style2 {
  position: relative;
  z-index: 2;
}
.intro-container-wrapper.style3 {
  padding: 140px 0 120px;
}
@media (max-width: 767px) {
  .intro-container-wrapper.style3 {
    padding: 90px 0 120px;
  }
}

.intro-wrapper.style1 {
  max-width: 1720px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1720 734" ><path fill-rule="evenodd" clip-rule="evenodd" d="M1115 50C1115 22.3857 1092.61 0 1065 0H50C22.3858 0 0 22.3858 0 50V684C0 711.614 22.3858 734 50 734H1670C1697.61 734 1720 711.614 1720 684V591C1720 563.386 1697.61 541 1670 541H1165C1137.39 541 1115 518.614 1115 491V50Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1899px) {
  .intro-wrapper.style1 {
    mask: none;
  }
}
.intro-wrapper.style1 .intro-content {
  padding: 340px 0 160px;
}
@media (max-width: 767px) {
  .intro-wrapper.style1 .intro-content {
    padding: 340px 0 90px;
  }
}
.intro-wrapper.style1 .intro-content h1 {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1399px) {
  .intro-wrapper.style1 .intro-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style1 .intro-content h1 {
    font-size: 40px;
  }
}
.intro-wrapper.style1 .intro-content h1 .thin-text {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 300;
  line-height: 110px;
  letter-spacing: 10.5px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style1 .intro-content h1 .thin-text {
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style1 .intro-content h1 .thin-text {
    font-size: 40px;
  }
}
.intro-wrapper.style1 .intro-content h1 .bold-text {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 110px;
  letter-spacing: 10.5px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style1 .intro-content h1 .bold-text {
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style1 .intro-content h1 .bold-text {
    font-size: 40px;
  }
}
.intro-wrapper.style2 {
  padding: 285px 0 256px;
  margin-top: 30px;
  max-width: 1720px;
  position: relative;
  z-index: 2;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1720 910" ><path fill-rule="evenodd" clip-rule="evenodd"  d="M1420 49.5C1420 22.1619 1442.16 0 1469.5 0H1620C1675.23 0 1720 44.7715 1720 100V810C1720 865.228 1675.23 910 1620 910H330C299.624 910 275 885.376 275 855C275 824.624 250.376 800 220 800H100C44.7715 800 0 755.228 0 700V199C0 143.772 44.7715 99 100 99H1370.5C1397.84 99 1420 76.8381 1420 49.5Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
@media (max-width: 767px) {
  .intro-wrapper.style2 {
    padding: 160px 0 150px;
  }
}
.intro-wrapper.style2 .intro-content {
  position: relative;
  z-index: 3;
}
.intro-wrapper.style2 .intro-content h1 {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100px;
  margin-bottom: 15px;
}
.intro-wrapper.style2 .intro-content h1 .thin-text {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 300;
  line-height: 100px;
}
@media (max-width: 767px) {
  .intro-wrapper.style2 .intro-content h1 .thin-text {
    font-size: 45px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style2 .intro-content h1 {
    font-size: 45px;
    line-height: 1.3;
  }
}
.intro-wrapper.style2 .intro-content .desc {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  max-width: 609px;
  margin-bottom: 45px;
}
.intro-wrapper.style3 .intro-up .intro-title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 180px;
  font-style: normal;
  font-weight: 900;
  line-height: 0.5;
  text-transform: uppercase;
}
@media (max-width: 1899px) {
  .intro-wrapper.style3 .intro-up .intro-title {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style3 .intro-up .intro-title {
    font-size: 70px;
    line-height: 0.7;
  }
}
.intro-wrapper.style3 .intro-up .intro-title span {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 11.5px;
  text-transform: uppercase;
}
@media (max-width: 1899px) {
  .intro-wrapper.style3 .intro-up .intro-title span {
    font-size: 31px;
    letter-spacing: 6.5px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style3 .intro-up .intro-title span {
    font-size: 12px;
    letter-spacing: 6.5px;
    line-height: 0.4;
  }
}
.intro-wrapper.style3 .intro-up .intro-content .desc {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 40px;
}
@media (max-width: 1899px) {
  .intro-wrapper.style3 .intro-up .intro-content .desc {
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1899px) {
  .intro-wrapper.style3 .intro-up .intro-content .desc {
    font-size: 20px;
    line-height: 31px;
    margin-bottom: 70px;
    margin-top: 20px;
  }
}
.intro-wrapper.style3 .intro-down-wrapper {
  position: relative;
}
.intro-wrapper.style3 .intro-down-wrapper .intro-down {
  margin-top: 100px;
  padding: 350px 0px;
  max-width: 1709px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1709 700" ><path fill-rule="evenodd" clip-rule="evenodd"  d="M1709 31C1709 13.8792 1695.12 0 1678 0H50C22.3858 0 0 22.3858 0 50V650C0 677.614 22.3858 700 50 700H1152C1179.61 700 1202 677.614 1202 650V112C1202 84.3858 1224.39 62 1252 62H1678C1695.12 62 1709 48.1208 1709 31Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
@media (max-width: 1899px) {
  .intro-wrapper.style3 .intro-down-wrapper .intro-down {
    mask: none;
  }
}
.intro-wrapper.style3 .intro-down-wrapper .counter-box-wrapper.style3 {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  text-align: center;
  background-color: var(--title);
  padding: 65px 80px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.introSliderTwo {
  position: relative;
  z-index: 2;
}
.introSliderTwo .swiper-slide {
  position: relative;
  z-index: 2;
}
.introSliderTwo .slider-button-wrapper {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: flex;
  gap: 10px;
  z-index: 9;
}
@media (max-width: 1899px) {
  .introSliderTwo .slider-button-wrapper {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}
.introSliderTwo .slider-prev {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 1399px) {
  .introSliderTwo .slider-prev {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.introSliderTwo .slider-next {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme2);
  border: 1px solid var(--border);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 1399px) {
  .introSliderTwo .slider-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

/* 17.Service */
.service-container-wrapper.style1 {
  position: relative;
}
.service-container-wrapper.style1 .section-title {
  position: relative;
  z-index: 3;
}
.service-container-wrapper.style1 .shape {
  position: absolute;
  top: -121px;
  left: -2px;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-container-wrapper.style1 .shape {
    display: none;
  }
}
.service-container-wrapper.style2 {
  position: relative;
  padding: 136px 0 240px;
}
@media (max-width: 767px) {
  .service-container-wrapper.style2 {
    position: relative;
    padding: 60px 0 60px;
  }
}
.service-container-wrapper.style2 .shape {
  position: absolute;
  top: 0;
  left: 0;
}
.service-container-wrapper.style2 .section-title {
  margin-bottom: 50px;
}
.service-container-wrapper.style2 .big-text {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .service-container-wrapper.style2 .big-text {
    display: none;
  }
}

.service-wrapper.style1 {
  position: relative;
  margin-top: 60px;
  margin-bottom: 120px;
  z-index: 2;
}
@media (max-width: 767px) {
  .service-wrapper.style1 {
    margin-bottom: 0;
  }
}
.service-wrapper.style1 .slider-button-wrapper {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
}
.service-wrapper.style1 .slider-button-wrapper .slider-prev {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid #D9E2EC;
  border-radius: 50%;
}
.service-wrapper.style1 .slider-button-wrapper .slider-next {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--theme2);
  border: 1px solid #D9E2EC;
  border-radius: 50%;
  margin-bottom: 2px;
}
.service-wrapper.style2 {
  position: relative;
  z-index: 3;
}
@media (max-width: 1899px) {
  .service-wrapper.style2 .gx-0 {
    --bs-gutter-x: 30px!important;
  }
}
.service-wrapper.style3 .service-box {
  max-width: 650px;
  height: 350px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 490 350"><path fill-rule="evenodd" clip-rule="evenodd" d="M487 20C487 8.9543 478.046 0 467 0H20C8.9543 0 0 8.9543 0 20V330C0 341.046 8.95432 350 20 350H367C378.046 350 387 341.046 387 330V270C387 258.954 395.954 250 407 250H467C478.046 250 487 241.046 487 230V20Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 767px) {
  .service-wrapper.style3 .service-box {
    mask-size: cover;
    mask: none;
    height: 100%;
  }
}
.service-wrapper.style3 .text {
  color: #1B3A57;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.service-wrapper.style3 .btn-wrap {
  margin-top: 40px;
}

.service-box-wrapper.style1 {
  position: relative;
}
.service-box-wrapper .service-box {
  padding: 60px 55px 70px;
  background: var(--border);
  max-width: 487px;
  height: 350px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 487 350"><path fill-rule="evenodd" clip-rule="evenodd" d="M487 20C487 8.9543 478.046 0 467 0H20C8.9543 0 0 8.9543 0 20V330C0 341.046 8.95432 350 20 350H367C378.046 350 387 341.046 387 330V270C387 258.954 395.954 250 407 250H467C478.046 250 487 241.046 487 230V20Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 991px) {
  .service-box-wrapper .service-box {
    mask: none;
  }
}
.service-box-wrapper .service-box .icon {
  margin-bottom: 10px;
}
.service-box-wrapper .service-box .icon svg path {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.service-box-wrapper .service-box h3 {
  margin-bottom: 10px;
}
.service-box-wrapper .service-box h3 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.service-box-wrapper .service-box h3 a:hover {
  color: var(--title) !important;
}
.service-box-wrapper .service-box .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 1899px) {
  .service-box-wrapper .service-box {
    max-width: 100%;
    height: 100%;
  }
}
.service-box-wrapper .arrow-btn {
  position: absolute;
  bottom: 34px;
  right: 20px;
  z-index: 1;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.service-box-wrapper .arrow-btn svg path {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.service-box-wrapper:hover .service-box, .service-box-wrapper.active .service-box {
  background: var(--theme);
}
.service-box-wrapper:hover .service-box .icon svg path, .service-box-wrapper.active .service-box .icon svg path {
  fill: var(--title);
  stroke: var(--title);
}
.service-box-wrapper:hover .arrow-btn, .service-box-wrapper.active .arrow-btn {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.service-box-wrapper:hover .arrow-btn svg path, .service-box-wrapper.active .arrow-btn svg path {
  fill: var(--theme2);
}

.service-card.style2 {
  position: relative;
}
.service-card.style2 .service-card-content {
  padding: 30px 40px 40px 50px;
  background-color: var(--white);
  position: relative;
  max-width: 490px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 490 290"><path fill-rule="evenodd" clip-rule="evenodd" d="M470 36C470 24.9543 461.046 16 450 16H40C28.9543 16 20 24.9543 20 36V246C20 257.046 28.9543 266 40 266H380C391.046 266 400 257.046 400 246V216C400 204.954 408.954 196 420 196H450C461.046 196 470 187.046 470 176V36Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
.service-card.style2 .service-card-content .number {
  color: #A3B1BD;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 38px;
  margin-bottom: 40px;
}
.service-card.style2 .service-card-content .subtitle {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card.style2 .service-card-content .title {
  max-width: 235px;
}
.service-card.style2 .service-card-content .title a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.service-card.style2 .service-card-content .icon {
  position: absolute;
  top: 30px;
  right: 40px;
}
.service-card.style2 .service-card-content .icon svg path {
  fill: var(--theme);
}
.service-card.style2 .service-card-content .icon svg clipPath rect {
  fill: var(--theme);
}
.service-card.style2 .link-btn {
  position: absolute;
  bottom: 7px;
  right: 11px;
}
@media (max-width: 767px) {
  .service-card.style2 .link-btn {
    bottom: 17px;
    right: 2px;
  }
}
.service-card.style2:hover .service-card-content .icon svg path {
  fill: var(--theme2);
}
.service-card.style2:hover .service-card-content .icon svg clipPath rect {
  fill: var(--theme2);
}
.service-card.style2:hover .link-btn {
  background-color: var(--theme);
}

.service-details-section {
  margin: 140px 0;
}
.service-details-section .service-sidebar .sidebar-widget {
  margin-bottom: 50px;
  background: var(--bg-3);
  border-radius: 50px;
  padding: 89px 50px 69px;
  background-repeat: no-repeat;
}
.service-details-section .service-sidebar .sidebar-widget .title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.service-details-section .service-sidebar .sidebar-widget .service-lists li a {
  background-color: var(--white);
  padding: 13px 27px;
  padding-left: 30px;
  border-radius: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.service-details-section .service-sidebar .sidebar-widget .service-lists li a img {
  transition: all 0.3s ease;
  margin-left: auto;
}
.service-details-section .service-sidebar .sidebar-widget .service-lists li a:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}
.service-details-section .service-sidebar .sidebar-widget .service-lists li a:hover img {
  transform: rotate(45deg);
  filter: brightness(0) invert(1);
}
.service-details-section .service-sidebar .sidebar-widget .service-lists li + li {
  margin-top: 15px;
}
.service-details-section .service-sidebar .sidebar-widget .contact-info li {
  gap: 20px;
}
.service-details-section .service-sidebar .sidebar-widget .contact-info li + li {
  margin-top: 30px;
}
.service-details-section .service-sidebar .sidebar-widget .contact-info .icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
}
.service-details-section .service-sidebar .sidebar-widget .contact-info .text .contact-title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 38px;
}
.service-details-section .service-sidebar .sidebar-widget .contact-info .text p {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
}
.service-details-section .service-details .image {
  border-radius: 50px;
  margin-bottom: 50px;
}
.service-details-section .service-details .content .title {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
.service-details-section .service-details .content p {
  color: var(--title);
}
.service-details-section .service-details .content p + p {
  margin-top: 40px;
}
.service-details-section .service-details .content .inner-services {
  margin: 50px 0 60px 0;
}
.service-details-section .service-details .content .inner-services .subtitle {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 30px 0 10px 0;
}
.service-details-section .service-details .content .inner-services .service-title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 10px;
}
.service-details-section .service-details .content .inner-services .service-image {
  border-radius: 15px;
  margin-top: 40px;
}
.service-details-section .service-details .content .inner-title {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 22px;
}
.service-details-section .service-details .content .list-info {
  gap: 46px;
  margin-top: 40px;
}
.service-details-section .service-details .content .list-info .list-item {
  flex: 0 0 auto;
}
.service-details-section .service-details .content .list-info ul li {
  display: flex;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
}
.service-details-section .service-details .content .list-info ul li + li {
  margin-top: 20px;
}

@media (max-width: 1399.98px) {
  .service-details-section .service-sidebar .sidebar-widget {
    padding: 50px 20px 50px;
  }
}
@media (max-width: 1199.98px) {
  .service-details-section .service-details .content .list-info {
    gap: 20px;
  }
  .service-details-section .service-details .content .inner-services .service-title {
    font-size: 25px;
  }
}
@media (max-width: 991.98px) {
  .service-details-section .service-details .content .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .service-details-section {
    margin: 100px 0;
  }
}
@media (max-width: 575.98px) {
  .service-details-section .service-details .content .title {
    font-size: 28px;
  }
  .service-details-section .service-details .content .list-info ul li {
    font-size: 16px;
  }
  .service-details-section .service-details .content .list-info ul li + li {
    margin-top: 5px;
  }
  .service-details-section .service-details .content .list-info {
    gap: 5px;
  }
  .service-details-section .service-details .content .inner-title {
    font-size: 28px;
  }
}
/* 18.About */
.about-container-wrapper.style1 {
  position: relative;
}
.about-container-wrapper.style1 .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .about-container-wrapper.style1 .shape {
    display: none;
  }
}
@media (max-width: 1199px) {
  .about-container-wrapper.style1 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
}
.about-container-wrapper.style3 {
  position: relative;
  z-index: 3;
}
.about-container-wrapper.style3 .shape {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -140px;
  z-index: 1;
}
.about-container-wrapper.style3 .about-content {
  position: relative;
  z-index: 3;
}

.about-wrapper.style1 {
  position: relative;
  z-index: 3;
}
.about-wrapper.style1:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: -92px;
  left: 0;
  background: color(srgb-linear 0.69 0.76 0.84);
  z-index: 9;
}
@media (max-width: 575px) {
  .about-wrapper.style1:after {
    display: none;
  }
}
.about-wrapper.style1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -140px;
  left: 0;
  background: #D9E2EC;
  z-index: 9;
}
@media (max-width: 575px) {
  .about-wrapper.style1:before {
    display: none;
  }
}
.about-wrapper.style1 .about-content .desc {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.about-wrapper.style1 .about-content a {
  color: var(--theme2);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  text-transform: uppercase;
}
.about-wrapper.style1 .about-thumb-wrapper {
  position: relative;
}
.about-wrapper.style1 .about-thumb-wrapper .about-thumb {
  max-width: 461px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 461 377"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 15C0 6.71573 6.71573 0 15 0H281C289.284 0 296 6.71573 296 15V130C296 138.284 302.716 145 311 145H446C454.284 145 461 151.716 461 160V362C461 370.284 454.284 377 446 377H129C120.716 377 114 370.284 114 362V278C114 269.716 107.284 263 99 263H15C6.71573 263 0 256.284 0 248V15Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.about-wrapper.style1 .about-thumb-wrapper .about-thumb img {
  width: 100%;
  height: 100%;
}
.about-wrapper.style1 .about-thumb-wrapper .link-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.about-wrapper.style1 .about-thumb-wrapper .profile-box {
  position: absolute;
  top: 0;
  right: 0;
}
.about-wrapper.style1 .about-thumb-wrapper .profile-box h6 {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper.style1 .about-thumb-wrapper .profile-box h6 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .about-wrapper.style1 .about-thumb-wrapper .profile-box h6 {
    margin-top: 10px;
  }
}
.about-wrapper.style1 .about-thumb-wrapper .profile-box h4 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
@media (max-width: 1399px) {
  .about-wrapper.style1 .about-thumb-wrapper .profile-box h4 {
    font-size: 19px;
  }
}
.about-wrapper.style2 .section-title .title .color-text {
  letter-spacing: 0px;
}
.about-wrapper.style2 .checklist {
  display: inline-block;
  margin-bottom: 30px;
}
.about-wrapper.style2 .about-thumb {
  position: relative;
  margin: 0 auto;
}
.about-wrapper.style2 .about-thumb .main-thumb {
  max-width: 570px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 570 502" ><path fill-rule="evenodd" clip-rule="evenodd" d="M570 30C570 13.4315 556.569 0 540 0H30C13.4315 0 0 13.4315 0 30V204C0 220.569 13.4315 234 30 234H274C290.569 234 304 247.431 304 264V472C304 488.569 317.431 502 334 502H540C556.569 502 570 488.569 570 472V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  z-index: 3;
  margin-top: 34px;
}
.about-wrapper.style2 .about-thumb .main-thumb img {
  max-width: 100%;
}
.about-wrapper.style2 .about-thumb .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  margin-left: -100px;
}
.about-wrapper.style2 .about-thumb .about-thumb-box {
  padding: 55px;
  border-radius: 30px;
  background: var(--theme);
  max-width: 284px;
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 4;
}
.about-wrapper.style2 .about-thumb .about-thumb-box .profile-img {
  margin-bottom: 30px;
}
.about-wrapper.style2 .about-thumb .about-thumb-box h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-wrapper.style2 .about-thumb .about-thumb-box h4 {
  color: var(--bg-2);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.about-wrapper.style3 .about-content .desc-title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 15px;
  margin-top: 27px;
}
.about-wrapper.style3 .about-content .desc {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.about-wrapper.style3 .about-content .counter-wrapper {
  display: flex;
  align-items: center;
  gap: 122px;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .about-wrapper.style3 .about-content .counter-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.about-wrapper.style3 .about-thumb {
  position: relative;
}
.about-wrapper.style3 .about-thumb .main-thumb {
  max-width: 775px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 775 634"><path fill-rule="evenodd" clip-rule="evenodd"  d="M0 15C0 6.71573 6.71573 0 15 0H482.614C490.898 0 497.614 6.71572 497.614 15V228.764C497.614 237.048 504.33 243.764 512.614 243.764H760C768.284 243.764 775 250.479 775 258.764V618.785C775 627.07 768.284 633.785 760 633.785H206.649C198.364 633.785 191.649 627.07 191.649 618.785V457.137C191.649 448.852 184.933 442.137 176.649 442.137H15C6.71574 442.137 0 435.421 0 427.137V15Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.about-wrapper.style3 .about-thumb .main-thumb img {
  width: 100%;
  height: 100%;
}

/* 19.Project */
.project-wrapper.style1 {
  position: relative;
}
@media (max-width: 767px) {
  .project-wrapper.style1 {
    margin-bottom: -3em;
  }
}
.project-wrapper.style1 .section-title {
  margin-bottom: 50px;
}
.project-wrapper.style1 .slider-button-wrapper {
  position: absolute;
  top: 40%;
  left: -2%;
  transform: translate(2%, 40%);
  z-index: 5;
}
.project-wrapper.style1 .slider-button-wrapper .slider-prev {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--white);
  border: 1px solid #D9E2EC;
  border-radius: 50%;
}
.project-wrapper.style1 .slider-button-wrapper .slider-next {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--theme2);
  border: 1px solid #D9E2EC;
  border-radius: 50%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .project-wrapper.style2 {
    margin-bottom: -1.8em;
  }
}
.project-wrapper.style2 .section-title {
  margin-bottom: 50px;
}

.project-card.style1 {
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.project-card.style1 .project-thumb {
  width: 544px;
  height: 600px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 1899px) {
  .project-card.style1 .project-thumb {
    width: 100%;
    height: 100%;
  }
}
.project-card.style1 .project-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  border-radius: 30px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
@media (max-width: 1899px) {
  .project-card.style1 .project-thumb img {
    max-width: 100%;
  }
}
.project-card.style1 .project-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: -24px;
  left: 30px;
  border-radius: 30px;
  background: rgba(0, 166, 237, 0.6);
  backdrop-filter: blur(10px);
  padding: 28px 47px;
  max-width: 415px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 1199px) {
  .project-card.style1 .project-content {
    bottom: -24px;
    left: 17px;
  }
}
@media (max-width: 767px) {
  .project-card.style1 .project-content {
    bottom: -24px;
    left: 5px;
    right: 5px;
    padding: 20px;
  }
}
.project-card.style1 .project-content h3 a {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.project-card.style1 .project-content h3 a:hover {
  color: var(--title) !important;
}
.project-card.style1 .link-btn {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 25px;
  right: 21px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 1199px) {
  .project-card.style1 .link-btn {
    top: 66px;
    right: 1px;
  }
}
@media (max-width: 991px) {
  .project-card.style1 .link-btn {
    top: 30px;
    right: 1px;
  }
}
@media (max-width: 1899px) {
  .project-card.style1 .link-btn {
    top: 3px;
    right: 0;
  }
}
.project-card.style1:hover .project-thumb {
  max-width: 544px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 544 600"><path fill-rule="evenodd" clip-rule="evenodd" d="M543.333 6.1056C543.333 2.73357 540.6 0 537.228 0H30C13.4315 0 0 13.4315 0 30V570C0 586.569 13.4314 600 30 600H513.333C529.902 600 543.333 586.569 543.333 570V190.986C543.333 178.357 485.629 150 473 150H465C425.236 150 393 117.765 393 78C393 38.2355 425.236 6 465 6H473C487.329 6 500.681 10.186 511.899 17.4018C518.045 21.355 543.333 13.413 543.333 6.1056Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 1899px) {
  .project-card.style1:hover .project-thumb {
    max-width: 100%;
  }
}
.project-card.style1:hover .project-content {
  opacity: 1;
  visibility: visible;
}
.project-card.style1:hover .link-btn {
  opacity: 1;
  visibility: visible;
}
.project-card.style2 {
  position: relative;
}
.project-card.style2 .project-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transform: translate(-50%, -40%);
  -moz-transform: translate(-50%, -40%);
  -ms-transform: translate(-50%, -40%);
  -o-transform: translate(-50%, -40%);
}
@media (max-width: 767px) {
  .project-card.style2 .project-content {
    top: 20%;
    left: 30%;
  }
}
.project-card.style2 .project-content .feature-btn {
  display: inline-block;
  padding: 5px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 47px;
  background-color: var(--white);
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 5px;
}
.project-card.style2 .project-content .feature-btn:hover {
  color: var(--title) !important;
}
.project-card.style2 .project-content .Organic-btn {
  padding: 10px 25px;
  display: inline-block;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
  border-radius: 47px;
  background-color: var(--theme2);
}
.project-card.style2 .project-content .Organic-btn:hover {
  color: var(--title) !important;
}
.project-card.style2 .link-btn {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 22px;
  right: 40px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 767px) {
  .project-card.style2 .link-btn {
    bottom: 72px;
  }
}

.projectSliderOne {
  margin-right: -215px;
}
.projectSliderOne .swiper-slide {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
}
.projectSliderOne .swiper-slide.swiper-slide-next {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.projectSliderOne .swiper-slide.swiper-slide-next .project-card.style1 .project-thumb {
  max-width: 544px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 544 600"><path fill-rule="evenodd" clip-rule="evenodd" d="M543.333 6.1056C543.333 2.73357 540.6 0 537.228 0H30C13.4315 0 0 13.4315 0 30V570C0 586.569 13.4314 600 30 600H513.333C529.902 600 543.333 586.569 543.333 570V190.986C543.333 178.357 485.629 150 473 150H465C425.236 150 393 117.765 393 78C393 38.2355 425.236 6 465 6H473C487.329 6 500.681 10.186 511.899 17.4018C518.045 21.355 543.333 13.413 543.333 6.1056Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 1399px) {
  .projectSliderOne .swiper-slide.swiper-slide-next .project-card.style1 .project-thumb {
    max-width: 100%;
  }
}
.projectSliderOne .swiper-slide.swiper-slide-next .project-card.style1 .project-content {
  opacity: 1;
  visibility: visible;
}
.projectSliderOne .swiper-slide.swiper-slide-next .project-card.style1 .link-btn {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1399px) {
  .projectSliderOne {
    margin-right: 0;
  }
}

.projectSliderTwo {
  margin-right: -550px;
}
@media (max-width: 767px) {
  .projectSliderTwo {
    margin-right: 0;
  }
}
.projectSliderTwo .swiper-slide {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.projectSliderTwo .swiper-slide .project-card.style2 {
  width: 330px !important;
  height: 633px !important;
}
@media (max-width: 767px) {
  .projectSliderTwo .swiper-slide .project-card.style2 {
    width: 100% !important;
    height: 100% !important;
  }
}
.projectSliderTwo .swiper-slide .project-card.style2 .project-thumb {
  max-width: 100%;
  height: 100%;
}
.projectSliderTwo .swiper-slide .project-card.style2 .project-thumb img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.projectSliderTwo .swiper-slide.swiper-slide-active {
  display: flex;
  justify-content: center;
  width: 660px !important;
  height: 633px !important;
}
@media (max-width: 767px) {
  .projectSliderTwo .swiper-slide.swiper-slide-active {
    max-width: 100% !important;
    height: 300px !important;
  }
}
.projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 {
  width: 660px !important;
  height: 633px !important;
}
@media (max-width: 767px) {
  .projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 {
    max-width: 100% !important;
    height: 300px !important;
  }
}
.projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 .project-thumb {
  height: 100%;
  max-width: 660px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 660 633"><path fill-rule="evenodd" clip-rule="evenodd" d="M660 60C660 26.8629 633.137 0 600 0H60C26.8629 0 0 26.8629 0 60V573C0 606.137 26.8629 633 60 633H384.328C417.465 633 444.328 606.137 444.328 573V482C444.328 448.863 471.191 422 504.328 422H600C633.137 422 660 395.137 660 362V60Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 767px) {
  .projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 .project-thumb {
    max-width: 100% !important;
    max-height: 100% !important;
    mask: none;
  }
}
.projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 .project-thumb img {
  max-width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 .project-thumb img {
    max-height: 100%;
  }
}
.projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 .project-content {
  opacity: 1;
  visibility: visible;
}
.projectSliderTwo .swiper-slide.swiper-slide-active .project-card.style2 .link-btn {
  opacity: 1;
  visibility: visible;
}

.project-details-section {
  margin: 140px 0 169px 0;
}
.project-details-section .project-information {
  margin-bottom: 80px;
}
.project-details-section .project-information .project-image {
  overflow: hidden;
  border-radius: 50px;
}
.project-details-section .project-information .project-text {
  background: var(--bg-2);
  border-radius: 50px;
  padding: 89px 75px;
  height: 100%;
  background-repeat: no-repeat;
}
.project-details-section .project-information .project-text .info-item::before {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}
.project-details-section .project-information .project-text .info-item:last-child::before {
  display: none;
}
.project-details-section .project-information .project-text .info-item .title {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 46px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.project-details-section .project-information .project-text .info-item p {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.project-details-section .project-information .project-text .info-item + .info-item {
  margin-top: 70px;
}
.project-details-section .project-description .section-title {
  margin-bottom: 50px;
}
.project-details-section .project-description .section-title .title {
  margin-bottom: 30px;
}
.project-details-section .project-description .section-title .text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.project-details-section .project-description .section-title .text + .text {
  margin-top: 30px;
}
.project-details-section .project-description .project-inner-image {
  margin-bottom: 50px;
}
.project-details-section .project-description .project-inner-image .inner-image {
  overflow: hidden;
  border-radius: 30px;
}

@media (max-width: 1399.98px) {
  .project-details-section .project-information .project-text {
    padding: 35px 30px;
  }
  .project-details-section .project-information .project-text .info-item .title {
    font-size: 24px;
  }
  .project-details-section .project-information .project-text .info-item p {
    font-size: 14px;
  }
  .project-details-section .project-information .project-image {
    height: 100%;
  }
  .project-details-section .project-information .project-image img {
    object-fit: cover;
    height: 100%;
  }
  .project-details-section .project-information .project-text .info-item + .info-item {
    margin-top: 54px;
  }
}
@media (max-width: 767.98px) {
  .project-details-section {
    margin: 100px 0 100px 0;
  }
}
/* 20.Blog */
.blog-wrapper.style1 .section-title {
  margin-bottom: 50px;
}
.blog-wrapper.style2 .theme-btn {
  margin-top: 80px;
}
.blog-wrapper.style2 .section-title {
  margin-bottom: 50px;
}
.blog-wrapper.style3 .section-title {
  margin-bottom: 50px;
}

.blog-card.style1 {
  position: relative;
  overflow: hidden;
}
.blog-card.style1 .blog-content {
  background: var(--border);
  height: 563px;
  padding: 38px;
  max-width: 487px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 487 563"><path fill-rule="evenodd" clip-rule="evenodd"  d="M326.031 30C326.031 13.4315 312.599 0 296.031 0H30C13.4315 0 0 13.4315 0 30V533C0 549.569 13.4315 563 30 563H457C473.569 563 487 549.569 487 533V149.556C487 132.987 473.569 119.556 457 119.556H356.031C339.462 119.556 326.031 106.124 326.031 89.5559V30Z"  /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 1899px) {
  .blog-card.style1 .blog-content {
    max-width: 100%;
    height: 100%;
    padding: 15px;
  }
}
@media (max-width: 1199px) {
  .blog-card.style1 .blog-content {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .blog-card.style1 .blog-content {
    height: 563px;
    padding: 38px;
    max-width: 487px;
  }
}
@media (max-width: 400px) {
  .blog-card.style1 .blog-content {
    height: 550px;
    padding: 15px;
    max-width: 487px;
    margin-bottom: -4em;
  }
}
.blog-card.style1 .blog-meta .post-author {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-top: 20px;
  margin-bottom: 60px;
}
.blog-card.style1 .tagcloud {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.blog-card.style1 .tagcloud .tag {
  display: inline-block;
  background: var(--white);
  padding: 10px 15px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  border-radius: 44px;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  -o-border-radius: 44px;
}
.blog-card.style1 h3 {
  margin-bottom: 45px;
}
.blog-card.style1 h3 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.blog-card.style1 .blog-card-thumb img {
  max-width: 100%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.blog-card.style1 .link-btn {
  position: absolute;
  top: 7px;
  right: 45px;
}
@media (max-width: 1899px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 20px;
  }
}
@media (max-width: 1399px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 10px;
  }
}
@media (max-width: 1199px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 10px;
    top: 0;
  }
}
@media (max-width: 991px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 240px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 19px;
    top: 40px;
  }
}
@media (max-width: 400px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 23px;
    top: 72px;
  }
}
@media (max-width: 330px) {
  .blog-card.style1 .link-btn {
    position: absolute;
    right: 8px;
    top: 88px;
  }
}
.blog-card.style2 {
  position: relative;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style2 .blog-card-thumb {
  max-width: 490px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 490 279"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 30C0 13.4315 13.4315 0 30 0H420C436.569 0 450 13.4315 450 30V249C450 265.569 436.569 279 420 279H30C13.4315 279 0 265.569 0 249V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style2 .blog-card-thumb img {
  width: 100%;
  height: 100%;
}
.blog-card.style2 .blog-content {
  max-width: 450px;
}
.blog-card.style2 .blog-content .blog-meta .post-author {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.blog-card.style2 .blog-content h3 {
  margin-bottom: 10px;
  line-height: 38px;
}
.blog-card.style2 .blog-content h3 a {
  color: var(--title);
  font-family: var(--title);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
@media (max-width: 767px) {
  .blog-card.style2 .blog-content h3 a {
    font-size: 23px;
    line-height: 30px;
  }
}
.blog-card.style2 .link-btn.style4 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 234px;
  right: 17px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style2:hover .blog-card-thumb {
  max-width: 490px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 490 279"><path fill-rule="evenodd" clip-rule="evenodd" d="M450 30C450 13.4315 436.569 0 420 0H30C13.4315 0 0 13.4315 0 30V249C0 265.569 13.4315 279 30 279H350C366.569 279 380 265.569 380 249V239C380 222.431 393.431 209 410 209H420C436.569 209 450 195.569 450 179V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
.blog-card.style2:hover .blog-card-thumb img {
  width: 100%;
  height: 100%;
}
.blog-card.style2:hover .link-btn.style4 {
  opacity: 1;
  visibility: visible;
}
.blog-card.style3 {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .blog-card.style3 {
    flex-direction: column;
  }
}
.blog-card.style3 .blog-thumb {
  overflow: hidden;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.blog-card.style3 .blog-thumb img {
  max-width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: all 0.4s;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.blog-card.style3 .blog-content {
  max-width: 300px;
}
.blog-card.style3 .blog-content .blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.blog-card.style3 .blog-content .blog-meta .author {
  color: var(--title);
  font-family: var(--border);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-right: 5px;
}
.blog-card.style3 .blog-content .blog-meta .date {
  color: var(--title);
  font-family: var(--border);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
.blog-card.style3 .blog-content h3 {
  margin-bottom: 15px;
}
.blog-card.style3 .blog-content h3 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.blog-card.style3 .blog-content .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .blog-card.style3 .blog-content {
    max-width: 330px;
  }
}
.blog-card.style3:hover .blog-thumb img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.blog-details-section {
  margin: 140px 0;
}
.blog-details-section .blog-details .image {
  border-radius: 30px;
  margin-bottom: 40px;
}
.blog-details-section .blog-details .content .blog-meta {
  margin-bottom: 20px;
}
.blog-details-section .blog-details .content .blog-meta p {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
}
.blog-details-section .blog-details .content .blog-meta p span {
  font-weight: 500;
  margin-left: 8px;
}
.blog-details-section .blog-details .content .title {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 30px;
}
.blog-details-section .blog-details .content p {
  color: var(--title);
}
.blog-details-section .blog-details .content p + p {
  margin-top: 40px;
}
.blog-details-section .blog-details .content blockquote {
  background-color: var(--bg-3);
  border-radius: 30px;
  margin-top: 31px;
  border-left: 24px solid var(--theme);
  padding: 58px 105px;
}
.blog-details-section .blog-details .content blockquote h5 {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 38px;
}
.blog-details-section .blog-details .content .inner-image {
  margin-top: 59px;
}
.blog-details-section .blog-details .content .inner-title {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  margin-top: 50px;
  margin-bottom: 22px;
}
.blog-details-section .blog-details .content .list-info {
  gap: 46px;
  margin-top: 40px;
}
.blog-details-section .blog-details .content .list-info .list-item {
  flex: 0 0 auto;
}
.blog-details-section .blog-details .content .list-info ul li {
  display: flex;
  gap: 10px;
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
}
.blog-details-section .blog-details .content .list-info ul li + li {
  margin-top: 20px;
}
.blog-details-section .blog-details .content .tags-and-social-icon {
  margin-top: 50px;
  border-bottom: 1px solid #EFE1E1;
  padding-bottom: 40px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .tags {
  gap: 13px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .tags .title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 38px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .tags ul li {
  margin-right: 10px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .tags ul li a {
  color: #707070;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  border: 1px solid #EFE1E1;
  padding: 9px 20px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .social-icon-box ul li {
  display: inline-block;
  margin-left: 15px;
}
.blog-details-section .blog-details .content .tags-and-social-icon .social-icon-box ul li a {
  width: 35px;
  height: 35px;
  background: #707070;
  color: var(--white);
  border-radius: 50%;
}
.blog-details-section .blog-details .content .author-area {
  margin-top: 50px;
  background: #F6F7F8;
  border-radius: 20px;
  padding: 0 50px 35px 0;
}
.blog-details-section .blog-details .content .author-area .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 64px;
}
.blog-details-section .blog-details .content .author-area .author-img img {
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}
.blog-details-section .blog-details .content .author-area .author-info {
  padding-top: 34px;
}
.blog-details-section .blog-details .content .author-area .author-info .name {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 5px;
}
.blog-details-section .blog-details .content .author-area .author-info .designation {
  color: #707070;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 29px;
}
.blog-details-section .blog-details .content .author-area .author-info .rating {
  margin-bottom: 20px;
}
.blog-details-section .blog-details .content .author-area .author-info .rating img {
  margin-right: 10px;
}
.blog-details-section .blog-details .content .comments-area {
  margin-top: 100px;
}
.blog-details-section .blog-details .content .comments-area .title {
  margin-bottom: 50px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 38px;
}
.blog-details-section .blog-details .content .comments-area .comments-item {
  border-bottom: 1px solid #EFE1E1;
  margin-bottom: 40px;
  padding-bottom: 31px;
}
.blog-details-section .blog-details .content .comments-area .comments-item .img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  margin-right: 25px;
}
.blog-details-section .blog-details .content .comments-area .comments-item .img img {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.blog-details-section .blog-details .content .comments-area .comments-item .text .name {
  margin-bottom: 5px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.blog-details-section .blog-details .content .comments-area .comments-item .text .date {
  color: #5D666F;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 29px;
}
.blog-details-section .blog-details .content .comments-area .comments-item .replay {
  padding-left: 124px;
}
.blog-details-section .blog-details .content .comments-area .comments-item .replay .reply-btn {
  background-color: var(--theme);
  border-radius: 50px;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  padding: 10px 40px;
  margin-left: auto;
}
.blog-details-section .blog-sidebar .sidebar-widget {
  margin-bottom: 50px;
  background: var(--bg-3);
  border-radius: 30px;
  padding: 50px 45px;
  background-repeat: no-repeat;
}
.blog-details-section .blog-sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.blog-details-section .blog-sidebar .sidebar-widget .title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 20px;
}
.blog-details-section .blog-sidebar .sidebar-widget .search-box input {
  border-radius: 50px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
}
.blog-details-section .blog-sidebar .sidebar-widget .search-box input::placeholder {
  opacity: 1;
}
.blog-details-section .blog-sidebar .sidebar-widget .search-box .search-btn {
  width: 53px;
  height: 53px;
  background-color: var(--theme);
  right: 6px;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item {
  border-bottom: 1px solid #CECECE;
  padding-bottom: 25px;
  margin-bottom: 22px;
  gap: 18px;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item .img {
  border-radius: 5px;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item .text {
  padding-right: 30px;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item .text .author {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item .text p {
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item:hover .text p {
  color: var(--theme);
}
.blog-details-section .blog-sidebar .sidebar-widget .tags {
  gap: 20px;
  row-gap: 30px !important;
}
.blog-details-section .blog-sidebar .sidebar-widget .tags li a {
  background: var(--white);
  font-family: "Roboto", sans-serif;
  color: var(--title);
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  padding: 10px 15px;
  border-radius: 50px;
}

.comments-form-wrapper.style3 {
  position: relative;
}
.comments-form-wrapper.style3 .arrow-long {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--theme);
  width: 170px;
  height: 170px;
}
@media (max-width: 767px) {
  .comments-form-wrapper.style3 .arrow-long {
    top: 70px;
    left: 0;
    width: 70px;
    height: 70px;
  }
  .comments-form-wrapper.style3 .arrow-long img {
    width: 30px;
    height: 30px;
  }
}
.comments-form-wrapper.style3 .comments-form {
  margin-top: 100px;
  background: #F6F7F8;
  border-radius: 30px;
  padding: 111px 75px 76px;
  max-width: 930px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 930 630"><path fill-rule="evenodd" clip-rule="evenodd"  d="M684 30C684 13.4315 670.569 0 654 0H30C13.4315 0 0 13.4315 0 30V600C0 616.569 13.4315 630 30 630H900C916.569 630 930 616.569 930 600V241C930 224.431 916.569 211 900 211H714C697.431 211 684 197.569 684 181V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
@media (max-width: 991px) {
  .comments-form-wrapper.style3 .comments-form {
    padding: 25px;
    mask: none;
  }
}
.comments-form-wrapper.style3 .comments-form .title {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 95px;
  line-height: 46px;
}
.comments-form-wrapper.style3 .comments-form .input-groups input::placeholder {
  opacity: 1;
}
.comments-form-wrapper.style3 .comments-form .input-groups textarea {
  width: 100%;
  height: 207px;
  border: transparent;
  border-radius: 5px;
  resize: none;
}
.comments-form-wrapper.style3 .comments-form .input-groups textarea:focus {
  outline: none;
}
.comments-form-wrapper.style3 .comments-form .input-groups textarea::placeholder {
  opacity: 1;
}
.comments-form-wrapper.style3 .arrow-wrap {
  position: absolute;
  top: 0;
  right: 110px;
}

@media (max-width: 1399.98px) {
  .blog-details-section .blog-sidebar .sidebar-widget {
    padding: 30px 30px;
  }
  .blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item .text p {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-details-section .blog-details .content blockquote {
    padding: 58px 40px;
  }
  .blog-details-section .blog-details .content .comments-area .comments-item .replay {
    padding-left: 50px;
  }
  .blog-details-section .blog-sidebar .sidebar-widget .recent-post .post-item .text {
    padding-right: 0;
  }
  .blog-details-section .blog-sidebar .sidebar-widget .tags {
    gap: 18px;
    row-gap: 30px !important;
  }
  .comments-form .arrow-long {
    width: 144px;
    height: 144px;
  }
}
@media (max-width: 1199.98px) {
  .blog-details-section .blog-details .content .tags-and-social-icon .social-icon-box ul li {
    margin-left: 8px;
  }
  .comments-form .arrow-long {
    display: none !important;
  }
  .comments-form {
    padding: 54px 38px 35px;
  }
  .comments-form .title {
    margin-bottom: 37px;
  }
}
@media (max-width: 767.98px) {
  .blog-details-section {
    margin: 100px 0;
  }
  .blog-details-section .blog-details .content .title {
    font-size: 28px;
    line-height: 38px;
  }
  .blog-details-section .blog-details .content blockquote h5 {
    font-size: 18px;
  }
  .blog-details-section .blog-details .content blockquote {
    padding: 30px 40px;
  }
  .blog-details-section .blog-details .content .tags-and-social-icon .social-icon-box ul li {
    margin-left: 0;
    margin-right: 8px;
  }
  .blog-details-section .blog-details .content .comments-area .comments-item .replay {
    padding-left: 30px;
  }
  .blog-details-section .blog-details .content .inner-title {
    font-size: 28px;
    line-height: 38px;
  }
  .blog-details-section .blog-details .content .author-area .author-img {
    margin-right: 30px;
  }
  .blog-details-section .blog-details .content .author-area {
    padding: 0 30px 30px 0;
  }
  .comments-form .title {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 575.98px) {
  .blog-details-section .blog-details .content blockquote {
    border-left: 11px solid var(--theme);
  }
  .blog-details-section .blog-details .content blockquote h5 {
    line-height: 28px;
  }
  .blog-details-section .blog-details .content .comments-area .comments-item {
    flex-direction: column;
    gap: 20px;
  }
  .blog-details-section .blog-details .content .comments-area .comments-item .text {
    flex-direction: column;
    gap: 20px;
  }
  .blog-details-section .blog-details .content .comments-area .comments-item .replay {
    padding-left: 0;
  }
  .blog-details-section .blog-details .content .author-area {
    flex-direction: column;
  }
  .blog-details-section .blog-details .content .author-area {
    padding: 0 30px 30px 30px;
  }
  .blog-details-section .blog-details .content .author-area .author-info {
    padding-top: 20px;
  }
}
/* 21.Testimonial */
.testimonial-wrapper.style1 .testimonial-thumb-wrapper {
  position: relative;
}
.testimonial-wrapper.style1 .testimonial-thumb-wrapper .testimonial-thumb {
  max-width: 505px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 505 676"><path fill-rule="evenodd" clip-rule="evenodd" d="M505 100C505 44.7715 460.228 0 405 0H100C44.7715 0 0 44.7715 0 100V576C0 631.228 44.7715 676 100 676H261.5C309.825 676 349 636.825 349 588.5V579C349 535.922 383.922 501 427 501C470.078 501 505 466.078 505 423V100Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.testimonial-wrapper.style1 .testimonial-thumb-wrapper .testimonial-thumb img {
  max-width: 100%;
  height: 100%;
}
.testimonial-wrapper.style1 .testimonial-thumb-wrapper .slider-button-wrapper {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
@media (max-width: 1399px) {
  .testimonial-wrapper.style1 .testimonial-thumb-wrapper .slider-button-wrapper {
    bottom: -11px;
  }
}
@media (max-width: 1199px) {
  .testimonial-wrapper.style1 .testimonial-thumb-wrapper .slider-button-wrapper {
    bottom: -11px;
    left: 40%;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper.style1 .testimonial-thumb-wrapper .slider-button-wrapper {
    display: none;
  }
}
.testimonial-wrapper.style3 {
  background-color: var(--theme3);
}
.testimonial-wrapper.style3 .section-title {
  margin-bottom: 50px;
}

.testimonial-card.style1 .icon {
  margin-bottom: 30px;
}
.testimonial-card.style1 .desc {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-style: italic;
  font-weight: 500;
  line-height: 80px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .testimonial-card.style1 .desc {
    font-size: 29px;
    line-height: 40px;
  }
}
.testimonial-card.style1 .testimonial-profile {
  display: flex;
  align-items: center;
  gap: 30px;
}
.testimonial-card.style1 .testimonial-profile .profile-content .name {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
@media (max-width: 767px) {
  .testimonial-card.style1 .testimonial-profile .profile-content .name {
    font-size: 22px;
    line-height: 34px;
  }
}
.testimonial-card.style1 .testimonial-profile .profile-content .designation {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.testimonial-card.style2 .icon {
  margin-bottom: 35px;
}
.testimonial-card.style2 .text {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 60px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .testimonial-card.style2 .text {
    font-size: 30px;
    line-height: 40px;
  }
}
.testimonial-card.style2 .profile-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.testimonial-card.style2 .profile-wrapper .thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-card.style2 .profile-wrapper .content h6 {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
@media (max-width: 767px) {
  .testimonial-card.style2 .profile-wrapper .content h6 {
    font-size: 22px;
    line-height: 38px;
  }
}
.testimonial-card.style2 .profile-wrapper .content .text {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.testimonial-card.style3 {
  position: relative;
  border-radius: 30px;
  background-color: var(--white);
  box-shadow: 10px 10px 20px 0px rgba(234, 234, 234, 0.25);
  padding: 40px 60px 84px 54px;
}
@media (max-width: 991px) {
  .testimonial-card.style3 {
    padding: 30px;
  }
}
.testimonial-card.style3 .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 25px;
  margin-top: 110px;
}
@media (max-width: 991px) {
  .testimonial-card.style3 .text {
    font-size: 25px;
    line-height: 30px;
  }
}
.testimonial-card.style3 .testimonial-profile {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .testimonial-card.style3 .testimonial-profile {
    flex-direction: column;
  }
}
.testimonial-card.style3 .testimonial-profile .thumb {
  max-width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-card.style3 .testimonial-profile .content h6 {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.testimonial-card.style3 .testimonial-profile .content p {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.testimonial-card.style3 .icon {
  position: absolute;
  top: 40px;
  right: 60px;
}

.testimonial-container-wrapper.style2 {
  position: relative;
  margin-bottom: -3em;
  margin-top: -3em;
}
.testimonial-container-wrapper.style2 .slider-button-wrapper {
  position: absolute;
  bottom: 60px;
  left: 140px;
}
.testimonial-container-wrapper.style2 .slider-button-wrapper .slider-prev {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme);
  border: 1px solid var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-container-wrapper.style2 .slider-button-wrapper .slider-next {
  margin-top: 20px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background-color: #D9E2EC;
  border: 1px solid var(--border);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-container-wrapper.style2 .testimonial-wrapper.style2 {
  padding: 150px 0 270px;
  max-width: 1820px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1820 757"><path fill-rule="evenodd" clip-rule="evenodd"  d="M1820 30C1820 13.4315 1806.57 0 1790 0H30C13.4315 0 0 13.4315 0 30V477C0 493.569 13.4315 507 30 507H211C227.569 507 241 520.431 241 537V727C241 743.569 254.431 757 271 757H1790C1806.57 757 1820 743.569 1820 727V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
@media (max-width: 767px) {
  .testimonial-container-wrapper.style2 .testimonial-wrapper.style2 {
    padding: 150px 0 142px;
  }
}
.testimonial-container-wrapper.style2 .testimonial-wrapper.style2 .testimonialSliderTwo {
  margin-right: -532px;
}
@media (max-width: 767px) {
  .testimonial-container-wrapper.style2 .testimonial-wrapper.style2 .testimonialSliderTwo {
    margin-right: 0;
  }
}
.testimonial-container-wrapper.style2 .testimonial-wrapper.style2 .testimonialSliderTwo .swiper-slide {
  opacity: 0.4;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-container-wrapper.style2 .testimonial-wrapper.style2 .testimonialSliderTwo .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.testimonial-container-wrapper.style3 {
  position: relative;
}
.testimonial-container-wrapper.style3 .testimonial-wrapper.style3 {
  padding: 150px 0 270px;
  max-width: 1820px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1820 1096"><path fill-rule="evenodd" clip-rule="evenodd"   d="M1820 30C1820 13.4315 1806.57 0 1790 0H30C13.4315 0 0 13.4315 0 30V913C0 929.569 13.4315 943 30 943H220C236.569 943 250 956.431 250 973V1066C250 1082.57 263.431 1096 280 1096H1790C1806.57 1096 1820 1082.57 1820 1066V30Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 1899px) {
  .testimonial-container-wrapper.style3 .testimonial-wrapper.style3 {
    mask-size: cover;
  }
}
@media (max-width: 991px) {
  .testimonial-container-wrapper.style3 .testimonial-wrapper.style3 {
    padding: 80px 0px;
  }
}
.testimonial-container-wrapper.style3 .testimonial-wrapper.style3 .testimonialSliderThree {
  margin-right: -100px;
}
.testimonial-container-wrapper.style3 .testimonial-wrapper.style3 .testimonialSliderThree .swiper-slide {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.testimonial-container-wrapper.style3 .testimonial-wrapper.style3 .testimonialSliderThree .swiper-slide.swiper-slide-next {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .testimonial-container-wrapper.style3 .testimonial-wrapper.style3 .testimonialSliderThree {
    margin-right: 0;
  }
}
.testimonial-container-wrapper.style3 .slider-button-wrapper {
  position: absolute;
  bottom: 80px;
  left: 50px;
  display: flex;
  gap: 40px;
}
@media (max-width: 1899px) {
  .testimonial-container-wrapper.style3 .slider-button-wrapper {
    position: absolute;
    bottom: 120px;
    left: 50%;
    display: flex;
    gap: 13px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}
.testimonial-container-wrapper.style3 .slider-button-wrapper .slider-prev {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #D9E2EC;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-container-wrapper.style3 .slider-button-wrapper .slider-next {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: #00A6ED;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* 22.Video */
.video-wrapper.style1 {
  position: relative;
}
.video-wrapper.style1 .video-content {
  padding: 300px 100px 100px;
  max-width: 1520px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1520 650"><path fill-rule="evenodd" clip-rule="evenodd" d="M1520 100C1520 44.7715 1475.23 0 1420 0H100C44.7715 0 0 44.7715 0 100V550C0 605.228 44.7715 650 100 650H1235C1287.47 650 1330 607.467 1330 555C1330 502.533 1372.53 460 1425 460C1477.47 460 1520 417.467 1520 365V100Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.video-wrapper.style1 .video-content .video-subtitle {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 64px;
  background: var(--white);
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 11.96px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .video-wrapper.style1 .video-content .video-subtitle {
    padding: 12px 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 5px;
    margin-bottom: 25px;
  }
}
.video-wrapper.style1 .video-content .video-title {
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1199px) {
  .video-wrapper.style1 .video-content .video-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .video-wrapper.style1 .video-content .video-title {
    font-size: 30px;
  }
}
@media (max-width: 1399px) {
  .video-wrapper.style1 .video-content {
    mask-size: cover;
  }
}
@media (max-width: 767px) {
  .video-wrapper.style1 .video-content {
    padding: 230px 20px 50px;
  }
}
.video-wrapper.style1 .video-box {
  position: absolute;
  bottom: 100px;
  right: 50px;
  z-index: 5;
}
.video-wrapper.style1 .video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 6;
}
@media (max-width: 767px) {
  .video-wrapper.style1 .video-box {
    top: -200px;
    right: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}
.video-wrapper.style3 {
  position: relative;
}
.video-wrapper.style3 .video-content {
  padding: 378px 160px 150px;
  height: 757px;
  max-width: 1820px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1820 757"><path fill-rule="evenodd" clip-rule="evenodd" d="M1820 30C1820 13.4315 1806.57 0 1790 0H30C13.4315 0 0 13.4315 0 30V727C0 743.569 13.4315 757 30 757H1557C1573.57 757 1587 743.569 1587 727V537C1587 520.431 1600.43 507 1617 507H1790C1806.57 507 1820 493.569 1820 477V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
@media (max-width: 1199px) {
  .video-wrapper.style3 .video-content {
    padding: 150px 50px 300px;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .video-wrapper.style3 .video-content {
    padding: 50px 20px 250px;
  }
}
.video-wrapper.style3 .video-content .video-subtitle {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .video-wrapper.style3 .video-content .video-subtitle {
    font-size: 23px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
  }
}
.video-wrapper.style3 .video-content .video-title {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 85px;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  max-width: 1170px;
}
@media (max-width: 1199px) {
  .video-wrapper.style3 .video-content .video-title {
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 67px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    max-width: 1170px;
  }
}
@media (max-width: 767px) {
  .video-wrapper.style3 .video-content .video-title {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 43px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    max-width: 1170px;
  }
}
.video-wrapper.style3 .video-box {
  position: absolute;
  bottom: 130px;
  right: 80px;
  z-index: 5;
}
@media (max-width: 1199px) {
  .video-wrapper.style3 .video-box {
    right: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .video-wrapper.style3 .video-box {
    bottom: 146px;
    right: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}
.video-wrapper.style3 .video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 6;
}

/* 23.Brand */
.brandSlider1 .brand-logo {
  text-align: center;
  border-radius: 151.5px;
  border: 1px solid var(--border);
  padding: 90px 100px;
}
@media (max-width: 1399px) {
  .brandSlider1 .brand-logo {
    padding: 90px 50px;
  }
}
@media (max-width: 767px) {
  .brandSlider1 .brand-logo {
    padding: 47px 27px;
  }
}

/* 24.Research */
.research-wrapper.style1 .section-title {
  margin-bottom: 60px;
}

.research-box.style1 {
  position: relative;
  padding: 70px 0;
  border-top: 1px solid var(--border-4);
  border-bottom: 1px solid var(--border-4);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.research-box.style1 .research-left .research-thumb-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 25px;
  left: 0;
  margin-right: 50px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.research-box.style1 .research-left .research-thumb-wrapper .thumb {
  max-width: 461px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 281 177"><path fill-rule="evenodd" clip-rule="evenodd" d="M281 30C281 13.4315 267.569 0 251 0H30C13.4315 0 0 13.4315 0 30V147C0 163.569 13.4315 177 30 177H181C197.569 177 211 163.569 211 147V137C211 120.431 224.431 107 241 107H251C267.569 107 281 93.5685 281 77V30Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.research-box.style1 .research-left .research-thumb-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.research-box.style1 .research-left .research-thumb-wrapper .number {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  margin-right: 5px;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  background: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.research-box.style1 .research-left .research-title {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.research-box.style1 .research-left .research-title h3 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
}
.research-box.style1 .research-left .research-title .number {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
@media (max-width: 1199px) {
  .research-box.style1 .research-left .research-title {
    margin-bottom: -4em;
    max-width: 330px;
  }
}
.research-box.style1 .research-right {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .research-box.style1 .research-right {
    flex-direction: column;
    margin-left: 400px;
  }
}
.research-box.style1 .research-right .research-content {
  max-width: 483px;
}
@media (max-width: 1199px) {
  .research-box.style1 .research-right .research-content {
    margin-bottom: 30px;
  }
}
.research-box.style1 .research-right .research-content .text {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
}
@media (max-width: 767px) {
  .research-box.style1 .research-right {
    margin-left: 0;
    margin-top: 100px;
  }
}
.research-box.style1:hover .research-thumb-wrapper {
  opacity: 1;
  visibility: visible;
}
.research-box.style1:hover .research-title {
  margin-left: 330px;
}
@media (max-width: 1199px) {
  .research-box.style1:hover .research-title {
    margin-left: 0;
  }
}
.research-box.style1:hover .research-title .number {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.research-box.style1:hover .research-btn .link-btn.style7 {
  background: var(--theme);
}
.research-box.style1:hover .research-btn .link-btn.style7 svg path {
  fill: var(--white);
}
@media (max-width: 767px) {
  .research-box.style1:hover .research-right {
    margin-left: 0;
    margin-bottom: 200px;
  }
}

/* 25.Team */
.team-wrapper.style1 .section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .team-wrapper.style1 {
    margin-top: 60px;
  }
}

.team-card.style1 {
  position: relative;
}
.team-card.style1 .team-thumb {
  max-width: 357px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 357 518"><path fill-rule="evenodd" clip-rule="evenodd" d="M357 30C357 13.4315 343.569 0 327 0H30C13.4315 0 0 13.4314 0 30V488C0 504.569 13.4315 518 30 518H209C225.569 518 239 504.569 239 488V430C239 413.431 252.431 400 269 400H327C343.569 400 357 386.569 357 370V30Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.team-card.style1 .team-thumb img {
  width: 100%;
  height: 100%;
}
.team-card.style1 .team-content h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}
.team-card.style1 .team-content h3 a {
  color: var(--title);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.team-card.style1 .team-content .designation {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.team-card.style1 .social-profile {
  display: inline-block;
  position: absolute;
  bottom: 87px;
  right: 14px;
}
@media (max-width: 767px) {
  .team-card.style1 .social-profile {
    right: 150px;
  }
}
@media (max-width: 575px) {
  .team-card.style1 .social-profile {
    right: 50px;
  }
}
@media (max-width: 500px) {
  .team-card.style1 .social-profile {
    right: 30px;
  }
}
.team-card.style2 {
  position: relative;
}
.team-card.style2 .team-thumb {
  max-width: 587px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 587 518"><path fill-rule="evenodd" clip-rule="evenodd" d="M587 30C587 13.4315 573.569 0 557 0H30C13.4315 0 0 13.4314 0 30V488C0 504.569 13.4315 518 30 518H434C450.569 518 464 504.569 464 488V430C464 413.431 477.431 400 494 400H557C573.569 400 587 386.569 587 370V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
.team-card.style2 .team-thumb img {
  width: 100%;
  height: 100%;
}
.team-card.style2 .team-content h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}
.team-card.style2 .team-content h3 a {
  color: var(--title);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
}
.team-card.style2 .team-content .designation {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.team-card.style2 .social-profile {
  display: inline-block;
  position: absolute;
  bottom: 87px;
  right: 14px;
}
@media (max-width: 1199px) {
  .team-card.style2 .social-profile {
    right: 4px;
  }
}

.team-details-section .section-title {
  margin-bottom: 60px;
}
.team-details-section .team-details-image {
  border-radius: 20px;
}
.team-details-section .team-details-text .progress-item {
  margin-bottom: 40px;
}
.team-details-section .team-details-text .progress-item .progress-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.team-details-section .team-details-text .progress-item .progress {
  background: var(--border);
  border-radius: 0;
  height: 10px;
}
.team-details-section .team-details-text .progress-item .progress .progress-bar {
  background: var(--theme);
}
.team-details-section .team-details-text p + p {
  margin-top: 30px;
}
.team-details-section .team-details-text .team-social-icon {
  margin-top: 34px;
}
.team-details-section .team-details-text .team-social-icon a {
  width: 45px;
  height: 45px;
  background: var(--bg-2);
}
.team-details-section .team-details-text .team-social-icon a:hover {
  background: var(--theme);
}

@media (max-width: 1399.98px) {
  .team-details-section .team-details-text .progress-item {
    margin-bottom: 26px;
  }
}
@media (max-width: 767.98px) {
  .team-details-section {
    margin-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .breadcrumb-section .breadcrumb-bg {
    padding: 50px 30px 50px;
  }
  .team-details-section .section-title {
    margin-bottom: 40px;
  }
  .team-details-section .team-details-text .progress-item .progress-title {
    margin-bottom: 8px;
  }
}
/* 26.Faq */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq-content .accordion-item {
  border: 0;
  background-color: var(--white);
}
.faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 600;
  color: var(--theme);
  letter-spacing: -0.2px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: var(--text);
  padding: 25px 50px 0;
  text-transform: capitalize;
  font-size: 40px;
  border: 1px solid transparent;
  border-radius: 30px 30px 0 0;
}
@media (max-width: 767px) {
  .faq-content .accordion-item .accordion-header .accordion-button {
    padding: 15px;
  }
}
.faq-content .accordion-item .accordion-header .accordion-button:after {
  border-radius: 50%;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  background-image: url(../../assets/images/icon/chevron-up.svg);
  color: var(--theme2);
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  background-image: url(../../assets/images/icon/chevron-down.svg);
  font-weight: 500;
  color: var(--theme2);
  transform: rotate(0);
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 35px 50px;
  color: var(--title);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    padding: 20px;
  }
}
.faq-content .accordion-item .accordion-collapse {
  border: none;
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 150px;
  padding-left: 50px;
  padding-top: 15px;
  color: var(--text);
  background-color: var(--theme);
  border-radius: 0 0 30px 30px;
}
@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.faq-content.style-3 .accordion-item {
  border: 0;
  background-color: var(--white);
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
}
.faq-content.style-3 .accordion-item .accordion-header .accordion-button {
  color: var(--title);
  font-family: inherit;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: inherit;
  background-color: #ECF4FE;
  border: none;
}
.faq-content.style-3 .accordion-item .accordion-collapse .accordion-body {
  background-color: #ECF4FE;
  padding-bottom: 30px;
  border-radius: 0 0 30px 30px;
}

.faq-container-wrapper.style3 {
  position: relative;
}
.faq-container-wrapper.style3 .shape {
  position: absolute;
  top: -140px;
  left: 0;
  z-index: 1;
}
.faq-container-wrapper.style3 .title-wrap {
  position: relative;
  margin-bottom: 50px;
  z-index: 3;
}

.faq-wrapper.style3 .faq-thumb {
  max-width: 913px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 913 526"><path fill-rule="evenodd" clip-rule="evenodd" d="M40 146C17.9086 146 0 163.909 0 186V486C0 508.091 17.9086 526 40 526H720C742.091 526 760 508.091 760 486V413C760 390.909 777.909 373 800 373H873C895.091 373 913 355.091 913 333V40C913 17.9086 895.091 0 873 0H186C163.909 0 146 17.9086 146 40V106C146 128.091 128.091 146 106 146H40Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.faq-wrapper.style3 .faq-thumb img {
  width: 100%;
  height: 100%;
}

/* 27.Contact */
.contact-wrapper.style1 {
  position: relative;
  margin-top: -8.9em;
  margin-bottom: -4.4em;
}
.contact-wrapper.style1 .contact-form.style1 {
  background: var(--theme3);
  max-width: 1520px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1520 800"><path fill-rule="evenodd" clip-rule="evenodd" d="M1118 30C1118 13.4315 1104.57 0 1088 0H30C13.4315 0 0 13.4315 0 30V607C0 623.569 13.4315 637 30 637H186C202.569 637 216 650.431 216 667V770C216 786.569 229.431 800 246 800H1490C1506.57 800 1520 786.569 1520 770V397C1520 380.431 1506.57 367 1490 367H1148C1131.43 367 1118 353.569 1118 337V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 1399px) {
  .contact-wrapper.style1 .contact-form.style1 {
    mask-size: cover;
    mask: none;
  }
}
.contact-wrapper.style1 .contact-thumb-wrapper {
  position: absolute;
  top: 235px;
  right: 0;
}
@media (max-width: 1399px) {
  .contact-wrapper.style1 .contact-thumb-wrapper {
    max-width: 497px;
    display: none;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper.style1 .contact-thumb-wrapper {
    max-width: 275px;
  }
}
@media (max-width: 991px) {
  .contact-wrapper.style1 .contact-thumb-wrapper {
    position: relative;
    max-width: 497px;
  }
}
.contact-wrapper.style1 .contact-thumb-wrapper .contact-thumb {
  max-width: 601px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 601 768"><path fill-rule="evenodd" clip-rule="evenodd" d="M601 30C601 13.4315 587.569 0 571 0H30C13.4315 0 0 13.4315 0 30V462C0 478.569 13.4315 492 30 492H249C265.569 492 279 505.431 279 522V738C279 754.569 292.431 768 309 768H571C587.569 768 601 754.569 601 738V30Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.contact-wrapper.style1 .contact-thumb-wrapper .contact-thumb img {
  width: 100%;
  height: 100%;
}
.contact-wrapper.style1 .contact-thumb-wrapper .counter-box {
  position: absolute;
  bottom: 0px;
  left: 20px;
  width: 240px;
  height: 255px;
}
@media (max-width: 1399px) {
  .contact-wrapper.style1 .contact-thumb-wrapper .counter-box {
    width: 200px;
    height: 220px;
  }
}
@media (max-width: 1199px) {
  .contact-wrapper.style1 .contact-thumb-wrapper .counter-box {
    width: 102px;
    height: 120px;
  }
}
@media (max-width: 991px) {
  .contact-wrapper.style1 .contact-thumb-wrapper .counter-box {
    width: 200px;
    height: 215px;
  }
}
@media (max-width: 767px) {
  .contact-wrapper.style1 .contact-thumb-wrapper .counter-box {
    width: 149px;
    height: 157px;
  }
}

.contact-form.style1 {
  padding: 150px 90px 320px;
}
.contact-form.style1 form {
  margin-top: 5px;
}
.contact-form.style1 form textarea {
  margin-top: 20px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .contact-form.style1 {
    padding: 120px 60px;
  }
}
@media (max-width: 767px) {
  .contact-form.style1 {
    padding: 100px 25px 25px;
  }
}

.contact-container-wrapper.style2 {
  position: relative;
}
.contact-container-wrapper.style2 .contact-wrapper.style2 {
  max-width: 1779px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1779 735"><path fill-rule="evenodd" clip-rule="evenodd" d="M1779 50C1779 22.3858 1756.61 0 1729 0H50C22.3858 0 0 22.3858 0 50V685C0 712.614 22.3857 735 50 735H1506.62C1534.24 735 1556.62 712.614 1556.62 685V570.154C1556.62 542.54 1579.01 520.154 1606.62 520.154H1729C1756.61 520.154 1779 497.768 1779 470.154V50Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
}
.contact-container-wrapper.style2 .contact-wrapper.style2 img {
  width: 100%;
  height: 100%;
}
.contact-container-wrapper.style2 .icon-box {
  position: absolute;
  bottom: 0;
  right: 70px;
  width: 165px;
  height: 165px;
  line-height: 165px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 767px) {
  .contact-container-wrapper.style2 .icon-box {
    bottom: 0px;
    right: 127px;
    width: 143px;
    height: 143px;
    line-height: 142px;
  }
}

.contact-form.style2 {
  background-color: var(--white);
  padding: 55px;
  margin: 65px 0px 65px 120px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1199px) {
  .contact-form.style2 {
    margin: 40px;
  }
}
@media (max-width: 767px) {
  .contact-form.style2 {
    margin: 10px 10px 150px;
    padding: 20px;
  }
}
.contact-form.style2 input {
  border-radius: 5px;
  background: #F6F6F6;
}
.contact-form.style2 form {
  margin-top: 40px;
}
.contact-form.style2 form textarea {
  border-radius: 5px;
  background: #F6F6F6;
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-wrapper.style3 .contact-left {
  position: relative;
}
.contact-wrapper.style3 .contact-left .info-bg {
  max-width: 599px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 599 743"><path fill-rule="evenodd" clip-rule="evenodd"  d="M599 40C599 17.9086 581.091 0 559 0H40C17.9086 0 0 17.9086 0 40V703C0 725.091 17.9086 743 40 743H174C196.091 743 214 725.091 214 703V387C214 364.909 231.909 347 254 347H559C581.091 347 599 329.091 599 307V40Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
.contact-wrapper.style3 .contact-left .info-bg img {
  width: 100%;
  height: 100%;
}
.contact-wrapper.style3 .contact-left .contact-info-box {
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact-wrapper.style3 .contact-left .contact-info-box.style1 {
  max-width: 340px;
  padding: 67px 34px 88px;
  border-radius: 30px;
  background: var(--bg-2);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
@media (max-width: 767px) {
  .contact-wrapper.style3 .contact-left .contact-info-box.style1 {
    max-width: 300px;
  }
}
.contact-wrapper.style3 .contact-left .contact-info-box.style1 .title {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 15px;
}
.contact-wrapper.style3 .contact-left .contact-info-box.style1 .info-box {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 767px) {
  .contact-wrapper.style3 .contact-left .contact-info-box.style1 .info-box {
    gap: 10px;
  }
}
.contact-wrapper.style3 .contact-left .contact-info-box.style1 .info-box .icon1 {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 2px;
  background: #00A6ED;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.contact-wrapper.style3 .contact-left .contact-info-box.style1 .info-box .icon2 {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 2px;
  background: #2DCE98;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.contact-wrapper.style3 .contact-left .contact-info-box.style1 .info-box .info a {
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
}
.contact-wrapper.style3 .comments-form-wrapper.style3 {
  position: relative;
}
.contact-wrapper.style3 .comments-form-wrapper.style3 .arrow-long {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--theme);
  width: 128px;
  height: 128px;
}
@media (max-width: 767px) {
  .contact-wrapper.style3 .comments-form-wrapper.style3 .arrow-long {
    top: 55px;
    left: 0;
    width: 70px;
    height: 70px;
  }
  .contact-wrapper.style3 .comments-form-wrapper.style3 .arrow-long img {
    width: 30px;
    height: 30px;
  }
}
.contact-wrapper.style3 .comments-form-wrapper.style3 .arrow-wrap {
  position: absolute;
  top: 20px;
  right: 280px;
}
.contact-wrapper.style3 .comments-form-wrapper.style3 .comments-form {
  background: #F6F7F8;
  border-radius: 30px;
  padding: 80px 125px 80px 100px;
  max-width: 930px;
  position: relative;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 930 743"><path fill-rule="evenodd" clip-rule="evenodd" d="M684 30C684 13.4315 670.569 0 654 0H30C13.4315 0 0 13.4315 0 30V713C0 729.569 13.4315 743 30 743H900C916.569 743 930 729.569 930 713V241C930 224.431 916.569 211 900 211H714C697.431 211 684 197.569 684 181V30Z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto;
}
@media (max-width: 991px) {
  .contact-wrapper.style3 .comments-form-wrapper.style3 .comments-form {
    padding: 25px;
    mask: none;
  }
}

/* 28.Sidebar */
/*----------------------------------------------
    # Widget Sidebar style here
----------------------------------------------*/
.main-sidebar .single-sidebar-widget {
  padding: 30px;
  background-color: var(--theme2);
  margin-bottom: 30px;
}

.widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 5px;
  color: var(--title);
  font-family: var(--title);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}
.widget-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}

.search-widget form {
  width: 100%;
  position: relative;
}
.search-widget form input {
  background: var(--white);
  font-size: 15px;
  padding: 12px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--title);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.search-widget form button:hover {
  background: var(--theme);
  color: var(--white);
}

.tagcloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tagcloud h6 {
  font-size: 20px;
}
.tagcloud a.active {
  background: var(--theme) !important;
  color: var(--white) !important;
}
.tagcloud li {
  margin-right: 5px;
}
.tagcloud li a {
  display: inline-flex;
  padding: 10px 16px;
  background: var(--white);
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.tagcloud li a:last-child {
  margin-right: 0;
}
.tagcloud li a:hover {
  background: var(--theme) !important;
  color: var(--white) !important;
}

.range__barcustom {
  padding: 16px 22px 0px 10px;
  border: 1px solid #F9F3EF;
  background: var(--white);
}
.range__barcustom .price-input {
  margin-top: 10px;
  position: relative;
}
@media (max-width: 1600px) {
  .range__barcustom .price-input {
    flex-wrap: wrap;
  }
}
.range__barcustom .price-input .price-wrapper {
  gap: 10px;
}
.range__barcustom .price-input .field {
  display: flex;
  align-items: center;
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  text-transform: capitalize;
  width: 16%;
}
.range__barcustom .price-input .field span {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  text-transform: capitalize;
}
.range__barcustom .separators {
  font-size: 24px;
  line-height: 42px;
  font-weight: 500;
}
.range__barcustom .field input {
  height: 100%;
  outline: none;
  background: transparent;
  border: unset;
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  text-transform: capitalize;
  padding: 0;
}
.range__barcustom .field input span {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  text-transform: capitalize;
}
.range__barcustom input[type=number]::-webkit-outer-spin-button,
.range__barcustom input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range__barcustom .price-input .separator {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}
.range__barcustom .slider {
  height: 6.75px;
  position: relative;
  background: var(--title);
  border-radius: 5px;
}
.range__barcustom .slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--theme);
}
.range__barcustom .range-input {
  position: relative;
  display: flex;
  justify-content: center;
}
.range__barcustom .range-input input {
  position: absolute;
  width: 100%;
  height: 6.75px;
  top: -7px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  outline: none;
}
.range__barcustom input[type=range]::-webkit-slider-thumb {
  height: 17px;
  width: 7px;
  border-radius: 5px;
  background: var(--theme);
  border: 1.125px solid var(--theme);
  pointer-events: auto;
  -webkit-appearance: none;
}
.range__barcustom .price-input .filter-btn {
  padding: 8px 30px;
  margin-left: 15px;
  background-color: transparent;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.range__barcustom .price-input .filter-btn:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}

.filter-size .input-save:not(:last-child) {
  margin-bottom: 20px;
}
.filter-size .input-save input {
  width: 20px;
  height: 19px;
  background-color: var(--theme);
  outline: none;
  color: var(--theme);
  padding: 5px;
  border-radius: 4px;
}
.filter-size .input-save label {
  margin-left: 20px;
  color: var(--title);
  text-transform: capitalize;
  font-weight: 600;
  text-transform: capitalize;
}

.recent-box {
  padding: 20px 30px;
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.recent-box .recent-thumb img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.recent-box .recent-content .star {
  margin-bottom: 10px;
  margin-top: 5px;
}
.recent-box .recent-content .price {
  display: flex;
  gap: 10px;
}
.recent-box .recent-content .price .regular-price {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.recent-box .recent-content .price .offer-price {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.recent-box a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.recent-box a:hover {
  color: var(--theme);
}
.recent-box:hover {
  border: 1px solid var(--theme);
}
.recent-box:hover a {
  color: var(--theme);
}
.recent-box:last-child {
  margin-bottom: 0;
}

.page-nav-wrap {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .page-nav-wrap {
    margin-bottom: 30px;
  }
}
.page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .page-nav-wrap ul {
    flex-wrap: wrap;
  }
}
.page-nav-wrap ul li .previous {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  border: 1px solid transparent;
  color: var(--title);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .previous:hover {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .page-nav-wrap ul li .previous {
    width: 35px;
  }
}
.page-nav-wrap ul li .next {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border: 1px solid transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .next:hover {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .page-nav-wrap ul li .next {
    width: 35px;
  }
}
.page-nav-wrap ul li .page-numbers {
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-right: 10px;
  background-color: var(--white);
  color: var(--title);
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.page-nav-wrap ul li .page-numbers:hover, .page-nav-wrap ul li .page-numbers.active {
  background-color: var(--theme);
  color: var(--white) !important;
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .page-nav-wrap ul li .page-numbers {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
  }
}

.sort-bar {
  padding: 0;
  margin: 0 0 10px 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.sort-bar .woocommerce-result-count {
  margin-bottom: 0;
}

.sort-bar .single-select {
  height: 46px;
  line-height: 46px;
  border: 1px solid #E8E8E8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 209px;
  font-size: 16px;
  margin: 0;
  padding: 0 40px 0 20px;
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  background: var(--theme2);
  margin-bottom: 20px;
}

.sort-bar .nav-pills {
  margin-left: 10px;
}
.sort-bar .nav-pills .nav-link.active,
.sort-bar .nav-pills .nav-pills .show > .nav-link {
  color: var(--theme);
  background-color: transparent;
}
.sort-bar .nav-link {
  color: var(--text);
  padding: 5px;
  margin-left: 5px;
}

.sort-bar .nav a.active,
.sort-bar .nav a:hover {
  color: var(--theme) !important;
}

.categories-list .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}
.categories-list .checkbox-single input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.categories-list .checkbox-single:not(:last-child) {
  margin-bottom: 10px;
}
.categories-list .checkbox-single .checkbox-area .checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid rgb(229, 229, 229);
  top: 9px;
}
.categories-list .checkbox-single .checkbox-area .checkmark::after {
  content: "";
}
.categories-list .checkbox-single .checkbox-area input:checked ~ .checkmark {
  background-color: var(--theme);
}
.categories-list .checkbox-single .checkbox-area input:checked ~ .checkmark::after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  top: -8px;
  left: 5px;
  color: var(--theme);
  font-size: 11px;
}
.categories-list .checkbox-single .checkbox-area input:checked ~ .checkmark:after {
  display: block;
  color: var(--white);
}
.categories-list .checkbox-single .text-color {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.categories-list .checkbox-single .text-color .star {
  color: var(--theme);
  margin-right: 5px;
  font-size: 15px;
}

.shop-category-list li {
  margin-bottom: 10px;
}
.shop-category-list li a {
  color: var(--text);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-transform: capitalize;
}
.shop-category-list li i {
  margin-right: 8px;
}

/*----------------------------------------------
    # Widget Sidebar style2 here
----------------------------------------------*/
.main-sidebar2 .single-sidebar-widget {
  padding: 40px 30px;
  background-color: var(--theme2);
  margin-bottom: 30px;
}
.main-sidebar2 .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar2 .single-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}
.main-sidebar2 .single-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 83px;
  content: "";
  background-color: var(--theme);
}
.main-sidebar2 .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar2 .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: var(--text);
}
.main-sidebar2 .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background: var(--theme);
  border: none;
  color: var(--white);
  text-align: center;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
}
.main-sidebar2 .single-sidebar-widget .search-widget form button:hover {
  background: var(--title);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul {
  padding-left: 0;
  list-style-type: none;
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li {
  background-color: var(--white);
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--title);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li a span {
  transition: all 0.4s ease-in-out;
  color: var(--title);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover {
  background: var(--theme);
  color: var(--white);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--white) !important;
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--white);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li.active {
  background: var(--theme);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--white);
}
.main-sidebar2 .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--white);
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E6E5E5;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  width: 78px;
  height: 79px;
  object-fit: cover;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 8px;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--theme);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme2);
  margin-right: 5px;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  margin-bottom: 0;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.main-sidebar2 .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme2);
}
.main-sidebar2 .single-sidebar-widget .tagcloud a {
  display: inline-flex;
  padding: 10px 7px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-transform: capitalize;
  background: var(--white);
  margin-right: 8px;
  margin-bottom: 20px;
  border: none;
  transition: all 0.4s ease-in-out;
}
.main-sidebar2 .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar2 .single-sidebar-widget .tagcloud a.active, .main-sidebar2 .single-sidebar-widget .tagcloud a:hover {
  background: var(--theme);
  color: var(--white) !important;
}

.main-sidebar2 .single-sidebar-image {
  height: 400px;
  max-width: 500px;
  margin-bottom: 30px;
  position: relative;
}
.main-sidebar2 .single-sidebar-image:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #8A5133 0%, rgba(0, 6, 12, 0) 100%);
  opacity: 0.9;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.main-sidebar2 .single-sidebar-image .contact-text {
  position: relative;
  text-align: center;
  padding: 130px 30px;
  margin: 0 auto;
}
.main-sidebar2 .single-sidebar-image .contact-text .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  text-align: center;
  color: var(--theme);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.main-sidebar2 .single-sidebar-image .contact-text .icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}
.main-sidebar2 .single-sidebar-image .contact-text h4 {
  color: var(--white);
  margin-top: 30px;
}
.main-sidebar2 .single-sidebar-image .contact-text h5 {
  margin-top: 15px;
}
.main-sidebar2 .single-sidebar-image .contact-text h5 a {
  color: var(--white);
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.recent-post .media-img {
  margin-right: 20px;
  width: 95px;
  overflow: hidden;
  flex: none;
}
.recent-post .media-img img {
  width: 100%;
  transition: 0.4s ease-in-out;
}
.recent-post .post-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  margin: 10px 0 0px;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
}
.recent-post .recent-post-meta {
  margin-bottom: -2px;
}
.recent-post .recent-post-meta .price {
  font-size: 18px;
  font-weight: 700;
  color: #c5c5c5;
}
.recent-post .recent-post-meta .price del {
  margin-right: 10px;
}
.recent-post .recent-post-meta .price strong {
  color: var(--theme);
  font-weight: 700;
}
.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.recent-post .recent-post-meta a i {
  margin-right: 9px;
  color: var(--theme2);
  transition: 0.4s;
}
.recent-post .recent-post-meta a:hover {
  color: var(--theme);
}
.recent-post .recent-post-meta a:hover i {
  color: var(--theme);
}
.recent-post:hover .media-img img {
  transform: scale(1.1);
}

.widget_shopping_cart .widget_title {
  margin-bottom: 30px;
  border-bottom: none;
}
.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}
.widget_shopping_cart ul li {
  list-style-type: none;
}
.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 30px 30px 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  text-align: left;
}
.widget_shopping_cart .mini_cart_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 6px;
}
.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme);
}
.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  transform: translateY(-50%);
  color: var(--text);
}
.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme);
}
.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 18px;
}
.widget_shopping_cart .quantity {
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
}
.widget_shopping_cart .total {
  margin-top: 20px;
  font-size: 18px;
  color: var(--title);
  font-family: "Roboto", sans-serif;
}
.widget_shopping_cart .total strong {
  font-family: "Roboto", sans-serif;
}
.widget_shopping_cart .amount {
  padding-left: 5px;
}
.widget_shopping_cart .as-btn {
  margin-right: 15px;
}
.widget_shopping_cart .as-btn:last-child {
  margin-right: 0;
}

@media (max-width: 1199px) {
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
}
@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}
/* 29.Facts */
.fact-content.style1 .desc {
  color: var(--title);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  max-width: 505px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .fact-content.style1 .desc {
    margin-bottom: 30px;
  }
}
.fact-content.style1 .theme-btn {
  margin-bottom: 20px;
}

.fact-wrapper.style1 .fact-counters .counter-box {
  position: relative;
  z-index: 1;
}
.fact-wrapper.style1 .fact-counters .counter-box .line {
  position: relative;
  width: 374px;
  height: 19px;
  flex-shrink: 0;
  border-top: 1px solid var(--theme);
  background: var(--white);
  margin-top: -35px;
  margin-bottom: 0px;
  z-index: 2;
}

.fun-fact-wrapper.style2 .section-title {
  margin-bottom: 50px;
}/*# sourceMappingURL=main.css.map */




input[type="checkbox"] {
    width: 20px; /* Adjust size */
    height: 20px;
    appearance: none; /* Remove default styling */
    border: 2px solid #333; /* Visible border */
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #007bff; /* Change color when checked */
    border-color: #007bff;
}

input[type="checkbox"]::after {
    content: '✔'; /* Checkmark symbol */
    font-size: 16px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

input[type="checkbox"]:checked::after {
    display: block;
}
