/*
  Theme Name: Abidon
  Author:NewThemeBD
  Support: ksumon4711@gmail.com
  Description: Abidon – Business Consulting and Corporate HTML Template
  Version: 1.0
*/
/*
  CSS Index
  ═════════
  1. Basic
  2. Typography
  3. Animation CSS
  4. Spacing
  5. Color
  6. Buttons
  7. Icons
  8. Card
  9. Cpmponents
  10. Form
  11. Header Top
  12. Header
  13. Hero area
  14. Slide
  15. Progress
  16. Preloader
  17. Page
  18. Contact
  19. LightBox
  20. Blog 
  21. Footer
*/
/*══════ Basic ══════*/ 

/*GOOGLE FONTS*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&display=swap");

:root {
  --theme-color:#DFB60D;
  --heading-color:#000000;
  --body-color:#000000;
  --color-gray:#fff8f8;
  --color-white:#ffffff;
  --color-dark:#1C1E2A;
  --ff-heading:"Oswald", sans-serif;
  --ff-body:"Open Sans", sans-serif;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
}

.has-nc-scroll {
  overflow: hidden;
}
.has-nc-scroll .nicescroll-rails {
  background: rgba(0, 0, 0, 0.1);
}

* {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a,
i {
  border: none;
}

button {
  padding: 0;
}

a {
  color: var(--theme-color);
}

button, a {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

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

.main-root {
  overflow: hidden;
  min-height: 100vh;
}

/*══════ Typography ══════*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: bold;
  font-family: var(--ff-heading);
}

h1 {
  font-size: 72px;
  line-height: 80px;
}

h2 {
  font-size: 60px;
  line-height: 75px;
}

h3 {
  font-size: 32px;
  line-height: 42px;
}

h4 {
  font-size: 26px;
  line-height: 33px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 18px;
  line-height: 30px;
}

.xl-title {
  font-size: 72px;
  line-height: 85px;
}
@media only screen and (max-width: 1199.98px) {
  .xl-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .xl-title {
    font-size: 47px;
    line-height: 56px;
    margin-bottom: 20px;
  }
}

.lg-title {
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1199.98px) {
  .lg-title {
    font-size: 55px;
    line-height: 65px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .lg-title {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 25px;
  }
}

.md-title {
  font-size: 32px;
  line-height: 48px;
}
@media only screen and (max-width: 767.98px) {
  .md-title {
    font-size: 28px;
    line-height: 41px;
  }
}

.section-title .sub-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.sm-title {
  font-size: 14px;
  line-height: 24px;
}

.title-24 {
  font-size: 24px;
  line-height: 32px;
}

.title-sm-bottom-sep {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
}
.title-sm-bottom-sep::before {
  content: "";
  height: 5px;
  width: 50px;
  position: absolute;
  bottom: -7px;
  left: 0;
  background-color: var(--heading-color);
  border-radius: 50px;
}

.font-w400 {
  font-weight: 400;
}

.font-w500 {
  font-weight: 500;
}

.font-w600 {
  font-weight: 600;
}

.font-w700 {
  font-weight: 700;
}

.font-w800 {
  font-weight: 800;
}

.font-w800 {
  font-weight: 900;
}

/*══════ Animation CSS ══════*/
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.7;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    transform: translate(165px, -179px);
  }
  100% {
    transform: translate(-346px, 617px);
  }
}
@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    transform: translate(251px, -200px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-300px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/*══════ Spacing ══════*/
.sec-pt-120 {
  padding-top: 120px;
}
@media only screen and (min-width: 767.98px) and (max-width: 991.98px) {
  .sec-pt-120 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-pt-120 {
    padding-top: 80px;
  }
}

.sec-pb-120 {
  padding-bottom: 120px;
}
@media only screen and (min-width: 767.98px) and (max-width: 991.98px) {
  .sec-pb-120 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-pb-120 {
    padding-bottom: 80px;
  }
}

.mb-minus5 {
  margin-bottom: -3rem !important;
}

.mb-minus4 {
  margin-bottom: -1.5rem !important;
}

.mx-minus3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mb-res-60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767.98px) {
  .mb-res-60 {
    margin-bottom: 50px;
  }
}

/*══════ Color ══════*/
.bg-gray {
  background-color: #fff8f8;
}

.bg-pink-dark {
  background-color: #1c1e2a;
}

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

.text-dark {
  color: #1C1E2A;
}

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

.text-light {
  color: #fff8f8 !important;
}

/*══════ Buttons ══════*/
.btn-square {
  border-radius: 0;
  height: 50px;
  width: 60px;
  background-color: var(--color-white);
  border: none;
}

