@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Busicox - Digital Agency WordPress Theme 
    Description: Busicox - Digital Agency WordPress Theme 
    Version: 1.0

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

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

    01. common CSS
    02. header CSS
    03. hero CSS
    04. about CSS
    05. service CSS
    06. team CSS
    07. blog CSS
    08. portfolio CSS
    09. clients CSS
    10. testimonial CSS
    11. page-title CSS
    12. experience CSS
    13. features CSS
    14. creativity CSS
    15. pagination CSS
    16. pricing CSS
    17. contact CSS
    18. error CSS
    19. faq CSS
    20. menu-search CSS
    21. body-color CSS
    22. footer CSS


**********************************************/
/*


*/
/*----------------------------------------
    01. common CSS
----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-text);
  line-height: 26px;
}

a {
  text-decoration: none;
}

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

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

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

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

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

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

button:hover {
  cursor: pointer;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
  color: var(--clr-common-heading);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

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

li {
  list-style: none;
}

p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-text);
  margin-bottom: 15px;
  line-height: 26px;
}

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

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

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

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: var(--clr-common-placeholder);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--clr-common-placeholder);
  font-size: 14px;
  opacity: 1;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

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

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

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

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

.footer-bg {
  background: var(--clr-bg-footer);
}

/*--
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: var(--clr-common-white) !important;
}

.white-color {
  color: var(--clr-common-white);
}

.theme-color {
  color: var(--clr-common-black) !important;
}

.black-color {
  color: var(--clr-common-black);
}

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

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

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

/* link btn */
.link-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-common-black);
  text-transform: uppercase;
  padding-right: 15px;
}
.link-btn i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:first-child {
  left: -100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn i:last-child {
  right: 0;
}
.link-btn:hover {
  color: var(--clr-common-black);
}
.link-btn:hover i:first-child {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn:hover i:last-child {
  right: -100%;
  visibility: hidden;
  opacity: 0;
}

.link-btn-2 {
  position: relative;
  font-size: 14px;
  color: var(--clr-common-black);
  font-weight: 500;
  padding-right: 22px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif;
}
.link-btn-2 i {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  font-size: 12px;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: var(--clr-common-black);
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.pink {
  color: var(--clr-common-black);
}
.link-btn-2.pink:hover {
  color: var(--clr-common-black);
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 84px;
  text-align: center;
  background-color: var(--clr-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: var(--clr-common-black);
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.pulse-btn i {
  padding-left: 2px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.border-left {
  position: relative;
}
.border-left:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #eaebee;
  left: 0;
  top: 0;
}

:root {
  /**
     @color declaration
     */
  --clr-common-white: #fff;
  --clr-common-black: #000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #0F0F0F;
  --clr-common-text: #6B6B6B;
  --clr-common-border: #F2F2F3;
  --clr-common-placeholder: #6B6B6B;
  --clr-body-heading: #161616;
  --clr-body-heading2: #232323;
  --clr-body-text: #6A6A6A;
  --clr-body-text2: #878787;
  --clr-body-text3: #787878;
  --clr-theme-1: #F98541;
  --clr-theme-2: #fb5050;
  --clr-bg-white: #ffffff;
  --clr-bg-gray: #F6F6F6;
  --clr-bg-black: #000;
  --clr-bg-footer: #17181C;
  --clr-bg-gray2: #EFEFEF;
  --clr-border-1: #474747;
  --clr-border-2: #757575;
  --clr-border-3: #303030;
  --clr-border-4: #E5E5E5;
  --clr-border-5: #D4D4D4;
  --clr-border-6: #DFDFDF;
}

:root .active-dark {
  /**
      @color declaration
      */
  --clr-common-white: #fff;
  --clr-common-black: #000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #ffffff;
  --clr-common-text: #A2A2A2;
  --clr-common-border: #27292A;
  --clr-common-placeholder: #A2A2A2;
  --clr-theme-1: #F98541;
  --clr-theme-2: #fb5050;
  --clr-bg-white: #1C1E22;
  --clr-bg-gray: #F6F6F6;
  --clr-bg-black: #000;
  --clr-bg-footer: #17181C;
}

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

.fill-btn {
  font-size: 18px;
  color: var(--clr-common-white);
  font-weight: 400;
  background: var(--clr-theme-1);
  border: 1px solid var(--clr-theme-1);
  height: 60px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  line-height: 58px;
  border-radius: 5px;
  padding: 0 50px;
  padding-top: 4px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-family: "Teko", sans-serif !important;
  letter-spacing: 1.05px;
}
.fill-btn:hover {
  color: var(--clr-common-heading);
  background: var(--clr-bg-white);
}
.fill-btn i {
  line-height: 1;
}

.border-btn {
  font-size: 16px;
  color: var(--clr-common-heading);
  border: 1px solid var(--clr-common-heading);
  padding: 0 40px;
  height: 50px;
  border-radius: 5px;
  display: inline-block;
  line-height: 48px;
  font-weight: 600;
}
.border-btn:hover {
  color: var(--clr-common-white);
  background: var(--clr-common-heading);
}

.section-title {
  font-size: 65px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .section-title {
    font-size: 35px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title br {
    display: none;
  }
}

.hr1 {
  border-bottom: 1px solid #F2F2F3;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 30px;
}

@media (min-width: 1400px) {
  .container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1200px;
  }
}
.icon-btn {
  height: 50px;
  width: 50px;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  display: inline-block;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  font-size: 22px;
}

.icon-btn:hover {
  background: var(--clr-common-heading);
}

.icon-btn-border {
  height: 50px;
  width: 50px;
  background: transparent;
  color: var(--clr-common-heading);
  border: 1px solid var(--clr-common-heading);
  display: inline-block;
  text-align: center;
  line-height: 48px;
  border-radius: 5px;
  font-size: 22px;
}

.icon-btn-border:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.header-sticky {
  position: fixed;
  top: 0;
  background: var(--clr-bg-footer);
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  border: none;
}

/*----------------------------------------
    02. header CSS
----------------------------------------*/
.main-menu {
  display: inline-block;
}
.main-menu ul {
  display: flex;
  gap: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul {
    gap: 30px;
  }
}
.main-menu ul li {
  display: inline-block;
  margin: 0px 0px;
  position: relative;
}
.main-menu ul li a {
  font-size: 18px;
  color: var(--clr-common-white);
  text-transform: uppercase;
  display: inline-block;
  padding: 40px 0;
  line-height: 20px;
  font-weight: 500;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.2px;
}
.main-menu ul li .sub-menu {
  background: var(--clr-common-white) none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 240px;
  z-index: 9;
  border-top: 3px solid var(--clr-theme-1);
  text-align: left;
  padding: 15px 0;
  flex-direction: column;
  gap: 0;
}
.main-menu ul li .sub-menu .sub-menu {
  left: 100%;
  top: 100%;
}
.main-menu ul li .sub-menu li {
  display: block;
  margin: 0px;
  padding: 8px 25px 8px 25px;
}
.main-menu ul li .sub-menu li a {
  padding: 0px;
  display: block;
  color: var(--clr-common-heading);
  position: relative;
  font-weight: 400;
}
.main-menu ul li .sub-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--clr-common-heading);
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > a {
  color: var(--clr-theme-1);
  padding-left: 5px;
}
.main-menu ul li .sub-menu li:hover > a:before {
  width: 100%;
  left: 0;
  right: auto;
}
.main-menu ul li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li:hover > .sub-menu li:hover > .sub-menu {
  top: 0;
}
.main-menu ul li:hover.menu-item-has-children::after {
  color: var(--clr-theme-1);
  opacity: 1;
  visibility: visible;
}
.main-menu ul li.menu-item-has-children {
  position: relative;
}
.main-menu ul li.menu-item-has-children:after {
  content: "";
  font-size: 12px;
  color: var(--clr-common-white);
  font-family: "Font Awesome 5 Pro";
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-left: 2px;
  display: none;
}

/* bar-icon style start */
.bar-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--clr-theme-1);
  display: inline-block;
}

.bar-icon span:nth-child(2) {
  margin-left: 9px;
  transition: 0.3s;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0;
}

/* bar-icon style end */
.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.3;
  visibility: visible;
}

.offcanvas-overlay-white {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-white);
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay-white.overlay-open {
  opacity: 0;
  visibility: visible;
}

.side-info-close {
  background: none;
  border: 0;
  color: var(--clr-common-heading);
  font-size: 20px;
  padding: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.side-info {
  background: var(--clr-common-white);
  border-left: 1px solid var(--clr-common-border);
  height: 100%;
  position: fixed;
  z-index: 99999;
  right: -100%;
  top: 0;
  width: 365px;
  padding: 45px 35px 45px 45px;
  transition: 0.6s;
  overflow-y: scroll;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .side-info {
    width: 300px;
    padding: 15px 25px;
  }
}

.side-info.info-open {
  right: 0;
}

.side-info-logo img {
  height: 40px;
}

.offset-widget .filter-search-input {
  position: relative;
}
.offset-widget .filter-search-input input {
  background: transparent;
  border-radius: 3px;
  border: 1px solid var(--clr-common-heading);
  color: var(--clr-common-heading);
  height: 50px;
  padding: 0 15px;
  padding-right: 15px;
  padding-right: 30px;
  outline: none;
  width: 100%;
}
.offset-widget .filter-search-input button {
  position: absolute;
  right: 15px;
  top: 13px;
}
.offset-widget p {
  color: #9ba3af;
}
.offset-widget .header-contact .irc-icon {
  color: var(--clr-common-heading);
}
.offset-widget .header-contact .irc-content span {
  color: var(--clr-common-heading);
}
.offset-widget .header-contact .irc-content p {
  color: var(--clr-common-heading);
}

.info-widget .fill-btn:hover {
  background: #fff;
  color: #0f0f0f;
}

/* mean menu */
div.mean-container .mean-bar {
  background: transparent;
}
div.mean-container .mean-nav {
  background: none;
  margin-bottom: 40px;
  overflow: hidden;
  margin-top: 40px;
}
div.mean-container .mean-nav > ul {
  display: block !important;
}
div.mean-container .mean-nav ul li a {
  width: 100%;
  color: var(--clr-common-heading);
  border-top: 1px solid var(--clr-common-border);
  font-size: 16px;
  text-transform: none;
  opacity: 1;
}
div.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}
div.mean-container .mean-nav ul li a i {
  display: none;
}
div.mean-container .mean-nav ul li a.mean-expand {
  height: 28px;
  border: none;
}
div.mean-container .mean-nav ul li a.mean-expand::before {
  position: absolute;
  content: "+";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "-";
}
div.mean-container a.meanmenu-reveal {
  display: none !important;
}

.header1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  border-bottom: 1px solid #575757;
}

.header-main-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-main1 {
    padding: 20px 0;
  }
}

.header-search {
  position: relative;
}
.header-search button {
  font-size: 20px;
  color: var(--clr-common-white);
  line-height: 30px;
  height: 30px;
}
.header-search:after {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(100% + 70px);
  right: -30px;
  top: -35px;
  background: #575757;
}

.header-contact .irc-icon {
  font-size: 38px;
  color: var(--clr-common-white);
}
.header-contact .irc-content p {
  font-size: 18px;
  color: var(--clr-common-white);
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  margin-bottom: 0;
}
.header-contact .irc-content span {
  font-size: 26px;
  font-weight: 500;
  color: var(--clr-common-white);
  font-family: "Teko", sans-serif;
  line-height: 1;
}
.header-contact .irc-content span a:hover {
  color: var(--clr-theme-1);
}
.header-contact .irc-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-main-right-header1 {
  display: flex;
  gap: 60px;
  align-items: center;
}

.header1-logo img {
  padding: 20px 0px;
  max-width: 202px !important;
}

.admin-bar .header1 {
  top: 32px;
}

.admin-bar .header-sticky {
  top: 32px;
}
@media (max-width: 600px) {
  .admin-bar .header-sticky {
    top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header1-logo img {
    max-width: 150px !important;
    padding: 0;
  }
}

/*----------------------------------------
    03. hero CSS
----------------------------------------*/
.banner-800 {
  min-height: 800px;
  position: relative;
}

.banner-900 {
  min-height: 900px;
  position: relative;
}

.banner-950 {
  min-height: 950px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-950 {
    min-height: 850px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-950 {
    min-height: 800px;
  }
}
@media (max-width: 450px) {
  .banner-950 {
    min-height: 700px;
  }
}

.hero-content p {
  font-size: 28px;
  font-weight: 500;
  color: var(--clr-common-white);
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .hero-content p {
    font-size: 22px;
  }
}

.hero-content {
  text-align: center;
}

.hero-main-title {
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--clr-common-white);
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-main-title {
    font-size: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-main-title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-main-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-main-title {
    font-size: 60px;
  }
}
@media (max-width: 450px) {
  .hero-main-title {
    font-size: 44px;
  }
}

.hero-btn .fill-btn:hover {
  border-color: var(--clr-common-white);
  background: var(--clr-common-white);
  color: var(--clr-common-heading);
}

.hero-area {
  position: relative;
  z-index: 5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.slide-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #1C1E22;
  opacity: 0.6;
  z-index: -1;
}

.hero-shape1 {
  position: absolute;
  right: 88%;
  top: 0px;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-shape1 {
    display: none;
  }
}

.hero-shape2 {
  position: absolute;
  right: 88%;
  top: 140px;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-shape2 {
    display: none;
  }
}

.hero-shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-shape3 {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-shape3 {
    display: none;
  }
}
.hero-shape3 img {
  width: 100%;
}

.hero-play-btn {
  position: absolute;
  bottom: 42%;
  left: 45%;
  width: 54%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-play-btn {
    width: 23%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-play-btn {
    bottom: 37%;
  }
}

.hero-play-btn a {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-play-btn a {
    gap: 30px;
  }
}
.hero-play-btn a:hover .hero-play-icon {
  color: var(--clr-common-white);
}
.hero-play-btn a:hover .hero-play-icon::after {
  background: var(--clr-theme-1);
}

.hero-play-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-common-white);
  font-family: "Teko", sans-serif;
  line-height: 20px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-play-text {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-play-text {
    display: none;
  }
}

.hero-play-icon {
  color: var(--clr-theme-1);
  position: relative;
  z-index: 2;
  width: 44%;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-play-icon {
    width: 100%;
  }
}
.hero-play-icon:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(0%, -42%);
  z-index: -1;
  background: var(--clr-common-white);
  width: 100%;
  padding-top: 121%;
  border-radius: 5px;
}
.hero-play-icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(20%, -39%);
  z-index: -1;
  background: #FFDBC5;
  width: 70%;
  padding-top: 85%;
  border-radius: 5px;
}

.slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}

.swiper-slide-active .slide-bg {
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  transform: scale(1.12);
}

.hero-shape2.fadeInLeft.animated {
  opacity: 0.1;
}

.hero-shapes img {
  max-width: inherit !important;
}

/*----------------------------------------
    04. about CSS
----------------------------------------*/
.about-img {
  margin-right: 0px;
  padding-bottom: 160px;
  position: relative;
  max-width: 540px;
}

.about-img1 {
  border-radius: 5px;
  width: 56%;
}

.about-img2 {
  border-radius: 5px;
  width: 42%;
  top: 40px;
  right: 0;
  position: absolute;
}

.about-img3 {
  border-radius: 5px;
  width: 42%;
  top: 50%;
  right: 0;
  position: absolute;
}

.about-quote {
  width: 360px;
  padding: 20px 28px;
  border-radius: 20px;
  background: var(--clr-bg-white);
  border: 3px solid var(--clr-theme-1);
  font-size: 18px;
  line-height: 28px;
  color: var(--clr-common-heading);
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .about-quote {
    width: auto;
    max-width: 360px;
  }
}
.about-quote span {
  font-weight: 700;
}
.about-quote::after {
  position: absolute;
  content: "";
  font-family: flaticon;
  font-size: 32px;
  width: 60px;
  left: 27px;
  top: -20px;
  background: var(--clr-bg-white);
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.about-content p {
  font-size: 18px;
  line-height: 28px;
}

.irc-item.about-point {
  display: flex;
  gap: 30px;
}
.irc-item.about-point .irc-icon {
  min-width: 70px;
  height: 70px;
  border-radius: 5px;
  background: #fff2eb;
  text-align: center;
  line-height: 80px;
  font-size: 40px;
  color: var(--clr-theme-1);
}
.irc-item.about-point .irc-content h4 {
  font-size: 22px;
  line-height: 27px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.irc-item.about-point .irc-content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}

.about-points .about-point:not(:last-child) {
  margin-bottom: 40px;
}

.counter-number {
  font-size: 100px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: var(--clr-theme-1);
  margin-bottom: -10px;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-number {
    font-size: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-number {
    font-size: 70px;
  }
}

.single-counter {
  text-align: center;
}

.counter-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--clr-common-text);
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}

.counter-area {
  padding-top: 0;
  padding-bottom: 105px;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -10px;
}
.counter-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #161920;
  opacity: 0;
  z-index: -1;
}

.counter-area2 {
  padding-top: 125px;
  padding-bottom: 190px;
}
.counter-area2:before {
  opacity: 0.6;
}

.counter-inner2 .counter-number {
  color: var(--clr-common-white);
}
.counter-inner2 .counter-text {
  color: var(--clr-common-white);
}

