@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');
:root {
	--font-default: "Inter", sans-serif;
	--fontawesome: "Font Awesome 7 Free";
	--black: #000000;
  --gray: #e7e7e7;
	--dark: #1d2024;
	--white: #ffffff;
	--color-primary: #0060aa;
	--color-heading: #232323;
	--color-paragraph: #666666;
	--box-shadow-primary: 0 0 10px #cccccc;
	--box-shadow-secondary: 0px 15px 60px -10px rgb(109 117 143 / 33%);
	--box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
	--bg-gray: #f7f7f7;
	--bg-light: #ffffff;
}


* {
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}

body {
  font-family: var(--font-default);
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  overflow-x: hidden;
  background-color: var(--white);
  color: var(--color-paragraph);
}

html, body, .wrapper {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--font-default);
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

.h4, h4 {
  font-size: 1.26rem;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}

a, .btn, button {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  outline: medium none;
  font-weight: 600;
}

a img, iframe {
  border: none;
}

p {
  color: var(--color-paragraph);
  line-height: 28px;
  margin: 0 0 15px;
  text-transform: none;
  font-weight: 400;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #eee;
}

pre {
  display: block;
  margin: 0 0 30px;
  padding: 9.5px;
  word-wrap: break-word;
  word-break: break-all;
  color: #333;
  border: 1px solid #ededed;
  border-radius: inherit;
  background-color: #f9f9f9;
  font-size: 13px;
  line-height: 1.42857143;
}

input:focus, textarea:focus, 
 select:focus {
  outline: none;
  box-shadow: inherit;
}

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

a, a:active, a:focus, a:hover {
  outline: none;
  text-decoration: none;
  color: #004f8d;
}

a:hover {
  color: var(--color-heading);
}