@-webkit-keyframes MoveScaleUpInitial {
  to {
    -webkit-transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpInitial {
  to {
    -webkit-transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@-webkit-keyframes MoveScaleUpEnd {
  from {
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    -webkit-transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.btn {
  border-radius: 0;
  font-size: 14px;
  line-height: 23px;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  font-weight: bold;
  padding: 16px 31px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--color-dark);
}
.btn .btn-text {
  display: block;
}
.btn::before, .btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 102%;
  height: 100%;
  z-index: -2;
  background: var(--color-dark);
}
.btn::before {
  content: "";
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}
.btn::after {
  content: "";
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn:hover {
  background-color: transparent;
  color: #fff;
}
.btn:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.btn:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}
.btn:hover .btn-text {
  animation: MoveScaleUpInitial 0.25s forwards, MoveScaleUpEnd 0.25s forwards 0.25s;
}

.btn-outline-light {
  border-color: #fff;
}
.btn-outline-light::before, .btn-outline-light::after {
  background: #fff;
}
.btn-outline-light:hover {
  color: var(--color-dark);
}

.social-icons {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.social-icons li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 3px;
  margin-bottom: 3px;
}
.social-icons liLlast-child {
  margin-right: 0;
}
.social-icons li a {
  color: #777777;
  font-size: 14px;
  height: 40px;
  width: 40px;
  background-color: #e8e8e9;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  -o-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.social-icons li a::before {
  content: "";
  position: absolute;
  height: 0%;
  width: 100%;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  -o-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: #1c1e2a;
  z-index: -2;
  clip-path: circle(50% at 100% 100%);
}
.social-icons li a:hover {
  color: #fff;
}
.social-icons li a:hover::before {
  height: 100%;
  clip-path: circle(100% at 50% 100%);
}
.social-icons li a:hover i {
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.25s forwards 0.25s;
}

.social-icons-outline {
  padding: 0;
  margin: 0;
  list-style: none;
}
.social-icons-outline li {
  display: block;
  margin-bottom: 10px;
}
.social-icons-outline li a {
  display: block;
  height: 50px;
  width: 50px;
  background-color: #644950;
  text-align: center;
  line-height: 50px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  overflow: hidden;
  font-size: 20px;
  border: 1px solid #644950;
}
.social-icons-outline li a:hover {
  color: var(--theme-color);
  -webkit-text-stroke-color: var(--theme-color);
}

.btn-video {
  display: inline-block;
}
.btn-video svg {
  width: 50px;
}
.btn-video svg path {
  fill: var(--theme-color);
}

@keyframes MoveScaleLeftInitial {
  to {
    transform: translate3d(100%, 0, 0) scale3d(2, 1, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleLeftEnd {
  from {
    transform: translate3d(-100%, 0, 0) scale3d(2, 1, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.arrow-btn {
  display: inline-block;
  overflow: hidden;
  padding: 0 10px;
  text-decoration: none !important;
  color: #846f75;
}
.arrow-btn .text {
  display: inline-block;
  margin-right: 15px;
}
.arrow-btn svg {
  width: 26px;
}
.arrow-btn svg path {
  fill: #c7babc;
  -webkit-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  -o-transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  transition: 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.arrow-btn:hover {
  color: var(--theme-color);
}
.arrow-btn:hover svg {
  animation: MoveScaleLeftInitial 0.3s forwards, MoveScaleLeftEnd 0.25s forwards 0.25s;
}
.arrow-btn:hover svg path {
  fill: var(--theme-color);
}

.btn_light {
  color: #aeafb7;
}
.btn_light svg path {
  fill: var(--theme-color);
}

/*══════ Icons ══════*/
.icon-arrow-to-down {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='17.5' viewBox='0 0 15 17.5'%3E%3Cpath id='Path_40' data-name='Path 40' d='M13.613-7.187a.464.464,0,0,0,0-.66l-.277-.277a.469.469,0,0,0-.664,0L8.164-3.6V-15.781A.47.47,0,0,0,7.7-16.25H7.3a.47.47,0,0,0-.469.469V-3.6L2.328-8.129a.469.469,0,0,0-.664,0l-.277.277a.469.469,0,0,0,0,.664l5.781,5.8a.469.469,0,0,0,.664,0ZM15,.781V.469A.47.47,0,0,0,14.531,0H.469A.47.47,0,0,0,0,.469V.781a.47.47,0,0,0,.469.469H14.531A.47.47,0,0,0,15,.781Z' transform='translate(0 16.25)' fill='%231c1e2a'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*══════ Card ══════*/
@media only screen and (min-width: 991.98px) {
  .video-wrapper {
    padding-top: 160px;
    padding-bottom: 160px;
    padding-right: 100px;
    padding-left: 100px;
  }
}
.video-wrapper .xl-title {
  margin-bottom: 60px;
}
.video-wrapper h6 {
  margin-top: 25px;
}
@media only screen and (min-width: 767.98px) and (max-width: 991.98px) {
  .video-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 70px;
    padding-left: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .video-wrapper {
    padding-top: 85px;
    padding-bottom: 85px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .video-wrapper .xl-title {
    margin-bottom: 50px;
  }
}

.service-card .icon {
  margin-bottom: 20px;
}
.service-card h4 {
  font-weight: 400;
  margin-bottom: 15px;
}
.service-card p {
  margin-bottom: 22px;
}

.thumb img {
  width: 100%;
}

.card-portfolio-simple {
  background-color: var(--color-gray);
}
.card-portfolio-simple .sub-title {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 7px;
  display: block;
}
.card-portfolio-simple .title {
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #644950;
  margin-bottom: 0;
}
.card-portfolio-simple .text-content {
  padding: 25px;
  position: relative;
}
.card-portfolio-simple .text-content::before {
  content: "";
  height: calc(100% - 25px);
  position: absolute;
  width: 5px;
  left: 0;
  bottom: 0;
  background-color: #644950;
}

.card-left-space {
  position: relative;
}
.card-left-space .tletf-info {
  position: absolute;
  top: 10px;
  left: 10px;
}
.card-left-space .tright-info {
  width: 100%;
}
.card-left-space .tright-info img {
  width: 100%;
}
.card-left-space .title {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 30px;
  margin-bottom: 5px;
}
.card-left-space .sm-title {
  margin-bottom: 0;
  color: #846f75;
}
.card-left-space .bottom-info {
  position: relative;
  padding-top: 25px;
  padding-right: 90px;
}
.card-left-space .arrow-btn {
  padding: 23px 29px;
  background-color: #1c1e2a;
  position: absolute;
  right: 0;
  top: 0;
}
.card-left-space .arrow-btn svg {
  width: 22px;
}
.card-left-space .arrow-btn:hover {
  background-color: var(--theme-color);
}
.card-left-space .arrow-btn:hover path {
  fill: #fff;
}

.card-left-space.card-light {
  color: #fff;
}
.card-left-space.card-light .title {
  color: #fff;
}
.card-left-space.card-light .sm-title {
  color: #798795;
}
.card-left-space.card-light .arrow-btn {
  background-color: rgba(255, 255, 255, 0.1);
}
.card-left-space.card-light .arrow-btn path {
  fill: #fff;
}
.card-left-space.card-light .arrow-btn:hover {
  background-color: var(--theme-color);
}
.card-left-space.card-light .social-icons-outline li a {
  border-color: transparent;
}

.testimonial-card .thumb {
  min-width: 200px;
  max-width: 200px;
  padding-right: 30px;
  padding-top: 10px;
}
@media only screen and (max-width: 991.98px) {
  .testimonial-card .thumb {
    padding-right: 0;
    padding-top: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.testimonial-card .thumb img {
  max-width: 100%;
}
@media only screen and (max-width: 991.98px) {
  .testimonial-card .text-content {
    text-align: center;
  }
}
.testimonial-card .text-content p {
  font-family: var(--ff-heading);
  color: var(--heading-color);
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 991.98px) {
  .testimonial-card .text-content p {
    font-size: 22px;
    line-height: 35px;
  }
}
.testimonial-card .text-content .bottom-info {
  border-top: 1px solid #bfbfbf;
  padding-top: 20px;
  margin-top: 13px;
}
.testimonial-card .text-content .bottom-info .author-name {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.testimonial-card .text-content .bottom-info span {
  font-size: 14px;
  color: #846f75;
}

.testimonial-card.light-card p, .testimonial-card.light-card .bottom-info span {
  color: #aeafb7;
}
.testimonial-card.light-card .author-name {
  color: var(--theme-color);
}
.testimonial-card.light-card .text-content .bottom-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.date-box {
  border: 1px solid var(--heading-color);
  color: var(--heading-color);
  display: block;
  font-family: var(--ff-heading);
  text-transform: uppercase;
  padding: 9px 21px;
  transition: all 0.25s;
}

.date-box.active-date-box {
  background-color: var(--theme-color) !important;
  color: #fff;
  border-color: var(--theme-color);
}

.blog-card .thumb {
  margin-bottom: 25px;
  position: relative;
}
.blog-card .thumb .date-box {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: bottom;
  left: 0;
  top: 20px;
  background-color: #644950;
  color: #fff;
}
.blog-card .bottom-info .title {
  font-size: 18px;
  line-height: 28px;
}
.blog-card .bottom-info .title a {
  color: var(--heading-color);
  text-transform: uppercase;
  text-decoration: none !important;
}
.blog-card .bottom-info .title a:hover {
  color: var(--theme-color);
}
.blog-card .bottom-info p {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
}
.blog-card:hover .date-box {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.brand-wrapper a {
  opacity: 0.6;
}
.brand-wrapper a:hover {
  opacity: 1;
}

.parallax-img {
  position: relative;
}

.sm-card-block2 .left-content {
  min-width: 60px;
  padding-top: 10px;
}
.sm-card-block2 .title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
.sm-card-block2 ul {
  padding-left: 18px;
  margin-bottom: 0;
}

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

/*══════ Form ══════*/
.map-wrapper {
  height: 700px;
  width: 100%;
}
@media only screen and (max-width: 991.98px) {
  .map-wrapper {
    height: 450px;
  }
}
@media only screen and (max-width: 767.98px) {
  .map-wrapper {
    height: 350px;
  }
}
@media (max-width: 575.98px) {
  .map-wrapper {
    height: 250px;
  }
}

.form-control {
  border-color: #ededed;
  border-radius: 5px;
  padding: 20px 28px;
  height: 65px;
}
.form-control:focus {
  border-color: rgba(255, 95, 69, 0.3);
  box-shadow: 0 0 0 0.2rem rgba(255, 95, 69, 0.2);
}

.form-label {
  font-family: var(--ff-heading);
  font-size: 18px;
  margin-bottom: 20px;
}

/*══════ Header Top ══════*/
.header-area .header-top-area {
  background-color: var(--color-gray);
}
@media only screen and (max-width: 991.98px) {
  .header-area .header-top-area {
    padding-top: 20px;
  }
}
.header-area .header-top-area .social-icons {
  background-color: var(--color-white);
  padding-left: 70px;
  padding-top: 17px;
  padding-bottom: 17px;
}
@media only screen and (max-width: 1199.98px) {
  .header-area .header-top-area .social-icons {
    padding-left: 17px;
  }
}
@media only screen and (max-width: 991.98px) {
  .header-area .header-top-area .social-icons {
    background-color: transparent;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header-area .header-top-area .header-top-content {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 991.98px) {
  .header-area .header-top-area .header-top-content {
    padding: 25px 30px;
    background-color: var(--color-white);
    display: none;
  }
}
.header-area .header-top-area .header-top-content::before {
  content: "";
  height: 100%;
  width: 100%;
  left: 100%;
  top: 0;
  z-index: -2;
  background-color: var(--color-white);
  position: absolute;
}
@media only screen and (max-width: 991.98px) {
  .header-area .header-top-area .header-top-content::before {
    display: none;
  }
}
.header-area .header-top-area .content-item {
  margin-right: 20px;
}
.header-area .header-top-area .content-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 991.98px) {
  .header-area .header-top-area .content-item {
    margin-bottom: 15px;
  }
  .header-area .header-top-area .content-item:last-child {
    margin-bottom: 0;
  }
}

/*══════ Header ══════*/
.header-main {
  z-index: 999;
  position: relative;
}
.header-main .navbar {
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar {
    padding: 20px 0;
  }
}
.header-main .navbar-nav {
  flex-direction: row;
  font-family: var(--ff-heading);
}
.header-main .navbar-nav li {
  position: relative;
}
.header-main .navbar-nav li a {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-dark);
  padding: 40px 12px;
  display: block;
  text-decoration: none !important;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.header-main .navbar-nav li a:hover {
  color: var(--theme-color);
}
.header-main .navbar-nav li a.active {
  color: var(--theme-color);
}
@media only screen and (min-width: 991.98px) {
  .header-main .navbar-nav li a.active {
    border-top: 2px solid var(--theme-color);
  }
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li a {
    padding: 14px 5px;
    border-bottom: 1px solid #eee;
  }
  .header-main .navbar-nav li:last-child > a {
    border-bottom: none;
  }
}
.header-main .navbar-nav li ul {
  display: block;
  border: none;
  border-radius: 0;
  border-top: 2px solid var(--theme-color);
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 2;
  min-width: 220px;
  height: auto;
  margin-top: 0;
  box-shadow: 0 6px 20px 3px rgba(0, 0, 0, 0.04);
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
}
.header-main .navbar-nav li ul li a {
  border-bottom: 1px solid #eee;
}
.header-main .navbar-nav li ul li:last-child > a {
  border-bottom: none;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li ul {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    box-shadow: none;
    border-bottom: 1px solid #eee;
    border-top: none;
    display: none;
    transition: all 0s;
  }
}
.header-main .navbar-nav li ul ul {
  left: 100%;
  top: 10px;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li ul ul {
    top: 0;
    left: 0;
  }
}
.header-main .navbar-nav li ul li a {
  padding: 10px 20px;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li ul li a {
    padding: 14px 5px;
  }
}
.header-main .navbar-nav li ul li a:hover {
  background-color: #eee;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li ul li a:hover {
    background-color: transparent;
  }
}
.header-main .navbar-nav li ul .dropdown-btn {
  top: 15px;
}
.header-main .navbar-nav li:hover > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li:hover > ul {
    top: 0;
  }
}
.header-main .navbar-nav li ul li:hover > ul {
  top: 0;
}
.header-main .navbar-nav li .dropdown-btn {
  position: absolute;
  right: 0;
  top: 21px;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  display: none;
  color: var(--color-dark);
  padding: 0;
  width: 16px;
  height: 16px;
}
.header-main .navbar-nav li .dropdown-btn::before, .header-main .navbar-nav li .dropdown-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  height: 2px;
  width: 100%;
  background-color: var(--color-dark);
  transition: all 0.25s;
}
.header-main .navbar-nav li .dropdown-btn::before {
  transform: rotate(90deg);
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav li .dropdown-btn {
    display: block;
  }
}
.header-main .navbar-nav li .dropdown-btn.active-dropdown::before {
  transform: rotate(0);
}
.header-main .navbar-nav .nav-item {
  margin-right: 10px;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav .nav-item {
    margin-right: 0;
  }
}
.header-main .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.header-main .navbar-nav .dropdown-toggle::after {
  display: none;
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav-wrapper {
    background-color: #fff;
  }
}
@media only screen and (max-width: 991.98px) {
  .header-main .navbar-nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
  }
  .header-main .navbar-nav-wrapper .navbar-nav {
    flex-direction: column;
    padding: 0 25px;
    border-top: 2px solid var(--theme-color);
  }
}

.nav-toggle-btn {
  width: 28px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background-color: transparent;
  border: transparent;
  outline: none !important;
}
.nav-toggle-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-dark);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.nav-toggle-btn span:nth-child(1) {
  top: 0px;
}
.nav-toggle-btn span:nth-child(2), .nav-toggle-btn span:nth-child(3) {
  top: 9px;
}
.nav-toggle-btn span:nth-child(4) {
  top: 18px;
}

.nav-toggle-btn.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.nav-toggle-btn.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-toggle-btn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-toggle-btn.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.header-style-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 991.98px) {
  .header-style-2 .header-main .navbar-nav li a {
    color: #fff;
  }
}
.header-style-2 .header-main .navbar-nav li a:hover {
  color: var(--theme-color);
}
.header-style-2 .header-main .navbar-nav li ul li a {
  color: var(--color-dark);
}
.header-style-2 .header-main .navbar-nav li a.active {
  color: var(--theme-color);
}
.header-style-2 .nav-toggle-btn span {
  background-color: #fff;
}

/*══════ Hero area ══════*/
.slide-wrapper {
  padding-top: 150px;
  padding-bottom: 158px;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.slide-wrapper .sub-title {
  margin-bottom: 10px;
  display: block;
  font-size: 24px;
  line-height: 28px;
}
@media only screen and (max-width: 1199.98px) {
  .slide-wrapper .sub-title {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper .sub-title {
    font-size: 18px;
    line-height: 25px;
  }
}
.slide-wrapper .xl-title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .slide-wrapper .xl-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper .xl-title {
    font-size: 46px;
    line-height: 55px;
    margin-bottom: 20px;
  }
}
.slide-wrapper p {
  margin-bottom: 50px;
  letter-spacing: 3px;
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper p {
    margin-bottom: 40px;
  }
}
.slide-wrapper .sub-title, .slide-wrapper .xl-title, .slide-wrapper p, .slide-wrapper .btn-area {
  transform: translateY(30px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
}
.slide-wrapper .hero-right-shapes {
  right: 150px;
  top: 300px;
  position: absolute;
  width: 30%;
  z-index: -2;
}
@media only screen and (max-width: 991.98px) {
  .slide-wrapper .hero-right-shapes {
    width: 50%;
    top: 179px;
    right: -40px;
  }
  .slide-wrapper .hero-right-shapes .shape-3 {
    opacity: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper .hero-right-shapes {
    width: 40%;
    top: 236px;
    right: -40px;
  }
}
.slide-wrapper .hero-right-shapes span {
  display: block;
}
.slide-wrapper .hero-right-shapes span img {
  width: 100%;
}
.slide-wrapper .hero-right-shapes .shape-1 {
  width: 33%;
  top: -50px;
  animation: rotated 20s infinite linear;
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper .hero-right-shapes .shape-1 {
    width: 50%;
    top: -45px;
  }
}
.slide-wrapper .hero-right-shapes .shape-2 {
  top: 35%;
  left: 25%;
  width: 44px;
  animation: bounce 8s infinite linear;
}
@media only screen and (max-width: 767.98px) {
  .slide-wrapper .hero-right-shapes .shape-2 {
    top: 29px;
    left: -35px;
    width: 29px;
  }
}
.slide-wrapper .hero-right-shapes .shape-1, .slide-wrapper .hero-right-shapes .shape-2 {
  position: absolute;
}

.hero-slide-container .swiper-slide {
  overflow: hidden;
}
.hero-slide-container .swiper-slide-active .slide-wrapper .sub-title {
  transition-delay: 0.3s;
}
.hero-slide-container .swiper-slide-active .slide-wrapper .xl-title {
  transition-delay: 0.4s;
}
.hero-slide-container .swiper-slide-active .slide-wrapper p {
  transition-delay: 0.5s;
}
.hero-slide-container .swiper-slide-active .slide-wrapper .btn-area {
  transition-delay: 0.6s;
}
.hero-slide-container .swiper-slide-active .slide-wrapper .sub-title, .hero-slide-container .swiper-slide-active .slide-wrapper .xl-title, .hero-slide-container .swiper-slide-active .slide-wrapper p, .hero-slide-container .swiper-slide-active .slide-wrapper .btn-area {
  transform: translateY(0);
  opacity: 1;
}

.hero-area {
  position: relative;
}
.hero-area .hero-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 15;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 37px 28px;
  -webkit-backdrop-filter: blur(1rem);
  -ms-backdrop-filter: blur(1rem);
  -o-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}
@media only screen and (max-width: 767.98px) {
  .hero-area .hero-pagination {
    padding: 25px 20px;
  }
}
.hero-area .hero-pagination .swiper-pagination-bullet {
  height: auto;
  width: auto;
  background-color: transparent;
  display: block;
  color: #fff;
  font-family: var(--ff-heading);
  font-size: 24px;
  color: transparent;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 479px) {
  .hero-area .hero-pagination .swiper-pagination-bullet {
    margin-bottom: 10px;
  }
}
.hero-area .hero-pagination .swiper-pagination-bullet:last-child {
  margin-bottom: 0;
}
.hero-area .hero-pagination .swiper-pagination-bullet::before, .hero-area .hero-pagination .swiper-pagination-bullet::after {
  color: #fff;
  content: attr(data-index);
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.hero-area .hero-pagination .swiper-pagination-bullet::before {
  transition-delay: 0.1s;
}
.hero-area .hero-pagination .swiper-pagination-bullet::after {
  transform: translateX(-100%);
}
.hero-area .hero-pagination .swiper-pagination-bullet-active::after {
  transform: translateX(0);
  transition-delay: 0.1s;
}
.hero-area .hero-pagination .swiper-pagination-bullet-active::before {
  transform: translateY(-100%);
  transition-delay: 0s;
}
.hero-area .hero-pagination .swiper-pagination-bullet-active::before, .hero-area .hero-pagination .swiper-pagination-bullet-active::after {
  color: var(--theme-color);
}
.hero-area .grid-lines {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 20;
  padding-left: 6vw;
  padding-right: 6vw;
  pointer-events: none;
}
.hero-area .grid-lines span {
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
}

@media only screen and (min-width: 991.98px) {
  .hero-slide-2 .slide-wrapper {
    padding-top: 215px;
  }
}
@media only screen and (max-width: 991.98px) {
  .hero-slide-2 .slide-wrapper {
    padding-top: 155px;
  }
}

.hv-as-header {
  min-height: calc(100vh - 100px);
}
@media only screen and (max-width: 991.98px) {
  .hv-as-header {
    min-height: calc(100vh - 150px);
  }
}

/*══════ Slide ══════*/
.portfolio-slide-wrapper {
  overflow: hidden;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 767.98px) {
  .portfolio-slide-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
  .portfolio-slide-wrapper .services-slide-container {
    overflow: initial;
  }
}
@media (max-width: 575.98px) {
  .portfolio-slide-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.slide-pagination-round .swiper-pagination-bullet {
  transition: all 0.25s;
  margin: 0 4px;
}
.slide-pagination-round .swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}

.light-pagination.slide-pagination-round .swiper-pagination-bullet {
  background-color: #644950;
}
.light-pagination.slide-pagination-round .swiper-pagination-bullet-active {
  background-color: #644950;
}

@media only screen and (max-width: 991.98px) {
  .client-pagination {
    text-align: center;
    margin-top: 10px;
  }
}
.client-pagination .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}
@media only screen and (max-width: 991.98px) {
  .client-pagination .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 4px;
  }
}

.client-slide-wrapper {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 991.98px) {
  .client-slide-wrapper {
    padding-right: 0;
  }
}
.client-slide-wrapper .client-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 991.98px) {
  .client-slide-wrapper .client-pagination {
    position: relative;
  }
}

/*══════ Footer ══════*/
.footer-wrapper {
  background-color: #14161f;
  color: #aeafb7;
  font-family: var(--ff-heading);
}
.footer-wrapper .footer-top {
  padding-bottom: 40px;
  padding-top: 120px;
}
.footer-wrapper .title-sm-bottom-sep {
  color: #fff;
  margin-bottom: 30px;
  display: block;
}
.footer-wrapper .title-sm-bottom-sep::before {
  background-color: rgba(255, 255, 255, 0.15);
}
.footer-wrapper .footer-bottom {
  padding: 30px 0;
  background-color: #0f1119;
  text-align: center;
}
.footer-wrapper .copyright {
  margin-bottom: 0;
  font-size: 14px;
  font-family: var(--ff-heading);
  color: #fff;
}
.footer-wrapper .link-list a {
  display: block;
  color: #aeafb7;
  text-decoration: none;
}
.footer-wrapper .link-list a:hover {
  color: var(--theme-color);
  text-decoration: underline;
}
.footer-wrapper .link-list li {
  display: block;
  margin-bottom: 15px;
}

.left-icon-list li {
  margin-bottom: 20px;
}
.left-icon-list li .icon {
  height: 50px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  display: block;
  text-align: center;
  line-height: 50px;
  margin-right: 20px;
}
.left-icon-list li p {
  margin-bottom: 0;
}
.left-icon-list li p a {
  color: #fff;
  text-decoration: underline;
}
.left-icon-list li p a:hover {
  color: var(--theme-color);
}

.link-light-list li {
  display: inline-block;
  margin-right: 25px;
}
.link-light-list li:last-child {
  margin-right: 0;
}
.link-light-list a {
  color: #fff;
  text-decoration: underline;
}
.link-light-list a:hover {
  color: var(--theme-color);
}

/*══════ Progress ══════*/
.btt-progress-wrap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #43824f3d;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  -webkit-transition: all 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transition: all 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

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

.btt-progress-wrap:hover::after {
  opacity: 0;
}

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

.btt-progress-wrap svg.progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.btt-progress-wrap .arrow {
  display: block;
  position: absolute;
  top: 6px;
  left: 18px;
}
.btt-progress-wrap .arrow path {
  fill: var(--theme-color);
}
.btt-progress-wrap .arrow svg {
  width: 10px;
}

/*══════ Preloader ══════*/
.preloader {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2000;
  background-color: var(--color-dark);
  display: -ms-flexbox;
  display: flex;
  z-index: 9995;
}
.preloader .preloader-wrap {
  text-align: center;
  font-size: 14px;
  font-family: var(--ff-heading);
  letter-spacing: 5px;
  color: #fff;
  padding-top: 6px;
  position: relative;
}

.lds-ellipsis {
  display: block;
  position: relative;
  width: 89px;
  height: 13px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

.lds-ellipsis span {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  display: block;
}

.lds-ellipsis span:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis span:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis span:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis span:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
/*══════ Page ══════*/
.page-top-wrapper {
  padding-top: 244px;
  padding-bottom: 173px;
  background-color: var(--color-dark);
}
@media only screen and (max-width: 991.98px) {
  .page-top-wrapper {
    padding-top: 194px;
    padding-bottom: 123px;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-top-wrapper {
    padding-top: 145px;
    padding-bottom: 83px;
  }
}
.page-top-wrapper .xl-title {
  text-transform: uppercase;
  color: #fff;
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
.breadcrumb li a {
  color: #aeafb7;
  text-decoration: none;
  font-family: var(--ff-heading);
  text-transform: uppercase;
}

.blog-content blockquote {
  background-color: #fff8f8;
  font-family: var(--ff-heading);
  border-left: 10px solid var(--theme-color);
  border-radius: 5px;
  padding-left: 35px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 35px;
  font-size: 18px;
  line-height: 36px;
  color: #644950;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 36px;
}
.blog-content img {
  margin-top: 40px;
  margin-bottom: 36px;
  display: block;
}

.blog-bottom-info {
  border-top: 1px solid #e5e6e9;
  padding-top: 25px;
  margin-top: 40px;
}

/*══════ Contact ══════*/
.contact-info-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  margin-bottom: -50px;
}
.contact-info-list li {
  position: relative;
  padding-left: 65px;
  font-family: var(--ff-heading);
  margin-bottom: 50px;
}
.contact-info-list li i {
  position: absolute;
  top: -10px;
  left: 0;
  height: 50px;
  width: 50px;
  background-color: #e8e8e9;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
}

/*══════ LightBox ══════*/
.zoom-thumb {
  display: block;
  transition: all 0.25s;
  overflow: hidden;
}
.zoom-thumb img {
  width: 700%;
  transition: all 0.25s;
}
.zoom-thumb:hover {
  transform: scale(0.9);
}
.zoom-thumb:hover img {
  transform: scale(1.2);
}

/*══════ Blog ══════*/
.tags-box {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.tags-box li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.tags-box li:last-child {
  margin-right: 0;
}
.tags-box li a {
  display: block;
  border: 1px solid #f7f6f6;
  font-size: 13px;
  line-height: 18px;
  border-radius: 5px;
  text-decoration: none;
  padding: 4px 12px;
}
.tags-box li a:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.comment-lits {
  padding: 0;
  list-style: none;
  margin: 0;
}
.comment-lits .children {
  margin: 0;
  list-style: none;
  padding-left: 100px;
}
@media only screen and (max-width: 767.98px) {
  .comment-lits .children {
    padding-left: 50px;
  }
}
@media (max-width: 575.98px) {
  .comment-lits .children {
    padding-left: 25px;
  }
}
.comment-lits .comment-item {
  padding-left: 125px;
  position: relative;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767.98px) {
  .comment-lits .comment-item {
    padding-left: 0;
    padding-top: 125px;
  }
}
.comment-lits .comment-item .avatar {
  height: 100px;
  width: 100px;
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  left: 0;
  top: 0;
}
.comment-lits .comment-item .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.comment-lits .comment-item .name {
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
.comment-lits .comment-item .comment-des {
  margin-bottom: 15px;
}

.entry-meta {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #644950;
}
.entry-meta li {
  margin-right: 20px;
}
@media (max-width: 575.98px) {
  .entry-meta li {
    margin-right: 12px;
  }
}
.entry-meta li:last-child {
  margin-right: 0;
}
.entry-meta i {
  margin-right: 10px;
}
@media (max-width: 575.98px) {
  .entry-meta i {
    margin-right: 8px;
  }
}
.entry-meta a {
  color: #644950;
  text-decoration: none;
}
.entry-meta a:hover {
  color: var(--theme-color);
}

.sidebar-item {
  padding: 30px;
  position: relative;
  background-color: #fff8f8;
  margin-bottom: 60px;
}
.sidebar-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sidebar-item ul .cat-item {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--ff-heading);
  font-size: 14px;
  color: #846f75;
  position: relative;
  padding-left: 25px;
  margin-bottom: 6px;
}
.sidebar-item ul .cat-item::before {
  content: "";
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border: 1px solid #e0d5d6;
  border-radius: 5px;
  left: 0;
  top: 8px;
  position: absolute;
  transition: all 0.25s;
}
.sidebar-item ul .cat-item a {
  margin-right: auto;
  color: #846f75;
  text-decoration: none;
}
.sidebar-item ul .cat-item a:hover {
  color: var(--theme-color);
}
.sidebar-item ul .cat-item:hover::before {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.sidebar-item .sidebar-title {
  margin-bottom: 24px;
  font-weight: 400;
}

.search-wrap {
  position: relative;
}

.search-wrap .form-control {
  border-color: transparent;
  height: 55px;
  padding: 15px 30px;
  padding-right: 55px;
  background-color: #fff;
  font-size: 14px;
}

.search-wrap .search-btn {
  position: absolute;
  background-color: transparent;
  border-color: transparent;
  top: 0;
  height: 100%;
  right: 0;
  padding: 0 21px;
  font-size: 20px;
  color: var(--theme-color);
}

.tag-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
}

.tag-list li {
  display: inline-block;
  margin: 5px;
}

.tag-list li a {
  font-size: 14px;
  line-height: 20px;
  padding: 11px 12px;
  color: #444444;
  background-color: #FFF;
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  -o-transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  font-family: var(--ff-heading);
}

.tag-list li a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: right center;
  -webkit-transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  -o-transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: var(--theme-color);
}

.tag-list li a:hover {
  color: #fff;
}

.tag-list li a:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  transform-origin: left center;
}

/*# sourceMappingURL=style.css.map */