.cta-area {
  position: relative;
  z-index: 5;
  padding-top: 180px;
  padding-bottom: 160px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-btn .fill-btn:hover {
  border-color: var(--clr-common-white);
}

.cta-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0F0F0F;
  opacity: 0.5;
  z-index: -3;
}

.sq-border-1 {
  position: absolute;
  right: 79%;
  top: -190px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sq-border-1 {
    display: none;
  }
}

.sq-border-2 {
  position: absolute;
  right: 72%;
  top: -190px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sq-border-2 {
    right: 69%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sq-border-2 {
    display: none;
  }
}

.about-video-area {
  margin-top: -135px;
}

.about-video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-video-wrapper img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}
.about-video-wrapper:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0F0F0F;
  opacity: 0.45;
}

.play-btn {
  font-size: 20px;
  color: var(--clr-theme-1);
  height: 90px;
  width: 90px;
  display: inline-block;
  line-height: 90px;
  text-align: center;
  background: var(--clr-common-white);
  border-radius: 50%;
}
.play-btn:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}

.about-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.about-video-btn:before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  color: #5b8c51;
  z-index: -1;
  animation: video-ripple 2000ms ease-out infinite;
}

/* 35. ========= video-ripple ========== */
@keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@-webkit-keyframes video-ripple {
  0%, 35% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
/*----------------------------------------
    05. service CSS
----------------------------------------*/
.services-area {
  background: var(--clr-bg-footer);
}

.single-service {
  background: #1C1E22;
  padding: 52px 25px 52px 25px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: 0.3s;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .single-service {
    justify-content: center;
  }
}
.single-service:hover {
  background: var(--clr-theme-1);
}
.single-service:hover .service-icon svg * {
  fill: var(--clr-common-white);
}

.service-text h4 {
  font-size: 22px;
  line-height: 27px;
  text-transform: uppercase;
  color: var(--clr-common-white);
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.service-icon svg * {
  fill: var(--clr-theme-1);
}
.service-icon i {
  font-size: 50px;
  color: var(--clr-theme-1);
}

.single-service:hover .service-icon i {
  color: var(--clr-common-white);
}

.service-shape {
  position: absolute;
  top: 55%;
  left: -5px;
  transform: translateY(-50%);
}
.service-shape:before {
  width: 6px;
  height: 36px;
  border-radius: 3px;
  background: var(--clr-theme-1);
  position: absolute;
  content: "";
  transform: rotate(38deg);
  bottom: -10px;
}
.service-shape:after {
  width: 6px;
  height: 36px;
  border-radius: 3px;
  background: var(--clr-theme-1);
  position: absolute;
  content: "";
  transform: rotate(38deg);
  top: -10px;
}

.details-main-img {
  margin-bottom: 45px;
}
.details-main-img img {
  width: 100%;
}

.details-sub-heading {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-overview-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-overview-list li:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  color: var(--clr-theme-1);
  margin-right: 7px;
}

.details-img-bottom {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 45px;
}
.details-img-bottom img {
  width: calc((100% - 30px) / 2);
}

.sidebar-widget-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sidebar-widget {
  padding: 25px 30px 30px;
  background: var(--clr-bg-gray);
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (max-width: 450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-widget {
    padding: 25px 20px 30px;
  }
}

.sidebar-category-list li a {
  height: 60px;
  background: var(--clr-common-white);
  border-radius: 3px;
  width: 100%;
  display: inline-block;
  padding: 0 30px;
  line-height: 60px;
  position: relative;
}
@media (max-width: 450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-category-list li a {
    padding: 0 20px;
  }
}
.sidebar-category-list li a:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 3px;
  background: var(--clr-bg-gray);
  text-align: center;
  line-height: 25px;
  font-family: "Font Awesome 5 Pro";
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar-category-list li a:hover:after {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.sidebar-category-list li a.active {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.sidebar-category-list li a.active:after {
  background: var(--clr-common-white);
  color: var(--clr-theme-1);
}
.sidebar-category-list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-download-file .irc-content {
  line-height: 1;
}
.service-download-file .irc-content p {
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-common-white);
  margin-bottom: -3px;
}
.service-download-file .irc-content span {
  font-size: 12px;
  color: var(--clr-common-white);
  line-height: 1;
}
.service-download-file .irc-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-download-file ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget.downloadable-file {
  background: var(--clr-theme-1);
}
.sidebar-widget.downloadable-file .sidebar-widget-title {
  color: var(--clr-common-white);
}

.sidebar-widget.sidebar-support {
  background: var(--clr-common-heading);
}
.sidebar-widget.sidebar-support .sidebar-widget-title {
  color: var(--clr-common-white);
}
.sidebar-widget.sidebar-support p {
  color: #A2A2A2;
  margin-top: -5px;
  margin-bottom: 20px;
}
.sidebar-widget.sidebar-support .irc-content {
  line-height: 1;
}
.sidebar-widget.sidebar-support .irc-content span {
  font-size: 26px;
  font-weight: 400;
  color: var(--clr-common-white);
  font-family: "Teko", sans-serif;
}
.sidebar-widget.sidebar-support .irc-content span a:hover {
  color: var(--clr-theme-1);
}
.sidebar-widget.sidebar-support .irc-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.portfolio-feature-icon i {
  font-size: 50px;
  color: var(--clr-theme-1);
}

.portfolio-feature-single:hover .portfolio-feature-icon i {
  color: var(--clr-common-white);
}

/*----------------------------------------
    06. team CSS
----------------------------------------*/
.team-content p {
  max-width: 510px;
}

.team-thumb {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.team-thumb img {
  width: 100%;
}
.team-thumb .team-social {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.3s;
}

.team-social ul {
  display: inline-flex;
  gap: 22px;
  padding: 8px 29px;
  border-radius: 5px 5px 0 0;
  background: var(--clr-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-social ul {
    gap: 18px;
  }
}
.team-social ul li a {
  font-size: 15px;
  color: var(--clr-common-white);
}

.team-single:hover .team-thumb .team-social {
  bottom: 0;
}

.team-desc {
  text-align: center;
  padding: 20px 10px 0;
  margin-top: -5px;
}
.team-desc .member-name {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.team-desc .member-name a:hover {
  color: var(--clr-theme-1);
}
.team-desc .member-designation {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  line-height: 1;
}

.join-images img {
  width: 60px;
  height: 60px !important;
  object-fit: cover;
  object-position: top;
  border-radius: 50% !important;
  border: 4px solid var(--clr-common-white) !important;
  background: var(--clr-common-white);
}
.join-images a:not(:first-child) {
  margin-left: -20px;
}

.join-img-text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.join-text p {
  max-width: 225px;
  margin-bottom: 0;
}
.join-text p span {
  font-weight: 700;
  color: var(--clr-common-heading);
}

.team-details-area {
  background: var(--clr-bg-gray);
}

.team-profile-wrapper {
  background: var(--clr-common-white);
  border-radius: 5px;
  padding: 30px 30px 30px;
  margin-top: -50px;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .team-profile-wrapper {
    padding: 30px 20px 30px;
  }
}

.team-profile-main .team-thumb {
  border-radius: 5px;
  margin-bottom: 23px;
}
.team-profile-main .member-name {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: -6px;
}
.team-profile-main .member-designation {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  line-height: 1;
}
.team-profile-main .team-social {
  margin-top: 32px;
  margin-bottom: 34px;
}
.team-profile-main .team-social ul {
  background: none;
  padding: 0;
  gap: 20px;
  display: inline-flex;
  border-radius: 0;
}
.team-profile-main .team-social ul li a {
  color: #C1C5CE;
  border: 1px solid #E7E7E9;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
}
.team-profile-main .team-social ul li a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

.team-personal-info h4 {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}
.team-personal-info ul li span {
  width: 140px;
  display: inline-block;
  position: relative;
  color: var(--clr-common-heading);
}
.team-personal-info ul li span:after {
  content: ":";
  right: 25px;
  position: absolute;
}

.team-details-content h4 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 400;
}

.team-details-content > p {
  margin-bottom: 25px;
}

.team-details-content p span {
  color: var(--clr-common-heading);
}

.team-details-works {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.team-details-works > div {
  width: calc((100% - 30px) / 2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details-works > div {
    width: calc((100% - 0px) / 1);
  }
}
.team-details-works .portfolio-title {
  margin-bottom: 0;
}
@media (max-width: 450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-works .portfolio-title {
    font-size: 22px;
  }
}

.team-details-tab-nav {
  margin-bottom: 35px;
  margin-top: 40px;
}
.team-details-tab-nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  gap: 10px;
}
.team-details-tab-nav .nav-tabs .nav-link {
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: var(--clr-common-white);
  height: 50px;
  width: 140px;
  text-align: center;
  background: var(--clr-common-heading);
  border-radius: 3px;
  border: 0;
  line-height: 50px;
  padding: 0;
}
.team-details-tab-nav .nav-tabs .nav-link.active {
  background: var(--clr-theme-1);
}

/*----------------------------------------
    07. blog CSS
----------------------------------------*/
.blog-thumb {
  position: relative;
}
.blog-thumb img {
  width: 100%;
  transition: 0.5s;
}
.blog-thumb .blog-meta-date {
  font-size: 16px;
  font-family: "Teko", sans-serif;
  background: var(--clr-theme-1);
  padding: 11px 32px;
  display: inline-block;
  text-transform: uppercase;
  color: var(--clr-common-white);
  border-radius: 0 5px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-single {
  border-radius: 5px;
  overflow: hidden;
}
.blog-single:hover .blog-thumb img {
  transform: scale(1.03);
}

.blog-content {
  border: 1px solid #F2F2F3;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  background: #FBFBFB;
  padding: 30px 40px 30px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .blog-content {
    padding: 30px 20px 30px;
  }
}

.meta-item-icon {
  font-size: 16px;
  color: var(--clr-theme-1);
}

.blog-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
.blog-meta .meta-item {
  display: flex;
  gap: 10px;
  line-height: 1;
  align-items: center;
}

.meta-item-text {
  font-size: 16px;
  color: var(--clr-common-heading);
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
}

.blog-title {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .blog-title {
    font-size: 28px;
  }
}
.blog-title a:hover {
  color: var(--clr-theme-1);
}

.blog-main-area .meta-item-text {
  color: var(--clr-common-text);
}
.blog-main-area .blog-meta {
  gap: 40px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.blog-main-area .blog-title {
  font-size: 48px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-main-area .blog-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-main-area .blog-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-main-area .blog-title {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  .blog-main-area .blog-title {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .blog-main-area .blog-title {
    font-size: 26px;
  }
}
.blog-main-area .fill-btn {
  height: 50px;
  line-height: 48px;
  padding: 0 35px;
}
.blog-main-area .blog-content {
  padding: 50px 30px 30px;
  background: var(--clr-common-white);
}
@media (max-width: 450px) {
  .blog-main-area .blog-content {
    padding: 50px 20px 30px;
  }
}
.blog-main-area .blog-content p {
  margin-bottom: 40px;
}
.blog-main-area .author-meta .meta-item-img {
  width: 40px;
}
.blog-main-area .author-meta .meta-item-img img {
  width: 100%;
}
.blog-main-area .meta-item.author-meta {
  position: absolute;
  background: var(--clr-common-white);
  padding: 15px 20px;
  left: 30px;
  min-width: 200px;
  border-radius: 5px;
  top: -35px;
}

.sidebar-widget.sidebar-search-wrapper {
  padding: 0;
}

.sidebar-search {
  position: relative;
}
.sidebar-search input {
  width: 100%;
  height: 60px;
  border-radius: 3px;
  background: var(--clr-bg-gray);
  border: 0;
  padding: 0 130px 0 20px;
  outline: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .sidebar-search input {
    padding: 0 80px 0 20px;
  }
}
.sidebar-search button {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-common-white);
  display: flex;
  gap: 10px;
  height: 60px;
  padding: 0 25px;
  background: var(--clr-theme-1);
  line-height: 60px;
  align-items: center;
  border-radius: 3px;
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .sidebar-search button span {
    display: none;
  }
}

.sidebar-category-list-blog a {
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.sidebar-category-list-blog a:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: -4px;
  opacity: 0;
  visibility: hidden;
}
.sidebar-category-list-blog a:hover {
  padding-left: 14px;
  color: var(--clr-common-heading);
}
.sidebar-category-list-blog a:hover:before {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.sidebar-category-list-blog ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-blog-post ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-blog-post .blog-single {
  display: flex;
  gap: 20px;
  align-items: center;
}
.sidebar-blog-post .blog-thumb {
  width: 90px;
  height: 70px;
  border-radius: 5px;
  min-width: 90px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .sidebar-blog-post .blog-thumb {
    width: 70px;
    min-width: 70px;
  }
}
.sidebar-blog-post .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-blog-post .blog-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.2px;
  margin-bottom: 5px;
}
.sidebar-blog-post .blog-meta-date {
  font-size: 14px;
  line-height: 1;
}
.sidebar-blog-post .blog-content {
  background: transparent;
  padding: 0;
}

.sidebar-blog-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.sidebar-blog-tags a {
  height: 35px;
  border-radius: 3px;
  background: var(--clr-common-white);
  display: inline-block;
  padding: 0 10px;
  line-height: 35px;
  flex-grow: 1;
  text-align: center;
  max-width: 160px;
  white-space: nowrap;
}
.sidebar-blog-tags a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.sidebar-adv {
  padding: 0;
  padding-top: 0px;
  padding-top: 27px;
  background: transparent;
  position: relative;
}
.sidebar-adv img {
  width: 100%;
}
.sidebar-adv span {
  font-size: 14px;
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
  line-height: 1;
}

.blog-details-main-area .blog-single:hover .blog-thumb img {
  transform: scale(1);
}
.blog-details-main-area .blog-content {
  border: 0;
  background: none;
  padding: 0;
}
.blog-details-main-area .blog-thumb {
  border-radius: 5px;
  overflow: hidden;
}
.blog-details-main-area .author-meta .meta-item-img {
  width: 40px;
}
.blog-details-main-area .author-meta .meta-item-img img {
  width: 100%;
}
.blog-details-main-area .blog-meta {
  padding: 15px 20px;
  background: var(--clr-bg-gray);
  border-radius: 3px;
  margin-top: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (max-width: 450px) {
  .blog-details-main-area .blog-meta > div {
    width: calc((100% - 30px) / 2);
  }
}
.blog-details-main-area .blog-title {
  font-size: 48px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-main-area .blog-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-main-area .blog-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-main-area .blog-title {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  .blog-details-main-area .blog-title {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .blog-details-main-area .blog-title {
    font-size: 26px;
  }
}
.blog-details-main-area .blog-d-thumb-content {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-main-area .blog-d-thumb-content {
    flex-direction: column;
  }
}
.blog-details-main-area .blog-d-thumb {
  border-radius: 5px;
  overflow: hidden;
  min-width: 340px;
}
.blog-details-main-area p a {
  text-decoration: underline;
  color: var(--clr-theme-1);
}

.blog-post-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
.blog-post-nav:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--clr-common-border);
  right: 50%;
  top: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-post-nav:after {
    display: none;
  }
}
.blog-post-nav .blog-thumb {
  width: 90px;
  height: 80px;
  border-radius: 5px;
}
.blog-post-nav .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-nav .blog-single {
  display: flex;
  gap: 15px;
  max-width: 320px;
  align-items: center;
}
.blog-post-nav .blog-meta-date {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 12px;
}
.blog-post-nav .blog-title {
  font-size: 18px;
  line-height: 1.27;
  margin-bottom: 0;
}
.blog-post-nav .next-post .blog-single {
  flex-direction: row-reverse;
  text-align: right;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-post-nav .next-post .blog-single {
    flex-direction: inherit;
    text-align: left;
  }
}

.blog-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.blog-tags span {
  color: var(--clr-common-heading);
}

.tag-list {
  display: flex;
  gap: 5px;
}
.tag-list a {
  height: 35px;
  border: 1px solid var(--clr-common-border);
  line-height: 35px;
  display: inline-block;
  padding: 0 9px;
  border-radius: 3px;
}
.tag-list a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

.tag-and-share {
  border-top: 1px solid var(--clr-common-border);
  border-bottom: 1px solid var(--clr-common-border);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  margin-top: 40px;
  gap: 30px;
}
@media (max-width: 575px) {
  .tag-and-share {
    flex-direction: column;
  }
}

.blog-share {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-share span {
  color: var(--clr-common-heading);
}
.blog-share span i {
  margin-right: 10px;
}

.social-share a {
  width: 35px;
  height: 35px;
  border: 1px solid var(--clr-common-border);
  display: inline-block;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  color: #C1C5CE;
  font-size: 15px;
}
.social-share a:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.social-share ul {
  display: flex;
  gap: 15px;
}

.blog-quote p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
  font-style: italic;
}

.blog-quote span {
  font-size: 16px;
  color: var(--clr-common-heading);
  font-weight: 600;
  font-style: italic;
  margin-top: 10px;
  display: inline-block;
  line-height: 1;
}

.blog-quote {
  background: var(--clr-bg-gray);
  border-radius: 3px;
  padding: 23px 27px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 40px;
}

.blog-quote:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--clr-theme-1);
  border-radius: 3px 0 0 3px;
}

.blog-author-details {
  padding: 30px 30px;
  border: 1px solid var(--clr-common-border);
  border-radius: 3px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 450px) {
  .blog-author-details {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .blog-author-details {
    flex-direction: column;
    align-items: start;
  }
}
.blog-author-details .author-img {
  width: 160px;
  height: 195px;
  border-radius: 5px;
  overflow: hidden;
  min-width: 160px;
}
.blog-author-details .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-author-details .author-name {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: -4px;
  line-height: 1;
}
.blog-author-details .author-post {
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
}
.blog-author-details .author-desc p {
  margin-top: 15px;
  margin-bottom: 20px;
}
.blog-author-details .author-social ul {
  display: inline-flex;
  gap: 18px;
}
.blog-author-details .author-social ul li a {
  color: #C1C5CE;
}
.blog-author-details .author-social ul li a:hover {
  color: var(--clr-theme-1);
}

.comments-area {
  margin-top: 45px;
}
.comments-area h4 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.single-comment {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.single-comment .author-img {
  width: 60px;
  min-width: 60px;
}
.single-comment .author-img img {
  width: 100%;
}

.author-comment .author-name {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.author-comment p {
  margin-top: 20px;
  margin-bottom: 25px;
}

.comment-meta {
  display: flex;
  gap: 22px;
}
.comment-meta span {
  font-size: 12px;
  line-height: 1;
}
.comment-meta .date {
  position: relative;
}
.comment-meta .date:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  right: -10px;
  background: #EBEBEB;
  top: 0;
}

.reply-btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  line-height: 1;
}
.reply-btn:hover {
  color: var(--clr-common-heading);
}
.reply-btn i {
  color: var(--clr-theme-1);
}

.comment-form {
  margin-top: 0;
}
.comment-form h4 {
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 24px;
}

.blog-btn .fill-btn {
  height: 50px;
  line-height: 48px;
  padding: 0 35px;
}

/*----------------------------------------
    08. portfolio CSS
----------------------------------------*/
.portfolio-single {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.portfolio-single:hover .portfolio-content-wrapper {
  bottom: 20px;
}

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

.portfolio-title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-title {
    font-size: 22px;
  }
}
.portfolio-title a:hover {
  color: var(--clr-theme-1);
}

.portfolio-tag {
  font-size: 18px;
  font-weight: 400;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.portfolio-btn .icon-btn-border {
  border-color: var(--clr-common-border);
  color: var(--clr-common-text);
}
@media (max-width: 450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-btn .icon-btn-border {
    height: 40px;
    width: 40px;
    line-height: 38px;
    border-radius: 5px;
    font-size: 18px;
  }
}
.portfolio-btn .icon-btn-border:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.portfolio-content {
  background: var(--clr-bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 5px;
  padding: 22px 20px;
  position: relative;
}
.portfolio-content:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 50px;
  background: var(--clr-theme-1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio-content-wrapper {
  position: absolute;
  bottom: -150px;
  left: 0;
  right: 0;
  transition: 0.3s;
}

.portfolio-all-btn {
  margin-top: 20px;
  margin-bottom: 30px;
}

.nav-tabs.portfolio-tab-navs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 45px;
  row-gap: 12px;
  margin-top: 22px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nav-tabs.portfolio-tab-navs {
    column-gap: 45px;
  }
}
@media (max-width: 575px) {
  .nav-tabs.portfolio-tab-navs {
    margin-top: 0px;
  }
}
.nav-tabs.portfolio-tab-navs .nav-link {
  border: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  color: var(--clr-common-text);
  position: relative;
  background: transparent;
}
.nav-tabs.portfolio-tab-navs .nav-link:hover {
  color: var(--clr-common-heading);
}
.nav-tabs.portfolio-tab-navs .nav-link.active {
  color: var(--clr-theme-1);
}
.nav-tabs.portfolio-tab-navs .nav-link.active .pt-count {
  opacity: 1;
  visibility: visible;
}

.portfolio-tab-navs .nav-tabs .nav-link {
  padding: 0;
  border: 0;
}

.pt-count {
  font-size: 16px;
  position: absolute;
  top: -20px;
  line-height: 1;
  color: var(--clr-theme-1);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .pt-count {
    display: none;
  }
}
.pt-count:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: var(--clr-theme-1);
  line-height: 1;
  left: 22px;
  top: 6px;
}

.portfolio-meta-tag {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 4px;
}

.portfolio-meta-content {
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-common-heading);
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
}

.portfolio-meta-wrapper {
  background: var(--clr-bg-gray);
  border-radius: 5px;
  padding: 26px 30px 18px;
}

.portfolio-meta-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-meta-inner > div {
    width: calc((100% - 15px) / 2 );
  }
}
@media (max-width: 450px) {
  .portfolio-meta-inner > div {
    width: calc((100% - 0px) / 1 );
  }
}

.portfolio-main-img {
  border-radius: 5px;
  overflow: hidden;
}

.portfolio-main-img img {
  width: 100%;
}

.portfolio-details-area .portfolio-title {
  font-size: 65px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-details-area .portfolio-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-details-area .portfolio-title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .portfolio-details-area .portfolio-title {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .portfolio-details-area .portfolio-title {
    font-size: 35px;
  }
}

.portfolio-feature-single {
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
  padding: 40px 30px 35px;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .portfolio-feature-single {
    padding: 40px 20px 35px;
  }
}
.portfolio-feature-single:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.portfolio-feature-single:hover .portfolio-feature-title {
  color: var(--clr-common-white);
}
.portfolio-feature-single:hover .portfolio-feature-icon svg * {
  fill: var(--clr-common-white);
}
.portfolio-feature-single:hover .portfolio-feature-content p {
  color: var(--clr-common-white);
}

.portfolio-feature-content {
  text-align: center;
}
.portfolio-feature-content p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 0;
  transition: 0.3s;
}

.portfolio-feature-title {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: 0.3s;
}

.portfolio-feature-icon {
  margin-bottom: 35px;
}
.portfolio-feature-icon svg * {
  transition: 0.3s;
  transition: 0.3s;
}

.portfolio-overview-thumb img {
  width: 100%;
}

.portfolio-overview-title {
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.portfolio-overview-content p {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 20px;
}

.portfolio-overview-list li:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  color: var(--clr-theme-1);
  margin-right: 7px;
}
.portfolio-overview-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/*my css*/
.protofolio_menu button {
  border: 0;
  margin-right: 30px;
  padding: 0;
  margin-top: 20px;
  font-size: 20px;
  margin-bottom: 60px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  color: var(--clr-common-text);
  position: relative;
}

.protofolio_menu button.active {
  color: var(--clr-theme-1);
}

.protofolio_menu button.active .pt_count {
  visibility: visible;
  opacity: 1;
}

.pt_count {
  font-size: 16px;
  position: absolute;
  top: -20px;
  line-height: 1;
  color: var(--clr-theme-1);
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.pt_count:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 40px;
  top: 5px;
  background: var(--clr-theme-1);
  left: 22px;
}

/*----------------------------------------
    09. clients CSS
----------------------------------------*/
.clients-logo-inner {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--clr-common-border);
  border-left: 1px solid var(--clr-common-border);
}
.clients-logo-inner > div {
  width: calc(100% /3);
}
@media (max-width: 450px) {
  .clients-logo-inner > div {
    width: calc(100% /2);
  }
}

.single-logo {
  text-align: center;
  border-right: 1px solid var(--clr-common-border);
  border-bottom: 1px solid var(--clr-common-border);
  padding: 52px 0;
}
.single-logo a img {
  opacity: 0.3;
}
.single-logo a img:hover {
  opacity: 0.6;
}

.client-content .section-title {
  max-width: 500px;
}
.client-content p {
  max-width: 510px;
}

/*----------------------------------------
    10. testimonial CSS
----------------------------------------*/
.testimonial-img {
  border: 30px solid var(--clr-bg-white);
  border-radius: 10px;
  border-bottom: 0;
  background: var(--clr-bg-white);
}
@media (max-width: 450px) {
  .testimonial-img {
    border-width: 20px;
  }
}

.testimonial-img img {
  border-radius: 5px !important;
  max-width: inherit !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-img img {
    max-width: 250px;
  }
}
@media (max-width: 450px) {
  .testimonial-img img {
    width: 100%;
  }
}

.author-el-text p {
  font-size: 28px !important;
  font-style: italic;
  line-height: 1.35 !important;
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .author-el-text p {
    font-size: 24px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .author-el-text p {
    font-size: 20px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .author-el-text p {
    font-size: 24px !important;
  }
}
@media (max-width: 450px) {
  .author-el-text p {
    font-size: 20px !important;
  }
}

.author-text p {
  font-size: 28px;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .author-text p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .author-text p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .author-text p {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .author-text p {
    font-size: 20px;
  }
}

.test-author-info .author-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--clr-common-white);
  text-transform: uppercase;
  margin-bottom: -7px;
}

.test-author-info {
  background: var(--clr-theme-1);
  padding: 25px 35px;
  height: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .test-author-info {
    padding: 25px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .test-author-info {
    padding: 17px 35px;
    height: 80px;
  }
}
@media (max-width: 450px) {
  .test-author-info {
    padding: 17px 20px;
  }
}

.swiper-slide-active .test-author-info {
  background: #FC9559;
}

.test-author-info .author-designation {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-common-white);
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  line-height: 1;
}

.single-testimonial {
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .single-testimonial {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.testimonial-area {
  margin-top: -100px;
}

.author-text {
  background: var(--clr-bg-white);
  margin-top: 100px;
  padding: 45px 0 0 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .author-text {
    margin-top: 0;
    text-align: center;
    padding: 20px 0 0 0;
  }
}

.testimonial-nav {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 10px 10px 0 0;
  overflow: visible;
  width: 66.66%;
  padding-left: 100px;
  background: var(--clr-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-nav {
    width: 65.66%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-nav {
    width: 58.66%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-nav {
    width: 53.66%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-nav {
    position: static;
    padding-left: 0;
    border-radius: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.testimonial-nav-before {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  background: #F2752C;
  border-radius: 10px 0 0 0;
  font-size: 50px;
  text-align: center;
  line-height: 120px;
  z-index: 1;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-nav-before {
    display: none;
  }
}

.testimonial-nav-before:after {
  position: absolute;
  content: "";
  width: 36px;
  height: 28px;
  background: #F2752C;
  left: 0;
  top: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

.test-pagination {
  position: absolute;
  bottom: 60px;
  left: 400px;
  z-index: 5;
  display: flex;
  gap: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .test-pagination {
    bottom: 0;
    left: 340px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .test-pagination {
    bottom: -60px;
    left: 0;
    right: 0;
    justify-content: center;
  }
}
.test-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--clr-common-heading);
  opacity: 1;
}
.test-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--clr-theme-1);
}

/*----------------------------------------
    11. page-title CSS
----------------------------------------*/
.page-title-area {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page-title-area:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #101116;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: -1;
}

.page-title {
  font-size: 80px;
  font-weight: 600;
  color: var(--clr-common-white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .page-title {
    font-size: 45px;
  }
}

.breadcrumb-menu nav {
  position: relative;
}
.breadcrumb-menu nav span {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-common-white);
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  letter-spacing: 1px;
  line-height: 1;
}
.breadcrumb-menu nav:first-child a span {
  color: var(--clr-theme-1);
}
.breadcrumb-menu .trail-items {
  display: flex;
  gap: 25px;
}

.page-title-wrapper {
  padding-top: 100px;
}

.brb i {
  padding: 0px 8px;
  font-size: 15px;
}

/*----------------------------------------
    12. experience CSS
----------------------------------------*/
.experience-area {
  background: var(--clr-bg-gray);
  padding-top: 120px;
  padding-bottom: 215px;
}

.experience-content p {
  max-width: 510px;
}

.section-title span {
  color: var(--clr-theme-1);
}

.experience-title {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.experience-title-wrapper {
  position: relative;
  margin-bottom: 5px;
}
.experience-title-wrapper span {
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  font-size: 18px;
  font-weight: 400;
  font-family: "Teko", sans-serif;
  color: var(--clr-common-heading);
  line-height: 1;
}

.experience-progress .progress {
  height: 5px;
  background: #E2D3CB;
  border-radius: 100px;
}
.experience-progress .progress-bar {
  background: var(--clr-theme-1);
  border-radius: 100px;
}

.experience-progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

/*----------------------------------------
    13. features CSS
----------------------------------------*/
.features-area {
  margin-bottom: -50px;
}

.feature-title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.single-feature {
  position: relative;
  max-width: 330px;
}
.single-feature p {
  margin-bottom: 0;
}
.single-feature:before {
  position: absolute;
  content: counter(features-counter, decimal-leading-zero);
  color: var(--clr-common-heading);
  opacity: 0.05;
  font-size: 90px;
  font-family: "Teko", sans-serif;
  font-weight: 500;
  top: 0;
  left: 0;
}

.features-wrapper > .row > div {
  counter-increment: features-counter;
}

/*----------------------------------------
    14. creativity CSS
----------------------------------------*/
.creativity-content {
  max-width: 470px;
}

.creativity-thumb img {
  width: 100%;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .creativity-thumb img {
    width: 80%;
  }
}

/*----------------------------------------
    15. pagination CSS
----------------------------------------*/
.b-pagination-wrapper {
  border-top: 1px solid var(--clr-common-border);
  border-bottom: 1px solid var(--clr-common-border);
  padding: 30px 0;
}

.b-pagination-button {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: var(--clr-bg-gray);
  border-radius: 50%;
  display: inline-block;
  font-size: 22px;
  transition: 0.3s;
}

.b-pagination-link a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.b-pagination-link a:hover .b-pagination-button {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.b-pagination-link a:hover span {
  color: var(--clr-common-heading);
}
.b-pagination-link ul {
  display: flex;
  justify-content: space-between;
}

/*----------------------------------------
    16. pricing CSS
----------------------------------------*/
.pricing-tab-nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
}
.pricing-tab-nav .nav-tabs .nav-link {
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--clr-common-heading);
  letter-spacing: 0.2px;
  margin-bottom: 0;
}
.pricing-tab-nav .nav-tabs .nav-link:before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
  -moz-transform: translateY(-50%) translateX(50%);
  -ms-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
  background: var(--clr-theme-1);
  width: 90px;
  height: 40px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 20px;
  border: 1px solid var(--clr-theme-1);
}
.pricing-tab-nav .nav-tabs .nav-link::after {
  position: absolute;
  content: "";
  right: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: var(--clr-common-white);
  z-index: 1;
}
.pricing-tab-nav .nav-tabs .nav-link:last-child {
  padding-right: 0;
}
.pricing-tab-nav .nav-tabs .nav-link:last-child::after {
  display: none;
}
.pricing-tab-nav .nav-tabs .nav-link:last-child::before {
  display: none;
}
.pricing-tab-nav .nav-tabs .nav-link:first-child {
  padding-left: 0;
}
.pricing-tab-nav .nav-tabs .nav-link.active:after {
  right: 10px;
}

.single-pricing {
  border: 1px solid var(--clr-common-border);
  border-radius: 5px;
  text-align: center;
  padding: 50px 30px;
  background: #F8F9FB;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .single-pricing {
    padding: 40px 20px;
  }
}

.pricing-icon {
  margin-bottom: 27px;
  display: inline-block;
  position: relative;
}
.pricing-icon i {
  color: var(--clr-theme-1);
  font-size: 70px;
}
.pricing-icon::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: var(--clr-theme-1);
  opacity: 0.11;
  top: -12px;
  left: -30px;
  border-radius: 50%;
}

.pricing-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-common-heading);
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  line-height: 1;
  display: block;
}

.package-price {
  font-size: 65px;
  font-weight: 600;
  color: var(--clr-theme-1);
  font-family: "Teko", sans-serif;
  display: block;
  line-height: 1;
  margin-top: 3px;
  margin-bottom: 23px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .package-price {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .package-price {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .package-price {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .package-price {
    font-size: 35px;
  }
}

.price-package-list {
  margin-bottom: 42px;
}
.price-package-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-pricing.active {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.single-pricing.active .fill-btn {
  background: var(--clr-common-white);
  border-color: var(--clr-common-white);
  color: var(--clr-common-heading);
}
.single-pricing.active .fill-btn:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-common-white);
  color: var(--clr-common-white);
}
.single-pricing.active .pricing-title {
  color: var(--clr-common-white);
}
.single-pricing.active .package-price {
  color: var(--clr-common-white);
}
.single-pricing.active .price-package-list ul li {
  color: var(--clr-common-white);
}
.single-pricing.active .pricing-icon i {
  color: var(--clr-common-white);
}
.single-pricing.active .pricing-icon::before {
  background: var(--clr-common-white);
}

/*----------------------------------------
    17. contact CSS
----------------------------------------*/
.contact-info-area {
  background: var(--clr-bg-gray);
  padding-top: 120px;
  padding-bottom: 290px;
}

.contact-info-item {
  background: var(--clr-common-white);
  padding: 30px 25px 22px;
  border-radius: 5px;
  border: 1px solid var(--clr-common-border);
  box-shadow: 0px 10px 20px rgba(25, 44, 81, 0.05);
  transition: all 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-info-item {
    text-align: center;
  }
}
.contact-info-item .irc-icon {
  font-size: 47px;
  color: var(--clr-theme-1);
  margin-bottom: 10px;
  line-height: 1;
}
.contact-info-item .irc-content p {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 2px;
}
.contact-info-item .irc-content span {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-common-heading);
  font-family: "Teko", sans-serif;
}
.contact-info-item .irc-content span a:hover {
  color: var(--clr-theme-1);
}

.contact-info-item:hover {
  background: var(--clr-common-heading);
  border-color: var(--clr-common-heading);
  box-shadow: 0px 10px 20px rgba(25, 44, 81, 0.05);
}
.contact-info-item:hover .irc-content p {
  color: #A2A2A2;
}
.contact-info-item:hover .irc-content span {
  font-size: 18px;
  font-weight: 400;
  color: var(--clr-common-heading);
  font-family: "Teko", sans-serif;
  color: var(--clr-common-white);
}

.contact-message-area {
  margin-top: -205px;
}

.contact-message-form {
  background: var(--clr-common-white);
  border-radius: 8px;
  padding: 30px 30px;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 450px) {
  .contact-message-form {
    padding: 30px 20px;
  }
}

.single-input-form {
  margin-bottom: 30px;
}
.single-input-form input {
  background: #F9F9F9;
  border: 1px solid #F9F9F9;
  height: 60px;
  border-radius: 3px;
  padding: 0 20px;
  width: 100%;
  outline: none;
}
.single-input-form input:focus {
  border-color: var(--clr-theme-1);
}
.single-input-form textarea {
  background: #F9F9F9;
  height: 150px;
  width: 100%;
  border: 1px solid #F9F9F9;
  resize: none;
  border-radius: 3px;
  padding: 16px 20px;
  outline: none;
}
.single-input-form textarea:focus {
  border-color: var(--clr-theme-1);
}

.message-form-btn {
  text-align: center;
}

.contact-map iframe {
  height: 500px;
  border-radius: 8px;
  width: 100%;
}

/*----------------------------------------
    18. error CSS
----------------------------------------*/
.error-content {
  text-align: center;
}
.error-content .section-title br {
  display: none;
}
@media (max-width: 450px) {
  .error-content .section-title br {
    display: block;
  }
}
.error-content p {
  margin-bottom: 42px;
}

.error-img {
  margin-bottom: 42px;
}
.error-img img {
  max-width: 100%;
}

/*----------------------------------------
    19. faq CSS
----------------------------------------*/
.faq-wrapper .accordion-button {
  font-size: 20px;
  font-family: "Teko", sans-serif;
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  padding: 10px 10px 10px 70px;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  min-height: 60px;
  text-align: left;
}
.faq-wrapper .accordion-button::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  margin-left: 0;
  background-image: none;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background: var(--clr-common-heading);
  border-radius: 5px;
  position: absolute;
  left: 10px;
}
.faq-wrapper .accordion-button:focus {
  box-shadow: none;
}
.faq-wrapper .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  content: "";
}
.faq-wrapper .accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--clr-common-white);
}
.faq-wrapper .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.faq-wrapper .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 5px;
}
.faq-wrapper .accordion-body {
  border: 0;
  padding: 20px 30px;
  position: relative;
}
.faq-wrapper .accordion-body:before {
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - 40px);
  background: var(--clr-theme-1);
  top: 20px;
  left: 11px;
}
.faq-wrapper .accordion-collapse {
  border: 0;
  background: var(--clr-common-white);
  border: 1px solid var(--clr-common-white);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
.faq-wrapper .accordion-button.collapsed {
  background: var(--clr-common-white);
  color: var(--clr-common-heading);
}
.faq-wrapper .accordion-button.collapsed:after {
  background: var(--clr-theme-1);
}

.faq-area {
  background: var(--clr-bg-gray);
}

.faq-wrapper.accordion-bordered .accordion-item {
  border-color: var(--clr-common-border);
}

.question-content {
  text-align: center;
}
.question-content p {
  margin-bottom: 40px;
}

/*----------------------------------------
    20. menu-search CSS
----------------------------------------*/
.nav-search {
  position: relative;
  display: block;
  color: inherit;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  color: #fff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: #fff;
}

input.main-search-input::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/*----------------------------------------
    21. body-color CSS
----------------------------------------*/
body {
  background: var(--clr-bg-white);
}

.active-dark {
  background: var(--clr-bg-white);
}
.active-dark .irc-item.about-point .irc-icon {
  background: #17181C;
}
.active-dark .blog-content {
  background: #17181C;
  border-color: #27292A;
}
.active-dark .single-logo a img {
  filter: invert(100%);
}
.active-dark .main-menu ul li .sub-menu li a {
  color: #0F0F0F;
}
.active-dark .hero-btn .fill-btn:hover {
  color: #0F0F0F;
}
.active-dark .cta-btn .fill-btn:hover {
  border-color: var(--clr-bg-white);
}
.active-dark div.mean-container .mean-nav ul li a {
  color: #0F0F0F;
}
.active-dark div.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}
.active-dark .offset-widget .filter-search-input input {
  border-color: #0f0f0f;
}
.active-dark .offset-widget .header-contact .irc-icon {
  color: #0f0f0f;
}
.active-dark .offset-widget .header-contact .irc-content p {
  color: #0f0f0f;
}
.active-dark .offset-widget .header-contact .irc-content span {
  color: #0f0f0f;
}

/*----------------------------------------
    22. footer CSS
----------------------------------------*/
.footer-area1-bg {
  background: var(--clr-bg-footer);
}

.footer-info p {
  font-size: 16px;
  line-height: 26px;
  color: #A2A2A2;
}

.footer-widget .footer-social ul li a {
  width: 40px;
  height: 40px;
  background: #1C1E22;
  display: inline-block;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  color: #757575;
}
.footer-widget ul li {
  margin-bottom: 5px;
}
.footer-widget ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #A2A2A2;
  line-height: 26px;
}
.footer-widget ul li a:hover {
  color: var(--clr-common-white);
}
.footer-widget ul li:last-child {
  margin-bottom: 0;
}
.footer-widget .instagram-shots ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-widget .instagram-shots ul li {
  width: calc((100% - 16px) / 3);
  margin-bottom: 0;
  border-radius: 3px;
  overflow: hidden;
  height: 70px;
}
.footer-widget .instagram-shots ul li img {
  width: 100%;
}

.footer-social ul {
  display: flex;
  gap: 10px;
}
.footer-social ul li a:hover {
  color: var(--clr-common-white) !important;
  background: var(--clr-theme-1);
}

.footer-widget-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--clr-common-white);
  text-transform: uppercase;
  line-height: 1;
}

.footer1-widget1 {
  margin-right: -20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget1 {
    margin-right: 0;
    margin-left: 0;
  }
}

.footer1-widget2 {
  margin-left: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer1-widget2 {
    margin-left: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1-widget2 {
    margin-right: 0;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget2 {
    margin-right: 0;
    margin-left: 0;
  }
}

.footer1-widget3 {
  margin-left: -30px;
  margin-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer1-widget3 {
    margin-left: -20px;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1-widget3 {
    margin-right: 0;
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget3 {
    margin-right: 0;
    margin-left: 0;
  }
}

.footer1-widget4 {
  position: relative;
  padding-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer1-widget4 {
    margin-right: 0;
    margin-left: 30px;
    margin-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer1-widget4 {
    margin-right: 0;
    margin-left: 0;
    margin-top: 100px;
  }
}

.footer-contact .irc-icon {
  font-size: 30px;
  color: var(--clr-theme-1);
}
.footer-contact .irc-content p {
  font-size: 14px;
  font-weight: 400;
  color: #A2A2A2;
  line-height: 1;
  margin-bottom: 5px;
}
.footer-contact .irc-content span {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--clr-common-white);
}
.footer-contact .irc-content span a {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--clr-common-white);
}
.footer-contact .irc-content span a:hover {
  color: var(--clr-theme-1);
}
.footer-contact .irc-item {
  display: flex;
  gap: 20px;
}
.footer-contact ul li {
  margin-bottom: 35px;
}
.footer-contact ul li:last-child {
  margin-bottom: 0px;
}

.fc-title {
  background: var(--clr-theme-1);
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  width: calc(100% + 30px);
  right: 0;
  top: 0;
  margin-top: -100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fc-title {
    width: calc(100% + 0px);
  }
}

.fc-icon {
  color: var(--clr-common-white);
  font-size: 42px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 95px;
  background: #E5712E;
  position: relative;
}
.fc-icon:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 13px;
  background: #E5712E;
  bottom: -13px;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.fc-text span {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clr-common-white);
  font-family: "Teko", sans-serif;
}

.copyright-area {
  background: var(--clr-bg-footer);
  border-top: 1px solid #292A2D;
  padding: 20px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-text {
    text-align: center;
    margin-top: 20px;
  }
}
.copyright-text p {
  color: #A2A2A2;
  margin-bottom: 0;
}
.copyright-text p a {
  color: var(--clr-common-white);
}

.copyright-right {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-right {
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-right {
    flex-direction: column;
    gap: 20px;
  }
}

.copyright-links a {
  color: #A2A2A2;
  position: relative;
  margin-right: 30px;
}
.copyright-links a:hover {
  color: var(--clr-common-white);
}
.copyright-links a:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 12px;
  background: #A2A2A2;
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
}
.copyright-links a:last-child {
  margin-right: 0;
}
.copyright-links a:last-child:after {
  display: none;
}

.newsletter-input-field {
  position: relative;
  width: 270px;
}
.newsletter-input-field input {
  height: 60px;
  width: 100%;
  background: #1C1E22;
  border: 1px solid #1C1E22;
  border-radius: 3px;
  padding: 0 20px;
  padding-right: 60px;
  color: var(--clr-common-white);
  outline: 0;
}
.newsletter-input-field button {
  width: 40px;
  height: 40px;
  background: var(--clr-theme-1);
  border-radius: 3px;
  color: var(--clr-common-white);
  line-height: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.newsletter-input-field button:hover {
  color: var(--clr-theme-1);
  background: var(--clr-common-white);
}

/*----------------------------------------*/
/*  19. Footer
/*----------------------------------------*/
.bd-footer-info-logo a:before {
  display: none;
}

.bd-footer-info-item h6 {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-common-white);
  margin-bottom: 5px;
}
.bd-footer-info-item a, .bd-footer-info-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-body-text2);
  display: inline-block;
}

.bd-footer-widget ul li {
  list-style: none;
  margin-bottom: 10px;
}
.bd-footer-widget ul li:last-child {
  margin-bottom: 0px;
}
.bd-footer-widget ul li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-body-text2);
  display: inline-block;
}
.bd-footer-widget a {
  position: relative;
}
.bd-footer-widget a:hover {
  color: var(--clr-common-white);
}