a {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

b, strong {
  font-weight: 600;
}

.inc-border {
  border-top: 1px solid var(--gray);
}

.btn.active, .btn:active {
  background-image: inherit !important;
}

.btn.focus, 
 .btn:active:focus, 
 .btn:active:hover, 
 .btn:focus, 
 .btn:hover {
  outline: 0;
}

.btn.circle {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.btn.active, .btn:active {
  outline: 0;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

.btn i {
  font-size: 12px;
  margin-left: 0;
  position: relative;
  top: 1px;
}

input {
  border: 1px solid var(--gray);
  border-radius: inherit;
  box-shadow: inherit;
  min-height: 50px;
}
/* Default CSS */
.container-half {
  margin: 0 auto;
  width: 60%;
  padding: 0 15px;
}

.container-medium {
  padding: 0 15px;
  margin: auto;
  max-width: 1400px;
  position: relative;
}

@media (min-width:576px) {
  .container-medium {
    max-width: 540px;
  }
}

@media (min-width:768px) {
  .container-medium {
    max-width: 720px;
  }
}

@media (min-width:992px) {
  .container-medium {
    max-width: 960px;
  }
}

@media (min-width:1200px) {
  .container-medium {
    max-width: 1400px;
    width: 80%;
  }
}

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

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

.bg-fixed {
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

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

.bg-theme-small {
  background: rgba(255, 53, 20, 0.03);
}

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

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

.align-center {
  align-items: center;
}

.text-light h1, 
 .text-light h2, 
 .text-light h3, 
 .text-light h4, 
 .text-light h5, 
 .text-light h6, 
 .text-light p, 
 .text-light a {
  color: var(--white);
}

.shadow {
  position: relative;
  z-index: 1;
}

.shadow.dark::after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.dark-hard::after {
  background: var(--black) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.75;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.light::after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.theme::after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.theme-hard::after {
  background: var(--color-primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.gradient-theme::after {
  background: linear-gradient(to bottom, #ff2d0c 0%,#ff7c68 100%);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.gradient-dark::after {
  background: linear-gradient(to bottom, #022147 0%,#2a3644 100%);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.gradient-light::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: rgba(0, 0, 0, 0) linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.65) 100%) repeat scroll 0 0;
  height: 100%;
  width: 70%;
}

.default-padding {
  padding-top: 22px;
  padding-bottom: 49px;
  position: relative;
}

.default-padding-top {
  padding-top: 120px;
  position: relative;
}

.default-padding-top.bottom-less {
  margin-bottom: -30px;
}

.default-padding-bottom {
  padding-bottom: 15px;
  position: relative;
}

.default-padding-bottom.bottom-less {
  padding-bottom: 90px;
}

.default-padding.bottom-less {
  padding-top: 20px;
  padding-bottom: 19px;
}

.padding-xl {
  padding-top: 180px;
  padding-bottom: 180px;
}

button, button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important;
}

.btn {
  display: inline-block;
  font-family: "Poppins",sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  letter-spacing: 1px;
  border-radius: inherit;
  overflow: hidden;
}

.btn.angle {
  position: relative;
}

.btn.angle::after {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid var(--color-heading);
  transition: all 0.35s ease-in-out;
}

.btn.angle.btn-sm::after {
  right: 27px;
}

.btn.angle.btn-theme::after {
  border-left-color: var(--white);
}

.btn.angle.btn-light.effect:hover::after {
  border-left-color: var(--white);
}

.btn-md {
  padding: 15px 40px;
}

.angle.btn-md {
  padding-right: 45px;
}

.btn-sm {
  padding: 10px 35px;
  font-size: 12px;
}

.angle.btn-sm {
  padding-right: 40px;
}

.btn.btn-sm-pro {
  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
  padding: 4px 35px;
  display: inline-block;
}

.btn-border-light {
  border: 2px solid var(--white);
}

.btn.btn-sm-pro.btn-border-light:hover, 
 .btn.btn-sm-pro.btn-border-light:focus {
  background-color: var(--white);
  color: var(--color-heading);
  border: 2px solid var(--white);
}

.btn-dark {
  background-color: var(--color-heading);
  color: var(--white);
  border: 2px solid var(--color-heading);
}

.form-group {
    margin-bottom: 15px;
}

.btn-dark.border {
  background-color: transparent;
  color: var(--color-heading);
  border: 2px solid var(--color-heading) !important;
}

.btn-dark.border:hover {
  background-color: var(--color-heading);
  color: var(--white) !important;
  border: 2px solid var(--color-heading) !important;
}

.btn.btn-light {
  background: var(--white) none repeat scroll 0 0;
  border: 2px solid var(--white) !important;
  color: var(--color-heading);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn.btn-light:hover, 
 .btn.btn-light:focus {
  background: transparent none repeat scroll 0 0;
  border: 2px solid var(--white) !important;
  color: var(--white);
}

.btn.btn-light.effect:hover, 
 .btn.btn-light.effect:focus {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 2px solid var(--color-primary) !important;
}

.btn.btn-light.border {
  background: transparent;
  border: 2px solid var(--white) !important;
  color: var(--white);
}

.btn.btn-light.border:hover {
  background: var(--white) none repeat scroll 0 0 !important;
  border: 2px solid var(--white) !important;
  color: var(--color-heading) !important;
}

.btn-dark:hover, 
 .btn-dark:focus {
  color: var(--color-heading) !important;
  background: transparent;
}

.bg-dark {
  background: #022147 none repeat scroll 0 0 !important;
}

.bg-dark-hard {
  background: #00081d none repeat scroll 0 0;
}

.btn-theme {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 2px solid var(--color-primary);
}

.btn-theme.border {
  background-color: transparent;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
}

.btn-theme.border:hover {
  background-color: var(--color-primary);
  color: var(--white) !important;
  border: 2px solid var(--color-primary);
}

.btn-theme.effect:hover, 
 .btn-theme.effect:focus {
  background: var(--color-primary) none repeat scroll 0 0;
  border: 2px solid var(--color-primary);
  color: var(--white);
}

.btn.btn-sm-lm {
  font-size: 12px;
  padding: 4px 35px;
}

.bg-theme a.btn-theme.btn:hover,
.bg-theme a.btn-theme.btn:focus {
  border: 2px solid var(--white);
  color: var(--white);
}

.bg-fixed {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}

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

.container-full {
  padding: 0 15px;
  width: 100%;
}

.site-heading h2 {
  display: inline-block;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 0;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 52px;
}

.bg-dark .site-heading h2,
.bg-dark .site-heading p {
  color: var(--white);
}

.site-heading.less-info h2 {
  margin-bottom: 0;
}

.site-heading h4 {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.site-heading.clean h2 {
  padding-bottom: 0;
}

.site-heading.clean h2 span {
  color: var(--color-primary);
}

.site-heading h2 span {
  color: var(--color-primary);
}

.site-heading.barber h2 span {
  color: #bc9355;
}

.site-heading p {
  margin: 0;
  margin-top: 20px;
}

.site-heading h2::before {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 40px;
}

.site-heading h2::after {
  background: var(--color-primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: 20px;
  position: absolute;
  width: 5px;
}

.site-heading.text-left h2::before {
  left: 0;
  margin-left: 0;
}

.site-heading.text-left h2::after {
  left: 45px;
  margin-left: 0;
}

.shadow .site-heading h2, 
.shadow .site-heading p {
  color: var(--white);
}

.bg-theme .site-heading h2::before,
.shadow .site-heading h2::before,
.half-bg .site-heading h2::before {
  background: var(--white) none repeat scroll 0 0;
}

.site-heading h2 span {
  color: var(--color-primary);
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}

.site-heading.single {
  margin-bottom: 35px;
}

.carousel-shadow .owl-stage-outer {
  margin: -15px -15px 0;
  padding: 15px;
}

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

/* Shape */

.shape-box {
  position: relative;
  z-index: 1;
}

.shape-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.shape-bg img {
  width: 100%;
}

.side-bg {
  height: 100%;
  position: absolute;
  left: 30px;
  top: 0;
  width: 35%;
}

.side-bg.left {
  left: 30px;
  right: auto;
}

.side-bg img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.animated.side-bg {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  -webkit-animation-name: infiUpDown;
  animation-name: infiUpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@keyframes infiUpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes infiUpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.top-bar-area {
  overflow: hidden;
  padding: 15px 0;
}

.top-bar-area .logo.shape {
  position: relative;
  z-index: 1;
}

.top-bar-area .logo.shape::after {
  position: absolute;
  right: 0;
  top: -100%;
  content: "";
  height: 300%;
  width: 500%;
  background: var(--color-primary);
  z-index: -1;
  transform: skewX(20deg);
  border-right: 5px solid var(--white);
}

.top-bar-area li {
  display: inline-block;
}

.top-bar-area .text-left .info {
  display: flex;
  justify-content: flex-start;
}

.top-bar-area .float-right .info {
  display: flex;
  justify-content: flex-end;
}

.top-bar-area .info > ul  li {
  display: inline-block;
  align-items: center;
  text-align: left;
}

.top-bar-area .float-right .info > ul {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--gray);
}

.top-bar-area .text-left .info > ul {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--gray);
}

.top-bar-area.bg-dark .float-right .info > ul {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area.bg-dark .text-left .info > ul {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-area .float-right .info > ul:first-child {
  margin: 0;
  padding: 0;
  border: none;
}

.top-bar-area .text-left .info > ul:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.top-bar-area .float-right .info .list li {
  margin-left: 20px;
}

.top-bar-area .text-left .info .list li {
  margin-right: 20px;
}

.top-bar-area .text-left .info .list li:last-child {
  margin-right: 0;
}

.top-bar-area .info .list li i {
  color: var(--color-primary);
  margin-right: 5px;
  font-size: 20px;
  position: relative;
  top: 1px;
}

.top-bar-area.bg-dark .float-right .social a {
  margin-left: 15px;
}

.top-bar-area.bg-dark .text-left .social a {
  margin-right: 15px;
}

.top-bar-area.bg-dark .float-right .social li:first-child a {
  margin: 0;
}

.top-bar-area.bg-dark .text-left .social li:last-child a {
  margin: 0;
}

.top-bar-area .item-flex {
    display: flex;
    align-items: center;
}

.top-bar-area .item-flex ul {
    margin-left: 30px;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.top-bar-area .item-flex ul li {
    margin-left: 15px;
}

.top-bar-area .item-flex ul::after {
    position: absolute;
    left: 0;
    top: 6px;
    content: "";
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.top-bar-area .item-flex ul:first-child {
    margin: 0;
    padding: 0;
}

.top-bar-area .item-flex ul:first-child::after {
    display: none;
}

.top-bar-area .item-flex ul li:first-child {
    margin: 0;
}

.top-bar-area .text-end .button {
    position: relative;
    z-index: 1;
}

.top-bar-area .text-end .button::after {
    position: absolute;
    left: 0;
    top: -35px;
    content: "";
    height: 100px;
    width: 200%;
    background: var(--color-primary);
    z-index: -1;
    transform: skewX(-30deg);
    border-left: 3px solid var(--white);
}

.top-bar-area .text-end .button a {
    font-weight: 600;
    display: inline-block;
}
.breadcrumb-area {
  padding: 150px 0;
}

.breadcrumb-area .breadcrumb {
  background: transparent none repeat scroll 0 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 12px 15px;
}

.breadcrumb-area h1 {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 40px;
  margin-top: -10px;
}

.breadcrumb > li + li::before {
  content: "\f105";
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  padding: 0 5px;
  color: var(--white);
  display: none;
}

.breadcrumb-area .breadcrumb li i {
  margin-right: 5px;
}

.breadcrumb-area .breadcrumb li {
  padding: 0 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.breadcrumb-area .breadcrumb li.active {
  text-decoration: underline;
}

.breadcrumb-area .breadcrumb li::after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 10px;
  left: -1px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  width: 1px;
}

.breadcrumb-area .breadcrumb li:first-child::after {
  display: none;
}

.breadcrumb-area .breadcrumb a, 
.breadcrumb-area .breadcrumb li {
  font-family: "Poppins",sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
body, 
.banner-area, 
.banner-area div {
  height: 100%;
}

.banner-area.auto-height, 
.banner-area.auto-height div {
  height: auto;
  min-height: 100%;
}

.banner-area .box-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.banner-area .box-table {
  display: table;
  width: 100%;
}

.banner-area .box-cell, 
 .banner-area .box-cell div {
  height: auto;
}

.banner-area {
  position: relative;
  overflow: hidden;
}

.banner-area .wavesshape {
  bottom: -2px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
}

.banner-area .wavesshape.shape {
  bottom: -50px;
  height: auto;
}

.banner-area .content {
  position: relative;
  z-index: 9;
}

.banner-area.wavesshape {
  position: relative;
  z-index: 1;
}

.banner-area.triangle-shadow {
  position: relative;
  z-index: 1;
}

.banner-area.triangle-shadow::before {
  border-bottom: 0 solid transparent;
  border-right: 100vw solid #fff;
  border-top: 80px solid transparent;
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 101;
}

.banner-area.shadow-inner .content {
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-area.content-double .double-items {
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

.banner-area .banner-carousel .owl-item.center img {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.banner-area .banner-carousel .owl-item img {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

/* Animation delays */
.banner-area .item h1:first-child, 
 .banner-area .item h2:first-child, 
 .banner-area .item h3:first-child, 
 .banner-area .item h4:first-child, 
 .banner-area .item h5:first-child, 
 .banner-area .item h6:first-child {
  animation-delay: .5s;
}

.banner-area .item h1:nth-child(2), 
 .banner-area .item h2:nth-child(2), 
 .banner-area .item h3:nth-child(2), 
 .banner-area .item h4:nth-child(2), 
 .banner-area .item h5:nth-child(2), 
 .banner-area .item h6:nth-child(2) {
  animation-delay: .7s;
}

.carousel-caption h1:nth-child(3), 
 .carousel-caption h2:nth-child(3), 
 .carousel-caption h3:nth-child(3), 
 .carousel-caption h4:nth-child(3), 
 .carousel-caption h5:nth-child(3), 
 .carousel-caption h6:nth-child(3) {
  animation-delay: .9s;
}

.banner-area .item p {
  animation-delay: .5s;
}

.banner-area .item ul {
  animation-delay: .6s;
}

.banner-area .item a, 
 .banner-area .item button {
  animation-delay: .7s;
}

.hero-cinema {
    position: relative; min-height: 100vh; width: 100%;
    overflow: hidden; background: #050505; color: #fff;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    isolation: isolate;
}
.hero-cinema__video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    animation: heroZoom 18s ease-out infinite alternate;
}
@keyframes heroZoom { 0%{transform:scale(1);} 100%{transform:scale(1.12);} }
 
.hero-cinema__veil {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(100deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.15) 70%, rgba(0,96,170,0.25) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, rgba(0,0,0,0.6) 100%);
}
.hero-cinema__sidebar {
    position: absolute; top: 0; left: 0; bottom: 0; width: 6px;
    background: linear-gradient(180deg, transparent 0%, #0060aa 30%, #0060aa 70%, transparent 100%);
    z-index: 2; box-shadow: 0 0 40px rgba(0,96,170,0.6);
}
.hero-cinema__grain {
    position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
 
.hero-cinema__meta {
    position: absolute; top: 40px; left: 60px; z-index: 5;
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.25em; color: rgba(255,255,255,0.75);
    animation: heroFade 1s ease-out 0.3s both;
}
.hero-cinema__dot {
    width: 8px; height: 8px; border-radius: 50%; background: #0060aa;
    box-shadow: 0 0 0 4px rgba(0,96,170,0.25);
    animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
    0%,100%{box-shadow:0 0 0 4px rgba(0,96,170,0.25);}
    50%{box-shadow:0 0 0 10px rgba(0,96,170,0);}
}
 
.hero-cinema__counter {
    position: absolute; top: 35px; right: 60px; z-index: 5;
    display: flex; align-items: center; gap: 14px;
    animation: heroFade 1s ease-out 0.5s both;
}
.hero-cinema__counter-num {
    font-family: Georgia, serif; font-size: 56px; font-weight: 400; line-height: 1; color: #fff;
}
.hero-cinema__counter-num span { color: #0060aa; font-size: 36px; vertical-align: top; }
.hero-cinema__counter-label {
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border-left: 1px solid rgba(255,255,255,0.25);
    padding-left: 14px; line-height: 1.5;
}
 
.hero-cinema__container {
    position: relative; z-index: 4; min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 80px; padding-bottom: 80px;
}
.hero-cinema__content { max-width: 760px; }
 
.hero-cinema__eyebrow {
    display: inline-block; font-size: 13px; letter-spacing: 0.35em;
    text-transform: uppercase; color: #0060aa;
    margin-bottom: 28px; font-weight: 500;
    animation: heroSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
 
.hero-cinema__title {
    font-family: Georgia, 'Playfair Display', serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.95; font-weight: 400;
    margin: 0 0 32px; letter-spacing: -0.02em;
}
.hero-cinema__title .line { display: block; overflow: hidden; }
.hero-cinema__title .line > * {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}
.hero-cinema__title .line:nth-child(1) > * { animation: heroLineUp 1s cubic-bezier(0.16,1,0.3,1) 0.6s forwards; margin-top: 40px; }
.hero-cinema__title .line:nth-child(2) > * { animation: heroLineUp 1s cubic-bezier(0.16,1,0.3,1) 0.75s forwards; }
.hero-cinema__title .line:nth-child(3) > * { animation: heroLineUp 1s cubic-bezier(0.16,1,0.3,1) 0.9s forwards; }
 
.hero-cinema__title em {
    font-style: italic; color: #0060aa; position: relative;
}
.hero-cinema__title em::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 8px;
    height: 8px; background: rgba(0,96,170,0.25); z-index: -1;
}
.hero-cinema__title strong {
    font-weight: 400;
    background: linear-gradient(120deg, #fff 0%, #0060aa 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-cinema__title span {
    color: #fff;
}
 
.hero-cinema__sub {
    font-size: 17px; line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 520px; margin-bottom: 44px;
    animation: heroFade 1s ease-out 1.1s both;
}
 
.hero-cinema__cta {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: heroFade 1s ease-out 1.3s both;
}
.hero-cinema__btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 32px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    text-decoration: none; border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative; overflow: hidden;
    cursor: pointer;
	border-radius: 50px;
}
.hero-cinema__btn--primary { background: #0060aa; color: #fff; }
.hero-cinema__btn--primary::before {
    content: ''; position: absolute; inset: 0; background: #fff;
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); z-index: 0;
}
.hero-cinema__btn--primary:hover { color: #0060aa; }
.hero-cinema__btn--primary:hover::before { transform: translateX(0); }
.hero-cinema__btn--primary > * { position: relative; z-index: 1; }
 
.hero-cinema__btn--ghost {
    background: transparent; color: #fff;
    border-color: rgba(255,255,255,0.3);
}
.hero-cinema__btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
    padding-left: 40px;
}
 
.hero-cinema__scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 5;
    display: flex; flex-direction: column;
    align-items: center; gap: 14px;
    text-decoration: none; color: rgba(255,255,255,0.6);
    animation: heroFade 1s ease-out 1.6s both;
}
.hero-cinema__scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
    position: relative; overflow: hidden;
}
.hero-cinema__scroll-line::after {
    content: ''; position: absolute; top: -30px; left: 0;
    width: 100%; height: 30px; background: #0060aa;
    animation: heroScrollDot 2.2s ease-in-out infinite;
}
@keyframes heroScrollDot { 0%{top:-30px;} 100%{top:60px;} }
.hero-cinema__scroll-text {
    font-size: 10px; letter-spacing: 0.4em;
    writing-mode: vertical-rl; transform: rotate(180deg);
}
 
@keyframes heroLineUp { 0%{transform:translateY(110%);opacity:0;} 100%{transform:translateY(0);opacity:1;} }
@keyframes heroFade { 0%{opacity:0;transform:translateY(20px);} 100%{opacity:1;transform:translateY(0);} }
@keyframes heroSlideIn { 0%{opacity:0;transform:translateX(-30px);} 100%{opacity:1;transform:translateX(0);} }
 
@media (max-width: 991px) {
    .hero-cinema__meta { top: 20px; left: 20px; }
    .hero-cinema__counter { top: 20px; right: 20px; }
    .hero-cinema__counter-num { font-size: 40px; }
    .hero-cinema__counter-label { display: none; }
    .hero-cinema__scroll { display: none; }
}
@media (max-width: 575px) {
    .hero-cinema__counter { display: none; }
    .hero-cinema__btn { padding: 14px 22px; font-size: 11px; }
    .hero-cinema__sub { font-size: 15px; }
}

.carousel-fade .carousel-inner .item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .item, 
 .carousel-fade .carousel-inner .active.left, 
 .carousel-fade .carousel-inner .active.right {
  opacity: 0;
}

.carousel-fade .carousel-inner .active, 
 .carousel-fade .carousel-inner .next.left, 
 .carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-inner .next, 
 .carousel-fade .carousel-inner .prev, 
 .carousel-fade .carousel-inner .active.left, 
 .carousel-fade .carousel-inner .active.right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.carousel-fade .carousel-control {
  z-index: 2;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@-moz-keyframes zoom {
  from {
    -moz-transform: scale(1, 1);
  }

  to {
    -moz-transform: scale(1.2, 1.2);
  }
}

@-o-keyframes zoom {
  from {
    -o-transform: scale(1, 1);
  }

  to {
    -o-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.2, 1.2);
  }
}

.carousel-inner.carousel-zoom .carousel-item > .slider-thumb {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

.banner-area .carousel-zoom .slider-thumb {
  height: 100%;
  position: absolute;
  width: 100%;
}

#particles-js,
#ripple {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.banner-area .carousel-control {
  background: transparent none repeat scroll 0 0;
  font-size: 40px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 1;
  color: var(--white);
}

.banner-area .carousel-control.dark {
  color: var(--color-heading);
}

.banner-area .carousel-control.theme {
  color: var(--color-primary);
}

.banner-area .carousel-control.light {
  color: var(--white);
}

.banner-area .carousel-control.shadow {
  background: transparent none repeat scroll 0 0;
  color: var(--white);
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  opacity: 1;
  padding: 0;
  position: absolute;
  text-shadow: inherit;
  top: 50%;
  width: 50px;
  z-index: 1;
}

.banner-area .carousel-control.shadow::after {
  background: #1e2726 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner-area .carousel-control.left {
  left: -80px;
}

.banner-area:hover .carousel-control.left {
  left: 20px;
}

.banner-area:hover .carousel-control.shadow.left {
  left: 0px;
}

.banner-area .carousel-control.right {
  right: -80px;
}

.banner-area:hover .carousel-control.right {
  right: 0;
}

.banner-area:hover .carousel-control.shadow.right {
  right: 20px;
}
.banner-area .carousel-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.banner-area .carousel-indicators {
  position: absolute;
  right: auto;
  left: 10px;
  width: auto;
  height: auto;
  top: auto;
  bottom: 0;
  margin: 0;
  padding: 30px 0;
}

.banner-area .carousel-indicators li {
  display: block;
  height: 20px;
  width: 20px;
  margin: 10px 5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: transparent;
  position: relative;
  z-index: 1;
}

.banner-area .carousel-indicators li.active {
  border: 2px solid var(--white);
}

.banner-area .carousel-indicators li::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 5px;
  width: 5px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background: var(--white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.banner-area.video-bg-live .mbYTP_wrapper {
  z-index: 1 !important;
}

.banner-area .fixed-thumb .slider-thumb {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
}

.banner-area .content a {
  margin-right: 5px;
  margin-top: 5px;
}

.banner-area.thumb-half .slider-thumb {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
}

.banner-area.top-pad-60 .content {
  padding-top: 60px;
}

.banner-area .fixed-video {
  position: absolute;
  left: 200px;
  bottom: 0;
  padding: 51px 100px;
  height: auto;
  background: #022147;
  display: inline-block;
  width: 100px;
  z-index: 1;
}

.banner-area .fixed-video .video-play-button.relative {
  position: absolute;
  display: inline-block;
  left: 50%;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  margin-top: 0 !important;
  top: 50%;
}

.banner-area .fixed-video .video-play-button.relative::before, 
.banner-area .fixed-video .video-play-button.relative::after {
  height: 60px;
  width: 60px;
  line-height: 60px;
}

.banner-area .fixed-video .video-play-button i {
  display: block;
  position: relative;
  z-index: 3;
  top: 19px;
  font-size: 20px;
}
.banner-area.inc-shape .content .shape {
  position: absolute;
  width: 350px;
  height: 450px;
  border: 10px solid rgba(255, 255, 255, 0.1);
  left: -55px;
  top: 50%;
  z-index: -1;
  transform: translate(0, -50%);
}

.banner-area.inc-shape .text-center .content .shape {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner-area.text-large .content h2 {
  font-size: 100px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1;
  text-transform: capitalize;
}

.banner-area .content ul li {
  display: flex;
  align-items: center;
  float: left;
  margin-right: 30px;
}

.banner-area .content ul {
  overflow: hidden;
  margin-bottom: 30px;
  display: inline-block;
  color: var(--color-heading);
}

.banner-area.title-top .content ul {
  margin-bottom: 15px;
}

.banner-area .content ul li h5 {
  margin: 0;
  text-transform: capitalize;
  font-weight: 600;
}

.banner-area .content ul li i {
  display: inline-block;
  font-size: 40px;
  margin-right: 15px;
  color: var(--color-primary);
}

.banner-area .carousel-item {
  position: relative;
}

.banner-area.inc-fixed-thumb .carousel-item .fixed-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.banner-area.text-medium .content h2 {
  font-size: 60px;
  font-weight: 200;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.banner-area.text-medium .content h2 strong {
  display: block;
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 15px;
}

.banner-area .content p {
  padding-right: 15%;
  font-size: 16px;
  line-height: 32px;
}

.banner-area.text-center .content p,
.banner-area .text-center .content p {
  padding-right: 15%;
  padding-left: 15%;
}

.banner-area.text-end .content p,
.banner-area .text-end .content p {
  padding-right: 0;
  padding-left: 15%;
}

.banner-area.inc-content .content a {
  margin-top: 20px;
}

.banner-area.default .content h4 {
    display: inline-block;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.banner-area.default .content h4::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 10px;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
}

.banner-area.default .content h2 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 25px;
}

/* ============================================================== 
     # Video Button Play
=================================================================== */
.video-play-button {
  color: var(--color-primary);
  font-size: 30px;
  left: 50%;
  padding-left: 7px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--white) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--white) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.video-play-button i {
  display: block;
  position: relative;
  z-index: 3;
  color: var(--color-primary);
  left: -2px;
}
.about-area .info-content {
  padding-right: 35px;
}

.about-area .info-content h2 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.3;
  font-size: 28px;
}

.about-area .info-content h2 strong {
  font-size: 140px;
  line-height: 110px;
  padding-right: 20px;
  color: var(--color-primary);
  font-weight: 800;
}

.about-area blockquote {
  font-size: 14px;
  border-left: 2px solid var(--color-primary);
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0;
  padding-left: 25px;
}

.about-area .right-info blockquote {
    margin-top: 0;
}

.about-area .right-info span {
  margin-top: 25px;
}

.about-area .left-info h2 {
    line-height: 1.4;
    font-weight: 600;
    margin-top: -5px;
    margin-bottom: 0;
}

.about-area .left-info h2 strong {
    font-weight: 800;
    color: var(--color-primary);
}

.about-area .info img {
    height: 50px;
    margin-top: 10px;
}

.about-area .info-content > a {
  margin-top: 30px;
}

.about-area blockquote span {
  display: block;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  color: var(--color-heading);
}

.about-area blockquote span strong {
  color: var(--color-primary);
}

.about-area .thumb-box {
  padding-left: 10%;
}

.about-area .thumb {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: 50px;
}

.about-area .thumb .video {
  position: absolute;
  left: -125px;
  bottom: -50px;
  background: var(--white);
  box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
  height: 250px;
  width: 250px;
  border-radius: 50%;
  border: 4px solid var(--white);
  background-position: center;
}

.about-area .thumb .video .video-play-button:before {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
}

.about-area .thumb .video .video-play-button:after {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
}

.about-area .thumb .video .video-play-button i {
  color: var(--white);
}

.about-area .thumb::after {
  position: absolute;
  right: -50px;
  top: -50px;
  content: "";
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: right top;
}

.about-area .content-box .item {
  padding: 30px;
  border: 1px solid var(--gray);
  overflow: hidden;
  text-align: center;
}

.about-area .content-box .equal-height:first-child, 
.about-area .content-box .equal-height:nth-child(2) {
  margin-top: 0;
}

.about-area .content-box .item > i {
  display: block;
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.about-area .content-box .item > i::after {
  position: absolute;
  left: -25%;
  bottom: 0;
  content: "";
  height: 1px;
  width: 150%;
  background: var(--gray);
}

.about-area .content-box .equal-height {
  margin-top: 30px;
}

.about-area .content-box .item h4 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-area .content-box .item p {
  margin: 0;
}

.about-area .content-box .item a {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-paragraph);
  font-size: 12px;
  letter-spacing: 1px;
}

.about-area .content-box .item a i {
  font-size: 10px;
}
.about-area .experiecne {
  display: block;
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-area .experiecne strong {
  color: var(--color-primary);
  font-size: 200px;
  line-height: 150px;
}

.about-area .experiecne h5 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 30px;
}

.about-area .experiecne::after {
  position: absolute;
  left: 0;
  bottom: 12px;
  content: "";
  height: 60%;
  width: 100%;
  background: #022147;
  z-index: -1;
  clip-path: polygon(100% 0, 100% 80%, 95% 100%, 0 100%, 0 0);
}

.about-area .thumb-left {
  padding-right: 35px;
}

.about-area .thumb-left .thumb {
  margin-bottom: 0;
}

.about-area .thumb-left .thumb {
  position: relative;
  z-index: 1;
}

.about-area .thumb-left .thumb::after {
  position: absolute;
  left: -50px;
  top: -50px;
  content: "";
  height: 300px;
  width: 300px;
  background-repeat: no-repeat;
  background-position: left top;
}

.about-area .about-box .info p {
    font-size: 20px;
    line-height: 1.7;
}


.features-area .features-items {
    padding: 70px 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -120px;
    z-index: 9;
    background: var(--white);
    margin-bottom: -120px;
    border-radius: 10px;
}

.features-area .features-items .item {
    padding: 0 30px
}

.features-area .features-items .item p {
  margin: 0;
}

.features-area .features-items .item i {
    display: inline-block;
    font-size: 50px;
    margin-bottom: 60px;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.features-area .features-items .single-item.feature .item i::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 90px;
    width: 90px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--color-primary);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.1;
}

.features-area .features-items .item h5 {
    line-height: 1.4;
    font-weight: 600;
    font-size: 20px;
}

.features-area .features-items .quotes i {
    color: var(--gray);
}

.features-area .features-items .item h5 a {
    font-weight: 600;
}

.features-area .quotes .author {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center;
    margin-top: 25px;
}

.features-area .quotes .author img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 20px;
}

.features-area .quotes .author h5 {
    margin-bottom: 0;
}

.features-area .features-items .single-item.emergency {
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.features-area .features-items .single-item.emergency::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--black);
    z-index: -1;
    opacity: 0.6;
    border-radius: 10px;
}

.features-area .features-items .single-item.emergency .item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 50px;
  text-align: center;
  justify-content: center;
}

.features-area .features-items .single-item.emergency i {
    display: block;
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--white);
}

.features-area .features-items .single-item.emergency p {
  margin-bottom: 20px;
}

.features-area .features-items .single-item.emergency h2 {
    font-weight: 800;
    margin-bottom: 0;
}

.achivement-area .fun-fact {
  align-items: center;
  text-align: center;
  padding: 0 30px;
}

.achivement-area .single-item {
  position: relative;
  z-index: 1;
}

.achivement-area {
  position: relative;
  z-index: 1;
}

.achivement-area .fixed-thumb {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.achivement-area .fixed-thumb img {
  width: auto;
  margin: auto;
  opacity: 0.1;
  height: 100%;
  width: 100%;
}

.achivement-area.bg-light .fixed-thumb img {
  opacity: 0.7;
}

.achivement-area .single-item::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-7deg);
}

.achivement-area .single-item:last-child::after {
  display: none;
}

.achivement-area .fun-fact .info {
  margin-top: 30px;
}

.achivement-area .fun-fact .info p {
  margin: 0;
  color: #cccccc;
  margin-bottom: -5px;
}

.achivement-area.bg-light .fun-fact .info p {
  color: var(--color-paragraph);
}

.achivement-area .fun-fact .counter {
  font-family: 'Inter', sans-serif;
}

.achivement-area .fun-fact .counter .timer {
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--white);
  margin-left: -22px;
}

.achivement-area.bg-light .fun-fact .counter .timer {
    color: var(--color-heading);
}

.achivement-area .fun-fact .counter .medium {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
}

.achivement-area .fun-fact .counter .timer::after {
  position: absolute;
  right: -25px;
  top: 2px;
  content: "K";
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 800;
}

.achivement-area .fun-fact .counter .timer.plus::after {
  position: absolute;
  right: -28px;
  top: 4px;
  content: "\f067";
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 800;
  font-family: "Font Awesome 7 Free";
}

.achivement-area .fun-fact .counter .count {
  display: inline-block;
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 135px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.achivement-area.bg-light .fun-fact .counter .count {
  background: rgba(255, 255, 255, 1);
}

.achivement-area .fun-fact .counter .count::after {
  position: absolute;
  left: 1px;
  top: 1px;
  content: "";
  height: 100%;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border-top: none;
  border-left: none;
}

.achivement-area .fun-fact .info h5 {
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-area.with-thumb .services-items .item {
  background: var(--white);
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.services-area.with-thumb .services-items .item .info {
  padding: 30px;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.services-area.with-thumb .services-items .item .thumb {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.services-area.with-thumb .services-items .item .thumb::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(assets/img/brush.svg);
  background-size: cover;
}

.services-area.with-thumb .services-items .item .info i {
  position: absolute;
  left: 40px;
  top: -40px;
  height: 80px;
  width: 80px;
  text-align: center;
  color: var(--color-primary);
  font-size: 42px;
  z-index: -1;
  border-radius: 30px;
  line-height: 80px;
}

.services-area.with-thumb .services-items .item .info i::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  background: var(--white);
  width: 100%;
  z-index: -1;
  transform: rotate(225deg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.services-area.with-thumb .services-items .item .info h4 {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 20px;
}

.services-area.with-thumb .services-items .item .info p {
  margin: 0;
}

.services-area.with-thumb .services-items .item .info a:hover {
  color: var(--color-primary);
}

.services-area.with-thumb .services-items .item .info .button {
  border-top: 1px solid var(--gray);
  margin-top: 25px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-area.with-thumb .services-items .item .info .button span {
  opacity: 0.1;
  font-size: 36px;
  font-weight: 800;
}

.services-area.with-thumb .services-items .item .info .button a {
  text-transform: uppercase;
  color: var(--color-paragraph);
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.services-area.with-thumb .services-items .item:hover .info .button a {
  color: var(--color-primary);
}

.services-area.with-thumb .services-items .item .info .button a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 1px;
  width: 30px;
  border-bottom: 1px dashed;
  transition: all 0.35s ease-in-out;
}

.services-area.with-thumb .services-items .item:hover .info .button a::after {
  width: 100%;
}

.services-area .services-items.services-carousel .owl-dots {
  margin-top: 20px;
  margin-bottom: -8px;
}

.services-area .services-items.services-carousel .owl-dots .owl-dot span {
  height: 20px;
  border: 3px solid var(--color-paragraph);
  width: 20px;
  margin: 0 5px;
  opacity: 1;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: transparent;
}

.services-area .services-items.services-carousel .owl-dots .owl-dot.active span {
  border-color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.services-area .services-items.services-carousel .owl-dots .owl-dot.active span::after {
  position: absolute;
  left: 1px;
  top: -7px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid  var(--color-primary);
}


.services-details-area .content h2,
.services-details-area .content h3,
.services-details-area .content h4,
.services-details-area .content h5,
.services-details-area .content h6 {
    font-weight: 600;
}

.services-details-area .content h2,
.services-details-area .content h3 {
    margin-bottom: 30px;
}

.services-details-area .content h4,
.services-details-area .content h5,
.services-details-area .content h6 {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.services-details-area .content h4::after,
.services-details-area .content h5::after,
.services-details-area .content h6::after {
  position: absolute;
  left: 100%;
  top: 50%;
  content: "";
  height: 1px;
  width: 100px;
  background: #dddddd;
  margin-left: 15px;
  margin-top: -1px;
}

.services-details-area .content .thumb {
  margin-bottom: 15px;
  margin-top: 15px;
}

.services-details-area .content img {
  margin-bottom: 15px;
}

.services-details-area .content ul li {
    padding-left: 30px;
    margin-bottom: 15px;
    color: #232323;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.services-details-area .content ul li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f013";
    font-family: "Font Awesome 7 Free";
    color: #ff3514;
}

.services-details-area .content blockquote {
  position: relative;
  z-index: 1;
  border: none;
  font-size: 18px;
  line-height: 34px;
  padding-left: 60px;
  margin-top: 45px;
  margin-bottom: 30px;
  background: #fafafa;
  padding: 30px;
  border-bottom: 2px solid #e7e7e7;
  color: #232323;
  font-weight: 300;
}

.services-details-area .content blockquote::after {
  position: absolute;
  left: 30px;
  content: "\f10d";
  font-family: "Font Awesome 7 Free";
  color: #ff3514;
  font-size: 40px;
  top: -20px;
  font-weight: 600;
}

.services-details-area .content blockquote .footer {
  display: block;
  margin-top: 17px;
}

.services-details-area .content blockquote .footer p {
  margin: 0;
  padding-left: 90px;
  position: relative;
  display: inline-block;
  color: #232323;
  font-weight: 600;
}

.services-details-area .content blockquote .footer p::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 80px;
  background: #ff3514;
}

.services-details-area .sidebar {
    padding-left: 35px;
}


.services-details-area .sidebar .sidebar-item {
    margin-bottom: 50px;
}

.services-details-area .sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}

.services-details-area .sidebar .title h4 {
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: -5px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  font-size: 20px;
  display: inline-block;
}

.services-details-area .sidebar .title h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 10px;
  width: 100%;
  background: #ff3514;
  z-index: -1;
  opacity: 0.1;
}



.services-details-area .sidebar input[type="text"] {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  box-shadow: inherit;
  min-height: 60px;
}

.services-details-area .sidebar form {
  position: relative;
}

.services-details-area .sidebar button[type="submit"] {
  background: #ff3514;
  border: medium none;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 50px;
  width: 50px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}

.services-details-area .sidebar input[type="submit"]:hover {
  background: #ff3514 none repeat scroll 0 0;
}

.services-details-area .sidebar .sidebar-item.category .sidebar-info, 
.services-details-area .sidebar .sidebar-item.archives .sidebar-info {
  margin-top: -5px;
}

.services-details-area .sidebar .sidebar-item.category li {
  display: block;
  position: relative;
  padding-left: 18px;
  margin-top: 15px;
}

.services-details-area .sidebar .sidebar-item.category li::after {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  height: 7px;
  width: 7px;
  background: #cccccc;
  border-radius: 50%;
}

.services-details-area .sidebar .sidebar-item.category li:first-child::after {
  top: 12px;
}

.services-details-area .sidebar .sidebar-item.category li a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  color: #666666;
}

.services-details-area .sidebar .sidebar-item li a:hover {
  color: #ff3514;
}

.services-details-area .sidebar .sidebar-item.category li a span {
  position: absolute;
  right: 0;
  top: 10px;
  color: #232323;
  font-size: 14px;
}

.services-details-area .sidebar .sidebar-item.category li:first-child a span {
  top: 0;
}

.services-details-area .sidebar .sidebar-item.category li:first-child {
  margin-top: 0;
  padding-top: 0;
}

.services-details-area .sidebar .sidebar-item.category li:first-child a::after {
  top: 0;
}

.services-details-area .sidebar .sidebar-item.category li:last-child {
  border: medium none;
  margin-bottom: 0;
  padding-bottom: 0;
}


.services-details-area .sidebar .sidebar-item.form input, 
.services-details-area .sidebar .sidebar-item.form textarea {
    height: 50px;
    border: 1px solid #e7e7e7;
    min-height: 50px;
    border-radius: inherit;
}

.services-details-area .sidebar .sidebar-item.form textarea {
    min-height: 150px;
    padding-top: 15px;
}

.services-details-area .sidebar-item.form button[type="submit"] {
    width: auto;
    border-radius: 5px;
    padding: 10px 30px;
    margin-left: 5px;
    position: inherit;
}
.service-area .services-box .nav-pills  {
  border: none;
  padding-right: 30px;
  border-right: 1px solid #dddddd;
}

.service-area .services-box .nav-pills li {
  display: block;
  padding: 0;
  margin-bottom: 10px;
}

.service-area .services-box .nav-pills li button {
  display: block;
  border-radius: inherit;
  border: none;
  border-bottom: 1px solid #dddddd !important;
  transition: all 0.36s ease-in-out;
  width: 100%;
  text-align: left;
  color: black !important;
  padding: 15px;
}

.service-area .services-box .nav-pills li button:hover, 
.service-area .services-box .nav-pills li button:focus {
  background: var(--color-primary);
  color: var(--white) !important;
}

.service-area .services-box .nav-pills li button i {
  margin-right: 5px;
}

.service-area .services-box .nav-pills li button.active {
  background: var(--white);
  margin: 0;
  color: var(--color-primary) !important;
}

.services-area .services-box .tab-content .info h3 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: -05px;
  margin-bottom: 25px;
}

.services-area .services-box .tab-content .info a {
  text-decoration: underline;
  font-weight: 600;
  text-transform: uppercase;
}

.services-area .services-box .tab-content .info a:hover {
  color: var(--color-primary);
}

.services-area.icon-less .thumb .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px;
    z-index: 1;
}

.service-area .tab-content .info h3 {
    font-size: 36px;
    font-weight: 500;
}


.services-area.icon-only .services-box .single-item {
  margin-bottom: 30px;
}

.services-area.icon-only .services-box .item {
    padding: 60px 37px;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}

@media (min-width: 1024px) {
  .services-area.icon-only .services-box .item {
      padding: 70px;
  }
}

.services-area.icon-only .services-box .item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 3px;
    width: 0;
    background: var(--color-primary);
    transition: all 0.35s ease-in-out;
}

.services-area.icon-only .services-box .item:hover::before {
  width: 100%;
}

.services-area.icon-only .services-box .item i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 30px;
    margin-top: 40px;
    transition: all 0.35s ease-in-out;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.services-area.icon-only .services-box .item i::after {
    position: absolute;
    left: -20px;
    top: -20px;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.35s ease-in-out;
}

.services-area.icon-only .services-box .item:hover i::after {
    opacity: 0.5;
}

.services-area.icon-only .services-box .item h4 {
  margin: 0;
}

.services-area.icon-only .services-box .item a {
  margin-top: 10px;
}

.services-area.icon-only .services-box .item:hover i {
  color: var(--white);
}


.work-process-area .single-item {
  margin-bottom: 30px;
}

.work-process-area .thumb img {
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
  border: 9px solid var(--white);
}

.work-process-area .work-pro-items .item i {
  display: inline-block;
  color: var(--color-primary);
  font-size: 60px;
  margin-bottom: 25px;
}

.work-process-area .work-pro-items .item h4 {
  position: relative;
  z-index: 1;
  line-height: 60px;
  font-weight: 600;
}

.work-process-area .work-pro-items .item h4 span {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 80px;
  z-index: -1;
  color: #f4f4f4;
  opacity: 0.7;
  font-weight: 900;
}

.work-process-area .work-pro-items .item {
  border: 1px solid var(--gray);
  padding: 50px;
  background: #2248cc1c;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.work-process-area .work-pro-items .item p {
  margin: 0;
}


.work-process-area .work-pro-items .item::before, 
.work-process-area .work-pro-items .item::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--color-primary);
}

.work-process-area .work-pro-items .item .item-inner::before, 
.work-process-area .work-pro-items .item .item-inner::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: var(--color-primary);
}

.work-process-area .work-pro-items .item:hover::before, 
.work-process-area .work-pro-items .item:hover::after {
  width: 100%;
}

.work-process-area .work-pro-items .item:hover .item-inner::before, 
.work-process-area .work-pro-items .item:hover .item-inner::after {
  height: 100%;
}

.work-process-area .work-pro-items .item::before, 
.work-process-area .work-pro-items .item::after {
  transition-delay: 0.2s;
}

.work-process-area .work-pro-items .item .item-inner::before, 
.work-process-area .work-pro-items .item .item-inner::after {
  transition-delay: 0s;
}

.work-process-area .work-pro-items .item::before {
  right: 0;
  top: 0;
}

.work-process-area .work-pro-items .item::after {
  left: 0;
  bottom: 0;
}

.work-process-area .work-pro-items .item .item-inner::before {
  left: 0;
  top: 0;
}

.work-process-area .work-pro-items .item .item-inner::after {
  right: 0;
  bottom: 0;
}

.work-process-area .work-pro-items .item:hover::before, 
.work-process-area .work-pro-items .item:hover::after {
  transition-delay: 0s;
}

.work-process-area .work-pro-items .item:hover .item-inner::before, 
.work-process-area .work-pro-items .item:hover .item-inner::after {
  transition-delay: 0.2s;
}

.work-with-us-area .fun-fact {
  padding: 50px 20px;
  box-shadow: 0 0 10px #cccccc;
  border-bottom: 3px solid var(--color-primary);
  background: #ffff;
  border-radius: 10px;
}

.work-with-us-area .heading-info h5 {
  font-weight: 600;
  color: var(--color-paragraph);
}

.work-with-us-area .heading-info h2 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 40px;
}

.work-with-us-area .fun-fact h4 {
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.5;
  margin-top: -7px;
  font-size: 15px;
}

.work-with-us-area .fun-fact .timer {
    line-height: 1;
    font-size: 50px;
    font-weight: 600;
    color: var(--color-primary);
}

.why-us-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-us-area .info .content {
  position: relative;
  z-index: 1;
}

.why-us-area .info .content > a {
  margin-top: 30px;
}

.why-us-area .info .content::after {
  position: absolute;
  left: 0;
  top: -70px;
  content: "";
  height: 150px;
  width: 150px;
  background: var(--color-primary);
  z-index: -1;
  opacity: 0.05;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: rotate(45deg);
}

.why-us-area .fixed-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
}

.why-us-area .thumb {
  position: relative;
  z-index: 1;
  text-align: center;
}

.why-us-area .thumb img {
  max-width: 90%;
}

.why-us-area .thumb::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 50%;
  width: 100%;
  background: var(--color-primary) none repeat scroll 0 0;
  z-index: -1;
  clip-path: polygon(100% 1%, 4% 100%, 100% 100%);
}

.why-us-area .info {
  z-index: 1;
  padding-left: 50px;
}

.why-us-area .info ul > a {
  margin-top: 5px;
}

.why-us-area .info .content > h5 {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--color-paragraph);
  margin-bottom: 30px;
  font-size: 18px;
  margin-top: -5px;
}

.why-us-area .info h2 {
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.2;
  margin-top: -10px;
  margin-bottom: 25px;
  font-size: 49px;
}

.why-us-area .info h2 span {
  position: relative;
  z-index: 1;
}

.why-us-area .info h2 span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 3px;
  width: 100%;
  background: var(--color-primary);
}

.why-us-area .info li {
  display: block;
  margin-bottom: 25px;
  padding-left: 40px;
  position: relative;
  z-index: 1;
}

.why-us-area .info li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "\f058";
    color: var(--color-primary);
    font-family: "Font Awesome 7 Free";
    font-size: 24px;
    font-weight: 600;
}


.why-us-area .info li h5 {
  text-transform: capitalize;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.why-us-area .info ul {
  margin-top: 25px;
}

.why-us-area .info li:last-child {
  margin: 0;
}

.why-us-area .info li p {
  margin: 0;
}


.why-choseus-area .fixed-shape {
  position: absolute;
  right: 0;
  top: -120px;
  z-index: -1;
  text-align: right;
}

.why-choseus-area .fixed-shape img {
  width: 80%;
}

.why-choseus-area .info-box {
    margin-top: -50px;
}

.why-choseus-area .info-box .single-item {
    margin-top: 50px;
}

.why-choseus-area .info-box .item i {
    color: var(--color-heading);
    display: inline-block;
    font-size: 50px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.why-choseus-area .info-box .item i::after {
    position: absolute;
    right: -20px;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(62.5deg, transparent, rgba(0, 0, 0, 0.05));
    z-index: -1;
    transform: rotate(45deg);
    border-radius: 10px;
}

.why-choseus-area .info-box .item h4 {
    text-transform: capitalize;
    font-weight: 600;
}

.why-choseus-area .info-box .item a {
    display: inline-block;
    text-decoration: underline;
    color: var(--color-primary);
}

.why-choseus-area .info-box .item p {
  margin: 0;
}

.why-choseus-area .thumb {
    padding-left: 25px;
}

.why-choseus-area .thumb-box {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.why-choseus-area .thumb-box h2 {
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -40px;
    padding: 30px;
    background: var(--color-primary);
    margin: 0;
    font-size: 20px;
    color: var(--white);
    padding-right: 40px;
    font-weight: 600;
    text-transform: capitalize;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.team-area .fixed-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.team-area .fixed-shape img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.team-area .team-items .single-item {
  margin-bottom: 30px;
}

.team-area .team-items .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.team-area .team-items .thumb .info {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  padding: 30px;
  z-index: 1;
  transition: all .65s ease-in-out;
}

.team-area .team-items .item:hover .thumb .info {
  opacity: 0;
  bottom: -100%;
}

.team-area .team-items .thumb::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 50%;
  width: 100%;
  transition: all 0.35s ease-in-out;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 90%) repeat scroll 0 0;
}

.team-area .team-items .item:hover .thumb::after {
  height: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 90%) repeat scroll 0 0;
}

.team-area .team-items .thumb .info h4 {
  text-transform: capitalize;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}

.team-area .team-items .thumb .info span {
  color: var(--white);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 14px;
}

.team-area .team-items .item > .social {
  background: var(--white);
  position: relative;
  width: 90%;
  left: 5%;
  top: -25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  margin-bottom: -25px;
}

.team-area .team-items .item > .social li {
  display: inline-block;
  margin: 10px;
}

.team-area .team-items .thumb .overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -10%);
  padding: 30px;
  transition: all 0.35s ease-in-out;
  z-index: 1;
  opacity: 0;
}

.team-area .team-items .item:hover .thumb .overlay {
  opacity: 1;
  transform: translate(0, -50%);
}

.team-area .team-items .thumb .overlay h4 {
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 10px;
}

.team-area .team-items .thumb .overlay p {
  margin: 0;
}

.team-area .team-carousel .owl-nav {
  margin: 0;
}

.team-area .team-carousel {
  margin-bottom: 15px;
}

.team-area .team-carousel .owl-nav .owl-prev, 
.team-area .team-carousel .owl-nav .owl-next {
  background: transparent none repeat scroll 0 0;
  color: var(--color-primary);
  font-size: 30px;
  height: 40px;
  left: -50px;
  line-height: 40px;
  margin: -20px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 40px;
}

.team-area .team-carousel .owl-nav .owl-next {
  left: auto;
  right: -50px;
}



.projects-area .info ul li {
  float: left;
  width: auto;
  margin-right: 50px;
  margin-top: 30px;
  text-transform: capitalize;
}

.projects-area .info ul {
  border-top: 1px dashed #dddddd;
  margin-top: 25px;
}

.projects-area .info ul li h5 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.projects-area .info ul li span {
  text-transform: uppercase;
  font-size: 14px;
}

.projects-area .project-item .thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.projects-area .project-item .thumb::after {
  position: absolute;
  left: 0;
  bottom: -50%;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) repeat scroll 0 0;
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.projects-area .project-item .thumb:hover::after {
  bottom: 0;
  opacity: 0.7;
}

.projects-area .project-item .thumb a {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #ffffff;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -90%);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 10px #cccccc;
  opacity: 0;
  color: #ff3514;
}

.projects-area .project-item .thumb:hover a {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.projects-area .item .info h4 {
  font-weight: 600;
  text-transform: capitalize;
  color: #ff3514;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.projects-area .item .info h4::after {
  position: absolute;
  left: 50%;
  bottom: -3px;
  content: "";
  height: 10px;
  width: 100%;
  transform: translate(-50%, 0);
  background: #ff3514;
  z-index: -1;
  opacity: 0.1;
}

.projects-area .item .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 42px;
}

.projects-area .project-item.projects-carousel .owl-nav {
  margin: 0;
}

.projects-area .project-item.projects-carousel .owl-nav .owl-prev, 
.projects-area .project-item.projects-carousel .owl-nav .owl-next {
  background: transparent none repeat scroll 0 0;
  color: #ff3514;
  font-size: 30px;
  height: 40px;
  left: -70px;
  line-height: 40px;
  margin: -20px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 40px;
}

.projects-area .project-item.projects-carousel .owl-nav .owl-next {
  left: auto;
  right: -70px;
}


.portfolio-area.half-bg-dark {
  position: relative;
  z-index: 1;
}

.portfolio-area.half-bg-dark::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 50%;
  width: 100%;
  background: #022147 none repeat scroll 0 0 !important;
  z-index: -1;
}

.portfolio-area .portfolio-items-area .mix-item-menu button {
    display: inline-block;
    background: transparent;
    border: none;
    text-transform: capitalize;
    margin-bottom: 15px;
    box-shadow: inherit;
    padding: 7px 15px;
    clip-path: polygon(6% 0, 100% 0%, 94% 100%, 0% 100%);
}

.portfolio-area .portfolio-items-area .mix-item-menu {
    margin-bottom: 15px;
}

.portfolio-area .portfolio-items-area .mix-item-menu button.active {
    background: #ff3514;
    color: #ffffff;
}

.portfolio-items-area .gallery-content {
  margin: 0 -15px;
  margin-bottom: -45px;
}

.portfolio-area .gallery-items .pf-item .item {
    margin-bottom: 30px !important;
}

.portfolio-area .gallery-items.colums-3 .pf-item {
  float: left;
  padding: 15px;
  width: 33.3333%;
}

.portfolio-area .gallery-items.colums-2 .pf-item {
  float: left;
  padding: 15px;
  width: 50%;
}

.portfolio-area .gallery-items.colums-4 .pf-item {
  float: left;
  padding: 15px;
  width: 25%;
}

.portfolio-area .item .info {
  padding-top: 30px;
}

.portfolio-area .item .info h5 {
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.portfolio-area.half-bg-dark .item .info h5::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 15px;
  width: 100%;
  background: #ff3514;
  z-index: -1;
  opacity: 0.2;
}

.portfolio-area .item .info span {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-bottom: -8px;
}

.portfolio-area .item .info span i {
    margin-right: 5px;
    color: #ff3514;
    font-size: 16px;
    position: relative;
    top: 2px;
    font-weight: 500;
}

.portfolio-area .item .info a {
  margin-top: 20px;
}

.portfolio-area.half-bg-dark .item .info a {
  color: #ffffff;
}

.portfolio-area.half-bg-dark .item .info span {
  color: #cccccc;
}

.portfolio-area .item .thumb {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.portfolio-area .item .thumb .overlay a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background: #ff3514;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 10px #cccccc;
  color: #ffffff;
  opacity: 0;
  text-align: center;
}

.portfolio-area .item .thumb:hover .overlay a {
  opacity: 1;
}

.portfolio-area .portfolio-carousel .owl-nav {
  margin: 0;
}

.portfolio-area .portfolio-carousel .owl-nav .owl-prev, 
.portfolio-area .portfolio-carousel .owl-nav .owl-next {
  background: transparent none repeat scroll 0 0;
  color: #ff3514;
  font-size: 30px;
  height: 40px;
  left: -50px;
  line-height: 40px;
  margin: -20px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 40px;
}

.portfolio-area .portfolio-carousel .owl-nav .owl-next {
  left: auto;
  right: -50px;
}


.portfolio-area .item .thumb img {
  max-width: 100%;
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.portfolio-area .item .thumb:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.portfolio-area .item .thumb:hover img {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  background-position: top;
  -webkit-filter: grayscale(0.4) blur(2px);
  filter: grayscale(0.4) blur(2px);
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.45s;
  -o-transition-duration: 0.45s;
  -webkit-transition-duration: 0.45s;
  transition-duration: 0.45s;
}

.portfolio-area .item .thumb:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
}

.portfolio-area .item .thumb img {
  display: inline-block;
  -moz-transform: scale(1.09, 1.09);
  -ms-transform: scale(1.09, 1.09);
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.portfolio-area .item .thumb:hover:before,
.portfolio-area .item .thumb.hover:before,
.portfolio-area .item .thumb:hover:after,
.portfolio-area .item .thumb.hover:after {
  opacity: 1;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.project-details-area .content .project-info ul li {
    padding-left: 0;
    float: left;
    width: 50%;
    margin: 0;
    margin-top: 10px;
}

.project-details-area .content .project-info ul li::after {
    display: none;
}

.project-details-area .project-info {
    padding: 30px;
    border: 1px solid #e7e7e7;
    margin-bottom: 30px;
    margin-top: 25px;
    overflow: hidden;
    padding-top: 20px;
}

.project-details-area .content .project-info ul li span, 
.project-details-area .content .project-info ul li span a {
    color: #777777;
    text-decoration: underline;
}

.project-details-area .default-one-col-carousel .owl-nav {
  margin: 0;
}

.project-details-area .default-one-col-carousel .owl-nav .owl-prev, 
.project-details-area .default-one-col-carousel .owl-nav .owl-next {
  background: transparent none repeat scroll 0 0;
  color: #ff3514;
  font-size: 30px;
  height: 40px;
  left: 15px;
  line-height: 40px;
  margin: -20px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 40px;
}

.project-details-area .default-one-col-carousel .owl-nav .owl-next {
  left: auto;
  right: 15px;
}

.services-area.icon-only.text-light .services-box .single-item p {
    color: #d9d9d9;
}

.clients-area .clients-item-box {
  border-top: 1px solid var(--gray);
  margin-top: 50px;
  padding-top: 40px;
}

.clients-area .clients-box img {
  width: auto;
  margin: auto;
}

.clients-area .left-info h4 {
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.clients-area .left-info h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 10px;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  opacity: 0.2;
}

.clients-area .left-info p {
  margin: 0;
}

.testimonial-items {
  position: relative;
  z-index: 1;
}

.testimonial-items::after {
  position: absolute;
  left: 0;
  top: -15px;
  content: "\f10d";
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  font-size: 100px;
  z-index: -1;
  opacity: 0.07;
}

.testimonial-items .title h2 {
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -5px;
}

.testimonial-items .title a {
  margin-top: 10px;
}

.testimonials-area .testimonial-content {
  border-left: 2px solid var(--color-primary);
  padding-left: 50px;
}

.testimonials-area .testimonial-content .provider {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.testimonials-area .testimonial-content .provider img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonials-area .testimonial-content .provider .info h5 {
  margin-bottom: 7px;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonials-area .testimonial-content p {
    font-size: 25px;
    line-height: 1.6;
    font-style: italic;
    margin-top: -5px;
}

.testimonials-area .testimonial-content.testimonials-carousel .owl-nav {
  text-align: left;
  margin-top: 30px;
  margin-left: 5px;
  margin-bottom: -8px;
}

.testimonials-area .testimonial-content.testimonials-carousel .owl-nav .owl-prev, 
.testimonials-area .testimonial-content.testimonials-carousel .owl-nav .owl-next {
  background: transparent;
  color: var(--color-heading);
  font-size: 24px;
  margin: 0;
  padding: 0;
  margin-right: 15px;
}

.testimonials-area .testimonial-content.testimonials-carousel .owl-dots {
  margin-top: 30px;
  margin-bottom: -8px;
  text-align: left;
}

.testimonials-area .testimonial-content.testimonials-carousel .owl-dots .owl-dot span {
  height: 20px;
  border: 3px solid var(--color-paragraph);
  width: 20px;
  margin: 0 5px;
  opacity: 1;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: transparent;
}

.testimonials-area .testimonial-content.testimonials-carousel .owl-dots .owl-dot.active span {
  border-color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.testimonials-area .testimonial-content.testimonials-carousel .owl-dots .owl-dot.active span::after {
  position: absolute;
  left: 1px;
  top: -7px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid  var(--color-primary);
}


.blog-area .blog-items {
  margin-top: -30px;
}

.blog-area.right-sidebar .blog-items {
  margin-top: 0;
}

.blog-area.right-sidebar .blog-items .blog-content {
  margin-top: -30px;
}

.blog-area .single-item {
  margin-top: 30px;
}

.blog-area .blog-items .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.blog-area .blog-items .blog-thin-colums .item {
  box-shadow: inherit;
  border-top: 1px solid var(--gray);
  padding-top: 30px;
  background: transparent;
}

.blog-area .blog-items .blog-thin-colums .single-item:first-child .item {
  padding-top: 0;
  border: none;
}

.blog-area .blog-items .blog-thin-colums .item .info {
  padding: 0 15px;
}

.blog-area .thumb {
  position: relative;
  z-index: 1;
}

.blog-area .thumb .cats {
  position: absolute;
  left: 30px;
  bottom: -20px;
}

.blog-area .thumb .cats a {
  display: inline-block;
  padding: 7px 25px;
  position: relative;
  z-index: 1;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-right: 5px;
}

.blog-area .item .info {
  padding: 30px;
}

.blog-area.full-blog .item .info {
  padding: 30px;
  padding-top: 50px;
}

a.simple {
  text-transform: uppercase;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  padding-left: 27px;
  font-weight: 600;
  margin-top: 5px;
}

a.simple::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 20px;
  background: var(--color-primary);
}

.blog-area .item .info .meta ul {
  display: flex;
  align-items: center;
}

.blog-area .item .info .meta ul li {
  margin-right: 15px;
  padding-right: 15px;
  position: relative;
  font-weight: 600;
  color: var(--color-paragraph);
}

.blog-area .item .info .meta ul li i {
  margin-right: 3px;
}

i.fas.fa-calendar {
  font-weight: 500;
}

.blog-area .item .info .meta ul li::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 20px;
  width: 1px;
  background: #cccccc;
  margin-top: -10px;
}

.blog-area .item .info .meta ul li:last-child::after {
  display: none;
}

.blog-area .item .info .meta ul li:last-child {
  margin: 0;
  padding: 0;
}

.blog-area .item .info .meta ul li a {
  color: var(--color-paragraph);
}

.blog-area .item .info .meta ul li img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 53, 20, 0.1);
  padding: 2px;
  margin-right: 5px;
}

.blog-area .item .info .meta {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-area .item .info .content > a {
  margin-top: 8px;
}

.blog-area .item .info .content h4 {
  line-height: 1.4;
}

.blog-area .item .info h2,
.blog-area .item .info h3,
.blog-area .item .info h4 {
  font-weight: 600;
  line-height: 1.4;
}

.blog-area .item .info .content h4 a:hover {
  color: var(--color-primary);
}

.blog-area .item .info .meta ul li i.fas.fa-share-alt {
  color: var(--color-primary);
}

.blog-area .item .info .meta .social-share ul li.facebook a {
  color: #3B5998;
}

.blog-area .item .info .meta .social-share ul li.twitter a {
  color: #000000;
}

.blog-area .item .info .meta .social-share ul li.pinterest a {
  color: #BD081C;
}

.blog-area .item .info .meta .social-share ul li.g-plus a {
  color: #DB4437;
}

.blog-area .item .info .meta .social-share ul li.linkedin a {
  color: #0077B5;
}


.blog-area .pagi-area .pagination {
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}

.blog-area .pagi-area .pagination li a {
  display: inline-block;
  padding: 15px 20px;
  margin: 5px;
  margin-bottom: 0;
  border-radius: 10px;
  color: var(--color-primary);
}

.page-item.active .page-link {
  z-index: 3;
  color: var(--white) !important;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}


.blog-area.left-sidebar .blog-content {
  float: right;
}

.blog-area.left-sidebar .sidebar {
  padding-right: 35px;
}

.blog-area.right-sidebar .sidebar {
  padding-left: 35px;
}

.blog-area .sidebar .title {
  display: block;
}

.blog-area .sidebar .title h4 {
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: -5px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
  font-size: 20px;
  display: inline-block;
}

.blog-area .sidebar .title h4::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 10px;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  opacity: 0.1;
}

.blog-area .sidebar input[type="text"] {
  border: 1px solid var(--gray);
  border-radius: inherit;
  box-shadow: inherit;
  min-height: 60px;
}

.blog-area .sidebar form {
  position: relative;
}

.blog-area .sidebar button[type="submit"] {
  background: var(--color-primary);
  border: medium none;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 50px;
  width: 50px;
  position: absolute;
  right: 5px;
  text-transform: uppercase;
  top: 5px;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  border-radius: 50%;
}

.blog-area .sidebar input[type="submit"]:hover {
  background: var(--color-primary) none repeat scroll 0 0;
}

.blog-area .sidebar .sidebar-item {
  float: left;
  margin-bottom: 50px;
  width: 100%;
}

.blog-area .sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}

.blog-area .sidebar .sidebar-item.category .sidebar-info, 
.blog-area .sidebar .sidebar-item.archives .sidebar-info {
  margin-top: -5px;
}

.blog-area .sidebar .sidebar-item.category li {
  display: block;
  position: relative;
  padding-left: 18px;
  margin-top: 15px;
}

.blog-area .sidebar .sidebar-item.category li::after {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  height: 7px;
  width: 7px;
  background: #cccccc;
  border-radius: 50%;
}

.blog-area .sidebar .sidebar-item.category li:first-child::after {
  top: 12px;
}

.blog-area .sidebar .sidebar-item.category li a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--color-paragraph);
}

