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

	01. Theme Default CSS
	02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --pb-ff-body: 'Urbanist', sans-serif;
  --pb-ff-heading: 'Urbanist', serif;
  --pb-fw-normal: normal;
  --pb-fw-thin: 100;
  --pb-fw-elight: 200;
  --pb-fw-light: 300;
  --pb-fw-regular: 400;
  --pb-fw-medium: 500;
  --pb-fw-sbold: 600;
  --pb-fw-bold: 700;
  --pb-fw-ebold: 800;
  --pb-fw-black: 900;
  --pb-fs-body: 16px;
  --pb-fs-p: 16px;
  --pb-fs-h1: 80px;
  --pb-fs-h2: 54px;
  --pb-fs-h3: 30px;
  --pb-fs-h4: 18px;
  --pb-fs-h5: 16px;
  --pb-fs-h6: 14px;
  --pb-color-common-white: #ffffff;
  --pb-color-common-black: #000000;
  --pb-color-common-yellow: #E8411D;
  --pb-color-common-yellow-2: #FF5E14;
  --pb-color-common-purple: #E8411D;
  --pb-color-heading-primary: #221F3F;
  --pb-color-text-body: #6D6C79;
  --pb-color-theme-primary: #FAAC52;
  --pb-color-theme-secondary: #57D288;
  --pb-color-gradient-1: linear-gradient(81deg, #E8411D 0%, #FAAC52 100%);
  --pb-color-gradient-2: linear-gradient(80deg, #E8411D 0%, #FAAC52 100%);
  --pb-color-grey-1: #F4F5F9;
  --pb-color-border-1: rgba(109, 108, 121, 0.2);
  --pb-color-border-2: rgba(15, 27, 36, 0.1);
  --pb-color-border-3: rgba(255, 255, 255, 0.1);
  --pb-color-border-4: rgba(109, 108, 121, 0.5);
  --pb-color-shadow-1: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

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

/**
	Typography CSS
*/
body {
  font-family: var(--pb-ff-body);
  font-size: 16px;
  line-height: 1.563;
  font-weight: 500;
  color: var(--pb-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -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;
  transition: all 0.3s ease-in-out;
}

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

h1 {
  font-size: var(--pb-fs-h1);
}

h2 {
  font-size: var(--pb-fs-h2);
}

h3 {
  font-size: var(--pb-fs-h3);
}

h4 {
  font-size: var(--pb-fs-h4);
}

h5 {
  font-size: var(--pb-fs-h5);
}

h6 {
  font-size: var(--pb-fs-h6);
}

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

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

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

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

a:hover {
  color: var(--pb-color-theme-primary);
}

.slick-list.draggable {
  cursor: grab;
}

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

button:hover {
  cursor: pointer;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

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

ul {
  display: block;
  padding: 0;
  margin: 0;
}

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

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

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

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

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

/**
 	Common Classes CSS
*/
.w-img img {
  width: 100%;
}

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

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

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

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

.pb-20 {
  margin-top: 20px;
}

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

.pb-30 {
  margin-top: 30px;
}

.pb-35 {
  margin-top: 35px;
}

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

.pb-45 {
  margin-top: 45px;
}

.pb-50 {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

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

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 991px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 50px;
  }
}

.pt-115 {
  padding-top: 115px;
}
@media only screen and (max-width: 991px) {
  .pt-115 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-115 {
    padding-top: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 991px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 50px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 991px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 991px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 50px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 991px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 50px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .md-pb-20 {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bg-grey {
  background-color: var(--pb-color-grey-1);
}

.container {
  max-width: 1315px;
}

.section-heading {
  margin-bottom: 55px;
}
@media only screen and (max-width: 991px) {
  .section-heading {
    margin-bottom: 30px;
  }
}
.section-heading .sub-heading {
  color: var(--pb-color-common-yellow);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.section-heading .section-title {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 700;
  display: block;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    max-width: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 28px;
    max-width: 350px;
  }
}
.section-heading .section-title span {
  background: linear-gradient(81deg, #E8411D 0%, #FAAC52 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "clig" off, "liga" off;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .section-heading .section-title span:before {
    bottom: -8px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title span:before {
    bottom: -5px;
  }
}
.section-heading.white-content p,
.section-heading.white-content .section-title,
.section-heading.white-content .sub-heading {
  color: var(--pb-color-common-white);
}
.section-heading.heading-2 {
  margin-bottom: 30px;
}
.section-heading.heading-2 .section-title {
  margin: 0;
}
.section-heading.heading-3 .section-title span {
  background: linear-gradient(81deg, #E8411D 100%, #E8411D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "clig" off, "liga" off;
}
.section-heading.heading-3 .section-title span:before {
  background-image: url(../img/shapes/blog-text-shape-2.png);
  bottom: -13px;
}
.section-heading.heading-3 p {
  margin-top: 20px;
}
.section-heading.heading-4 .sub-heading {
  color: var(--pb-color-theme-secondary);
}
.section-heading.heading-4 .section-title {
  max-width: 600px;
  width: 100%;
  margin: 0;
}
.section-heading.sub-heading-color .sub-heading {
  color: var(--pb-color-theme-primary);
}

@keyframes section-animation-2 {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}

.gradient-text {
  background: linear-gradient(81deg, #E8411D 0%, #FAAC52 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-feature-settings: "clig" off, "liga" off;
}

.gradient-text-2 {
  background: linear-gradient(80deg, #47479F 0%, #9191D7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
  .sticky-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
  }
}
@media screen and (max-width: 800px) {
  .wow {
    animation-name: none !important;
    visibility: visible !important;
  }
}
/*Scrool Up*/
#scrollup {
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  overflow: hidden;
  z-index: 999;
}

.scroll-to-top {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: var(--pb-color-theme-primary);
  font-size: 20px;
  padding: 0;
  line-height: 40px;
  color: var(--pb-color-common-white);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  transform: translateY(150%);
  transition: all 0.3s ease-in-out;
}

#scrollup.show {
  opacity: 1;
}

#scrollup.show .scroll-to-top {
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

/* Site Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader img {
  width: 200px;
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mt-cursor:before {
    background: var(--pb-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }
  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }
  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
/**
  Buttons CSS
*/
.pb-primary-btn {
  background-color: transparent;
  font-family: var(--pb-ff-heading);
  color: var(--pb-color-heading-primary);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 30px;
  text-transform: capitalize;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  border: 1px solid var(--pb-color-theme-secondary);
  border-radius: 30px;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pb-primary-btn:before {
  content: "";
  background-image: var(--pb-color-gradient-1);
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.pb-primary-btn:hover {
  color: var(--pb-color-common-white);
  font-weight: 600;
  border: 1px solid transparent;
}
.pb-primary-btn:hover:before {
  height: 100%;
}
.pb-primary-btn i {
  font-size: 12px;
  margin-left: 5px;
}

.pb-primary-btn.primary-2 {
  background: linear-gradient(80deg, #47479F 0%, #9191D7 100%);
  border: none;
  color: var(--pb-color-common-white);
}
.pb-primary-btn.primary-3 {
  background: #FB5252;
  border: none;
  color: var(--pb-color-common-white);
}
.pb-primary-btn.primary-3:before {
  background: var(--pb-color-heading-primary);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  background-color: transparent;
  width: 100%;
  width: 100%;
  position: relative;
  top: 0;
  z-index: 99;
}
@media only screen and (max-width: 991px) {
  .header {
    position: inherit;
    height: auto !important;
  }
}
.header .primary-header {
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.primary-header-inner {
  background-color: var(--pb-color-common-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .primary-header-inner {
    padding: 20px 0;
  }
}
.primary-header-inner .header-logo img {
  max-width: 170px;
}
.primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.primary-header-inner .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .primary-header-inner .header-menu-wrap ul {
    display: none;
  }
}
.primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
}
@media (max-width: 1170px) {
  .primary-header-inner .header-menu-wrap ul li {
    margin: 0 10px;
  }
}
.primary-header-inner .header-menu-wrap ul li a {
  font-family: var(--pb-ff-heading);
  color: var(--pb-color-heading-primary);
  display: block;
  font-size: 15px;
  padding: 49px 0;
  letter-spacing: 0;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
.primary-header-inner .header-menu-wrap ul li a i {
  font-size: 13px;
}
.primary-header-inner .header-menu-wrap ul li a:hover {
  color: var(--pb-color-theme-primary);
}
.primary-header-inner .header-menu-wrap ul li a:before {
  content: "";
  background-color: var(--pb-color-theme-primary);
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 45px;
  transition: all 0.4s ease-in-out;
}
.primary-header-inner .header-menu-wrap ul li ul {
  background-color: var(--pb-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 120px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}
.primary-header-inner .header-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.primary-header-inner .header-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin: 0;
  padding: 0 20px;
}
.primary-header-inner .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.primary-header-inner .header-menu-wrap ul li li:hover {
  background-color: var(--pb-color-theme-primary);
}
.primary-header-inner .header-menu-wrap ul li li a {
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--pb-color-common-black);
  font-weight: 600;
  font-size: 14px;
  line-height: 45px;
  padding: 0;
  letter-spacing: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.primary-header-inner .header-menu-wrap ul li li a:hover {
  padding-left: 10px;
  color: var(--pb-color-common-white);
}
.primary-header-inner .header-menu-wrap ul li li a:before {
  display: none;
}
.primary-header-inner .header-menu-wrap ul li:hover a:before {
  width: 100%;
}
.primary-header-inner .header-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .primary-header-inner .header-right .header-btn {
    display: none;
  }
}
.primary-header-inner .header-right .search-icon {
  color: var(--pb-color-heading-primary);
  font-size: 20px;
  margin-right: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .primary-header-inner .header-right .search-icon {
    margin-right: 0;
  }
}
.primary-header-inner .header-right .header-right-item .mobile-side-menu-toggle {
  color: var(--pb-color-heading-primary);
  font-size: 25px;
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .primary-header-inner .mean-push {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--pb-color-common-white);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}

@-webkit-keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-ms-keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .side-menu-icon {
    display: none;
  }
}

.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-side-menu {
    background-color: var(--pb-color-common-white);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: var(--pb-color-heading-primary);
    font-size: 22px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pb-color-border-1);
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--pb-color-theme-primary);
    color: var(--pb-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--pb-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--pb-color-common-white);
    font-family: var(--pb-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-list li {
    font-size: 20px;
    color: var(--pb-color-common-white);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .side-menu-list li i {
    background-color: var(--pb-color-theme-primary);
    font-size: 12px;
    color: var(--pb-color-common-black);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    margin-right: 20px;
  }
  .mobile-side-menu .side-menu-list li :last-child {
    margin-bottom: 0;
  }
  .mobile-side-menu .side-menu-social ul {
    display: flex;
    align-items: center;
    column-gap: 10px;
    list-style: none;
  }
  .mobile-side-menu .side-menu-social ul li a {
    background-color: var(--pb-color-theme-bg-dark-deep);
    color: var(--pb-color-theme-primary);
    font-size: 18px;
    width: 50px;
    padding: 15px 0;
    line-height: 1;
    text-align: center;
    border: 1px solid var(--pb-color-border-6);
    border-radius: 2px;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
  }
  .mobile-side-menu .side-menu-social ul li a:hover {
    background-color: var(--pb-color-theme-primary);
    color: var(--pb-color-common-white);
  }
  .mobile-side-menu .mean-bar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .mobile-side-menu .mean-bar .meanmenu-reveal {
    display: none !important;
  }
  .mobile-side-menu .mean-bar .mean-nav {
    background-color: transparent;
    margin-top: 0;
    padding-top: 20px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
    display: block !important;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
    position: relative;
    float: none;
    display: block;
    width: auto;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pb-color-border-1);
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    color: var(--pb-color-heading-primary);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    border-top: none;
    padding: 0;
    float: none;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
    background-color: var(--pb-color-theme-primary);
    color: var(--pb-color-common-white);
    position: absolute;
    padding: 0;
    top: -3px;
    right: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
    font-size: 14px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
    content: "+";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
    content: "\f068";
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
    display: none;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul {
    padding: 0 0 0 30px;
    margin-top: 20px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
  }
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.blog-section .section-heading {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .blog-section .section-heading {
    margin-bottom: 30px;
  }
}

.post-card .post-thumb {
  overflow: hidden;
  border-radius: 20px 20px 0px 0px;
  padding-top: 20px;
}
.post-card .post-thumb img {
  transform: scale(1);
  width: 100%;
  -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;
  transition: all 0.3s ease-in-out;
}
.post-card:hover .post-thumb img {
  transform: scale(1.02);
}
.post-card:hover .post-content {
  background-color: #fff;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

.post-content {
  padding: 30px 30px 40px 30px;
  border-bottom: 2px solid var(--pb-color-theme-primary);
  border-radius: 0 0 20px 20px;
  -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;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .post-content {
    padding: 30px 20px;
  }
}
.post-content .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
  max-width: 550px;
  width: 100%;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .post-content .title {
    font-size: 24px;
  }
}
.post-content .title a {
  background: linear-gradient(var(--pb-color-theme-primary) 0%, var(--pb-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -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;
  transition: all 0.3s ease-in-out;
}
.post-content .title a:hover {
  color: var(--pb-color-theme-primary);
  background-size: 100% 2px;
}
.post-content p {
  width: 100%;
  margin-bottom: 0;
}
/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Blog Details CSS
----------------------------------------*/
.blog-details-content p {
  font-weight: 500;
}
.blog-details-content .blog-details-img img {
  width: 100%;
}
.blog-details-content .details-bottom-content {
  margin-bottom: 40px;
}
.blog-details-content .details-bottom-content .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.layout-social-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid var(--pb-color-border-1);
  margin-bottom: 90px;
}
.layout-social-box .box-left {
  display: flex;
  align-items: center;
}
.layout-social-box .box-left ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
.layout-social-box .box-left ul li:not(:last-of-type) {
  margin-right: 10px;
}
.layout-social-box .box-left ul li a {
  background-color: var(--pb-color-grey-1);
  font-family: var(--pb-ff-heading);
  color: var(--pb-color-text-body);
  font-size: 16px;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 5px;
}
.layout-social-box .box-left ul li a:hover {
  background-color: var(--pb-color-theme-primary);
  color: var(--pb-color-common-white);
}
.layout-social-box .box-right {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.layout-social-box .box-right .share {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.layout-social-box .box-right .social-list {
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.layout-social-box .box-right .social-list li a {
  background-color: transparent;
  font-size: 16px;
  color: var(--pb-color-heading-primary);
  width: 40px;
  height: 40px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--pb-color-border-1);
}
.layout-social-box .box-right .social-list li a:hover {
  background-color: #0866FF;
  color: var(--pb-color-common-white);
  border: 1px solid transparent;
}
.layout-social-box .box-right .social-list li:nth-child(2):hover a {
  background-color: #FAAC52;
}
.layout-social-box .box-right .social-list li:nth-child(3):hover a {
  background-color: #FAAC52;
}
.layout-social-box .box-right .social-list li:nth-child(4):hover a {
  background-color: #EE2A7B;
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-item {
  border: 1px solid var(--pb-color-border-1);
  padding: 40px;
}
.contact-item .icon {
  background-color: rgba(254, 86, 36, 0.1);
  font-size: 25px;
  color: var(--pb-color-theme-primary);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.contact-item .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.contact-item .number {
  font-family: var(--pb-ff-heading);
  color: var(--pb-color-heading-primary);
  font-size: 25px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.contact-item .contact-btn {
  background-color: var(--pb-color-grey-1);
  font-family: var(--pb-ff-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 20px;
  color: var(--pb-color-heading-primary);
}
.contact-item .contact-btn:hover {
  background-color: var(--pb-color-theme-primary);
  color: var(--pb-color-common-white);
}
.contact-item.item-2 {
  background-color: #000;
}
.contact-item.item-2 .header {
  color: var(--pb-color-common-white);
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.contact-item.item-2 .contact-list {
  list-style: none;
}
.contact-item.item-2 .contact-list li {
  color: var(--pb-color-common-white);
  font-family: var(--pb-ff-heading);
  font-size: 16px;
  font-weight: 500;
}
.contact-item.item-2 .contact-list li span {
  font-size: 16px;
  font-family: var(--pb-ff-body);
  display: block;
  font-weight: 400;
}
.contact-item.item-2 .contact-list li a {
  font-size: 16px;
  font-family: var(--pb-ff-body);
  display: block;
  font-weight: 400;
}
.contact-item.item-2 .contact-list li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper {
  margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Page Header CSS
----------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.page-header-content {
  padding: 242px 0 182px;
}
@media only screen and (max-width: 991px) {
  .page-header-content {
    padding: 100px 0 100px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-content {
    padding-left: 20px;
  }
}
.page-header-content .title {
  color: var(--pb-color-common-white);
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 40px;
  }
}
.page-header-content .sub-title {
  color: var(--pb-color-common-white);
  margin-bottom: 0;
}
.page-header-content .sub-title a {
  font-size: 16px;
  font-weight: 500;
}
.page-header-content .sub-title a:hover {
  color: var(--pb-color-theme-primary);
}
.page-header-content .sub-title .home {
  position: relative;
  margin-right: 45px;
}
.page-header-content .sub-title .home:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  color: var(--pb-color-common-white);
  font-size: 12px;
  content: "\f054";
  position: absolute;
  top: 60%;
  right: -24px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* !END: Theme Page Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 60px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-section .hero-shapes .shape {
  background: var(--pb-color-theme-secondary);
  height: 300px;
  width: 300px;
  position: absolute;
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
}
@media (max-width: 1170px) {
  .hero-section .hero-shapes .shape {
    height: 250px;
    width: 250px;
    bottom: -125px;
    left: -125px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-shapes .shape {
    height: 200px;
    width: 200px;
    bottom: -100px;
    left: -100px;
  }
}
.hero-section .hero-shapes .shape.top-shape {
  background: linear-gradient(81deg, #E8411D 0%, #FAAC52 100%);
  bottom: auto;
  left: auto;
  top: -125px;
  right: -125px;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-shapes .shape.top-shape {
    top: -100px;
    right: -100px;
  }
}

.hero-section {
  position: relative;
}
.hero-content {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 630px;
  width: 100%;
}
@media (max-width: 1170px) {
  .hero-section .title {
    font-size: 58px;
    max-width: 490px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .title {
    font-size: 54px;
    max-width: 425px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .title {
    font-size: 40px;
    max-width: 315px;
  }
}
.hero-section .title .shape-text {
  position: relative;
}
.hero-section .title .shape-text .shape {
  position: absolute;
  top: -8px;
  right: -43px;
}
@media only screen and (max-width: 767px) {
  .hero-section .title .shape-text .shape {
    top: -25px;
    right: -40px;
  }
}
.hero-section p {
  max-width: 515px;
  width: 100%;
  margin-bottom: 35px;
}
.hero-section .shapes .round-shape {
  position: absolute;
  bottom: -135px;
  right: 20%;
  transform: translateX(50%);
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@media only screen and (max-width: 991px) {
  .hero-section .shapes .round-shape {
    display: none;
  }
}
.hero-section .shapes .star {
  position: absolute;
  bottom: 40px;
  right: 0;
}
@media only screen and (max-width: 991px) {
  .hero-section .shapes .star {
    right: auto;
    left: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .shapes .star {
    left: 50%;
  }
}

.hero-thumb {
  position: relative;
  z-index: 1;
  margin-left: 80px;
  margin-bottom: 50px;
}
@media (max-width: 1170px) {
  .hero-thumb {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-thumb {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}
.hero-thumb .shapes .shape {
  position: absolute;
  z-index: -1;
}
.hero-thumb .shapes .shape.hero-shape-1 {
  height: 520px;
  width: 520px;
  bottom: -47px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1170px) {
  .hero-thumb .shapes .shape.hero-shape-1 {
    height: 450px;
    width: 450px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-thumb .shapes .shape.hero-shape-1 {
    height: 520px;
    width: 520px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-thumb .shapes .shape.hero-shape-1 {
    width: 100%;
    height: 100%;
  }
}
.hero-thumb .shapes .shape.hero-shape-2 {
  bottom: 0;
  left: -30px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero-thumb .shapes .shape.hero-shape-2 {
    display: none;
  }
}
.hero-thumb .shapes .shape.hero-shape-3 {
  top: 120px;
  right: 10px;
  z-index: -5;
}
@media (max-width: 1170px) {
  .hero-thumb .shapes .shape.hero-shape-3 {
    top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-thumb .shapes .shape.hero-shape-3 {
    display: none;
  }
}
.hero-thumb .hero-counter {
  background-color: var(--pb-color-common-white);
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: -30px;
  top: 45%;
  transform: translateY(-50%);
  animation: hero-anim 2s infinite linear alternate-reverse;
}
@media only screen and (max-width: 767px) {
  .hero-thumb .hero-counter {
    left: 10px;
  }
}
.hero-thumb .hero-counter .counter-content {
  text-align: left;
}
.hero-thumb .hero-counter .counter-content .title {
  font-size: 30px;
  margin-bottom: 0;
}
.hero-thumb .hero-counter .counter-content .title .odometer-auto-theme {
  font-family: inherit;
}
.hero-thumb .hero-counter .counter-content .title .odometer-digit-spacer {
  width: 18px;
}
.hero-thumb .hero-counter .counter-content p {
  color: var(--pb-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

@-webkit-keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-moz-keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@-ms-keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes hero-anim {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-img {
  position: relative;
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1170px) {
  .hero-img {
    max-width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-img {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .hero-img img {
    width: 100%;
  }
}
.hero-img .line {
  height: 423px;
  position: absolute;
  top: 110px;
  right: -30px;
}
@media (max-width: 1170px) {
  .hero-img .line {
    top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-img .line {
    display: none;
  }
}
.hero-img .hero-counter {
  background-color: var(--pb-color-common-white);
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  width: 100%;
}
.hero-img .hero-counter .thumb-list {
  display: flex;
  align-items: center;
  list-style: none;
}
.hero-img .hero-counter .thumb-list li:not(:first-of-type) {
  margin-left: -20px;
}
.hero-img .hero-counter .thumb-list li img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
}
.hero-img .hero-counter .counter-content {
  text-align: left;
}
.hero-img .hero-counter .counter-content .title {
  font-size: 30px;
  margin-bottom: 0;
}
.hero-img .hero-counter .counter-content .title .odometer-auto-theme {
  font-family: inherit;
}
.hero-img .hero-counter .counter-content .title .odometer-digit-spacer {
  width: 18px;
}
.hero-img .hero-counter .counter-content p {
  color: var(--pb-color-text-body);
  font-size: 16px;
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 0;
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.about-img {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .about-img .img {
    width: 100%;
  }
}
.about-img .shape {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about-img .about-counter {
  background-color: var(--pb-color-common-white);
  filter: drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.05));
  padding: 20px 45px;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  right: 20%;
  animation: about-anim 2s infinite linear alternate-reverse;
}
@media only screen and (max-width: 767px) {
  .about-img .about-counter {
    padding: 20px;
  }
}
.about-img .about-counter .counter-icon {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.about-img .about-counter .counter-icon .icon {
  background-color: var(--pb-color-theme-primary);
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-img .about-counter .counter-icon .title {
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 700;
}
.about-img .about-counter .counter-icon .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.about-img .about-counter .counter-icon .title .odometer-auto-theme .odometer-digit-spacer {
  width: 32px;
}
.about-img .about-counter p {
  color: var(--pb-color-heading-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.about-content {
  position: relative;
}
.about-content .shape {
  position: absolute;
  right: 20%;
  bottom: 5%;
}
.about-content .section-heading .section-title {
  margin-bottom: 15px;
}
.about-content .section-heading p {
  max-width: 500px;
  width: 100%;
}
.about-content .about-list {
  list-style: none;
  margin-bottom: 30px;
}
.about-content .about-list li {
  color: var(--pb-color-text-body);
  font-size: 16px;
  font-weight: 500;
}
.about-content .about-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.about-content .about-list li i {
  font-size: 14px;
  color: var(--pb-color-theme-primary);
  margin-right: 10px;
}
.about-content .about-list li:nth-child(2) i {
  color: var(--pb-color-theme-secondary);
}
.about-content .about-list li:nth-child(3) i {
  color: var(--pb-color-gradient-2);
}

@-webkit-keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-ms-keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@keyframes about-anim {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
  }
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Skill CSS
----------------------------------------*/
.skill-content .section-heading {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .skill-content .section-heading {
    margin-bottom: 30px;
  }
}
.skill-content .section-heading .section-title {
  margin-bottom: 15px;
}
.skill-content .section-heading p {
  max-width: 500px;
  width: 100%;
}

.skill-img img {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .skill-wrap {
    flex-direction: column-reverse;
  }
}

/* !END: Theme Skill CSS */
/**----------------------------------------
START: Theme Counter CSS
----------------------------------------*/
.counter-section {
  position: relative;
  z-index: 1;
}
.counter-section .bg-color {
  background-color: var(--pb-color-grey-1);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.counter-wrap {
  background: var(--pb-color-gradient-2);
  padding: 60px 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  .counter-wrap {
    padding: 40px;
  }
}

.counter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.counter-item .counter-icon {
  width: 60px;
}
.counter-item .counter-icon img {
  width: 60px;
}
.counter-item .counter-content {
  margin-top: -10px;
}
.counter-item .counter-content .title {
  color: var(--pb-color-common-white);
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 1170px) {
  .counter-item .counter-content .title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-item .counter-content .title {
    justify-content: center;
  }
}
.counter-item .counter-content .title .odometer-auto-theme {
  font-family: inherit;
}
.counter-item .counter-content .title .odometer-auto-theme .odometer-digit-spacer {
  padding-right: 2px;
}
.counter-item .counter-content p {
  color: var(--pb-color-common-white);
  margin-bottom: 0;
  letter-spacing: 0.3px;
}
@media (max-width: 1170px) {
  .counter-item .counter-content p {
    font-size: 14px;
  }
}

/* !END: Theme Counter CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.project-section {
  position: relative;
  z-index: 1;
}
.project-section .bg-color {
  background-color: var(--pb-color-common-white);
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .project-section .bg-color {
    height: 15%;
  }
}
.project-section .shapes .shape {
  position: absolute;
  top: 20%;
  left: 10%;
}
@media (max-width: 1170px) {
  .project-section .shapes .shape {
    left: 5%;
  }
}
@media only screen and (max-width: 991px) {
  .project-section .shapes .shape {
    top: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .project-section .shapes .shape {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .project-section .shapes .shape.shape-1 {
    display: none;
  }
}
.project-section .shapes .shape.shape-2 {
  top: 25%;
  left: auto;
  right: 10%;
}
@media (max-width: 1170px) {
  .project-section .shapes .shape.shape-2 {
    right: 5%;
  }
}
@media only screen and (max-width: 991px) {
  .project-section .shapes .shape.shape-2 {
    top: 10%;
  }
}

.project-details-content .content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}
.project-details-content .content-top .title {
  font-size: 54px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .project-details-content .content-top .title {
    font-size: 32px;
  }
}
.project-details-content .content-top p {
  max-width: 630px;
  width: 100%;
  margin-bottom: 0;
}
.project-details-content .content-item .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}
.project-details-content .details-list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 60px;
  margin-bottom: 40px;
}
.project-details-content .details-list-wrap ul li {
  color: var(--pb-color-text-body);
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}
.project-details-content .details-list-wrap ul li i {
  color: var(--pb-color-theme-secondary);
  margin-right: 10px;
}
.project-details-content .details-img-wrap {
  margin-bottom: 40px;
}
.project-details-content .details-img-wrap .details-img-thumb img {
  width: 100%;
}
.project-details-content .layout-social-box {
  margin-top: 40px;
  margin-bottom: 0;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.testi-info {
  padding-right: 20px;
}
@media only screen and (max-width: 991px) {
  .testi-info {
    padding-right: 0;
  }
}
.testi-info .section-heading .section-title {
  margin-bottom: 20px;
}
.testi-info .section-heading .section-title span:before {
  bottom: -3px;
}
.testi-info .section-heading p {
  max-width: 500px;
  width: 100%;
}

.testi-items {
  padding-top: 10px;
  padding-bottom: 40px;
  padding-left: 20px;
}
@media only screen and (max-width: 991px) {
  .testi-items {
    padding-left: 0;
  }
}

.testi-item {
  background-color: var(--pb-color-common-white);
  position: relative;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 40px;
}
.testi-item:not(:last-of-type) {
  margin-bottom: 50px;
}
.testi-item .client-thumb {
  position: absolute;
  top: -10px;
  left: -10px;
}
.testi-item .client-thumb img {
  width: 120px;
  height: 120px;
}
.testi-item .quote {
  position: absolute;
  top: 40px;
  right: 40px;
}
@media only screen and (max-width: 767px) {
  .testi-item .quote {
    display: none;
  }
}
.testi-item .testi-content .name {
  padding-left: 110px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 45px;
}
.testi-item .testi-content .name span {
  color: var(--pb-color-text-body);
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.testi-item .testi-content p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .testi-item .testi-content p {
    font-size: 16px;
  }
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme Request CSS
----------------------------------------*/
.request-section {
  position: relative;
  z-index: 1;
}
.request-section .bg-color {
  background-color: var(--pb-color-common-white);
  width: 100%;
  height: 130px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .request-section .bg-color {
    display: none;
  }
}

.request-content {
  background-color: var(--pb-color-common-white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .request-content {
    padding: 40px 20px;
  }
}
.request-content .shape {
  position: absolute;
  top: 0;
  left: -150px;
}
@media only screen and (max-width: 767px) {
  .request-content .shape {
    display: none;
  }
}
.request-content .section-heading .section-title {
  font-size: 50px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .request-content .section-heading .section-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .request-content .section-heading .section-title {
    font-size: 28px;
  }
}

.request-form .form-group .form-control {
  background-color: var(--pb-color-grey-1);
  font-size: 16px;
  box-shadow: none;
  padding: 23px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 20px;
}
.request-form .form-group .form-control::-webkit-input-placeholder {
  color: var(--pb-color-text-body);
  font-weight: 500;
}
.request-form .form-group .form-control:-moz-placeholder {
  color: var(--pb-color-text-body);
  font-weight: 500;
}
.request-form .form-group .form-control::-moz-placeholder {
  color: var(--pb-color-text-body);
  font-weight: 500;
}
.request-form .form-group .form-control:-ms-input-placeholder {
  color: var(--pb-color-text-body);
  font-weight: 500;
}
.request-form .form-group .form-control.select-control {
  color: var(--pb-color-text-body);
  font-weight: 500;
  line-height: inherit;
  height: inherit;
  float: none;
}
.request-form .form-group .form-control.nice-select .list {
  width: 100%;
  border-radius: 20px;
}
.request-form .form-group .form-control.nice-select .list li {
  border: none;
}
.request-form .form-group .form-control.nice-select:after {
  top: 46%;
  width: 8px;
  height: 8px;
  border-color: var(--pb-color-heading-primary);
  border-bottom: 1px solid var(--pb-color-heading-primary);
  border-right: 1px solid var(--pb-color-heading-primary);
  right: 20px;
}
.request-form .submit-btn {
  margin-top: 10px;
}
.request-form .submit-btn .pb-primary-btn {
  color: var(--pb-color-common-white);
  padding: 25px 30px;
  border: 1px solid transparent;
  -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;
  transition: all 0.3s ease-in-out;
  border-radius: 999px;
  border: 1px solid transparent;
}
.request-form .submit-btn .pb-primary-btn:before {
  background: var(--pb-color-gradient-2);
  height: 100%;
  -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;
  transition: all 0.3s ease-in-out;
}
.request-form .submit-btn .pb-primary-btn:hover {
  color: var(--pb-color-text-body);
  border: 1px solid var(--pb-color-common-purple);
}
.request-form .submit-btn .pb-primary-btn:hover:before {
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  .request-img img {
    width: 100%;
  }
}

/* !END: Theme Request CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.gallary-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  column-gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.gallary-top .section-heading {
  margin-bottom: 0;
}
.gallary-top .gallary-right p {
  max-width: 520px;
  width: 100%;
  margin-bottom: 20px;
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .footer-bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .footer-wrap {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .site-logo {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .site-logo {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-widget .section-heading {
    margin-bottom: 20px;
  }
}
.footer-widget .section-heading .section-title {
  font-size: 48px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .section-heading .section-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget .section-heading .section-title {
    font-size: 30px;
  }
}
.footer-widget .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
}
.footer-widget .footer-links li:not(:last-of-type) {
  margin-right: 20px;
}
.footer-widget .footer-links li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--pb-color-heading-primary);
}
.footer-widget .footer-links li a:hover {
  color: var(--pb-color-theme-primary);
}
.footer-widget .widget-title {
  color: var(--pb-color-heading-primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .widget-title {
    margin-bottom: 20px;
  }
}
.footer-widget .desc {
  max-width: 400px;
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .desc {
    margin-bottom: 20px;
  }
}
.footer-widget .footer-form {
  max-width: 400px;
  width: 100%;
  position: relative;
}
.footer-widget .footer-form .form-control {
  background-color: var(--pb-color-grey-1);
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  padding-left: 20px;
  padding-right: 60px;
  border: 1px solid #FAAC52;
  border-radius: 30px;
}
.footer-widget .footer-form .submit {
  background-color: #FAAC52;
  color: var(--pb-color-common-white);
  height: 55px;
  width: 55px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 0 30px 30px 0;
  -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;
  transition: all 0.3s ease-in-out;
  border-left: 1px solid transparent;
}
.footer-widget .footer-form .submit i {
  margin-right: 5px;
}
.footer-widget .footer-form .submit:hover {
  background-color: transparent;
  border-left: 1px solid #FAAC52;
  color: var(--pb-color-heading-primary);
}
.footer-widget .footer-social {
  display: flex;
  align-items: center;
  list-style: none;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .footer-social {
    margin-top: 20px;
  }
}
.footer-widget .footer-social li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-widget .footer-social li a {
  color: var(--pb-color-heading-primary);
  height: 35px;
  width: 35px;
  font-size: 14px;
  border: 1px solid #E8411D;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-widget .footer-social li a:hover {
  background-color: #FAAC52;
  color: var(--pb-color-common-white);
  border: 1px solid #FAAC52;
}
.footer-widget .footer-social li:nth-child(2):hover a {
  background-color: #FAAC52;
  border: 1px solid #FAAC52;
}
.footer-widget .footer-social li:nth-child(3):hover a {
  background-color: #FAAC52;
  border: 1px solid #FAAC52;
}
.footer-widget .footer-social li:nth-child(4):hover a {
  background-color: #EB044F;
  border: 1px solid #EB044F;
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-widget .footer-list li a {
  font-size: 16px;
  font-weight: 500;
}
.footer-widget .footer-list li a i {
  font-size: 14px;
  color: var(--pb-color-heading-primary);
  margin-right: 10px;
}

.copyright-area {
  padding: 25px 0;
  border-top: 1px solid var(--pb-color-border-1);
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media only screen and (max-width: 991px) {
  .copyright-content {
    justify-content: center;
  }
}
.copyright-content p {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .copyright-content p {
    font-size: 14px;
    text-align: center;
  }
}
.copyright-content .copy-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .copyright-content .copy-list {
    justify-content: center;
  }
}
.copyright-content .copy-list li:not(:last-of-type) {
  margin-right: 30px;
}

/* !END: Theme Footer CSS */