.bd-footer-widget-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-common-white);
}

.bd-footer-newsletter form input {
  height: 60px;
  width: 100%;
  background: var(--clr-body-heading2);
  border-radius: 4px;
  padding: 0px 40px 0px 20px;
  color: var(--clr-body-text2);
  font-size: 15px;
  border: 0px;
  outline: none;
}
.bd-footer-newsletter form .bd-footer-newsletter-field i {
  position: absolute;
  top: 23px;
  font-size: 15px;
  color: var(--clr-body-text2);
  right: 20px;
}
.bd-footer-newsletter form button {
  width: 100%;
  justify-content: center;
}
.bd-footer-newsletter form button:hover {
  color: var(--clr-common-white);
}

.bd-copyright-area {
  border-top: 1px solid var(--clr-border-3);
}

.bd-copyright {
  padding-top: 15px;
  padding-bottom: 17px;
}
.bd-copyright a {
  font-weight: 600;
  color: var(--clr-common-white);
}
.bd-copyright p {
  color: var(--clr-body-text2);
}

.footer-col-2 {
  padding-left: 75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-2 {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-col-2 {
    padding-left: 0px;
  }
}

.footer-col-3 {
  padding-left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-col-3 {
    padding-left: 0px;
  }
}

.bd-footer-copyright-two span {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  color: var(--clr-body-text2);
}
.bd-footer-copyright-two span a {
  font-weight: 600;
  color: var(--clr-common-white);
}

.bd-footer-widget-two .bd-footer-info {
  text-align: right;
}
.bd-footer-widget-two .bd-footer-info-item {
  display: inline-block;
  text-align: left;
}
.bd-footer-widget-two .bd-footer-info-item:first-child {
  margin-right: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-footer-widget-two .bd-footer-info-item:first-child {
    margin-right: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-footer-logo-two.text-center {
    text-align: end !important;
  }
}

@media (max-width: 575px) {
  .bd-footer-widget-two {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .bd-footer-widget-two .bd-footer-info {
    text-align: center !important;
  }
}
@media (max-width: 450px) {
  .bd-footer-widget-two .bd-footer-info {
    text-align: center !important;
  }
  .bd-footer-widget-two .bd-footer-info .bd-footer-info-item {
    margin-right: 0px;
    text-align: center;
  }
}

.bd-footer-logo-two a:before {
  display: none;
}

.bd-footer-widget-four {
  position: relative;
  padding-top: 100px;
  padding-bottom: 85px;
  overflow: hidden;
}
.bd-footer-widget-four-bg {
  position: absolute;
  bottom: -795px;
  left: 0px;
  height: 1130px;
  width: 100%;
  background: var(--clr-bg-gray);
  border-radius: 50%;
}
@media (max-width: 575px) {
  .bd-footer-widget-four-bg {
    border-radius: 0px;
  }
}
@media (max-width: 450px) {
  .bd-footer-widget-four-bg {
    bottom: -770px;
  }
}
.bd-footer-widget-four-social ul li {
  list-style: none;
  display: inline-block;
  margin: 0px 7px;
}
.bd-footer-widget-four-social ul li a {
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  border: 1px solid var(--clr-border-5);
  font-size: 14px;
  color: var(--clr-body-heading);
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.bd-footer-widget-four-social ul li a:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  transform: scale(0);
  background: var(--clr-theme-1);
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 50%;
}
.bd-footer-widget-four-social ul li a::before {
  display: none;
}
.bd-footer-widget-four-social ul li a:hover {
  border-color: var(--clr-theme-1);
}
.bd-footer-widget-four-social ul li a:hover:after {
  transform: scale(1);
}
@media (max-width: 450px) {
  .bd-footer-widget-four-copyright {
    padding: 0px 10px;
  }
}
.bd-footer-widget-four-copyright span {
  font-size: 16px;
  color: var(--clr-body-text3);
  display: inline-block;
}
.bd-footer-widget-four-copyright span a {
  font-weight: 600;
  color: var(--clr-body-heading);
}
.bd-footer-widget-four-copyright span a:hover {
  color: var(--clr-theme-1);
}
.bd-footer-widget-four-copyright span a::before {
  display: none;
}
.bd-footer-widget-four-privacy ul li {
  list-style: none;
  display: inline-block;
}
.bd-footer-widget-four-privacy ul li a {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  color: var(--clr-body-heading);
  padding: 0px 25px;
  border-right: 1px solid var(--clr-border-5);
  line-height: 1;
}
@media (max-width: 450px) {
  .bd-footer-widget-four-privacy ul li a {
    padding: 0px 10px;
  }
}
.bd-footer-widget-four-privacy ul li a::before {
  display: none;
}
.bd-footer-widget-four-privacy ul li a:hover {
  color: var(--clr-theme-1);
}
.bd-footer-widget-four-privacy ul li:last-child a {
  border-right: 0px;
}

.bd-footer-widget-title-six {
  color: var(--clr-body-heading);
}

.bd-footer-info-item-six h6 {
  color: var(--clr-body-heading);
}
.bd-footer-info-item-six a, .bd-footer-info-item-six span {
  color: var(--clr-body-text);
}

.bd-footer-widget-six a:hover {
  color: var(--clr-theme-1);
}
.bd-footer-widget-six a:hover::before {
  background: var(--clr-body-heading);
}
.bd-footer-widget-six p {
  font-size: 16px;
  color: var(--clr-body-text);
  line-height: 28px;
}

.bd-copyright-area-six {
  padding-top: 17px;
  border-top: 1px solid var(--clr-border-6);
  padding-bottom: 5px;
}

.bd-copyright-six p {
  font-size: 16px;
  color: var(--clr-body-text);
  display: inline-block;
  margin-bottom: 0px;
}
.bd-copyright-six p a {
  font-weight: 600;
  color: var(--clr-body-text);
}
.bd-copyright-six p a:hover {
  color: var(--clr-theme-1);
}
.bd-copyright-six ul li {
  list-style: none;
  display: inline-block;
  padding-right: 20px;
  margin-right: 18px;
  border-right: 1px solid var(--clr-border-6);
}
.bd-copyright-six ul li:last-child {
  padding-right: 0px;
  margin-right: 0px;
  border-right: 0px;
}
.bd-copyright-six ul li a {
  font-size: 16px;
  color: var(--clr-body-heading);
  line-height: 1;
}
.bd-copyright-six ul li a:hover {
  color: var(--clr-theme-1);
}

.footer-col-4-2 {
  padding-left: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-col-4-2 {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-col-4-2 {
    padding-left: 0px;
  }
}

.footer-col-4-4 {
  padding-left: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .footer-col-4-4 {
    padding-left: 0px;
  }
}

.bd-footer-widget-six-social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--clr-border-6);
  font-size: 16px;
  color: var(--clr-body-heading);
  display: inline-block;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.bd-footer-widget-six-social a:last-child {
  margin-right: 0px;
}
.bd-footer-widget-six-social a:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  transform: scale(0);
  background: var(--clr-theme-1);
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 50%;
}
.bd-footer-widget-six-social a::before {
  display: none;
}
.bd-footer-widget-six-social a:hover {
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.bd-footer-widget-six-social a:hover:after {
  transform: scale(1);
}

.bd-copyright-area-seven {
  padding-top: 32px;
  padding-bottom: 20px;
}

.bd-error-area {
  padding-top: 350px;
  padding-bottom: 240px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-error-area {
    padding-top: 300px;
  }
}
@media (max-width: 575px) {
  .bd-error-area {
    padding-top: 300px;
    padding-bottom: 200px;
  }
}

.bd-error h1 {
  font-size: 150px;
  font-weight: 700;
  color: var(--clr-theme-1);
  line-height: 1;
}
@media (max-width: 450px) {
  .bd-error h1 {
    font-size: 120px;
  }
}
.bd-error h1 span {
  color: var(--clr-body-heading);
}
.bd-error h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--clr-body-heading);
}
.bd-error p {
  font-size: 16px;
  line-height: 26px;
  color: var(--clr-body-text);
  margin-bottom: 0px;
}
@media (max-width: 575px) {
  .bd-error p br {
    display: none;
  }
}

div.bd-footer-widget-six-social a:hover {
  color: #fff !important;
}

/*----------------------------------------*/
/*  01. Theme default
/*----------------------------------------*/
.bd-custom-container {
  max-width: 1730px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 10px;
}

i {
  line-height: 1;
  display: inline-block;
}

label {
  color: var(--clr-body-text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.display-inline {
  display: inline-block;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input,
select {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.custom-pad-15 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.custom-mar-15 {
  margin-right: -7.5px;
  margin-left: -7.5px;
}

.radius-50 {
  border-radius: 50px;
}

.w-full {
  width: 100%;
}

/*--
    - Input Placeholder
-----------------------------------------*/
* input::-moz-placeholder {
  font-size: 16px;
  opacity: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

* input::placeholder {
  font-size: 16px;
  opacity: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/*--
    - Common Classes
-----------------------------------------*/
.clear {
  clear: both;
}

.translate-y--10 {
  transform: translateY(-10px);
}

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

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

.heading-bg {
  background-color: var(--clr-body-heading);
}

/*--
    - color
-----------------------------------------*/
.white-color {
  color: var(--clr-common-white);
}

.z-index {
  z-index: 3;
  position: relative;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  width: inherit;
}

.swiper-container-horizontal.common-dots {
  position: relative;
}
.swiper-container-horizontal.common-dots .slide-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  margin: 0px 5px;
  padding: 0px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px solid #c6c9cb;
  display: inline-block;
  outline: none;
  cursor: pointer;
  background: none;
  font-size: 0px;
  opacity: 1;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--clr-theme-1);
}

.nav-search {
  position: relative;
  display: inline-block;
  color: inherit;
}

.nav-search:hover {
  color: var(--clr-common-white);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1211;
  background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
  text-align: center;
}

.search-field-holder button {
  height: 45px;
  line-height: 45px;
  background: var(--clr-common-white);
  color: #333;
  font-size: 24px;
  font-weight: 700;
  padding: 0px 50px;
  display: inline-block;
  margin-top: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 5px;
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  background: transparent;
  font-size: 25px;
  color: var(--clr-common-white);
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    letter-spacing: 1px;
  }
}

.search-wrap .main-search-input::-moz-placeholder {
  text-transform: uppercase;
}

.search-wrap .main-search-input::placeholder {
  text-transform: uppercase;
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--clr-common-white);
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
input.main-search-input::-webkit-input-placeholder {
  color: var(--clr-common-white);
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input::-webkit-input-placeholder {
    font-size: 16px;
  }
}

input.main-search-input:-moz-placeholder {
  color: #c5b2b2;
  opacity: 1;
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input:-moz-placeholder {
    font-size: 16px;
  }
}

input.main-search-input::-moz-placeholder {
  color: var(--clr-common-white);
  opacity: 1;
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input::-moz-placeholder {
    font-size: 16px;
  }
}

input.main-search-input:-ms-input-placeholder {
  color: var(--clr-common-white);
  font-size: 25px;
}
@media (max-width: 575px) {
  input.main-search-input:-ms-input-placeholder {
    font-size: 16px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--clr-common-white);
  cursor: pointer;
}

.mobile-links li > a {
  padding: 15px 0 15px 15px;
  line-height: 20px;
  border-bottom: 1px solid #ebebeb;
  color: #7f7f7f;
  display: block;
}

.mobile-links li > a:hover {
  color: #b79d82;
}

/*----------------------------------------*/
/*  02. Header
/*----------------------------------------*/
.bd-header-area {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  z-index: 9;
}

.admin-bar .bd-header-area.bd-header-area-seven, .admin-bar .bd-header-area-four.header-sticky {
  margin-top: 0px;
}

.admin-bar .bd-header-area,
.admin-bar .bd-header-area.bd-header-area-four.bd-header-area-six.header-sticky,
.admin-bar .bd-header-area.bd-header-area-four.header-sticky.sticky-menu {
  margin-top: 32px;
}

.bd-header-area.header-sticky.sticky-menu,
.bd-header-area-seven.header-sticky.sticky-menu,
.bd-header-area-three.header-sticky.sticky-menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  background: var(--clr-body-heading);
  animation: 800ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.bd-header-area-three.header-sticky.sticky-menu {
  background: var(--clr-common-white);
}

.bd-header-area-seven {
  position: static;
}

.bd-header-area-seven.header-sticky.sticky-menu {
  background: var(--clr-common-white);
}

.bd-header-border {
  border-bottom: 1px solid var(--clr-border-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .bd-header-spacing {
    padding: 20px 0px;
  }
}

.bd-main-menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 40px;
  position: relative;
  /*submenu start*/
  /*submenu end*/
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-main-menu ul li {
    margin-right: 25px;
  }
}
.bd-main-menu ul li:last-child {
  margin-right: 0px;
}
.bd-main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-white);
  display: block;
  padding: 38px 0px;
  transition: all linear 0.3s;
  position: relative;
}
.bd-main-menu ul li a:hover, .bd-main-menu ul li a.active {
  color: var(--clr-theme-1);
}
.bd-main-menu ul li.menu-item-has-children > a:after {
  content: "";
  margin-left: 5px;
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  color: var(--clr-common-white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-main-menu ul li.menu-item-has-children > a:hover:after,
.bd-main-menu ul li.menu-item-has-children > a.active:after {
  color: var(--clr-theme-1);
}
.bd-main-menu ul li .sub-menu {
  background: var(--clr-common-white) none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 119%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 240px;
  z-index: 9;
  border-top: 4px solid var(--clr-theme-1);
  text-align: left;
  padding: 15px 0;
}
.bd-main-menu ul li .sub-menu li {
  display: block;
  margin: 0px;
  padding: 8px 25px 8px 25px;
}
.bd-main-menu ul li .sub-menu li a {
  padding: 0px;
  display: inline-block;
  color: #212237;
  position: relative;
}
.bd-main-menu ul li .sub-menu li a:after {
  display: none;
}
.bd-main-menu ul li .sub-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--clr-theme-1);
}
.bd-main-menu ul li .sub-menu li:hover > a {
  color: var(--clr-theme-1);
}
.bd-main-menu ul li .sub-menu li:hover > a:before {
  width: 100%;
  left: 0;
  right: auto;
}
.bd-main-menu ul li:hover a, .bd-main-menu ul li:hover a:after {
  color: var(--clr-theme-1);
}
.bd-main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.bd-header-right {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-right {
    margin-left: -40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-header-right {
    margin-right: -25px;
  }
}

.bd-header-icon {
  margin-right: 30px;
}
@media (max-width: 450px) {
  .bd-header-icon {
    margin-right: 0px;
  }
}
.bd-header-icon span {
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--clr-common-white);
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--clr-border-2);
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.bd-header-social {
  margin-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .bd-header-social {
    display: none;
  }
}
.bd-header-social a {
  font-size: 16px;
  color: var(--clr-common-white);
  display: inline-block;
  margin-right: 25px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-social a {
    margin-right: 15px;
  }
}
.bd-header-social a:hover {
  color: var(--clr-theme-1);
}
.bd-header-social a:last-child {
  margin-right: 0px;
}

.bd-header-btn {
  display: inline-flex;
}
@media (max-width: 450px) {
  .bd-header-btn {
    display: none;
  }
}

.bd-main-menu-border {
  margin-left: -40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-main-menu-border {
    margin-left: -5px;
  }
}
.bd-main-menu-border:before {
  position: absolute;
  content: "";
  top: 0px;
  left: -58px;
  height: 100%;
  width: 1px;
  background-color: var(--clr-border-1);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .bd-main-menu-border:before {
    left: -30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .bd-main-menu-border:before {
    display: none;
  }
}

.bd-mobile-menu.mean-container {
  clear: both;
  overflow: hidden;
}

.contact-infos {
  margin-top: 30px;
}
.contact-infos h4 {
  font-size: 27px;
  color: var(--clr-common-white);
  margin-bottom: 20px;
}
.contact-infos ul li {
  font-size: 15px;
  color: var(--clr-common-white);
  margin-bottom: 15px;
  list-style: none;
}
.contact-infos ul li:last-child {
  margin-bottom: 0px;
}
.contact-infos ul li i {
  color: var(--clr-theme-1);
  vertical-align: middle;
  width: 25px;
  display: inline-block;
}

.sidebar__menu--social {
  margin-top: 25px;
}
.sidebar__menu--social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
  background: #393f53;
  color: var(--clr-common-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
}
.sidebar__menu--social a:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  height: 100%;
  width: 0%;
  background: var(--clr-theme-1);
  z-index: -1;
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar__menu--social a:hover:before {
  width: 100%;
}
.sidebar__menu--social a:hover i {
  transform: rotate(360deg);
}
.sidebar__menu--social a:last-child {
  margin-right: 0px;
}

.bd-main-menu-border-two::before {
  display: none;
}

.bd-main-menu-three ul li a,
.bd-main-menu-breadcrumb ul li a {
  color: var(--clr-body-heading);
}

.bd-main-menu-three ul li.menu-item-has-children > a::after,
.bd-main-menu-breadcrumb ul li.menu-item-has-children > a::after {
  color: var(--clr-body-heading);
}

.bd-main-menu-three ul li.menu-item-has-children:hover > a::after,
.bd-main-menu-breadcrumb ul li.menu-item-has-children:hover > a::after {
  color: var(--clr-theme-1);
}

.d-header-icon-three {
  margin-right: 0px;
}
.d-header-icon-three span {
  background: var(--clr-body-heading);
  border-color: var(--clr-body-heading);
  height: 60px;
  width: 60px;
  line-height: 57px;
  font-size: 24px;
}

.side-menu-icon-two.side-menu-icon i {
  color: var(--clr-body-heading);
}

.bd-header-area-four.header-sticky.sticky-menu,
.bd-header-area-breadcrumb.header-sticky.sticky-menu,
.bd-main-menu-border-five.header-sticky.sticky-menu {
  background: var(--clr-common-white);
}

.bd-header-area-four {
  position: relative;
}
.bd-header-area-four .bd-header-border {
  border-bottom: none;
}

.bd-main-menu-border-four.bd-main-menu-border::before {
  background: var(--clr-bg-gray2);
}

.bd-main-menu-border-four ul li a,
.bd-main-menu-border-five ul li a {
  color: var(--clr-body-heading);
}
.bd-main-menu-border-four ul li.menu-item-has-children a:after,
.bd-main-menu-border-five ul li.menu-item-has-children a:after {
  color: var(--clr-body-heading);
}
.bd-main-menu-border-four ul li.menu-item-has-children:hover a:after,
.bd-main-menu-border-five ul li.menu-item-has-children:hover a:after {
  color: var(--clr-theme-1);
}

.bd-header-right-four .bd-header-social a {
  color: var(--clr-body-heading);
}
.bd-header-right-four .bd-header-social a:hover {
  color: var(--clr-theme-1);
}

.side-menu-icon-four i {
  color: var(--clr-body-heading);
}

.bd-main-menu-border-five {
  margin-left: -50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .bd-main-menu-border-five {
    margin-left: -30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-main-menu-border-five {
    margin-left: -20px;
  }
}

.bd-header-input-search {
  margin-right: 20px;
}
@media (max-width: 575px) {
  .bd-header-input-search {
    display: none;
  }
}
.bd-header-input-search input {
  height: 55px;
  width: 295px;
  border: 1px solid var(--clr-bg-gray2);
  border-radius: 5px;
  outline: none;
  background: none;
  padding-left: 20px;
  padding-right: 55px;
  display: block;
  font-size: 14px;
  color: var(--clr-body-text);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-input-search input {
    width: 240px;
  }
}
.bd-header-input-search input::-moz-placeholder {
  font-size: 14px;
  opacity: 1;
  color: var(--clr-body-text);
}
.bd-header-input-search input::placeholder {
  font-size: 14px;
  opacity: 1;
  color: var(--clr-body-text);
}
.bd-header-input-search button {
  position: absolute;
  height: 55px;
  width: 50px;
  line-height: 55px;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: var(--clr-body-heading);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: none;
  border: none;
  outline: none;
}
.bd-header-input-search button:hover {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-header-input-search-six input {
    width: 240px;
  }
}

.bd-header-area-six {
  position: absolute;
  border-bottom: 1px solid var(--clr-bg-gray2);
}

.bd-header-contacts {
  display: flex;
  padding-left: 25px;
  border-left: 1px solid var(--clr-bg-gray2);
  margin-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .bd-header-contacts {
    display: none;
  }
}
.bd-header-contacts-icon {
  margin-right: 15px;
}
.bd-header-contacts-icon i {
  font-size: 30px;
  display: inline-block;
  color: var(--clr-theme-1);
  line-height: 1;
}
.bd-header-contacts-text {
  text-align: left;
}
.bd-header-contacts-text span {
  font-size: 16px;
  display: block;
}
.bd-header-contacts-text a {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-body-heading);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-header-contacts-text a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-header-input-search-six {
    margin-right: 0px;
  }
}
.bd-header-input-search-six input {
  border-radius: 30px;
}
.bd-header-input-search-six button {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.bd-header-right-breadcrumb .nav-search {
  color: var(--clr-body-heading);
}

.header-sidebar h5 {
  font-size: 22px;
  color: var(--clr-body-heading);
  font-weight: 600;
}

.header-sidebar-infos ul {
  text-align: center;
}
.header-sidebar-infos ul li {
  list-style: none;
  margin-bottom: 10px;
}
.header-sidebar-infos ul li a, .header-sidebar-infos ul li span {
  font-size: 16px;
  color: var(--clr-body-text);
}

.sidebar__menu--social-two a {
  background: none;
  border: 1px solid var(--clr-body-text);
  color: var(--clr-body-text);
}
.sidebar__menu--social-two a:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.custom-mar-10 {
  margin-left: -5px;
  margin-right: -5px;
}

.custom-pad-10 {
  padding-left: 5px;
  padding-right: 5px;
}

.side-info1 {
  background: #fff;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 99999;
  right: -400px;
  top: 0;
  padding: 30px;
  transition: 0.6s;
  overflow-y: scroll;
}

.side-info1.info-open1 {
  right: 0;
}

.side-info-close1 {
  background: none;
  border: 0;
  color: #000;
  font-size: 20px;
  padding: 0;
  margin-bottom: 20px;
}

.offcanvas-overlay1 {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay1.overlay-open1 {
  opacity: 0.5;
  visibility: visible;
}

.header-sidebar-instagram-item img {
  width: 100%;
}

.bd-main-menu ul li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}

.bd-main-menu ul li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.bd-header-logo {
  line-height: 80px;
}

.bd-header-logo img {
  max-width: 130px;
}

.bd-main-menu .current_page_item.active > a {
  color: var(--clr-theme-1);
}

.bd-main-menu .current_page_item.active > a::after {
  color: var(--clr-theme-1);
}

.bd-main-menu ul li.menu-last .sub-menu {
  left: auto;
  right: 0;
}

.bd-main-menu ul li.menu-last .sub-menu li .sub-menu {
  left: auto;
  right: 100%;
  top: 0;
}

.busicox-pro-widget-title {
  font-size: 20px;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
}

.busicox-pro-widget-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #EF0454;
}

label {
  color: #444;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.conatct-post-form input, .post-comment-form input, .comment-respond input {
  border: 2px solid #f3f4f8;
  height: 55px;
  margin-bottom: 30px;
  padding: 0 30px;
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
  background-color: #f3f4f8;
}

.conatct-post-form textarea, .post-comment-form textarea, .comment-respond textarea {
  border: 2px solid #f3f4f8;
  height: 175px;
  margin-bottom: 30px;
  padding: 30px;
  width: 100%;
  font-size: 14px;
  resize: none;
  border-radius: 5px;
  background-color: #f3f4f8;
}

.comment-respond p.comment-form-comment textarea {
  margin-bottom: 10px;
}

.busicox-page-content table td {
  border: 0;
}
.busicox-page-content table th {
  border: 0;
}
.busicox-page-content table a {
  color: #111111;
  font-weight: 600;
}
.busicox-page-content table tbody td {
  text-align: center;
}

/*----------------------------------------*/
/*  16. Page title
/*----------------------------------------*/
.pt-220 {
  padding-top: 220px;
}

.bd-page-title-bg {
  position: relative;
  background-color: var(--clr-bg-gray);
}
.bd-page-title-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #EFEFEF;
}

.bd-page-title .breadcrumb-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-page-title .breadcrumb-title {
    font-size: 76px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-page-title .breadcrumb-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-page-title .breadcrumb-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .bd-page-title .breadcrumb-title {
    font-size: 48px;
  }
  .bd-page-title .breadcrumb-title br {
    display: none;
  }
}
.bd-page-title .breadcrumb-trail a {
  font-size: 18px;
}
.bd-page-title .breadcrumb-trail a span {
  color: var(--clr-body-heading);
}
.bd-page-title .breadcrumb-trail span {
  font-size: 18px;
  color: var(--clr-theme-1);
}
.bd-page-title .breadcrumb-trail span.dvdr {
  margin: 0px 5px;
}
.bd-page-title .breadcrumb-trail span.dvdr i {
  color: var(--clr-body-heading);
  font-size: 14px;
}

@media (max-width: 575px) {
  .single-post .bd-page-title .breadcrumb-title {
    font-size: 42px !important;
  }
}

.home_front_page .breadcrumb-menu {
  display: none;
}

/*----------------------------------------*/
/*  07. Blog
/*----------------------------------------*/
.bd-blog {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 20px 40px 15px rgba(0, 6, 69, 0.08);
}
.bd-blog .bd-blog-img {
  overflow: hidden;
}

.bd-blog-meta ul li {
  display: inline-block;
  list-style: none;
  margin-right: 35px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-text);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .bd-blog-meta ul li {
    margin-right: 10px;
  }
}
.bd-blog-meta ul li:last-child {
  margin-right: 0px;
}
.bd-blog-meta ul li i {
  margin-right: 5px;
  font-size: 14px;
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 450px) {
  .bd-blog-meta ul li i {
    margin-right: 5px;
  }
}
.bd-blog-meta ul li a:hover {
  color: var(--clr-theme-1);
}

.bd-blog-text {
  padding: 25px 30px 30px 30px;
}

.bd-blog-text2 {
  padding: 25px 30px 30px 30px;
  background-color: var(--clr-common-white);
}

.bd-blog-title {
  font-size: 42px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-blog-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .bd-blog-title {
    font-size: 26px;
  }
}
.bd-blog-title:hover > a {
  color: var(--clr-theme-1);
}

.bd-blog-title2 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-blog-title2 {
    font-size: 18px;
  }
}
.bd-blog-title2:hover > a {
  color: var(--clr-theme-1);
}