.blog-area .sidebar .sidebar-item li a:hover {
  color: var(--color-primary);
}

.blog-area .sidebar .sidebar-item.category li a span {
  position: absolute;
  right: 0;
  top: 10px;
  color: var(--color-heading);
  font-size: 14px;
}

.blog-area .sidebar .sidebar-item.category li:first-child a span {
  top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child {
  margin-top: 0;
  padding-top: 0;
}

.blog-area .sidebar .sidebar-item.category li:first-child a::after {
  top: 0;
}

.blog-area .sidebar .sidebar-item.category li:last-child {
  border: medium none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-item.recent-post li a {
  color: #333333;
  display: block;
  font-weight: 600;
}

.sidebar-item.recent-post li a:last-child {
  display: inline-block;
}

.sidebar-item.recent-post .meta-title {
  font-family: 'Nunito', sans-serif;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 13px;
}

.sidebar-item.recent-post .meta-title i {
  margin-right: 3px;
  font-weight: 500;
  color: var(--color-primary);
}

.sidebar-item.recent-post li a:hover {
  color: var(--color-primary);
}

.color-yellow .sidebar-item.recent-post li a:hover {
  color: #ff9800;
}

.sidebar-item.recent-post li a span {
  display: inline-block;
  color: #002359;
}

.sidebar-item.recent-post li span {
  display: inline-block;
}

.sidebar-item.recent-post .meta-title a {
  color: #999999;
}

.sidebar-item.recent-post li {
  color: #cdd0d3;
}

.sidebar-item.recent-post li {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.sidebar-item.recent-post li:last-child {
  border: medium none;
  margin: 0;
  padding: 0;
}

.sidebar-item.recent-post li:last-child {
  margin: 0;
}

.sidebar-item.recent-post li .thumb {
  display: table-cell;
  padding-top: 5px;
  vertical-align: top;
  width: 80px;
}

.sidebar-item.recent-post .thumb img {
  width: 100%;
}

.sidebar-item.recent-post li .info {
  box-shadow: inherit;
  color: #837f7e;
  display: table-cell;
  line-height: 26px;
  padding: 0;
  padding-left: 25px;
  vertical-align: top;
}

.sidebar-item.recent-post li .info a {
  color: var(--color-paragraph);
  text-decoration: inherit;
  font-weight: 800;
}

.blog-area .sidebar-item.gallery ul {
  margin: -7px;
  overflow: hidden;
}

.sidebar-item.gallery ul li {
  box-sizing: border-box;
  float: left;
  padding: 7px;
  width: 33.333%;
}

.sidebar-item.gallery ul li img {
  min-height: 70px;
  width: 100%;
}

.sidebar-item.archives ul li {
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.sidebar-item.archives ul li:last-child {
  margin-bottom: 0;
}

.sidebar-item.archives ul li a {
  display: inline-block;
  font-weight: 800;
  text-transform: capitalize;
  z-index: 1;
  padding-left: 25px;
  font-size: 14px;
  color: var(--color-paragraph);
}

.sidebar-item.archives ul li a::after {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "\f07b";
  font-family: "Font Awesome 7 Free";
  height: 8px;
  left: 0;
  position: absolute;
  width: 8px;
  font-weight: 500;
}

.sidebar-item.social-sidebar ul {
  margin-bottom: -10px;
  overflow: hidden;
}

.sidebar-item.social-sidebar li {
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sidebar-item.social-sidebar li a {
  background: #002359 none repeat scroll 0 0;
  border: medium none;
  color: var(--white);
  display: inline-block;
  height: 50px;
  line-height: 50px;
  margin-bottom: 5px;
  text-align: center;
  width: 50px;
  border-radius: 50%;
  font-size: 14px;
}

.sidebar-item.social-sidebar li a:hover {
  color: var(--white) !important;
}

.sidebar-item.social-sidebar li.facebook a {
  background: #3B5998 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.twitter a {
  background: #000000 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.pinterest a {
  background: #BD081C none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.g-plus a {
  background: #DB4437 none repeat scroll 0 0;
}

.sidebar-item.social-sidebar li.linkedin a {
  background: #0077B5 none repeat scroll 0 0;
}

.sidebar-item.tags ul {
  margin-top: -8px;
}

.sidebar-item.tags ul li {
  display: inline-block;
}

.sidebar-item.tags ul li a {
  border: 1px solid var(--gray);
  display: inline-block;
  font-weight: 800;
  margin-top: 8px;
  margin-right: 5px;
  padding: 5px 25px;
  text-transform: capitalize;
  font-size: 13px;
  border-radius: 30px;
  color: var(--color-paragraph);
  background: #fafafa;
}

.sidebar-item.tags ul li a:hover {
  color: var(--color-primary);
}


.blog-area.single .item .content-box span {
  background: var(--color-primary) none repeat scroll 0 0;
  color: var(--white);
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 20px;
  text-transform: uppercase;
}

.blog-area.single .item .content-box h2,
.blog-area.single .item .content-box h3,
.blog-area.single .item .content-box h4 {
  font-weight: 500;
}

.blog-area.single .content-box .cats {
  float: left;
  margin-right: 5px;
}

.blog-area.single .content-box .meta .date {
  float: right;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-area.single .content-box .meta {
  overflow: hidden;
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
}

.blog-area .blog-items .info > ul li {
  margin-top: 15px;
  color: var(--color-heading);
  position: relative;
  z-index: 1;
  padding-left: 18px;
}

.blog-area .blog-items .info > ul {
  margin-top: 25px;
}

.blog-area .blog-items .info > ul li::after {
  position: absolute;
  left: 0;
  top: 11px;
  content: "";
  background: var(--color-paragraph);
  height: 7px;
  width: 7px;
  border-radius: 50%;
}

.blog-area.single .content-box .cats a:last-child::after {
  display: none;
}

.blog-area.single .item {
  margin-bottom: 0;
}

.blog-area .item blockquote {
  position: relative;
  z-index: 1;
  border: none;
  font-size: 18px;
  line-height: 34px;
  padding-left: 60px;
  margin-top: 45px;
  margin-bottom: 30px;
  background: #fafafa;
  padding: 30px;
  border-bottom: 2px solid var(--gray);
  color: var(--color-heading);
  font-weight: 300;
}

.blog-area .item blockquote::after {
  position: absolute;
  left: 30px;
  content: "\f10d";
  font-family: "Font Awesome 7 Free";
  color: var(--color-primary);
  font-size: 40px;
  top: -20px;
  font-weight: 600;
}

.blog-area .item blockquote .footer {
  display: block;
  margin-top: 17px;
}

.blog-area .item blockquote .footer p {
  margin: 0;
  padding-left: 90px;
  position: relative;
  display: inline-block;
  color: var(--color-heading);
  font-weight: 600;
}

.blog-area .item blockquote .footer p::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 80px;
  background: var(--color-primary);
}

.blog-area .blog-content .post-tags, 
.blog-area .blog-content .share {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-area .blog-content .share li {
  display: inline-block;
  margin-left: 15px;
}

.blog-area .blog-content .share li a {
  display: inline-block;
  color: var(--color-primary);
}

.blog-area .blog-content .share li.facebook a {
  color: #3B5998;
}

.blog-area .blog-content .share li.twitter a {
  color: #000000;
}

.blog-area .blog-content .share li.pinterest a {
  color: #BD081C;
}

.blog-area .blog-content .share li.g-plus a {
  color: #DB4437;
}

.blog-area .blog-content .share li.linkedin a {
  color: #0077B5;
}

.blog-area .blog-content .post-tags .tags a {
  background: var(--bg-gray);
  padding: 10px 15px;
  font-size: 14px;
  margin-right: 3px;
  margin-bottom: 5px;
  display: inline-block;
}

.blog-area.single .post-pagi-area {
  margin-top: 15px;
  overflow: hidden;
}

.blog-area.single .post-pagi-area a {
  display: inline-block;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--color-primary);
  padding: 8px 30px;
  border: 2px solid;
  border-radius: 30px;
}

.blog-area.single .post-pagi-area a:hover {
  color: var(--color-primary);
}

.blog-area.single.color-yellow .post-pagi-area a:hover {
  color: #ff9800;
}

.blog-area.single .post-pagi-area a:last-child {
  float: right;
}

.blog-area.single .post-pagi-area a:first-child i {
  margin-right: 3px;
}

.blog-area.single .post-pagi-area a:last-child i {
  margin-left: 3px;
}

.comments-area .commen-item .comments-info p {
  display: block;
  margin: 0;
}

.blog-area .contact-comments .submit {
  margin-bottom: 0;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
 /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Comments */

.blog-area .comments-form {
  margin-top: 25px;
}

.comments-list .commen-item .avatar {
  float: left;
  height: 105px;
  width: 105px;
}

.comments-list .commen-item .content {
  display: table-cell;
  vertical-align: top;
}

.comments-list .commen-item .avatar img {
  height: 80px;
  width: 80px;
}

.comments-list .commen-item {
  margin-bottom: 25px;
}

.comments-list .commen-item:last-child {
  margin-bottom: 0;
}

.comments-list .commen-item.reply {
  padding-left: 80px;
}

.comments-area {
  margin-top: 40px;
}

.comments-area .comments-title h2,
.comments-area .comments-title h3,
.comments-area .comments-title h4 {
  border-bottom: 1px solid #e2e2e2;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 25px;
  text-transform: capitalize;
}

.comments-list .commen-item .content h3, 
.comments-list .commen-item .content h4, 
.comments-list .commen-item .content h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}

.comments-list .commen-item .content .title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.comments-list .commen-item .content .title span {
  border-left: 1px solid var(--gray);
  padding-left: 15px;
  margin-left: 15px;
}

.comments-info a {
  border: 1px solid var(--gray);
  color: #002359;
  display: inline-block;
  font-size: 12px;
  margin-top: 5px;
  padding: 1px 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.comments-info a:hover {
  color: var(--color-primary);
}

.color-yellow .comments-info a:hover {
  color: #ff9800;
}

.comments-info a i {
  margin-right: 10px;
}

.comments-form input, 
.comments-form textarea {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: var(--gray);
  border-image: none;
  border-radius: inherit;
  border-style: none none solid;
  border-width: medium medium 1px;
  box-shadow: inherit;
}

.comments-form textarea {
  min-height: 180px;
  padding: 15px;
}

.blog-area.full-blog.single-blog .form-group.submit {
  margin-bottom: 0;
}

.comments-form button {
  background: var(--color-primary);
  border: 1px solid transparent;
  color: var(--white);
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  margin-top: 20px;
  padding: 15px 45px;
  text-transform: uppercase;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  border-radius: 30px;
}

.comments-form button:hover {
  color: var(--white);
  background-color: var(--color-primary);
  border: 1px solid transparent;
}

.comments-area .commen-item .comments-info {
  margin-bottom: 15px;
}

.comments-form .title h2, 
.comments-form .title h3, 
.comments-form .title h4 {
  border-bottom: 1px solid var(--gray);
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 25px;
  text-transform: capitalize;
}

.blog-area .contact-comments .comments {
  margin-top: 20px;
}

.blog-area.single .blog-items .item .contact-comments .col-md-6 {
  float: left;
  padding: 0 15px;
}



.faq-area {
  position: relative;
  z-index: 1;
}

.faq-area img {
  max-width: 130%;
  position: relative;
  left: -30%;
  z-index: -1;
}

.accordion .accordion-header button:after {
  font-family: "Font Awesome 7 Free";
  content: "\f107";
  position: absolute;
  right: 30px;
  top: 37px;
  font-weight: 600;
  background-image: none;
}

.accordion .card-header h4.collapsed:after {
  content: "\f105";
  font-weight: 900;
}

.faq-area .accordion-item {
  border: 1px solid var(--gray) !important;
  margin-bottom: 15px;
  overflow: inherit;
  background: var(--white);
  border-radius: inherit;
}

.faq-area .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-area .accordion-item .accordion-header {
  border: none;
  background: transparent;
  padding: 0;
}

.faq-area .accordion-item .accordion-header button {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  padding: 30px;
  padding-right: 50px;
  cursor: pointer;
}

.faq-area .accordion button span {
  margin-right: 10px;
  position: relative;
  z-index: 1;
  height: 35px;
  width: 50px;
  display: inline-block;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.faq-area .accordion button span::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: #ededed;
  z-index: -1;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.faq-area .accordion-item .accordion-header button strong {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 38px;
  text-align: center;
  background: rgba(12, 184, 182, 0.070605);
  border: 2px solid var(--gray);
  border-radius: 50%;
  font-weight: 600;
  margin-right: 10px;
  color: #0cb8b6;
  font-size: 14px;
}

.faq-area .accordion-item .accordion-body {
  padding-left: 30px;
  border-top: 1px solid var(--gray);
}

.faq-area .accordion-item .accordion-body p {
  margin: 0;
}

.accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--black);
}


.contact-area {
  position: relative;
  overflow: hidden;
}

.contact-area .fixed-bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  text-align: right;
}

.contact-area .fixed-bg img {
  width: 60%;
  position: relative;
  right: 0;
  height: 100%;
  bottom: 0;
}

.contact-area .contact-items {
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-area .contact-items .right-item {
  padding: 50px;
  background: #022147 none repeat scroll 0 0 !important;
  padding-left: 65px;
  position: relative;
  z-index: 1;
}

.contact-area .contact-items .right-item::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: url(assets/img/map.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 0.2;
  z-index: -1;
}

.contact-area .contact-items .left-item {
  padding: 50px;
  padding-right: 65px;
}

.contact-area .contact-items .item {
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-area .contact-items .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.contact-area .contact-items .item i {
  display: inline-block;
  font-size: 50px;
  min-width: 60px;
  padding-right: 20px;
  color: var(--color-primary);
}

.contact-area .contact-items .item p {
  margin: 0;
  color: #cccccc;
}

.contact-area .contact-items .item h5 {
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 600;
}

.contact-area .contact-items .content h2 {
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-area .contact-items .content input, 
.contact-area .contact-items .content textarea {
  border: none;
  border-bottom: 1px solid var(--gray);
  padding: 0;
  border-radius: inherit;
}

.contact-area .contact-items .content textarea {
  min-height: 150px;
}

.contact-area .contact-items .content button {
  background: var(--color-primary);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  text-transform: uppercase;
}

.contact-area img.loader {
  margin-left: 10px;
}


.google-maps iframe {
  border: medium none;
  height: 450px;
  margin-bottom: -10px;
  width: 100%;
}

.maps-area {
  overflow: hidden;
}


.error-page-area .error-box {
  position: relative;
  z-index: 1;
}

.error-page-area .error-box h1 {
  font-size: 300px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.07;
}

.error-page-area .error-box h2 {
  font-weight: 600;
  margin-top: -8px;
}

.error-page-area .error-box a {
  margin-top: 10px;
}

.error-page-area .error-box form {
  position: relative;
  width: 60%;
  margin: 30px auto auto;
  border: 1px solid var(--gray);
  background: var(--white);
}

.error-page-area .error-box form input {
  border: none;
  box-shadow: none;
  background: transparent;
}

.error-page-area .error-box form button {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  min-height: 50px;
  width: 50px;
  background: var(--color-primary);
  color: var(--white);
}


.yet-footer {
    position: relative;
    background: #0a0e14;
    color: #cfd3da;
    font-family: var(--font-default);
    overflow: hidden;
    isolation: isolate;
}


.yet-footer__shippers {
    position: relative;
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #0d1118 0%, #0a0e14 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.yet-footer__shippers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 96, 170, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 96, 170, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

.yet-footer__shippers-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 35px;
    padding: 0 20px;
}

.yet-footer__shippers-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 96, 170, 0.5), transparent);
}

.yet-footer__shippers-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.yet-footer__shippers-title i {
    color: #0060aa;
    font-size: 22px;
    margin-bottom: 4px;
}

.yet-footer__shippers-title em {
    font-style: normal;
    font-size: 11px;
    font-weight: 400;
    color: #7a8290;
    letter-spacing: 4px;
}

.yet-footer__shippers-track-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.yet-footer__shippers-track {
    display: flex;
    padding: 25px 0px 25px 0px;
    width: max-content;
    gap: 24px;
    animation: yetFooterMarquee 35s linear infinite;
}

.yet-footer__shippers-track:hover {
    animation-play-state: paused;
}

.yet-footer__shipper {
    flex: 0 0 auto;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.yet-footer__shipper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 96, 170, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.yet-footer__shipper:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 96, 170, 0.5);
    background: rgba(0, 96, 170, 0.08);
    box-shadow: 0 12px 30px -10px rgba(0, 96, 170, 0.4);
}

.yet-footer__shipper:hover::before {
    opacity: 1;
}

.yet-footer__shipper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.35s ease;
    position: relative;
    z-index: 1;
}

.yet-footer__shipper:hover img {
    filter: brightness(1) invert(0) opacity(1);
}

@keyframes yetFooterMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.yet-footer__body {
    position: relative;
    padding: 80px 0 60px;
}

.yet-footer__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

.yet-footer__grain {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(0, 96, 170, 0.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0, 96, 170, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.yet-footer__main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.yet-footer__col {
    position: relative;
}

/* Marka Sütunu */
.yet-footer__logo {
    display: inline-block;
    margin-bottom: 22px;
}

.yet-footer__logo img {
    max-width: 230px;
    height: auto;
}

.yet-footer__about {
    font-size: 14px;
    line-height: 1.85;
    color: #9aa3b0;
    margin-bottom: 24px;
}

.yet-footer__about strong {
    color: #fff;
    font-weight: 600;
}

.yet-footer__badges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yet-footer__badges li {
    padding: 8px 14px;
    background: rgba(0, 96, 170, 0.1);
    border: 1px solid rgba(0, 96, 170, 0.25);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #cfd3da;
    letter-spacing: 0.5px;
}

.yet-footer__badges li span {
    color: #4fa3e0;
    font-weight: 700;
    margin-right: 4px;
}


.yet-footer__heading {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 28px;
    padding-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.yet-footer__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0060aa;
}

.yet-footer__heading-num {
    color: #0060aa;
    font-size: 13px;
    font-weight: 700;
    font-family: monospace;
    opacity: 0.7;
}


.yet-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yet-footer__links li {
    margin-bottom: 12px;
}

.yet-footer__links a {
    color: #9aa3b0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.yet-footer__links a i {
    color: #0060aa;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.yet-footer__links a:hover {
    color: #fff;
    padding-left: 6px;
}

.yet-footer__links a:hover i {
    transform: translateX(4px);
}


.yet-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.yet-footer__contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.yet-footer__contact li i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 96, 170, 0.12);
    border: 1px solid rgba(0, 96, 170, 0.25);
    border-radius: 6px;
    color: #4fa3e0;
    font-size: 14px;
}

.yet-footer__contact li span {
    display: block;
    font-size: 11px;
    color: #6c7585;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.yet-footer__contact li p,
.yet-footer__contact li a {
    margin: 0;
    color: #e0e4eb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yet-footer__contact li a:hover {
    color: #4fa3e0;
}

.yet-footer__subscribe {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.yet-footer__subscribe:focus-within {
    border-color: #0060aa;
    background: rgba(0, 96, 170, 0.06);
}

.yet-footer__subscribe input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 13px 16px;
    font-size: 13px;
    font-family: var(--font-default);
}

.yet-footer__subscribe input::placeholder {
    color: #6c7585;
}

.yet-footer__subscribe button {
    background: #0060aa;
    border: none;
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yet-footer__subscribe button:hover {
    background: #004a85;
}

.yet-footer__bottom {
    position: relative;
    background: #06090d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
}

.yet-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.yet-footer__copy {
    margin: 0;
    font-size: 13px;
    color: #7a8290;
}

.yet-footer__copy strong {
    color: #fff;
    font-weight: 600;
}

.yet-footer__copy span {
    color: #5a6270;
    font-size: 12px;
}

.yet-footer__social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.yet-footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #9aa3b0;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.yet-footer__social a:hover {
    background: #0060aa;
    border-color: #0060aa;
    color: #fff;
    transform: translateY(-3px);
}

.yet-footer__top {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0060aa;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -6px rgba(0, 96, 170, 0.6);
}

.yet-footer__top:hover {
    background: #fff;
    color: #0060aa;
    transform: translateY(-4px);
}


@media (max-width: 1199px) {
    .yet-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .yet-footer__col--brand {
        grid-column: 1 / -1;
    }
    .yet-footer__col--contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .yet-footer__body {
        padding: 60px 0 40px;
    }
    .yet-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .yet-footer__col--brand,
    .yet-footer__col--contact {
        grid-column: 1;
    }
    .yet-footer__shippers-head {
        flex-direction: column;
        gap: 14px;
    }
    .yet-footer__shippers-line {
        width: 60%;
        flex: 0 0 auto;
    }
    .yet-footer__shipper {
        width: 140px;
        height: 70px;
        padding: 10px 16px;
    }
    .yet-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .yet-footer__copy {
        order: 2;
    }
    .yet-footer__social {
        order: 1;
    }
    .yet-footer__top {
        order: 3;
    }
}


footer {
  position: relative;
  z-index: 1;
}

footer .fixed-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.03;
}

footer .fixed-shape img {
  width: 100%;
  position: absolute;
  bottom: 0;
}


.footer-top {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.footer-top.bg-dark {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top form {
  border: 1px solid var(--gray);
  position: relative;
  border-radius: 30px;
}

.footer-top.bg-dark form {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.footer-top form input, 
.footer-top form input:focus {
  border: none;
  background: transparent;
  box-shadow: inherit;
  min-height: 60px;
  padding-left: 25px;
}

.footer-top.bg-dark form input, 
.footer-top.bg-dark form input:focus {
  color: var(--white);
}

.footer-top form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  width: 50px;
  border: none;
  color: var(--color-primary);
  border-radius: 50%;
}

.footer-top .subscribe-form {
  border-left: 1px solid var(--gray);
  padding-left: 35px;
  padding-right: 35px;
  border-right: 1px solid var(--gray);
  padding: 35px;
}

.footer-top.bg-dark .subscribe-form {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-top h4 {
  margin: 0;
  font-weight: 600;
  line-height: 45px;
}

.footer-top h4 i {
  font-size: 30px;
  align-items: center;
  margin-right: 5px;
  color: var(--color-primary);
  position: relative;
}
footer .widget-title {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 22px;
}

footer .contact {
  padding-right: 50px;
}

footer .contact ul li {
  margin-bottom: 15px;
}

footer .contact ul {
  margin-top: 25px;
}

footer .contact ul li i {
  margin-right: 15px;
  min-width: 20px;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  border: 1px solid var(--gray);
  line-height: 40px;
  color: var(--color-primary);
}

footer.bg-dark .contact ul li i {
  border-color: rgba(255, 255, 255, 0.2);
}

footer .contact ul li:last-child {
  margin-bottom: 0;
}

footer .link ul li {
  margin-bottom: 15px;
  padding-left: 15px;
  position: relative;
}

footer .link ul li::after {
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #bcb3b3;
}

footer .link ul li:last-child {
  margin-bottom: 0;
}

footer .link ul li a {
  color: var(--color-paragraph);
  font-weight: 500;
}

footer.bg-dark .link ul li a {
  color: #cccccc;
}

footer .link ul li a:hover {
  color: var(--color-primary);
}

footer .opening-hours li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 10px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

footer.bg-dark .opening-hours li {
  border-color: rgba(255, 255, 255, 0.2);
  color: #cccccc;
}

footer .opening-hours li:last-child {
  margin: 0;
  padding: 0;
  border: navajowhite;
}

footer .opening-hours li .closed {
  color: var(--white);
  background: var(--color-primary);
  padding: 0 15px;
  border-radius: 5px;
}

/* Footer Bottom  */
.footer-bottom {
  padding-bottom: 30px;
  margin-top: -10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom li {
  display: inline-block;
  margin-bottom: 0 !important;
}

.footer-bottom .text-end li {
  margin-left: 15px;
}

.footer-bottom .text-end li a {
  font-weight: 600;
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  
  text-align: center;
}

.demo-area.demo-conten.default-padding {
  padding-bottom: 30px;
}

.demo-area .single-item {
  position: relative;
  z-index: 1;
}

.demo-area .item {
    margin-bottom: 50px
}

.demo-area .single-item .info {
  padding: 15px 10px;
  text-align: center;
}
.demo-area .single-item .info h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    margin-top: 15px;
}
.banner-area .demo-banner h1 {
  font-weight: 600;
  margin-bottom: 30px;
}
.banner-area .demo-banner img {
  height: auto;
  margin-bottom: 50px;
  max-height: 80px;
}
.demo-area .def-heading h2 {
  font-weight: 900;
  margin: 30px 0;
  text-transform: uppercase;
  color: #333333;
}
.demo-footer {
  padding-bottom: 80px;
}

.introduction-area h2 span {
  color: #fd0060;
}

.introduction-area h4 {
  font-weight: 300;
  line-height: 30px;
}

.introduction-area h2 {
  color: var(--white);
  display: inline-block;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.introduction-area h2::before {
  background: #fd0060 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 50px;
}

.introduction-area h2::after {
  background: var(--white) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -40px;
  position: absolute;
  width: 25px;
}

footer.demo .copyright {
  margin-top: 15px;
}
.demo-area .comming-soon.item img {
    opacity: 0.3;
}
.banner-area.demo-banner {
  padding: 50px 0;
}
.demo-area .site-heading {
  margin-bottom: 30px;
}
.demo-area img {
  background: var(--white) none repeat scroll 0 0;
  padding: 10px;
  box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
}

.demo-area.demo-conten .single-item a {
    position: relative;
    display: block;
}

.demo-area.demo-conten .single-item a span {
    position: absolute;
    right: 15px;
    top: -14px;
    background: linear-gradient(90deg, rgba(30,85,189,1) 0%, rgba(67,126,235,1) 100%);
    color: var(--white);
    padding: 1px 35px;
    border-radius: 30px;
    box-shadow: 0 0 10px #cccccc;
}


.attr-right .attr-nav li.button a {
    display: inline-block;
    padding: 13px 40px !important;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.navbar .attr-right li.search {
    padding-right: 18px;
}

nav.navbar.validnavs.navbar-fixed.sticked .attr-right .attr-nav li.button a {
    color: var(--color-primary);
    border: 1px solid #cecece;
}


nav.navbar.validnavs.navbar-fixed.sticked ul.nav > li > a.active {
  color: var(--color-primary);
}

nav.navbar.validnavs.navbar-fixed.sticked ul.nav > li > a:hover {
  color: var(--color-primary);
}

nav.navbar.validnavs li.dropdown ul.dropdown-menu>li a:hover, nav.navbar.validnavs li.dropdown ul.dropdown-menu>li a:hover {
    color: var(--color-primary);
}

@media (max-width:991px) {
  .attr-right .attr-nav li.button a{
    padding: 10px 30px !important;
    border: 1px solid black;
  }
}

.carousel-control-next-icon {
    background-image: url(assets/img/right-arrow.png);
    position: relative;
    right: -150px;
    transition: all 0.36s ease-in-out;
}

.banner-area:hover .carousel-control-next-icon {
    right: -40px;
}

.carousel-control-prev-icon {
    background-image: url(assets/img/right-arrow.html\ \(1\).png);
    position: relative;
    left: -150px;
    transition: all 0.36s ease-in-out;
}

.banner-area:hover .carousel-control-prev-icon {
    left: -40px;
}

.banner-area.banner-2 .carousel-control-next-icon {
  background-image: url(assets/img/right-arrow.html\ \(6\).png);
}

.banner-area.banner-2 .carousel-control-prev-icon {
  background-image: url(assets/img/right-arrow.html\ \(6\).png);
  transform: rotate(180deg);
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1;
}
.brand-slider-section {
  width: 100%;
  padding: 40px 0;
}

.brand-slider-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.brand-slider {
  width: 100%;
  overflow: hidden;
  background: #f0f0f0;
  padding: 30px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brand-slider-track {
  display: flex;
  width: max-content;
  animation: scrollBrands 60s linear infinite;
}



.brand-item {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

.brand-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-item img:hover {
  transform: scale(1.05);
}

@keyframes scrollBrands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .brand-slider-title { font-size: 20px; }
  .brand-item { width: 150px; padding: 0 15px; }
  .brand-item img { max-height: 50px; }
}

footer.bg-dark {
  background: #2248cc1c !important;
  color: #d6d6d6;
  position: relative;
}


footer .footer-contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

footer .footer-contact-box .icon {
  flex-shrink: 0;
  height: 60px;
  width: 60px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

footer .footer-contact-box .info h5 {
  color: #0c00a7;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

footer .footer-contact-box .info a,
footer .footer-contact-box .info p {
  display: block;
  color: #0c00a7;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

footer .footer-contact-box .info a:hover {
  color: var(--color-primary);
}


footer .footer-main-box {
  background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 40px;
}

footer .footer-logo img {
  max-width: 300px;
  height: auto;
}

footer .footer-about p {
  color:#072b7c;
  line-height: 1.8;
  margin-bottom: 15px;
}

footer .kargo-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

footer .kargo-logos img {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

footer .kargo-logos img:hover {
  transform: scale(1.08);
}

footer .footer-menu-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

footer .footer-nav {
  display: -webkit-inline-box;
  flex-wrap: wrap;
  gap: 43px;
  margin: 23px auto;
  padding: 18px;
  list-style: none;
  background-color: #00008b1c;
  border-radius: 25px;
  justify-content: center;
width: fit-content;
}

footer .footer-nav li a {
  color: #0c00a7;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

footer .footer-nav li a:hover {
  color: var(--color-primary);
}

footer .footer-social {
  display: inline-flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
}

footer .footer-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background: #0c00a7;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

footer .footer-social li a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}

footer .footer-bottom-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

footer .footer-bottom-strip p {
  margin: 0;
  color: #041f65;
  font-size: 14px;
}

footer .footer-bottom-strip a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

footer .footer-bottom-strip a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  footer .footer-logo {
    margin-bottom: 25px;
  }
  footer .footer-nav {
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .footer-social {
    justify-content: center;
  }
  footer .col-lg-4.text-end {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  footer .footer-contact-box {
    flex-direction: row;
    text-align: left;
  }
  footer .kargo-logos {
    justify-content: center;
    gap: 15px;
  }
  footer .kargo-logos img {
    max-height: 35px;
  }
  footer .footer-nav {
    gap: 15px;
  }
}

.cnc-breadcrumb {
    position: relative;
    padding: 140px 0 110px;
    background: 
        radial-gradient(ellipse at top left, rgba(0, 96, 170, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(0, 96, 170, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e14 0%, #111827 50%, #0a0e14 100%);
    overflow: hidden;
    isolation: isolate;
}

.cnc-breadcrumb__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 96, 170, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 96, 170, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: cncGridMove 20s linear infinite;
}

@keyframes cncGridMove {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px; }
}

.cnc-breadcrumb__circuit {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(0, 96, 170, 0.4) 1px, transparent 2px),
        radial-gradient(circle at 85% 70%, rgba(0, 96, 170, 0.4) 1px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(0, 96, 170, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 25% 80%, rgba(0, 96, 170, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 75% 20%, rgba(0, 96, 170, 0.4) 1px, transparent 2px);
    background-size: 200px 200px;
    animation: cncDotsFloat 8s ease-in-out infinite alternate;
}

@keyframes cncDotsFloat {
    0%   { opacity: 0.5; }
    100% { opacity: 1; }
}

.cnc-breadcrumb__blueprint {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(0, 96, 170, 0.12) 49%, rgba(0, 96, 170, 0.12) 51%, transparent 51%);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.6;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

.cnc-breadcrumb__scan {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 96, 170, 0.08) 50%, transparent 100%);
    z-index: 1;
    animation: cncScan 6s ease-in-out infinite;
}

@keyframes cncScan {
    0%   { left: -100%; }
    100% { left: 100%; }
}

.cnc-breadcrumb__bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
    border-color: #0060aa;
}

.cnc-breadcrumb__bracket--tl {
    top: 30px;
    left: 30px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.cnc-breadcrumb__bracket--tr {
    top: 30px;
    right: 30px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.cnc-breadcrumb__bracket--bl {
    bottom: 30px;
    left: 30px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.cnc-breadcrumb__bracket--br {
    bottom: 30px;
    right: 30px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.cnc-breadcrumb__measure {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 2;
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.cnc-breadcrumb__measure--left {
    left: 50px;
}

.cnc-breadcrumb__measure--right {
    right: 50px;
    text-align: right;
}

.cnc-breadcrumb__measure span {
    position: relative;
    padding: 0 15px;
}

.cnc-breadcrumb__measure--left span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: #0060aa;
}

.cnc-breadcrumb__measure--right span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: #0060aa;
}

.cnc-breadcrumb__gear {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.cnc-breadcrumb__gear--1 {
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    animation: cncRotate 30s linear infinite;
}

.cnc-breadcrumb__gear--2 {
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    animation: cncRotate 25s linear infinite reverse;
}

@keyframes cncRotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cnc-breadcrumb__content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: cncFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cncFadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


.cnc-breadcrumb__title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #4fa3e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(0, 96, 170, 0.4);
}

.cnc-breadcrumb__title-bracket {
    color: #0060aa;
    -webkit-text-fill-color: #0060aa;
    background: none;
    font-weight: 300;
    margin: 0 12px;
    display: inline-block;
    animation: cncBracketPulse 3s ease-in-out infinite;
}

.cnc-breadcrumb__title-bracket:last-child {
    animation-delay: 1.5s;
}

@keyframes cncBracketPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.1); }
}

.cnc-breadcrumb__path {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0;
    list-style: none;
}

.cnc-breadcrumb__path li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.cnc-breadcrumb__path li::before,
.cnc-breadcrumb__path li::after {
    display: none;
}

.cnc-breadcrumb__path a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cnc-breadcrumb__path a:hover {
    color: #4fa3e0;
}

.cnc-breadcrumb__path a i {
    color: #0060aa;
    font-size: 14px;
}

.cnc-breadcrumb__separator {
    color: rgba(255, 255, 255, 0.3);
}

.cnc-breadcrumb__separator svg {
    width: 16px;
    height: 16px;
}

.cnc-breadcrumb__current {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-left: 16px !important;
    text-decoration: none !important;
}

.cnc-breadcrumb__pulse {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0060aa;
    animation: cncCurrentPulse 1.5s ease-in-out infinite;
}

@keyframes cncCurrentPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 96, 170, 0.8); 
        background: #0060aa;
    }
    50% { 
        box-shadow: 0 0 0 6px rgba(0, 96, 170, 0); 
        background: #4fa3e0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .cnc-breadcrumb {
        padding: 100px 0 80px;
    }
    .cnc-breadcrumb__measure,
    .cnc-breadcrumb__gear {
        display: none;
    }
    .cnc-breadcrumb__bracket {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .cnc-breadcrumb {
        padding: 80px 0 60px;
    }
    .cnc-breadcrumb__meta {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 10px;
    }
    .cnc-breadcrumb__line {
        display: none;
    }
    .cnc-breadcrumb__path {
        padding: 10px 18px;
        gap: 8px;
    }
    .cnc-breadcrumb__path a,
    .cnc-breadcrumb__current {
        font-size: 11px;
    }
    .cnc-breadcrumb__bracket {
        width: 30px;
        height: 30px;
    }
}