@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&amp;family=Open+Sans:wght@300;400;500;600;700;800&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --font-montserrat: "Montserrat", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;
  --white-color: #fff;
  --black-color: #000;
  --black-color2: #1d1d1d;
  --title-color: #16191e;
  --text-color: #5e5e5e;
  --primary-color1: #efb93f;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-montserrat);
  color: var(--title-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
body.style-2 {
  background-color: #faf8fb;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  line-height: 1.4;
  color: var(--title-color);
}

input {
  border: none;
  outline: none;
}

button {
  outline: none;
  border: none;
}

i.bx {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none !important;
}

p {
  font-family: var(--font-open-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

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

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

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

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

.section-title1 span {
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--primary-color1);
  display: inline-block;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .section-title1 span {
    font-size: 16px;
  }
}
.section-title1 h2 {
  margin-bottom: 0;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  color: var(--title-color);
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .section-title1 h2 {
    font-size: 24px;
  }
}
@media (max-width: 1399px) {
  .section-title1 h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .section-title1 h2 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .customer-feedback-left {
    display: none !important;
  }
}

.section-title-2 h2 {
  color: var(--title-color);
  font-size: 30px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .section-title-2 h2 {
    font-size: 24px;
  }
}
@media (max-width: 1399px) {
  .section-title-2 h2 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .section-title-2 h2 {
    font-size: 24px;
  }
}
.section-title-2 p {
  color: #5e5e5e;
  margin-bottom: 0;
}

.primary-btn3 {
  border-radius: 5px;
  background-color: var(--primary-color1);
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 15px;
  color: #13141a;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
}
.primary-btn3 svg {
  fill: var(--title-color);
  transition: 0.5s;
}
.primary-btn3::after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 2px;
  background-color: #0a1019;
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
.primary-btn3.two {
  width: 100%;
  justify-content: center;
}
.primary-btn3.two svg path {
  transition: 0.5s;
}
.primary-btn3.two svg path:first-child {
  transition: 0.5s;
  fill: none;
  stroke: var(--title-color);
}
.primary-btn3:hover {
  color: var(--white-color);
}
.primary-btn3:hover svg {
  fill: var(--white-color);
}
.primary-btn3:hover.two svg path:first-child {
  fill: none;
  stroke: var(--white-color);
}
.primary-btn3:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

.nice-select {
  width: 100%;
  background: #f3f3f3;
  border-radius: 5px;
  height: 50px;
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0px 25px;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #f3f3f3;
}
.nice-select::after {
  height: 8px;
  width: 8px;
  border-bottom: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  right: 28px;
  margin-top: -5px;
}
.nice-select .current {
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 400;
}
.nice-select:hover {
  border-color: #f3f3f3;
  background: #f3f3f3;
}
.nice-select:focus {
  border-color: var(--primary-color1);
  background-color: var(--white-color);
}

@keyframes circle {
  0% {
    transform: rotate(0deg) translate(-70px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translate(-70px) rotate(-360deg);
  }
}

@keyframes anim {
  12.5% {
    stroke-dasharray: 33.98873px, 242.77666px;
    stroke-dashoffset: -26.70543px;
  }
  43.75% {
    stroke-dasharray: 84.97183px, 242.77666px;
    stroke-dashoffset: -84.97183px;
  }
  100% {
    stroke-dasharray: 2.42777px, 242.77666px;
    stroke-dashoffset: -240.34889px;
  }
}

@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}

header.style-2 {
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 11%;
  transition: all 0.8s ease-out 0s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-2 {
    padding: 0px 3%;
  }
}
@media (max-width: 1399px) {
  header.style-2 {
    padding: 0px 3%;
  }
}
@media (max-width: 1199px) {
  header.style-2 {
    padding: 0px 3%;
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 576px) {
  header.style-2 .header-logo img {
    max-width: 165px;
    width: 100%;
  }
}
header.style-2 .nav-right {
  gap: 45px;
}
@media (max-width: 1199px) {
  header.style-2 .nav-right {
    gap: 30px;
  }
}
header.style-2 .nav-right .primary-btn3 {
  padding: 13px 18px;
  gap: 5px;
}
header.style-2 .main-menu {
  display: inline-block;
  position: relative;
}
@media (max-width: 1199px) {
  header.style-2 .main-menu {
    display: none;
    visibility: hidden;
  }
}
header.style-2 .main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-2 .main-menu ul > li {
  display: inline-block;
  position: relative;
  padding: 0 0px;
}
header.style-2 .main-menu ul > li:hover i {
  color: var(--black-color2);
  font-size: 20px;
}
@media (min-width: 992px) {
  header.style-2 .main-menu ul > li:first-child {
    padding-left: 0;
  }
  header.style-2 .main-menu ul > li:first-child a {
    padding-left: 0;
  }
}
header.style-2 .main-menu ul > li a {
  color: var(--white-color);
  display: block;
  text-transform: capitalize;
  padding: 15px 20px;
  position: relative;
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  transition: all 0.5s ease-out 0s;
  position: relative;
}
@media (max-width: 991px) {
  header.style-2 .main-menu ul > li a {
    padding: 32px 9px;
  }
}
header.style-2 .main-menu ul > li i {
  font-size: 20px;
  text-align: center;
  color: var(--text-color);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 991px) {
  header.style-2 .main-menu ul > li i {
    opacity: 1;
  }
}
header.style-2 .main-menu ul > li i.active {
  color: var(--primary-color1);
}
header.style-2 .main-menu ul > li i.active::before {
  content: "\f2ea";
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}
header.style-2 .main-menu ul > li:hover > a {
  color: var(--primary-color1);
}
header.style-2 .main-menu ul > li:hover::after {
  color: var(--primary-color1);
}
header.style-2 .main-menu ul > li.active > a {
  color: var(--primary-color1);
}
header.style-2 .main-menu ul > li.active::after {
  color: var(--primary-color1);
}
@media only screen and (max-width: 991px) {
  header.style-2 .mobile-logo-area {
    justify-content: center !important;
  }
  header.style-2 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: #fff;
    border-right: 1px solid #eee;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
  header.style-2 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  header.style-2 .main-menu ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-2 .main-menu ul li {
    display: block;
    position: relative;
    padding: 0 5px;
  }
  header.style-2 .main-menu ul li i {
    display: block;
  }
  header.style-2 .main-menu ul li a {
    padding: 10px 0;
    display: block;
  }
  header.style-2 .main-menu ul li .bi {
    top: 8px;
    font-size: 20px;
    color: var(--title-color);
  }
}

header.style-3 {
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10%;
  transition: all 0.8s ease-out 0s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  position: relative;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  header.style-3 {
    padding: 0px 3%;
  }
}
@media (max-width: 1399px) {
  header.style-3 {
    padding: 0px 3%;
  }
}
@media (max-width: 1199px) {
  header.style-3 {
    padding: 0px 1%;
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header.style-3 .header-logo {
    max-width: 180px;
  }
}
@media (max-width: 991px) {
  header.style-3 .header-logo {
    padding: 20px 0px;
  }
}
header.style-3 .nav-right {
  gap: 30px;
}
@media (max-width: 1199px) {
  header.style-3 .nav-right {
    gap: 15px;
  }
}
header.style-3 .nav-right .primary-btn3 {
  font-size: 13px;
  gap: 5px;
  border-radius: 20px;
  padding: 13px 23px;
}
header.style-3 .main-menu {
  display: inline-block;
  position: relative;
}
header.style-3 .main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header.style-3 .main-menu ul > li {
  display: inline-block;
  position: relative;
  padding: 0 8px;
}
header.style-3 .main-menu ul > li:hover i {
  color: var(--black-color2);
  font-size: 20px;
}
@media (min-width: 992px) {
  header.style-3 .main-menu ul > li:first-child {
    padding-left: 0;
  }
  header.style-3 .main-menu ul > li:first-child a {
    padding-left: 0;
  }
}
header.style-3 .main-menu ul > li a {
  color: var(--white-color);
  display: block;
  text-transform: capitalize;
  padding: 24px 20px;
  position: relative;
  font-family: var(--font-montserrat);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.5s ease-out 0s;
  position: relative;
}
@media (max-width: 1399px) {
  header.style-3 .main-menu ul > li a {
    padding: 24px 12px;
  }
}
@media (max-width: 1199px) {
  header.style-3 .main-menu ul > li a {
    padding: 24px 5px;
  }
}
@media (max-width: 991px) {
  header.style-3 .main-menu ul > li a {
    padding: 32px 9px;
    color: var(--title-color);
  }
}
header.style-3 .main-menu ul > li i {
  font-size: 20px;
  text-align: center;
  color: var(--text-color);
  font-style: normal;
  position: absolute;
  right: -5px;
  top: 35px;
  z-index: 999;
  cursor: pointer;
  display: none;
  transition: all 0.5s ease-out 0s;
  opacity: 0;
}
@media (max-width: 991px) {
  header.style-3 .main-menu ul > li i {
    opacity: 1;
  }
}
header.style-3 .main-menu ul > li i.active {
  color: var(--primary-color1);
}
header.style-3 .main-menu ul > li i.active::before {
  content: "\f2ea";
}
header.style-3 .main-menu ul > li:hover > a {
  color: var(--primary-color1);
}
header.style-3 .main-menu ul > li:hover::after {
  color: var(--primary-color1);
}
header.style-3 .main-menu ul > li.active > a {
  color: var(--primary-color1);
}
header.style-3 .main-menu ul > li.active::after {
  color: var(--primary-color1);
}
header.style-3 .main-menu .topbar-right {
  padding-top: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(238, 238, 238, 0.93);
}
header.style-3 .main-menu .topbar-right .primary-btn3 {
  justify-content: center;
  width: 100%;
}
header.style-3 .main-menu .topbar-right .primary-btn3 svg {
  fill: var(--title-color);
}
header.style-3 .main-menu .topbar-right a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 13px;
  color: #13141a;
  margin-bottom: 25px;
}
header.style-3 .main-menu .topbar-right a:last-child {
  margin-bottom: 0;
}
header.style-3 .main-menu .topbar-right a svg {
  fill: var(--primary-color1);
}
header.style-3 .main-menu .topbar-right a:hover {
  color: var(--primary-color1);
}
header.style-3 .main-menu .topbar-right a:hover svg {
  fill: var(--primary-color1);
}
@media only screen and (max-width: 991px) {
  header.style-3 .mobile-logo-area {
    justify-content: center !important;
  }
  header.style-3 .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    padding: 30px 20px !important;
    z-index: 99999;
    height: 100%;
    overflow: auto;
    background: #fff;
    border-right: 1px solid #eee;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.03);
  }
  header.style-3 .main-menu .menu-list {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  header.style-3 .main-menu ul {
    float: none;
    text-align: left;
    padding: 5px 0px 20px 0;
  }
  header.style-3 .main-menu ul li {
    display: block;
    position: relative;
    padding: 0 5px;
  }
  header.style-3 .main-menu ul li i {
    display: block;
  }
  header.style-3 .main-menu ul li a {
    padding: 10px 0;
    display: block;
  }
  header.style-3 .main-menu ul li .bi {
    top: 8px;
    font-size: 20px;
    color: var(--title-color);
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}
@keyframes smooth-header {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: scaleY(0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }
}

/*=====================================
     5. Banner
========================================*/

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRights {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.topbar-header {
  position: absolute;
  z-index: 777;
  left: 0;
  top: 0;
  width: 100%;
}

.slider-btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.slider-btn-group.style-2 {
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
}
.slider-btn-group.style-3 {
  width: unset;
}
.slider-btn-group .slider-btn {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1px solid var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
}
.slider-btn-group .slider-btn svg {
  fill: var(--primary-color1);
  transition: 0.35s;
}
.slider-btn-group .slider-btn:hover {
  background-color: var(--primary-color1);
}
.slider-btn-group .slider-btn:hover svg {
  fill: var(--white-color);
}

.customar-feedback-area .customer-feedback-left {
  background-image: url(../img/home1/customer-feedbac-bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px 20px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
.customar-feedback-area .customer-feedback-left::after {
  content: "";
  height: 1px;
  width: 144px;
  background-color: rgba(19, 20, 26, 0.25);
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
}
.customar-feedback-area .customer-feedback-left .trustpilot {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.customar-feedback-area .customer-feedback-left .trustpilot h5 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--title-color);
  margin-bottom: 10px;
}
.customar-feedback-area .customer-feedback-left .trustpilot span {
  font-family: var(--font-open-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--title-color);
  display: inline-block;
  padding-top: 6px;
  margin-bottom: 10px;
}
.customar-feedback-area .customer-feedback-left .trustpilot span strong {
  font-weight: 600;
}
.customar-feedback-area .customer-feedback-left .google {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.customar-feedback-area .customer-feedback-left .google ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 7px;
  margin-bottom: 5px;
}
.customar-feedback-area .customer-feedback-left .google ul li {
  line-height: 1;
}
.customar-feedback-area .customer-feedback-left .google ul li i {
  font-style: 14px;
  color: #dda701;
}
.customar-feedback-area .customer-feedback-left .google span {
  font-family: var(--font-open-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--title-color);
  display: inline-block;
  padding-top: 6px;
}
.customar-feedback-area .customer-feedback-left .google span strong {
  font-weight: 600;
}
.customar-feedback-area .customer-feedback-right .feedback-card {
  padding: 16px;
  background: #faf8fb;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.35s;
}
.customar-feedback-area .customer-feedback-right .feedback-card .feedback-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 15px;
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .feedback-top
  .stat-area {
  display: flex;
  flex-direction: column;
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .feedback-top
  .stat-area
  ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 7px;
  margin-bottom: 5px;
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .feedback-top
  .stat-area
  ul
  li {
  line-height: 1;
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .feedback-top
  .stat-area
  ul
  li
  i {
  font-style: 13px;
  color: #dda701;
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .feedback-top
  .stat-area
  img {
  margin-bottom: 5px;
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .feedback-top
  .stat-area
  span {
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: var(--title-color);
}
.customar-feedback-area .customer-feedback-right .feedback-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0px !important;
  margin-top: 6px !important;
  color: var(--text-color);
}
.customar-feedback-area
  .customer-feedback-right
  .feedback-card
  .author-name
  h6 {
  margin-bottom: 0;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: var(--title-color);
  position: relative;
}

.customar-feedback-area .customer-feedback-right .feedback-card:hover {
  border-color: var(--primary-color1);
}
.customar-feedback-area.style-2 .slider-btn-group .slider-btn {
  background-color: transparent;
  border-color: rgba(19, 20, 26, 0.2);
}
.customar-feedback-area.style-2 .slider-btn-group .slider-btn svg {
  fill: rgba(19, 20, 26, 0.2);
}
.customar-feedback-area.style-2 .slider-btn-group .slider-btn:hover {
  background-color: var(--title-color);
  border-color: var(--title-color);
}
.customar-feedback-area.style-2 .slider-btn-group .slider-btn:hover svg {
  fill: var(--white-color);
}

.news-section {
  background: #faf8fb;
}
.news-section.two {
  background-image: url(../img/home1/why-choose-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news-section.five {
  background-color: transparent;
}
.news-section .news-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 10px;
}
.news-section .news-card .news-img {
  position: relative;
  border-radius: 5px;
}
.news-section .news-card .news-img img {
  border-radius: 5px;
  width: 100%;
}
.news-section .news-card .news-img .date {
  position: absolute;
  right: -10px;
  bottom: -15px;
}
.news-section .news-card .news-img .date a {
  background-color: var(--primary-color1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7% 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 7% 50%);
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 3px 30px;
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: var(--title-color);
  transition: 0.35s;
}
.news-section .news-card .content {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
}
.news-section .news-card .content > h6 {
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.news-section .news-card .content > h6 a {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 13px;
  color: var(--title-color);
  transition: 0.35s;
}
.news-section .news-card .content > h6 a:hover {
  color: var(--primary-color1);
}
.news-section .news-card .content .news-btm .author-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-section .news-card .content .news-btm .author-area .author-img img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
}
.news-section .news-card .content .news-btm .author-area .author-content {
  display: inline-grid;
}
.news-section .news-card .content .news-btm .author-area .author-content h6 {
  margin-bottom: 3px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: var(--title-color);
}
.news-section .news-card .content .news-btm .author-area .author-content a {
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color);
  transition: 0.35s;
}
.news-section
  .news-card
  .content
  .news-btm
  .author-area
  .author-content
  a:hover {
  color: var(--primary-color1);
}
.news-section .news-card .content .news-btm .author-area .author-content span {
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color);
}
.news-section .news-card.style-2 .date {
  position: absolute;
  left: -10px;
  right: unset;
  bottom: -15px;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--primary-color1);
  -webkit-clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(100% 0, 93% 50%, 100% 100%, 0 100%, 0 0);
  padding: 0px 22px;
  line-height: 1;
}
.news-section .news-card.style-2 .date a {
  -webkit-clip-path: unset;
  clip-path: unset;
  background-color: transparent;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-family: var(--font-open-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: var(--title-color);
  position: relative;
}
.news-section .news-card.style-2 .date a::after {
  content: "";
  height: 10px;
  width: 1px;
  background-color: rgba(19, 20, 26, 0.5);
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.news-section .news-card.style-2 .date a:first-child::after {
  display: none;
}
.news-section .news-card.style-2 .social-area {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.45s;
  position: relative;
}

footer {
  background: black;
}
footer .footer-top {
  padding: 90px 11%;
}
@media (max-width: 1699px) {
  footer .footer-top {
    padding: 45px 3%;
  }
}
@media (max-width: 1399px) {
  footer .footer-top {
    padding: 45px 3%;
  }
}
@media (max-width: 1399px) {
  footer .footer-top {
    padding: 30px 3%;
  }
}
@media (max-width: 991px) {
  footer .footer-top {
    padding: 4px;
  }
}
footer .footer-widget .widget-title {
  margin-bottom: 12px;
}
footer .footer-widget .widget-title h5 {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 20px;
  font-family: var(--font-montserrat);
  font-weight: 600;
}
footer .footer-widget .menu-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-widget .menu-container ul li {
  margin-bottom: 8px;
}
footer .footer-widget .menu-container ul li:last-child {
  margin-bottom: 0;
}
footer .footer-widget .menu-container ul li a {
  color: #b3b3b3;
  font-size: 15px;
  font-family: var(--font-open-sans);
  font-weight: 600;
  transition: 0.35s;
  display: flex;
  align-items: center;
  gap: 7px;
}
footer .footer-widget .menu-container ul li a svg {
  fill: #b3b3b3;
  transition: 0.35s;
  opacity: 0;
}
footer .footer-widget .menu-container ul li a:hover {
  color: var(--white-color);
}
footer .footer-widget .menu-container ul li a:hover svg {
  fill: var(--primary-color1);
  stroke: var(--primary-color1);
  opacity: 1;
}

footer .footer-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 17px 11%;
}
@media (max-width: 1699px) {
  footer .footer-btm {
    padding: 17px 6%;
  }
}
@media (max-width: 1399px) {
  footer .footer-btm {
    padding: 17px 5%;
  }
}
@media (max-width: 1399px) {
  footer .footer-btm {
    padding: 17px 3%;
  }
}
@media (max-width: 991px) {
  footer .footer-btm {
    padding: 2px;
  }
}
@media (max-width: 767px) {
  footer .footer-btm {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
footer .footer-btm .copyright-area p {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-open-sans);
}
@media (max-width: 768px) {
  .footer-btm .copyright-area p {
    margin-bottom: 30px;
  }
}
footer .footer-btm .copyright-area p a {
  color: var(--primary-color1);
}
footer .footer-btm .social-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer-btm .social-area h6 {
  color: var(--white-color);
  font-size: 14px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  margin-bottom: 0;
}
footer .footer-btm .social-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .footer-btm .social-area ul li a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  transition: 0.35s;
}
footer .footer-btm .social-area ul li a:hover {
  color: white;
  background-color: black;
  border-color: black;
}
footer.style-2 {
  border-radius: 30px 30px 0 0;
}
footer.style-3 .footer-widget .menu-container ul li a:hover {
  color: var(--white-color);
}
footer.style-3 .footer-widget .menu-container ul li a:hover svg {
  fill: var(--white-color);
  opacity: 1;
}
footer.style-3 .footer-btm .copyright-area p a {
  color: var(--white-color);
}
footer.style-3 .footer-btm .social-area ul li a {
  color: rgba(255, 255, 255, 0.5);
}
footer.style-3 .footer-btm .social-area ul li a:hover {
  color: var(--title-color);
  background-color: var(--white-color);
  border-color: var(--white-color);
}

.explore-btn2 {
  color: var(--title-color);
  font-size: 16px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: 0.35s;
  line-height: 0.7;
  white-space: nowrap;
}
.explore-btn2 i {
  font-size: 20px;
}
.explore-btn2:hover {
  color: var(--primary-color1);
}
.explore-btn2.two:hover {
  color: var(--title-color);
}

.slider-btn-group2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-btn-group2 .slider-btn {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 185, 63, 0.4);
  cursor: pointer;
  transition: 0.35s;
}
.slider-btn-group2 .slider-btn svg {
  fill: var(--primary-color1);
}
.slider-btn-group2 .slider-btn:hover {
  background-color: var(--primary-color1);
}
.slider-btn-group2 .slider-btn:hover svg {
  fill: var(--title-color);
}

.how-it-work-section {
  background: #faf8fb;
  padding: 30px 0;
}
.how-it-work-section.style-2 {
  border-radius: 30px;
  background: #f6f6f6;
}
.how-it-work-section .video-btn a {
  color: var(--white-color);
  font-size: 15px;
  font-family: var(--font-montserrat);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  border: 1px solid var(--title-color);
  background: var(--title-color);
  padding: 5px 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s ease-out 0s;
}
.how-it-work-section .video-btn a i {
  line-height: 1;
  color: var(--white-color);
  transition: all 0.5s ease-out 0s;
}
.how-it-work-section .video-btn a::after {
  position: absolute;
  content: "";
  display: block;
  left: 8%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 2px;
  background-color: #fff;
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
.how-it-work-section .video-btn a:hover {
  color: var(--title-color);
}
.how-it-work-section .video-btn a:hover i {
  color: var(--title-color);
}
.how-it-work-section .video-btn a:hover svg {
  fill: var(--title-color);
}
.how-it-work-section .video-btn a:hover::after {
  transform: skewX(45deg) scale(1, 1);
}
.how-it-work-section .single-work-process {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.35s;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}
.how-it-work-section .single-work-process .step {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1px solid rgba(19, 20, 26, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.how-it-work-section .single-work-process .step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--title-color);
  font-size: 15px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-work-section .single-work-process .icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s;
  margin-bottom: 13px;
}
.how-it-work-section .single-work-process .content h6 {
  color: var(--title-color);
  font-size: 18px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 8px;
}
.how-it-work-section .single-work-process .content p {
  color: var(--text-color);
  font-size: 16px;
  font-family: var(--font-open-sans);
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0;
}
.how-it-work-section .single-work-process:hover .icon {
  background-color: var(--primary-color1);
}
.how-it-work-section .work-process-group {
  position: relative;
  z-index: 1;
}
.how-it-work-section .work-process-group::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #eee;
  position: absolute;
  top: 17px;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .how-it-work-section .work-process-group::after {
    display: none;
    visibility: hidden;
  }
}
.how-it-work-section.style-3 .work-process-group::after {
  display: none;
  visibility: hidden;
}
.how-it-work-section.style-3 .work-process-group .single-work-process {
  position: relative;
}
.how-it-work-section.style-3
  .work-process-group
  .single-work-process:hover
  .icon {
  background-color: var(--white-color);
}

.home3-banner-area {
  position: relative;
}
.home3-banner-area .banner-bg {
  height: 840px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-banner-area .banner-bg {
    height: 650px;
  }
}
@media (max-width: 1399px) {
  .home3-banner-area .banner-bg {
    height: 650px;
  }
}
.home3-banner-area .banner-wrapper {
  position: absolute;
  bottom: 100px;
  z-index: 9;
  width: 100%;
  left: 0;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-banner-area .banner-wrapper {
    padding: 0px 3%;
  }
}
@media (max-width: 1399px) {
  .home3-banner-area .banner-wrapper {
    padding: 0px 3%;
  }
}
@media (max-width: 991px) {
  .home3-banner-area .banner-wrapper {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.home3-banner-area .banner-wrapper .banner-content h1 {
  color: var(--white-color);
  font-family: var(--font-montserrat);
  font-size: 75px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .home3-banner-area .banner-wrapper .banner-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 1399px) {
  .home3-banner-area .banner-wrapper .banner-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .home3-banner-area .banner-wrapper .banner-content h1 {
    font-size: 20px;
  }
  .home3-banner-area .banner-bg {
    height: 420px;
  }
}
@media (max-width: 576px) {
  .home3-banner-area .banner-wrapper .banner-content h1 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .home3-banner-area .banner-bg {
    height: 240px;
  }
  .home3-banner-area .banner-wrapper {
    bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .home3-banner-area .banner-wrapper .slider-btn-group {
    display: none;
    visibility: hidden;
  }
}
.home3-banner-area .banner-wrapper .slider-btn-group .slider-btn {
  min-width: 34px;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}
.home3-banner-area .banner-wrapper .slider-btn-group .slider-btn svg {
  fill: rgba(255, 255, 255, 0.5);
}
.home3-banner-area .banner-wrapper .slider-btn-group .slider-btn:hover {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}
.home3-banner-area .banner-wrapper .slider-btn-group .slider-btn:hover svg {
  fill: var(--title-color);
}

@media (min-width: 992px) {
  .home4-about-section .about-content-wrap {
    padding-right: 35px;
  }
}
.home4-about-section .about-content-wrap > h6 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 17px;
  font-weight: 600;
  line-height: 30px;
  padding-top: 8px;
  margin-bottom: 5px;
}
.home4-about-section .about-content-wrap p {
  color: var(--text-color);
  line-height: 30px;
}
.home4-about-section .about-img-wrap {
  margin-bottom: 30px;
}
.home4-about-section .about-img-wrap img {
  border-radius: 10px;
}
.home4-about-section .slider-btn-group2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 95%;
}
.home4-about-section .slider-btn-group2 .slider-btn {
  background-color: rgba(239, 185, 63, 0.4);
}
.home4-about-section .slider-btn-group2 .slider-btn svg {
  fill: var(--white-color);
}
.home4-about-section .slider-btn-group2 .slider-btn:hover {
  background-color: var(--primary-color1);
}

.inner-page-banner {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('/assets/img/breadCrumb.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}

@media (max-width: 768px) {
  .inner-page-banner {
    padding: 50px 0;
  }
}

.inner-page-banner.style-2 {
  height: 150px;
}
.inner-page-banner.style-3 {
  height: 60px;
}
.inner-page-banner .banner-wrapper {
  padding: 0px 11%;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .inner-page-banner .banner-wrapper {
    padding: 0px 3%;
  }
}
@media (max-width: 1399px) {
  .inner-page-banner .banner-wrapper {
    padding: 0px 3%;
  }
}
@media (max-width: 1199px) {
  .inner-page-banner .banner-wrapper {
    padding: 0px 1%;
  }
}
.inner-page-banner .banner-content {
  max-width: 705px;
  width: 100%;
}
.inner-page-banner .banner-content h1 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 50px;
  color: var(--white-color);
  margin-bottom: 20px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .inner-page-banner .banner-content h1 {
    font-size: 50px;
  }
}
.inner-page-banner .banner-content .breadcrumb-list {
  margin: 0;
  padding: 0;
  padding-top: 25px;
  list-style: none;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.inner-page-banner .banner-content .breadcrumb-list li {
  line-height: 1;
  color: var(--white-color);
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding-left: 18px;
}
.inner-page-banner .banner-content .breadcrumb-list li::before {
  content: "";
  height: 1px;
  width: 10px;
  background-color: var(--primary-color1);
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 1;
  z-index: 9;
}
.inner-page-banner .banner-content .breadcrumb-list li:first-child {
  padding-left: 0;
}
.inner-page-banner .banner-content .breadcrumb-list li:first-child::before {
  display: none;
  visibility: hidden;
}
.inner-page-banner .banner-content .breadcrumb-list li a {
  color: var(--primary-color1);
  transition: 0.35s;
}
.inner-page-banner .banner-content .breadcrumb-list li a:hover {
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .inner-page-banner .banner-content.style-2 h1 {
    font-size: 45px;
  }
}
button {
  white-space: nowrap;
}

.faq-wrap .accordion .accordion-item {
  border-radius: 5px;
  border: 1px solid rgba(238, 238, 238, 0.5);
  background: #faf8fb;
  margin-bottom: 15px;
}
.faq-wrap .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-wrap .accordion .accordion-item .accordion-header {
  background: #faf8fb;
}
.faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
  background: #faf8fb;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 55px 10px 25px;
}
@media (max-width: 576px) {
  .faq-wrap .accordion .accordion-item .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }
}
.faq-wrap
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  flex-shrink: 0;
  width: unset;
  height: unset;
  margin-left: auto;
  background-image: none;
  background-repeat: unset;
  background-size: unset;
  font-family: bootstrap-icons !important;
  position: absolute;
  right: 17px;
  transition: unset;
  font-size: 17px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.faq-wrap
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  border: transparent;
  box-shadow: none;
  background-color: transparent;
  color: var(--title-color);
}
.faq-wrap
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: unset;
  font-family: bootstrap-icons !important;
  color: var(--title-color);
}
.faq-wrap .accordion .accordion-item .accordion-header .accordion-button:focus {
  border: transparent;
  box-shadow: none;
}
.faq-wrap .accordion .accordion-item .accordion-body {
  padding: 0px 25px 6px 25px;
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 576px) {
  .faq-wrap .accordion .accordion-item .accordion-body {
    padding: 0px 15px 15px 15px;
  }
}
.faq-wrap button {
  white-space: wrap;
}

.blog-sidebar {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
}
.blog-sidebar .single-widgets {
  background-color: #f6eff7;
  padding: 20px;
  border-radius: 5px;
}
.blog-sidebar .single-widgets .widget-title {
  line-height: 1;
}
.blog-sidebar .single-widgets .widget-title h6 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.blog-sidebar .single-widgets .wp-block-categoris-cloud {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-sidebar .single-widgets .wp-block-categoris-cloud li {
  line-height: 1;
  margin-bottom: 18px;
}
.blog-sidebar .single-widgets .wp-block-categoris-cloud li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .single-widgets .wp-block-categoris-cloud li a {
  color: var(--title-color);
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  position: relative;
  transition: 0.35s;
}
.blog-sidebar .single-widgets .wp-block-categoris-cloud li a::before {
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blog-sidebar
  .single-widgets
  .wp-block-categoris-cloud
  li
  a
  .number-of-categoris {
  color: var(--text-color);
  font-weight: 400;
  transition: 0.35s;
}
.blog-sidebar .single-widgets .wp-block-categoris-cloud li a:hover {
  color: var(--primary-color1);
}
.blog-sidebar
  .single-widgets
  .wp-block-categoris-cloud
  li
  a:hover
  .number-of-categoris {
  color: var(--primary-color1);
}
.blog-sidebar .single-widgets .blog-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-sidebar .single-widgets .blog-title .slider-btn-group2 {
  max-width: 50px;
  min-width: 50px;
}
.blog-sidebar .single-widgets .blog-title .slider-btn-group2 .slider-btn {
  height: 20px;
  width: 20px;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wi {
  margin-bottom: 15px;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wi img {
  border-radius: 5px;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wc {
  line-height: 1;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wc .date {
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wc .date::after {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, #5e5e5e 0%, rgba(94, 94, 94, 0) 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wc h6 {
  margin-bottom: 0;
  line-height: 1;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wc h6 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  transition: 0.35s;
}
.blog-sidebar .single-widgets .recent-post-wraper .widget-cnt .wc h6 a:hover {
  color: var(--primary-color1);
}
.blog-sidebar .single-widgets .wp-block-tag-cloud {
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-sidebar .single-widgets .wp-block-tag-cloud a {
  color: var(--text-color);
  text-align: center;
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  line-height: 1;
  padding: 8px 18px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  transition: all 0.5s ease-out 0s;
}
@media (max-width: 1399px) {
  .blog-sidebar .single-widgets .wp-block-tag-cloud a {
    padding: 8px 14px;
  }
}
.blog-sidebar .single-widgets .wp-block-tag-cloud a::after {
  position: absolute;
  content: "";
  display: block;
  left: 15%;
  right: -20%;
  top: -4%;
  height: 150%;
  width: 150%;
  bottom: 0;
  border-radius: 2px;
  background-color: var(--title-color);
  transform: skewX(45deg) scale(0, 1);
  z-index: -1;
  transition: all 0.5s ease-out 0s;
}
.blog-sidebar .single-widgets .wp-block-tag-cloud a:hover {
  color: var(--white-color);
  border-color: var(--title-color);
}
.blog-sidebar .single-widgets .wp-block-tag-cloud a:hover::after {
  transform: skewX(45deg) scale(1, 1);
}

.faq-page-wrap .faq-area .section-title-and-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .faq-page-wrap .faq-area .section-title-and-filter {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.faq-page-wrap .faq-area .section-title-and-filter .section-title h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.faq-page-wrap .faq-wrap {
  border-radius: 10px;
  border: 1px solid rgba(238, 238, 238, 0.61);
  padding: 20px;
}
@media (max-width: 576px) {
  .faq-page-wrap .faq-wrap {
    padding: 10px 10px;
  }
}

.faq-inquiery-form {
  background: #f6eff7;
  position: relative;
}
.faq-inquiery-form .form-img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .faq-inquiery-form .form-img img {
    max-width: 800px;
  }
}
@media (max-width: 1499px) {
  .faq-inquiery-form .form-img img {
    max-width: 750px;
  }
}
@media (max-width: 1399px) {
  .faq-inquiery-form .form-img img {
    max-width: 670px;
  }
}
.faq-inquiery-form .section-title h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
.faq-inquiery-form form {
  border-radius: 10px;
  background: #fff;
  padding: 30px;
}
@media (max-width: 576px) {
  .faq-inquiery-form form {
    padding: 40px 25px;
  }
}
.faq-inquiery-form .form-inner label {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 5px;
}
.faq-inquiery-form .form-inner input {
  border-radius: 5px;
  border: 1px solid #eee;
  background: #fbf7fb;
  height: 50px;
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  width: 100%;
}
.faq-inquiery-form .form-inner input::-moz-placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.faq-inquiery-form .form-inner input::placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.faq-inquiery-form .form-inner input:focus {
  border: 1px solid #efb93f;
  background: #fff;
}
.faq-inquiery-form .form-inner textarea {
  border-radius: 5px;
  border: 1px solid #eee;
  background: #fbf7fb;
  min-height: 150px;
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  width: 100%;
  outline: none;
}
.faq-inquiery-form .form-inner textarea::-moz-placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.faq-inquiery-form .form-inner textarea::placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.faq-inquiery-form .form-inner textarea:focus {
  border: 1px solid #efb93f;
  background: #fff;
}
.faq-inquiery-form .primary-btn3 {
  padding: 18px 28px;
}

.contact-page .single-contact {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.contact-page .single-contact .title {
  line-height: 1;
  background-color: var(--white-color);
  position: absolute;
  left: 35px;
  top: -9px;
  padding: 0 20px;
}
.contact-page .single-contact .title h6 {
  margin-bottom: 0;
  line-height: 1;
  color: #5e5e5e;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.contact-page .single-contact .icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page .single-contact .icon svg {
  fill: var(--title-color);
}
.contact-page .single-contact .content {
  line-height: 1;
}
.contact-page .single-contact .content span {
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.contact-page .single-contact .content h6 {
  margin-bottom: 0;
}
.contact-page .single-contact .content h6 a {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 11px;
  font-weight: 600;
  transition: 0.35s;
}
.contact-page .single-contact .content h6 a:hover {
  color: var(--primary-color1);
}
.contact-page .section-title h4 {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 700;
}
.contact-page .inquiry-form {
  border-radius: 10px;
  background: #f6eff7;
  padding: 25px;
}
@media (max-width: 767px) {
  .contact-page .inquiry-form {
    padding: 20px;
  }
}
.contact-page .inquiry-form .title {
  margin-bottom: 25px;
}
.contact-page .inquiry-form .title h4 {
  margin-bottom: 0;
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 24px;
  font-weight: 700;
}
.contact-page .inquiry-form .title p {
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
.contact-page .inquiry-form .form-inner {
  position: relative;
  line-height: 1;
}
.contact-page .inquiry-form .form-inner label {
  color: var(--title-color);
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.contact-page .inquiry-form .form-inner label span {
  color: var(--text-color);
}
.contact-page .inquiry-form .form-inner input {
  border-radius: 5px;
  background: var(--white-color);
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 13px;
  font-weight: 400;
  height: 50px;
  width: 100%;
  padding: 10px 20px;
}
.contact-page .inquiry-form .form-inner input::-moz-placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.contact-page .inquiry-form .form-inner input::placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.contact-page .inquiry-form .form-inner textarea {
  border-radius: 5px;
  background: var(--white-color);
  color: var(--text-color);
  font-family: var(--font-open-sans);
  font-size: 13px;
  width: 100%;
  padding: 20px 20px;
  outline: none;
  border: none;
  min-height: 100px;
}
.contact-page .inquiry-form .form-inner textarea::-moz-placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.contact-page .inquiry-form .form-inner textarea::placeholder {
  color: rgba(19, 20, 26, 0.5);
}
.contact-page .inquiry-form .form-inner .primary-btn3 {
  padding: 17px 28px;
  justify-content: center;
}