.bd-blog-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bd-blog-author-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.bd-blog-author-info img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 2px solid var(--clr-common-white);
  margin-right: 8px;
}

.bd-blog-author-info-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body-text);
  line-height: 1;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.bd-blog-author-link a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-blog-author-link a:hover {
  color: var(--clr-theme-1);
}
.bd-blog-author-link a:hover i {
  padding-left: 3px;
  display: inline-block;
}

.basic-pagination ul li {
  display: inline-block;
  margin-right: 10px;
}
.basic-pagination ul li a, .basic-pagination ul li span {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg-gray);
  color: var(--clr-body-heading);
  font-size: 20px;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 3px;
}

.basic-pagination ul li a:hover, .basic-pagination ul li span.current {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.sidebar__widget-px form {
  position: relative;
}
.sidebar__widget-px form input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 3px;
  border: none;
  outline: none;
  padding: 0 20px;
  background: var(--clr-bg-gray);
  color: var(--clr-body-text);
}
.sidebar__widget-px form input ::placeholder {
  color: var(--clr-body-text);
}
.sidebar__widget-px form button {
  position: absolute;
  right: 0;
  height: 60px;
  width: 50px;
  line-height: 60px;
  color: var(--clr-theme-1);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.blog-search-content .sidebar-search-form input input {
  background: var(--clr-bg-gray);
  color: var(--clr-body-text);
}
.blog-search-content .sidebar-search-form input input ::placeholder {
  color: var(--clr-body-text);
}

.sidebar--widget__post {
  display: flex;
}
.sidebar--widget__post .post__img {
  height: 90px;
  width: 80px;
  border-radius: 10px;
  background-size: cover;
  background-position: left;
  margin-right: 15px;
}
.sidebar--widget__post .sidebar__post--text {
  overflow: hidden;
}

.sidebar__post--title {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}
.sidebar__post--title:hover {
  color: var(--clr-theme-1);
}

.sidebar__widget--title {
  font-size: 20px;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
}
.sidebar__widget--title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--clr-theme-1);
}

.widget ul li {
  margin-bottom: 15px;
  list-style: none;
}
.widget ul li:last-child {
  margin-bottom: 0px;
}
.widget ul li a {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: var(--clr-body-text);
}
.widget ul li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  color: var(--clr-theme-1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.widget ul li a:hover {
  color: var(--clr-theme-1);
}
.widget ul li a:hover:before {
  left: 7px;
}

.sidebar--widget__tag a {
  display: inline-block;
  height: 34px;
  line-height: 30px;
  text-align: center;
  padding: 0 19px;
  font-size: 14px;
  border: 2px solid var(--clr-bg-gray2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-right: 8px;
  margin-bottom: 10px;
  color: var(--clr-body-text);
}
.sidebar--widget__tag a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .ablog__sidebar--wrapper {
    margin-right: 0px;
  }
}

.ablog__text4 blockquote {
  padding: 40px;
  color: var(--clr-body-text);
  position: relative;
  background: var(--clr-bg-gray);
  font-style: normal;
  clear: both;
  font-weight: 400;
  border-radius: 10px;
  box-shadow: 0px 1px 2px 0px rgba(10, 0, 58, 0.14);
  border: 1px solid var(--clr-bg-gray2);
  margin-bottom: 30px;
  padding-bottom: 25px;
}
@media (max-width: 575px) {
  .ablog__text4 blockquote {
    padding: 25px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ablog__text4 blockquote {
    padding: 40px;
    padding-bottom: 25px;
  }
}
.ablog__text4 blockquote:before {
  content: "";
  position: static;
  font-family: "Font Awesome 5 Pro";
  font-size: 32px;
  color: var(--clr-theme-1);
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}
.ablog__text4 blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: var(--clr-body-heading);
  font-style: inherit;
}
.ablog__text4 blockquote cite:before {
  content: "";
  display: inline-block;
  background: var(--clr-theme-1);
  height: 2px;
  width: 40px;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

.blog__deatails--tag span {
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 0px;
  font-weight: 600;
  color: var(--clr-body-heading);
}
@media (max-width: 575px) {
  .blog__deatails--tag span {
    display: block;
    margin-bottom: 10px;
    margin-right: 0px;
  }
}
.blog__deatails--tag a {
  display: inline-block;
  height: 34px;
  line-height: 30px;
  text-align: center;
  padding: 0 19px;
  font-size: 14px;
  border: 2px solid var(--clr-bg-gray2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-right: 8px;
}
@media (max-width: 575px) {
  .blog__deatails--tag a {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__deatails--tag a {
    margin-bottom: 0px;
  }
}
.blog__deatails--tag a:hover {
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
}

.blog__details--subtitle {
  font-size: 27px;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog__author {
  padding: 30px 40px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(10, 0, 58, 0.14);
  -moz-box-shadow: 0px 1px 4px 0px rgba(10, 0, 58, 0.14);
  box-shadow: 0px 1px 4px 0px rgba(10, 0, 58, 0.14);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 575px) {
  .blog__author {
    padding-bottom: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__author {
    padding-bottom: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .blog__author {
    text-align: center;
    padding: 30px 30px;
  }
}
@media (max-width: 575px) {
  .blog__author-img {
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .blog__author-img {
    margin-right: 0px;
  }
}

.blog__author-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
.blog__author-content span {
  display: inline-block;
  margin-bottom: 5px;
}
.blog__author-content p {
  margin-bottom: 0px;
}

.post-comment-title h3 {
  font-size: 22px;
  font-weight: 600;
}

.latest-comments ul {
  list-style: none;
}

.latest-comments li:first-child .comments-box {
  border-top: 0;
  padding-top: 0;
}

.comments-avatar {
  float: left;
  margin-right: 20px;
}
.comments-avatar img {
  border-radius: 50%;
}

.comments-text {
  overflow: hidden;
  border-bottom: 1px solid var(--clr-bg-gray2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.comments-text p {
  margin-bottom: 20px;
}

.comment-reply {
  font-weight: 500;
  font-size: 14px;
  color: var(--clr-body-heading);
}
.comment-reply:hover {
  color: var(--clr-theme-1);
}

.avatar-name {
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.avatar-name h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
.avatar-name span {
  font-size: 14px;
  font-weight: 500;
}

.ablog-4 {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 20px 40px 15px rgba(0, 6, 69, 0.08);
}

.ablog__text4 {
  padding: 32px 40px 40px 40px;
  border-top: 0px;
}
@media (max-width: 450px) {
  .ablog__text4 {
    padding: 32px 20px 30px 20px;
  }
}

.latest-comments li.children {
  margin-left: 105px;
}
@media (max-width: 575px) {
  .latest-comments li.children {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest-comments li.children {
    margin-left: 70px;
  }
}

.post-comment-form h4 {
  font-size: 22px;
  margin-bottom: 7px;
  font-weight: 600;
}

.post-comment-form > span {
  display: inline-block;
  margin-bottom: 45px;
}

.bd-blog-details-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.16;
}
@media (max-width: 575px) {
  .bd-blog-details-title {
    font-size: 32px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .blog__details--wrapper.mr-50 {
    margin-right: 0px;
  }
}

.postbox__audio iframe {
  width: 100%;
}

.swiper-blog-button.slide-next {
  left: auto;
  right: 10px;
}

.swiper-blog-button.slide-prev {
  left: 10px;
  right: auto;
}

.swiper-blog-button:hover {
  background: var(--clr-theme-1);
  color: #fff;
}

.swiper-blog-button {
  position: absolute;
  top: 50%;
  color: var(--clr-theme-1);
  content: "";
  z-index: 999;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  line-height: 60px;
  transform: translateY(-50%);
  transition: 0.3s;
  cursor: pointer;
}

.widget-post-title a:hover {
  color: var(--clr-theme-1);
}

.tagcloud a {
  display: inline-block;
  height: 34px;
  line-height: 30px;
  text-align: center;
  padding: 0 19px;
  font-size: 14px !important;
  border: 2px solid var(--clr-bg-gray2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 3px;
  margin-right: 8px;
  margin-bottom: 10px;
  color: var(--clr-body-text);
}

.tagcloud a:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}

.wp-block-search .wp-block-search__label {
  width: 100%;
  font-size: 22px;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600 !important;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px !important;
}

.wp-block-search .wp-block-search__label:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--clr-theme-1);
}

.widget_block .wp-block-group__inner-container h2 {
  font-size: 22px;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600 !important;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.widget_block .wp-block-group__inner-container h2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--clr-theme-1);
}

.wp-block-search .wp-block-search__input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 3px;
  border: none;
  outline: none;
  padding: 0 20px;
  background: var(--clr-bg-gray);
  color: var(--clr-body-text);
}

.wp-block-search .wp-block-search__button {
  background: var(--clr-theme-1);
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(95, 58, 252, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

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

.progress-wrap::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: #F98541;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

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

.progress-wrap svg.progress-circle path {
  stroke: #F98541;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*.........<! 1. Theme default css !>.........*/
body {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}

img {
  height: auto;
}

code {
  color: #F98541;
}

button {
  transition: 0.3s;
}

.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

img {
  transition: 0.3s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

button {
  cursor: pointer;
}

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

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

input:focus::placeholder {
  opacity: 0;
}

input:focus::-moz-placeholder {
  opacity: 0;
}

textarea:focus::placeholder {
  opacity: 0;
}

textarea:focus::-moz-placeholder {
  opacity: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: #444;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

/*.........<! End Theme Defaults Style !>.........*/
/** css issues **/
.post-text a:hover {
  color: #ededed;
}
.post-text p > a:hover {
  color: #696969;
}
.post-text img {
  max-width: 100%;
  margin: 25px 0;
}
.post-text blockquote p {
  margin-bottom: 10px !important;
  line-height: 1.5;
  font-size: 18px;
  color: #070337;
  font-weight: 400;
}

.post-text > h6 {
  margin-bottom: 20px;
}

.postbox__video img,
article.postbox .postbox__thumb img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
  height: auto;
  width: inherit;
}

.blog__details-wrapper ul li a:hover {
  color: #F98541;
}

.navigation-border {
  border-top: 2px solid #f7f7f7;
  overflow: hidden;
}

.theme-navigation span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.theme-navigation span a {
  color: #666;
}
.theme-navigation span a:hover {
  color: #F98541;
}
.theme-navigation h4 {
  font-size: 23px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}
.theme-navigation h4 a {
  color: #004876;
}
.theme-navigation h4 a:hover {
  color: #F98541;
}

.b-0 {
  border: 0;
}

.sidebar-search-form {
  position: relative;
}
.sidebar-search-form input {
  width: 100%;
  height: 60px;
  line-height: 56px;
  font-size: 14px;
  padding: 0 25px;
  background: #f3f4f8;
  border: 2px solid #f3f4f8;
  outline: none;
  border-radius: 4px;
}
.sidebar-search-form input ::placeholder {
  color: #57556a;
}
.sidebar-search-form button {
  font-size: 16px;
  color: #011224;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: none;
}

.sidebar-search-form input:focus {
  border-color: #F98541;
}

.sidebar-search-form input:focus::placeholder {
  opacity: 0;
}

.sidebar-search-form input:focus::-moz-placeholder {
  opacity: 0;
}

.footer-widget .sidebar-search-form input {
  background: #fff;
}

.about-me img {
  margin-bottom: 25px;
  border-radius: 50%;
}
.about-me h4 {
  font-size: 18px;
  letter-spacing: 1px;
}

.widget-social-icon a {
  display: inline-block;
  margin: 0 8px;
  color: #F98541;
}
.widget-social-icon a:hover {
  color: #F98541;
}

.widget .recent-posts > li {
  overflow: hidden;
}

.widget .recent-posts > li:not(:last-child) {
  overflow: hidden;
  margin-bottom: 30px;
}

.widget-posts-image {
  float: left;
}
.widget-posts-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
  margin-bottom: 0;
}

.recent-posts .widget-post-list:not(:last-child) {
  margin-bottom: 30px;
}

.widget-posts-body {
  overflow: hidden;
  padding-top: 8px;
}

.widget-posts-title {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}
.widget-posts-title a {
  color: #001d23;
}
.widget-posts-title a:hover {
  color: #F98541;
}

.widget-posts-meta {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 500;
  color: #28484f;
  margin-bottom: 7px;
}

.widget-post-list .widget-posts-meta {
  margin: 0;
}

ul.cat li {
  border-top: 1px solid #eaedff;
  padding: 15px 0;
  overflow: hidden;
}

ul.cat li:first-child {
  border-top: 0;
  padding-top: 0;
}

ul.cat li:last-child {
  padding-bottom: 0;
}

ul.cat li a {
  display: block;
  color: #647589;
}

ul.cat li a:hover {
  color: #F98541;
}

#Instafeed {
  margin: 0 -5px;
  overflow: hidden;
}

#Instafeed li {
  width: 33.33%;
  float: left;
  padding: 0 5px;
  margin-bottom: 10px;
}

#Instafeed li img {
  width: 100%;
}

.bg-none {
  background: none;
}

.blog-post-tag a:last-child {
  margin-right: 0;
}

.theme-author.author {
  background: #fff;
}
@media (max-width: 575px) {
  .theme-author.author {
    padding: 0 30px 44px 30px;
  }
}

.author-img {
  margin-bottom: 20px;
  margin-right: 0;
  margin-top: 0;
}
.author-img img {
  margin-top: -60px;
  border-radius: 50%;
  border: 5px solid #fff;
}

.author-text {
  overflow: hidden;
}
.author-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.author-text p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 28px;
}

.author-icon {
  margin-top: 10px;
  margin-bottom: 15px;
}
.author-icon a {
  font-size: 14px;
  color: #666;
  margin-right: 10px;
  transition: 0.3s;
}
.author-icon a:hover {
  color: #F98541;
}

.blog__author-img img {
  width: 100px;
  border-radius: 10px;
}

.blog__author-content p {
  margin: 0;
  line-height: 24px;
  font-size: 15px;
}

/*author*/
.author-wrapper {
  background: #f7f7fd;
  padding: 37px 71px 35px 40px;
  overflow: hidden;
  border-left: 5px solid #1876df;
}

.author-text > h4 {
  text-transform: capitalize;
}

.author-text > p {
  margin-bottom: 0;
}

.author-icon a:hover {
  color: #F98541;
}

.blog-coment-title h2 {
  font-size: 22px;
  margin-bottom: 0;
}

.post-comments-title h2 {
  font-size: 22px;
  margin-bottom: 30px;
}

ul .comment-respond {
  margin-bottom: 40px;
  margin-top: 40px;
}

.post-comments-title h2 small {
  font-size: 16px;
  font-weight: 500;
  color: #F98541;
}

.comment-reply-link {
  font-weight: 600;
  font-size: 14px;
  color: #222222;
}
.comment-reply-link i {
  padding-left: 4px;
  display: inline-block;
  font-weight: 400;
  font-size: 12px;
  transform: translateY(1px);
  padding-right: 4px;
}

/*comment-reply*/
.logged-in-as {
  line-height: 1;
}

/* 25. Pagination  */
div.basic-pagination ul {
  padding-left: 0;
}

/*next prev post*/
.blog-details-border {
  margin-top: 40px;
  background: #fff;
}

.page-area .post-comments-form {
  margin-bottom: 0;
  clear: both;
  padding-top: 0;
}

.busicox-page-content ol,
.busicox-page-content ul {
  padding-left: 22px;
}

/*blog pagination*/
/*blog-post-tag*/
.blog__details__tag {
  overflow: hidden;
  clear: both;
  margin-top: 20px;
  padding-top: 30px;
}

/**
*
* Sidebar widget css
*
*/
/**
* tags
*/
.blog-area .widget ul {
  padding: 0;
  margin: 0;
}

.blog-area .widget ul li ul {
  padding-left: 15px;
  padding-top: 15px;
}

.rssSummary {
  line-height: 27px;
  margin: 10px 0;
  color: #878787;
  font-size: 16px;
}

.widget ul {
  margin: 0;
}

.widget ul li a.rsswidget {
  line-height: 1.3;
}

.widget .footer-post h5 a {
  font-size: 16px;
  line-height: 1.3;
}

.widget ul li:first-child {
  padding-top: 0;
}

.widget_recent_entries ul li a {
  line-height: 26px;
}

/**
* image widget
*/
.widget_media_image img {
  width: 100%;
}

/**
* widget custom style for wp
*
*/
.widget li:last-child {
  border: 0;
  margin: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget li a {
  color: #444;
  font-weight: 500;
  padding-left: 0;
}

.widget li a:hover {
  color: #F98541;
}

.widget.widget_rss li span {
  display: block;
}

.widget.widget_rss li span {
  display: block;
  list-style: none;
  margin-right: 35px;
  font-size: 14px;
  font-weight: 500;
  color: #6A6A6A;
  transition: all 0.3s ease-out 0s;
}

li .blog-footer-meta span {
  float: none !important;
  font-size: 13px !important;
}

.widget_recent_comments li span,
.widget_recent_comments li span a {
  float: none;
  font-weight: 500;
  color: #fff;
}

.footer__widget.widget_recent_comments li span,
.footer__widget.widget_recent_comments li span a {
  float: none;
  font-weight: 600;
  color: #fff;
}

.sidebar__widget.widget_recent_comments li span,
.sidebar__widget.widget_recent_comments li span a {
  font-weight: 500;
  color: #070337;
  text-transform: capitalize;
  padding-left: 0;
}

.sidebar__widget.widget_recent_comments li span a:after {
  display: none;
}

.sidebar__widget.widget_recent_comments li span,
.sidebar__widget.widget_recent_comments li a:hover {
  color: #F98541;
}

.sidebar__widget.widget_recent_comments li a {
  padding-left: 0;
}

.sidebar__widget.widget_recent_comments li a:after {
  display: none;
  padding-left: 0;
}

.sidebar__widget ul li a:hover {
  color: #F98541;
}

.footer__widget .widget_rss ul li a.rsswidget {
  font-weight: 500;
  color: #57556a;
}

.sidebar__widget.widget_rss ul li a.rsswidget {
  font-weight: 500;
  color: #070337;
  padding-left: 0;
}

.widget li span.post-date {
  float: none;
  margin-top: 7px;
  display: block;
  font-size: 13px;
}

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

/* calendar widget */
.wp-calendar-nav {
  display: flex;
  justify-content: space-between;
}

.widget_calendar {
  float: none;
}

#wp-calendar {
  width: 100%;
}

#wp-calendar caption {
  text-align: right;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  color: #878787;
}

.footer-widget #wp-calendar caption {
  color: #A2A2A2;
}

.footer-widget .wp-calendar-nav a {
  color: #A2A2A2;
}

.footer-widget ul ul {
  padding-left: 15px;
  padding-top: 20px;
}

.footer-widget.widget_recent_comments ul li a::before,
.footer-widget.widget_recent_entries ul li a::before,
.footer-widget.widget_rss ul li a::before {
  display: none;
}

.footer-widget .rsswidget {
  color: #fff;
}

.footer__widget.widget_rss .rssSummary {
  color: #a1a2ab;
}

.footer-widget #wp-calendar thead th {
  padding-bottom: 10px;
  text-align: center;
  color: #fff;
}

.footer-widget .sidebar-tad li a,
.footer-widget .tagcloud a {
  background: #fff;
  color: #004976;
}

.footer-widget .tagcloud a:hover {
  background: #F98541;
  color: #fff;
}

.widget .rsswidget {
  color: #001d23;
}

#wp-calendar thead {
  font-size: 14px;
}

#wp-calendar thead th {
  padding: 5px;
  text-align: center;
  background: transparent;
  font-weight: 400;
  border: 1px solid #ddd;
}

#wp-calendar tbody {
  color: #666;
}

#wp-calendar tbody td {
  background: #f7f7f7;
  border: 1px solid #e1e1e1;
  text-align: center;
  padding: 8px 0;
  transition: 0.3s;
}

.footer-widget #wp-calendar tbody td {
  background: #fff;
  border: 1px solid #ddd;
}

.footer__widget #wp-calendar thead th {
  padding-bottom: 10px;
  text-align: center;
  color: #a1a2ab;
}

.footer__widget #wp-calendar caption {
  color: #a1a2ab;
}

.footer__widget .wp-calendar-nav a {
  color: #a1a2ab;
}

#wp-calendar tbody td:hover,
#wp-calendar tbody td:hover a {
  background: #F98541;
  color: #fff;
}

#wp-calendar tbody .pad,
#wp-calendar tbody .pad:hover {
  background: none;
}

#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}

#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

.latest-comments ul li ul.children {
  padding-left: 70px;
}

.latest-comments ul li ul.children {
  padding-top: 0;
}

.no-results.not-found {
  background: #fff;
  padding: 41px 100px;
  text-align: center;
  border: 2px solid #f4f3fb;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .no-results.not-found {
    padding: 30px;
  }
}
.pageontent.blog-search-content p {
  margin-bottom: 20px;
}

.blog-search-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.error-404-title {
  line-height: 1;
  font-size: 140px;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-title {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: 600;
}

.error-text {
  margin-bottom: 30px;
}

.page-content.mb-40 {
  margin-bottom: 30px;
}

.page-header {
  background: #f5faff;
  margin-bottom: 30px;
  padding: 30px;
}
.page-header h1 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}

.no-results.not-found .page-header {
  background: none;
  margin-bottom: 30px;
  padding: 0;
}

.navigation.posts-navigation .nav-next {
  float: right;
}
.navigation.posts-navigation .nav-previous {
  float: left;
}
.navigation.posts-navigation .nav-links {
  overflow: hidden;
}

.navigation.posts-navigation {
  overflow: hidden;
  margin-bottom: 40px;
}
.navigation.posts-navigation .nav-links a {
  text-transform: uppercase;
  background: #fff;
  border: 2px solid #F98541;
  color: #F98541;
}
.navigation.posts-navigation .nav-links a:hover {
  background: #F98541;
  color: #fff;
}

/*page table*/
.busicox-page-content table {
  margin-bottom: 30px;
}

.busicox-page-content table tbody td {
  text-align: center;
}

.busicox-page-content table a {
  color: #F98541;
}

.busicox-page-content table td {
  border-color: #ddd;
  padding: 12px 12px;
}

.busicox-page-content th,
.busicox-page-content td {
  font-weight: normal;
  text-align: left;
  border-width: 0 1px 1px 0;
}

.busicox-page-content table,
.busicox-page-content th,
.busicox-page-content td {
  border: 1px solid #d1d1d1;
}

.busicox-page-content table th {
  padding: 12px 12px;
  font-size: 15px;
  border-color: #ddd;
  text-align: center;
  font-weight: 600;
}

.busicox-page-content ol li,
.busicox-page-content ul li {
  margin-bottom: 7px;
}

.busicox-page-content ol li ol,
.busicox-page-content ul li ul {
  margin-top: 7px;
}

.blog__details-wrapper table {
  margin-bottom: 30px;
}

.blog__details-wrapper table tbody td {
  text-align: center;
}

.blog__details-wrapper table td {
  border-color: #ddd;
  padding: 12px 12px;
}

.blog__details-wrapper th,
.blog__details-wrapper td {
  font-weight: normal;
  text-align: left;
  border-width: 0 1px 1px 0;
  padding: 10px 15px;
}

.blog__details-wrapper table,
.blog__details-wrapper th,
.blog__details-wrapper td {
  border: 1px solid #d1d1d1;
}

.post-comments table th {
  padding: 12px 12px;
  font-size: 15px;
  border-color: #ddd;
  text-align: center;
  font-weight: 600;
}

.blog__details-wrapper table {
  margin-bottom: 30px;
  width: 100%;
}

.blog__details-wrapper table tbody td {
  text-align: center;
}

.blog__details-wrapper table td {
  border-color: #ddd;
  padding: 12px 12px;
}

.blog__details-wrapper th,
.blog__details-wrapper td {
  font-weight: normal;
  text-align: left;
  border-width: 0 1px 1px 0;
}

.blog__details-wrapper table,
.blog__details-wrapper th,
.blog__details-wrapper td {
  border: 1px solid #d1d1d1;
}

.blog__details-wrapper table th {
  padding: 12px 12px;
  font-size: 15px;
  border-color: #ddd;
  text-align: center;
  font-weight: 400;
}

#wp-calendar tbody td#today {
  background: #F98541;
  color: #fff;
}

#wp-calendar tbody td#today a {
  color: #fff;
}

.post-text .wp-caption.aligncenter {
  margin-top: 40px;
}

.post-text .alignright.size-thumbnail {
  overflow: hidden;
  clear: both;
}

/*unit test*/
.post-comments .latest-comments > ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.blog-area dl,
.blog-area ol,
.blog-area ul {
  margin-top: 0;
  margin-bottom: 25px;
}

.blog-area > ul,
.blog-area > ol,
.blog-area ul,
.blog-area ol {
  padding-left: 25px;
}

.blog__details-wrapper ol li,
.blog__details-wrapper ul li {
  padding-top: 7px;
}

.blog-area ol ol ol,
.blog-area ol ul ul,
.blog-area ul ol ol,
.blog-area ul ul ul {
  margin-bottom: 0;
}

.blog-area ol ul,
.blog-area ul ol,
.blog-area ul ul,
.blog-area ol ul ol {
  margin-bottom: 0;
}

ul {
  list-style: disc;
}

.wp-block-button .wp-block-button__link {
  color: #fff !important;
}

.postbox.sticky .post-text,
.postbox.sticky .post-text p {
  margin-bottom: 0;
}

.blog-content h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

#wp-calendar #next a,
#wp-calendar #prev a {
  font-size: 13px;
  font-weight: 600;
}

.blog-content table {
  margin-bottom: 30px;
}

.blog-content table tbody td {
  text-align: center;
}

.blog-content table td {
  border-color: #ddd;
  padding: 12px 12px;
}

.blog-content th,
.blog-content td {
  font-weight: normal;
  text-align: left;
  border-width: 0 1px 1px 0;
}

.blog-content table,
.blog-content th,
.blog-content td {
  border: 1px solid #d1d1d1;
}

.blog-content table th {
  padding: 12px 12px;
  font-size: 15px;
  border-color: #ddd;
  text-align: center;
  font-weight: 600;
}

.comments-text > p {
  margin-bottom: 15px;
}

.comments-text ul li,
.comments-text ol li {
  padding-top: 5px;
}

#wp-comment-cookies-consent {
  width: auto;
  display: inline-block;
  height: auto;
  margin-right: 20px;
}

.comment-form-cookies-consent label {
  display: inline-block;
}

.comment-form-cookies-consent {
  margin-left: 18px;
  display: none;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
  border: 1px solid #ddd;
  padding: 15px;
}

dd + dt {
  margin-top: 20px;
}

.page-links {
  width: 100%;
  clear: both;
  margin-bottom: 30px;
  margin-top: 20px;
}

.page-links > span.page-links-title {
  border: 0;
  color: inherit;
}

.page-links a,
.page-links > span {
  border: 2px solid #ddd;
  display: inline-block;
  min-width: 35px;
  text-align: center;
  margin-left: 2px;
  height: 33px;
  line-height: 30px;
  margin-right: 3px;
  color: #444;
}

.page-links > span {
  border: 2px solid #096bd8;
  color: #096bd8;
}

.page-links a:hover {
  border: 2px solid #096bd8;
  color: #096bd8;
}

/**
*
* removing visual composer default data
*/
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li {
  margin-bottom: 0 !important;
}

.comments-text > ul,
.comments-text > ol {
  margin-bottom: 20px;
}

#recentcomments li a {
  line-height: 1.5;
}

.widget.widget_recent_comments ul li a {
  display: unset;
  line-height: 27px;
}

.widget.widget_recent_comments ul li .comment-author-link a {
  color: #F98541;
}

.tag-space {
  display: block;
  width: 100%;
  clear: both;
  margin-top: 20px;
}

.size-thumbnail {
  margin-bottom: 20px;
}

.no-results.not-found .page-header {
  padding-top: 0;
  padding-bottom: 0;
}

.search-form2 .form-control {
  height: 50px;
  border-radius: inherit;
}

.search-form2 {
  position: relative;
}

.archive-description {
  margin-top: 15px;
}

/*footer */
.footer-area-bottom {
  padding: 15px 0;
}

.copy-right p {
  color: #999;
  margin: 0;
}

.footer-widget select {
  width: 100%;
  border-radius: 0;
}

/*theme unit test css */
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.admin-bar .sticky-header {
  top: 32px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em !important;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em !important;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget select {
  max-width: 100%;
  height: 45px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 10px;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.sticky {
  display: block;
}

.postbox__item {
  border: 1px solid #f6f6f8;
  box-shadow: 0px 1px 2px 0px rgba(10, 0, 58, 0.14);
}

.bd-blog.sticky {
  position: relative;
}

.bd-blog.sticky::before {
  position: absolute;
  content: "";
  right: 25px;
  top: 25px;
  font-family: "Font Awesome 5 Pro";
  color: #F98541;
  font-size: 35px;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  font-size: 14px;
  font-style: italic;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 10px;
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding-right: 5px !important;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/**
* custom css
*
*/
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color {
  background-color: #fff4ef;
}

.wp-block-pullquote {
  border-top: 4px solid #F98541 !important;
  border-bottom: 4px solid #F98541 !important;
}

.wp-block-quote__citation,
.wp-block-quote cite,
.wp-block-quote footer {
  margin-top: 10px;
  display: block;
}

.logged-in-as a {
  color: #222;
}

.logged-in-as a:hover {
  color: #F98541;
}

/*new unit test*/
.wp-block-column:not(:first-child),
.wp-block-column:nth-child(2n) {
  margin-left: 10px;
}

.wp-block-column:not(:last-child) {
  margin-right: 10px;
}

.wp-block-column:nth-child(2n+1) {
  margin-right: 10px;
}

.post-text > .alignwide {
  margin-left: 0;
  margin-right: 0;
}

.post-text p.has-large-font-size {
  font-size: 24px !important;
  line-height: 1.2;
  margin-bottom: 10px;
}

.wp-block-media-text.alignfull.has-media-on-the-right.has-background.is-stacked-on-mobile {
  margin-bottom: 20px;
}

.wp-block-preformatted {
  margin: 30px 0;
}

.has-very-light-gray-color.has-very-light-gray-color {
  color: #fff;
  background: #F98541 !important;
}

.wp-block-archives select,
.wp-block-archives .postform {
  height: 50px;
  width: 200px;
  border: 1px solid #ddd;
  padding: 0 10px;
}

.wp-block-categories .postform {
  width: 200px;
  border: 1px solid #ddd;
  padding: 0 10px;
  float: none;
  margin-bottom: 15px;
}

.wp-block-archives .nice-select {
  float: none;
  margin-bottom: 15px;
  width: 200px;
  margin-bottom: 15px;
}

.wp-block-latest-comments {
  padding-left: 0 !important;
}

.wp-block-latest-posts.has-dates {
  padding-left: 0;
}

.wp-block-archives li a,
.wp-block-categories li a {
  color: #6a727f;
}

.wp-block-search__input {
  width: 100%;
  height: 50px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  padding: 0 15px;
}

.wp-block-cover {
  margin-bottom: 30px;
}

.wp-block-search .wp-block-search__button {
  margin-left: 0;
  background: #000;
  color: #fff;
  border: 0;
  padding: 12px 40px;
  margin-bottom: 14px;
}

.copyright__text p {
  margin: 0;
}

.busicox-page-content figure.wp-caption.aligncenter {
  margin-top: 40px;
}

.busicox-page-content .size-full.alignright {
  margin-bottom: 35px;
  margin-top: 20px;
  clear: both;
}

.admin-bar .sticky-menu {
  margin-top: 32px;
}

.busicox-page-content .post-comments-form {
  margin-top: 50px;
}
.busicox-page-content .post-comments {
  margin-top: 40px;
}

.postbox.sticky .postbox_text {
  border: 2px solid #F98541;
}

.page-links > span {
  border: 2px solid #F98541;
  color: #F98541;
}

.post-text a:hover {
  color: #F98541;
}

.post-text a {
  color: #F98541;
}
.post-text a.tag-cloud-link {
  color: #666;
}
.post-text a.tag-cloud-link:hover {
  color: #fff;
  background: #F98541;
  border-color: #F98541;
}

.wp-block-tag-cloud a a {
  display: inline-block;
  height: 34px;
  line-height: 30px;
  text-align: center;
  padding: 0 19px;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: 2px solid #e8e7ec;
  margin-right: 8px;
  margin-bottom: 10px;
  font-weight: 400 !important;
  border-radius: 6px;
}
.wp-block-tag-cloud a a:hover {
  color: #ffffff;
  background: #F98541;
  border-color: #F98541;
}

.wp-block-calendar {
  margin-bottom: 30px;
}
.wp-block-calendar a {
  color: inherit;
  text-decoration: none;
  color: #878787;
}

.wp-block-latest-comments__comment-author {
  text-transform: capitalize;
}

.post-text .blocks-gallery-grid img {
  margin: 0;
}

.page-links a:hover {
  border: 2px solid #F98541;
  color: #F98541;
}

.post-password-form input[type=submit] {
  background-color: #F98541;
}

.post-password-form input[type=password] {
  font-size: 1.2rem;
  line-height: 20px;
  padding: 12px 20px;
  border: 1px solid #e4e4f2;
  width: 100%;
  border-radius: 0;
}

.post-password-form label {
  width: 100%;
  margin-bottom: 8px;
}

.post-password-form input[type=submit] {
  background-color: #F98541;
  border: none;
  padding: 10px 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.postbox__text .blog-post-tag {
  padding-top: 40px;
}

.layout-wrapper .alignright.size-thumbnail {
  margin-bottom: 20px;
  clear: both;
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  width: calc((100% - 16px) / 2);
}

.blocks-gallery-grid .blocks-gallery-image,
.blocks-gallery-grid .blocks-gallery-item,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 16px 16px 0;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),
.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),
.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0;
}

.wp-block-gallery.columns-2.is-cropped li.blocks-gallery-item {
  width: calc((100% - 16px) / 2) !important;
}

.wp-block-search .wp-block-search__input {
  width: 100%;
  margin: 0;
}

.wp-block-button {
  margin-bottom: 15px;
}

.wp-block-cover-text {
  color: #fff !important;
}

.wp-block-cover-text a {
  color: #fff;
}

.wp-block-gallery .blocks-gallery-grid {
  padding-left: 0;
  margin-bottom: 0;
}

.blocks-gallery-caption {
  margin-bottom: 40px;
}

.wp-block-group.has-background {
  margin-bottom: 25px;
}

.is-style-outline .wp-block-button__link {
  border: 2px solid #222;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid #222;
  color: #222 !important;
}

.widget.mb-40.widget_media_image {
  padding: 0;
  border: 0;
}

.widget .nice-select,
.footer-widget .nice-select {
  float: none;
  border-radius: 0;
}

.widget .nice-select .option,
.footer-widget .nice-select .option {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.widget .nice-select::after,
.footer-widget .nice-select::after {
  right: 18px;
}

.blog-area .post-comments ol ol,
.blog-area .post-comments ol ul,
.blog-area .post-comments ul ol,
.blog-area .post-comments ul ul {
  margin-bottom: 20px;
}

.blog-area .post-comments ol ol ol,
.blog-area .post-comments ol ul ul,
.blog-area .post-comments ul ol ol,
.blog-area .post-comments ul ul ul {
  margin-bottom: 0px;
}

.comments-text > ul,
.comments-text > ol {
  margin-bottom: 20px;
}

.busicox-page-content ol,
.busicox-page-content ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

.busicox-page-content .elementor-widget-container .sidebar__widget ol,
.busicox-page-content .elementor-widget-container .sidebar__widget ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.busicox-page-content ol ol ol,
.busicox-page-content ol ul ul,
.busicox-page-content ul ol ol,
.busicox-page-content ul ul ul {
  margin-bottom: 0px;
}

.busicox-page-content ol ol,
.busicox-page-content ol ul,
.busicox-page-content ul ol,
.busicox-page-content ul ul {
  margin-bottom: 0;
}

.blog-area ol ol,
.blog-area ol ul,
.blog-area ul ol,
.blog-area ul ul {
  margin-bottom: 0;
}

.latest-comments .children li {
  list-style: none;
  margin-top: 5px;
}

.footer-widget.widget_recent_comments li a {
  display: unset;
}

.footer-widget ul li a {
  font-size: 14px;
  color: #A2A2A2;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: #F98541;
}

.sidebar__widget-title.mb-50 {
  margin-bottom: 35px;
}

.postbox_text {
  border: 2px solid #ededed;
  padding-left: 50px;
  padding-bottom: 50px;
  padding-right: 40px;
  transition: 0.3s;
  padding-top: 40px;
}

.post-meta span {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 20px;
  font-size: 15px;
  display: inline-block;
  color: #747ca2;
}
.post-meta span i {
  color: #F98541;
  font-size: 14px;
  margin-right: 2px;
}
.post-meta a {
  font-weight: 500;
  color: #747ca2;
}
.post-meta a:hover {
  color: #F98541;
}

.blog-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.widget-title-box {
  text-align: center;
}

.cm-btn {
  border: 0;
}

.cm-btn i {
  margin-right: 3px;
}

.blog-post-tag span {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-post-tag a {
  border: 2px solid #f6f6f6;
  padding: 12px 25px;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #00235a;
  margin-right: 5px;
  margin-top: 5px;
}
.blog-post-tag a:hover {
  background: #F98541;
  color: #fff;
  border-color: #F98541;
}

header ul,
footer ul {
  list-style: none;
}

.busicox-page-content .post-entry > p {
  margin: 32px 0;
  margin-top: 0;
}

.home_front_page .page_title__bread-crumb {
  display: none;
}

blockquote {
  margin: 35px 0px !important;
  padding: 40px;
  color: #666;
  position: relative;
  background: #f3f4f8;
  font-style: normal;
  text-align: left;
  clear: both;
  font-weight: 400;
  box-shadow: 0px 1px 2px 0px rgba(10, 0, 58, 0.14);
  border: 1px solid #f3f4f8;
}

blockquote::before {
  content: "";
  position: static;
  font-family: "Font Awesome 5 Pro";
  font-size: 32px;
  color: #F98541;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
}

blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: #070337;
  font-style: inherit;
  font-weight: 600;
}

blockquote cite::before {
  content: "";
  font-size: 28px;
  color: #ff5421;
  padding-bottom: 0px;
  display: inline-block;
  background: #F98541;
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

.comments-box blockquote {
  background: #fff;
}

/*custom */
.single-post .page__title-content h2 {
  font-size: 55px;
}

.post_gallery .owl-nav div button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
}

.post_gallery .owl-nav div.owl-next button {
  left: auto;
  right: 35px;
}

.post_gallery .owl-nav div button:hover {
  background: #F98541;
  color: #fff;
}

.sidebar-posts-bg-thumb {
  height: 80px;
  width: 80px;
  border-radius: 3px;
  background-size: cover;
  background-position: center center;
}

.widget-post-title {
  line-height: 1.4;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.rc-post .mb-20:last-child {
  margin: 0;
}

.rc-meta.widget-post-meta {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.blog-area .sidebar__widget ul {
  padding: 0;
  margin: 0;
}

.blog-area .recentcomments a::after {
  display: none;
}

.blog-area .sidebar__widget ul li {
  list-style: none;
  margin-bottom: 15px;
}

.blog-area .sidebar__widget ul ul {
  padding-left: 10px;
  padding-top: 14px;
}

.blog-area .sidebar__widget ul li a {
  padding-left: 20px;
  position: relative;
}

.blog-area .sidebar__widget ul li a:hover {
  color: #F98541;
}

.blog-area .sidebar__widget ul li a:hover::after {
  left: 5px;
}

.blog__item.sticky {
  position: relative !important;
}

.blog__item.sticky::before {
  position: absolute;
  content: "";
  right: 25px;
  top: 25px;
  font-family: "Font Awesome 5 Pro";
  color: #F98541;
  font-size: 35px;
}

.blog__details-wrapper .blog-title {
  display: none;
}

.post-text.mb-20 {
  margin-bottom: 0;
}

.blog__details-wrapper .post-text.mb-20 p:last-child {
  margin-bottom: 0;
}

.services__widget.widget_bdevs_services_form_widget {
  padding-bottom: 25px;
}

.wpcf7-form-control.wpcf7-submit.f-btn.f-btn-3.w-100 {
  margin-bottom: 0;
}

.services__form p {
  margin: 0;
}

.widget_text.services__widget.widget_custom_html {
  padding: 0;
  background: none;
}

.social-links {
  margin-top: 20px;
}
.social-links a {
  margin-right: 15px;
  font-size: 13px;
}

.custom-footer-2 {
  padding-left: 30px;
}

.custom-footer-3 {
  padding-left: 30px;
}

.post-comment-form {
  clear: both;
}

.footer__widget ul ul {
  padding-left: 8px;
  padding-top: 4px;
}

.blog__details-wrapper .postbox__title {
  display: none;
}

.footer__widget .nice-select {
  float: none;
}

.footer__widget .nice-select .option {
  margin: 0 !important;
}

.bd-footer-widget .nice-select .list {
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
}

.widget .nice-select .list {
  width: 100%;
  max-height: 300px;
  overflow-y: scroll;
}

.nice-select::after {
  width: 5px;
}

.footer__widget.widget_text p {
  color: #a1a2ab;
}

.footer__widget cite {
  color: #a1a2ab;
}

.footer__widget.widget_search input:focus {
  border-color: transparent;
}

.single-post .bd-page-title .breadcrumb-title {
  font-size: 48px;
}

.single-post .breadcrumb-menu {
  display: none;
}

.post-input input, .post-input textarea {
  height: 60px;
  width: 100%;
  border-radius: 3px;
  background: var(--clr-bg-gray);
  border: none;
  font-size: 16px;
  font-weight: 400;
  padding: 0px 20px;
  outline: none;
  color: #6A6A6A;
}

.post-input input::placeholder, .post-input textarea::placeholder {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.post-input textarea {
  height: 150px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.blog__details-wrapper .post-input input, .blog__details-wrapper .post-input textarea {
  margin-bottom: 20px;
}

.logged-in-as {
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog__details-wrapper .bd-blog-details-title {
  display: none;
}

.basic-pagination ul li span.page-numbers.dots {
  line-height: 35px;
}

.blog-area .bd-blog-meta ul {
  padding-left: 0;
}

.blocks-gallery-caption {
  margin-bottom: 40px;
}

.wp-block-pullquote {
  text-align: left;
}

.wp-block-quote {
  border: 0;
}

.wp-block-column .wp-block-quote {
  border-left: 0;
  padding-right: 30px;
}

.wp-block-image figcaption {
  color: #6d6e75;
  font-size: 14px;
  text-align: center;
  font-weight: 400;
  line-height: 27px;
}

.wp-block-pullquote.is-style-solid-color blockquote {
  display: inline-block;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
  padding: 20px 20px !important;
}

.wp-block-quote.has-text-align-right {
  border-right: 0;
}

.wp-block-button.is-style-squared .wp-block-button__link {
  color: #fff !important;
  border-radius: 0;
}

.wp-block-archives-dropdown select,
.wp-block-categories-dropdown.wp-block-categories select {
  width: 250px;
  height: 50px;
  padding: 0 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.wp-block-search .wp-block-search__inside-wrapper {
  position: relative;
}

.wp-block-search .wp-block-search__label {
  margin-bottom: 8px;
}

.wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
  margin-bottom: 30px;
}

.wp-block-search .wp-block-search__button {
  margin-left: 0;
  background: #000;
  color: #fff;
  border: 0;
  padding: 12px 20px;
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  right: 0;
  border-radius: 3px;
}

.post-text .wp-block-media-text__media img {
  margin: 0;
}

.widget .nice-select::after {
  margin-top: -3px;
}

.widget .nice-select.open .list, .bd-footer-widget .nice-select.open .list {
  width: 100%;
}

.bd-footer-widget .nice-select {
  width: 100%;
  margin-bottom: 20px;
  float: none;
}
.bd-footer-widget .nice-select::after {
  margin-top: -3px;
}

.bd-footer-widget ul ul {
  padding-left: 10px;
  padding-top: 10px;
}

.bd-footer-widget ul li {
  color: #878787;
  font-weight: 400;
}

.widget_rss ul li a.rsswidget {
  font-weight: 600;
}

.bd-footer-widget p {
  color: #878787;
  font-size: 16px;
  font-weight: 400;
}

.bd-footer-widget .tagcloud .tag-cloud-link {
  border: 1px solid #878787;
  color: #878787;
}

.bd-footer-widget .tagcloud .tag-cloud-link:hover {
  border-color: transparent;
  color: #fff;
}

.page-template-default .post-input textarea {
  margin-bottom: 20px;
}

.bd-footer-info-logo img {
  width: 131px;
}

.bd-footer-logo-two img {
  width: 131px;
}

.header-sidebar-logo img {
  width: 131px;
}

.wp-block-tag-cloud a {
  display: inline-block;
  height: 34px;
  line-height: 30px;
  text-align: center;
  padding: 0 19px;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: 2px solid #e8e7ec;
  margin-right: 8px;
  margin-bottom: 10px;
  font-weight: 400 !important;
  border-radius: 6px;
}
.wp-block-tag-cloud a:hover {
  color: #ffffff;
  background: #F98541;
  border-color: #F98541;
}

@media (max-width: 767px) {
  div.latest-comments ul li ul.children {
    padding-left: 0;
  }

  .blog__wrapper.mr-35 {
    margin-right: 0;
  }

  .blog__details-wrapper.mr-35 {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .blog__wrapper.mr-35 {
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .admin-bar .sticky-menu {
    margin-top: 0px;
  }

  .admin-bar .bd-header-area.bd-header-area-four.header-sticky.sticky-menu {
    margin-top: 0;
  }

  .admin-bar .bd-header-area.bd-header-area-seven.header-sticky.sticky-menu {
    margin-top: 0;
  }
}
@media (max-width: 1199px) {
  .bd-header-logo {
    line-height: 50px;
  }
}
/*widget block*/
.widget.widget_block .wp-block-latest-posts.wp-block-latest-posts__list li a:before,
.widget.widget_recent_comments ul li a:before,
.widget.widget_recent_entries ul li a:before,
.widget.widget_rss ul li a:before {
  display: none;
}

.widget.widget_block .wp-block-latest-posts.wp-block-latest-posts__list li a,
.widget.widget_block .wp-block-latest-comments li a,
.widget.widget_recent_comments ul li a,
.widget.widget_recent_entries ul li a,
.widget.widget_rss ul li a {
  padding-left: 0;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #000;
}

.widget.widget_block .wp-block-latest-posts.wp-block-latest-posts__list li a:hover,
.widget.widget_block .wp-block-latest-comments li a:hover,
.widget.widget_recent_comments ul li a:hover,
.widget.widget_recent_entries ul li a:hover,
.widget.widget_rss ul li a:hover {
  color: #F98541;
}

.widget.widget_block h2 {
  font-size: 20px;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
}

.widget.widget_block h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #F98541;
}

.wp-block-archives-dropdown label {
  margin-bottom: 10px;
}

ul.wp-block-rss {
  list-style: disc;
}

.sidebar__widget .wp-block-social-links li a::after {
  display: none;
}

.sidebar__widget.widget_tag_cloud a {
  display: inline-block;
  height: 36px;
  line-height: 38px;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #53545b;
  background: #f3f4f8;
  border-radius: 4px;
  margin-right: 8px;
  margin-bottom: 10px;
  border: 0;
}

.sidebar__widget.widget_tag_cloud a:hover {
  color: #ffffff;
  background: #F98541;
}

.sidebar__widget.widget_block h2 {
  font-size: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #f0f0f5;
  margin-bottom: 35px;
}

.widget_block .wp-block-group__inner-container h2 {
  font-size: 20px;
  padding-bottom: 7px;
  margin-bottom: 35px;
}

.wp-block-latest-comments__comment a:hover {
  color: #F98541;
}

.sidebar__widget .wp-block-search__label {
  font-size: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #f0f0f5;
  margin-bottom: 35px;
}

.sidebar__widget .wp-block-search .wp-block-search__input {
  width: 100%;
  margin: 0;
  background: #F3F4F8;
  border: 0;
}

.sidebar__widget .wp-block-search .wp-block-search__button {
  background: #F98541;
}

/*footer block css*/
.bd-footer-widget.widget_block h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.bd-footer-widget.widget_block h2::before {
  display: none;
}

.bd-footer-widget.widget_block.widget_tag_cloud a {
  border: 1px solid #878787;
  color: #878787;
  border-radius: 6px;
}

.bd-footer-widget.widget_block.widget_tag_cloud a:hover {
  border-color: transparent;
  color: #fff;
}

.wp-block-calendar table caption, .wp-block-calendar table tbody {
  color: #878787;
}

.bd-footer-widget.widget_search .wp-block-search__label {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.bd-footer-widget.widget_search .wp-block-search__label::before {
  display: none;
}

.bd-footer-widget.widget_block .wp-block-latest-comments li a {
  font-size: 16px;
  font-weight: 400;
  color: #878787;
  display: inline-block;
  line-height: 1.5;
}

.bd-footer-widget.widget_block .wp-block-latest-comments li a.wp-block-latest-comments__comment-author {
  color: #fff;
}

.bd-footer-widget.widget_block .wp-block-latest-comments li a:hover {
  color: #fff;
}

.blog__wrapper .bd-blog-img img {
  max-width: 100%;
}

/*# sourceMappingURL=busicox-core.css.map */
