@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");

/* Varialbes */
:root {
  --font-default: "Hanken Grotesk", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #01273b;
  --dark-secondary: #0e0e0e;
  --dark-optional: #20232b;
  --white: #ffffff;
  --white-secondary: #d8e3f0;
  --color-primary: #ed8a1c;
  --color-secondary: #e3572b;
  --color-heading: #04000b;
  --color-paragraph: #666666;
  --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
  --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
  --bg-gray: #fff8f8;
  --bg-gray-secondary: #f1f3f5;
  --bg-gradient: linear-gradient(
    45deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
}

/* ============================================================== 
     # Reset Browsers
=================================================================== */

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

body,
html {
  height: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.wrapper {
  height: 100%;
}

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

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

a {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a img {
  border: none;
}

a:active {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
  opacity: 1;
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-heading);
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
  opacity: 1;
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

hr {
  margin-top: 50px;
  margin-bottom: 50px;
  border: 0;
  border-top: 1px solid #e7e7e7;
  height: 1px;
  opacity: 1;
}

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

input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  min-height: 50px;
}

input:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

select:focus {
  outline: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
}

ul {
  list-style-type: none;
}

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

b {
  font-weight: 600;
}

strong {
  font-weight: 600;
}

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

.row.g-0 {
  --bs-gutter-x: 0;
}

.row.g-2 {
  --bs-gutter-x: 5px;
  --bs-gutter-y: 5px;
}

@media (min-width: 1024px) {
  .gutter-xl {
    --bs-gutter-x: 80px;
  }
}

@media (min-width: 1024px) {
  .gutter-md {
    --bs-gutter-x: 50px;
  }
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

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

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

h1 {
  font-size: 42px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 20px;
}

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

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

/* ============================================================== 
    # Helper CSS
=================================================================== */

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

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

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

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

@media (min-width: 1200px) {
  .container-full {
    max-width: 1600px;
    width: 100%;
  }

  .box-layout {
    width: 94%;
    margin: auto;
    border-radius: 30px;
  }
}

.container-fill {
  padding: 0 15px;
  margin: auto;
  max-width: 100%;
}

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

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

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

@media (min-width: 1200px) {
  .container-fill {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1199px) {
  .container-fill {
    padding: 0 15px;
    width: 100%;
  }
}

@media only screen and (min-width: 1600px) {
  .container-stage {
    margin-left: calc((100% - 1410px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 0;
  }
}

@media only screen and (min-width: 1600px) {
  .container-stage-reverse {
    margin-right: calc((100% - 1410px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .row {
    --bs-gutter-x: 1.5rem;
  }
}

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

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

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

.bg-fit {
  background-size: 100% 100% !important;
  background-position: center !important;
}

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

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

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

.bg-dark-secondary .bg-gray {
  background: var(--dark-optional);
}

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

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

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

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

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

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

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

.bg-gradient {
  background-color: var(--color-primary);
  background: var(--bg-gradient) !important;
}

.text-light {
  color: var(--white);
}

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

.text-light {
  color: var(--white);
}

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

.bg-dark p,
.bg-dark-secondary p,
.bg-dark-optional p {
  color: var(--white-secondary);
}

.shadow {
  -webkit-box-shadow: inherit !important;
  box-shadow: inherit !important;
}

.shadow.dark {
  position: relative;
}

.shadow.dark:after {
  background: rgb(48 13 3);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

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

.shadow.dark-hard:after {
  background: var(--black);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

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

.shadow.theme: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;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

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

.shadow.light:after {
  background: var(--white) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

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

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
  position: relative;
}

.default-padding {
  padding-top: 150px;
  padding-bottom: 150px;
}

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

.default-padding-big {
  padding: 250px 0;
}

@media only screen and (max-width: 767px) {
  .default-padding-big {
    padding: 70px 0;
  }
}

.default-padding-top {
  padding-top: 150px;
}

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

.default-padding-bottom {
  padding-bottom: 150px;
}

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

.default-padding.bottom-less {
  padding-top: 150px;
  padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
  .default-padding.bottom-less {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

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

@media only screen and (max-width: 767px) {
  .default-padding-bottom.bottom-less {
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}

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

@media only screen and (max-width: 767px) {
  .default-padding-top.bottom-less {
    margin-bottom: -30px;
  }
}

@media only screen and (min-width: 1200px) {
  .align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.border-left {
  border-left: 1px solid #e7e7e7;
}

.border-right {
  border-right: 1px solid #e7e7e7;
}

.heading {
  font-weight: 600;
  margin-bottom: 25px;
  margin-top: -5px;
  font-size: 42px;
  line-height: 1.3;
}

.heading span {
  font-weight: 400;
}

.site-heading {
  margin-bottom: 60px;
}

.site-heading strong {
  display: inline-block;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.title {
  font-weight: 600;
  font-size: 48px;
  margin-top: -10px;
  line-height: 1.2;
  display: block;
  letter-spacing: 0;
  color: var(--color-heading);
  margin-bottom: 15px;
}

.text-light .title {
  color: var(--white);
}

@media (max-width: 767px) {
  .title {
    font-size: 36px;
    margin-top: 0;
  }
}

.bg-dark .title {
  color: var(--white);
}

.site-heading .title {
  margin-bottom: 0;
}

.bg-dark .site-heading .title {
  color: var(--white);
}

.bg-theme .site-heading .title,
.bg-gradient .site-heading .title {
  color: var(--white);
}

.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-left: 25px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--color-heading);
}

.text-light .sub-title {
  color: var(--white);
}

.text-center .sub-title {
  margin-bottom: 25px;
}

.sub-title::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 8px;
  width: 8px;
  background: var(--color-primary);
  z-index: -1;
  margin-top: 2px;
}

.bg-gradient .sub-title::after,
.bg-theme .sub-title::after {
  background: var(--white);
}

.sub-title::before {
  position: absolute;
  left: 7px;
  top: 50%;
  content: "";
  height: 8px;
  width: 8px;
  background: var(--color-primary);
  transform: translateY(-50%);
  opacity: 0.6;
  margin-top: -5px;
}

.bg-gradient .sub-title::before,
.bg-theme .sub-title::before {
  background: var(--white);
  opacity: 0.4;
}

@media (max-width: 767px) {
  .sub-title {
    margin-bottom: 15px;
  }

  .text-center .sub-title {
    margin-bottom: 15px;
  }
}

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

.site-heading .devider {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
  left: 10px;
}

@media (max-width: 767px) {
  .site-heading p {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .site-heading {
    margin-bottom: 40px;
  }
}

.heading-left {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.heading-left .title {
  margin-bottom: 0;
}

.heading-left .heading {
  font-weight: 600;
  margin-bottom: 0;
}

.heading-left .sub-title {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heading-left .heading {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .heading-left .heading {
    margin-bottom: 15px;
    font-size: 36px;
    line-height: 1.2;
  }
}

.heading-left p {
  margin-bottom: 0;
}

.heading-left .btn {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .heading-left {
    margin-bottom: 30px;
  }
}

.sub-heading {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--bg-gradient-reverse);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.shadow .sub-heading {
  -webkit-text-fill-color: var(--white);
  font-weight: 600;
}

.bg-gradient .sub-heading {
  color: var(--white);
  background: transparent;
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  opacity: 0.9;
}

.site-heading.text-light .sub-title,
.site-heading.text-light .sub-heading {
  -webkit-text-fill-color: inherit;
  color: var(--white);
}

.site-heading.style-two .title {
  text-transform: uppercase;
}

.site-heading.style-two p {
  padding-left: 30%;
}

.site-heading.text-left p {
  padding-left: 0;
}

.left-heading {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: flex-start;
  gap: 50px;
}

.left-heading .sub-title {
  margin-top: 10px;
  min-width: 230px;
}

.left-heading .title {
  margin-top: -10px;
}

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

.split-text {
  overflow: hidden;
  position: relative;
}

.split-text .line {
  overflow: hidden;
  display: none;
  padding-bottom: 5px;
}

.text-scroll-animation .text {
  color: rgb(0, 0, 0, 0.3);
  background: linear-gradient(
      to right,
      var(--color-heading),
      var(--color-heading)
    )
    no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}

.bg-dark .text-scroll-animation .text {
  color: rgb(255, 255, 255, 0.2);
  background: linear-gradient(to right, var(--white), var(--white)) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}

@media (max-width: 1023px) {
  .text-scroll-animation .text {
    color: var(--color-heading);
  }
}

.scroll-slicer {
  overflow: hidden;
  position: relative;
}

.slicer-path-wrap {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.slicer-path {
  height: 100%;
  flex-grow: 1;
  background: #ffffff;
}

.bg-dark .slicer-path {
  background: var(--dark);
}

.bg-dark-secondary .slicer-path {
  background: var(--dark-secondary);
}

.zoom-thumb {
  overflow: hidden;
}

.site-heading.style-three h2 {
  font-size: 160px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: -20px;
  margin-left: -10px;
}

.site-heading .d-flex img {
  max-width: max-content;
  height: 60px;
  margin-top: 10px;
}

.site-heading .d-flex {
  align-items: flex-start;
  gap: 25px;
  margin-top: 20px;
}

.site-heading .d-flex p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

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

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  padding: 13px 35px;
  background: var(--color-primary);
  font-weight: 500;
  border-radius: 8px;
  position: relative;
  padding-top: 16px;
  color: var(--white);
  box-shadow: none !important;
  border: none;
  overflow: hidden;
  z-index: 1;
  text-transform: capitalize;
}

.btn.circle {
  border-radius: 40px;
}

.btn.btn-dark {
  background: var(--dark);
}

.btn.light {
  background: var(--white);
  color: var(--color-heading);
}

.btn i {
  font-weight: 400;
  transform: rotate(-45deg);
  margin-left: 5px;
}

.btn:hover {
  background: var(--dark);
  color: var(--white);
}

.btn.light:hover {
  background: var(--color-primary);
  color: var(--white);
}

.text-light .btn.light:hover {
  background: var(--color-primary);
  color: var(--white);
}

a.btn-simple {
  text-transform: uppercase;
  color: var(--color-paragraph);
  display: inline-block;
}

.text-light a.btn-simple {
  color: var(--white) !important;
}

a.button-regular {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
}

a.button-regular i {
  font-weight: 600;
  position: relative;
  top: 2px;
  font-size: 15px;
}

a.button-regular:hover i::after {
  background: var(--color-primary);
}

a.btn-simple i {
  display: inline-block;
  font-weight: 300;
  transform: rotate(-45deg);
  font-size: 20px;
  position: relative;
  top: 2px;
}

a.btn-simple:hover {
  color: var(--color-primary);
}

.btn-style-one {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  color: var(--white) !important;
  border: none;
  background: transparent;
  box-shadow: none;
}

.btn-style-one.solid {
  gap: 2px;
}

.btn-style-one.theme:hover,
.btn-style-one.dark:hover {
  color: var(--white);
}

.btn-style-one .icon:first-child {
  position: absolute;
  transform: translateX(50px) scale(0.7);
}

.btn-style-one:hover .icon:first-child {
  transform: translateX(0px);
}

.btn-style-one.solid:hover .icon:first-child {
  transform: translateX(-2px);
}

.btn-style-one:hover .icon:last-child {
  transform: translateX(-50px) scale(0);
}

.navbar .attr-right .attr-nav li .btn-style-one {
  color: var(--white);
}

.btn-style-one span {
  background: var(--color-primary);
  height: 50px;
  display: inline-block;
  line-height: 50px;
  padding: 0 30px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 9;
}

.btn-style-one.dark span {
  background: var(--dark);
}

.btn-style-one.border-dark span {
  background: transparent;
  border: 2px solid var(--dark);
  line-height: 48px;
}

.btn-style-one.border-white span {
  background: transparent;
  border: 2px solid var(--white);
  line-height: 48px;
}

.bg-dark .btn-style-one.border-white span {
  background: var(--dark);
}

.bg-theme .btn-style-one.border-white span {
  background: var(--color-primary);
}

.btn-style-one.border-theme span {
  background: transparent;
  border: 2px solid var(--color-primary);
  line-height: 48px;
}

.btn-style-one.white span {
  background: var(--white);
  color: var(--color-heading);
}

.btn-style-one .icon {
  height: 50px;
  width: 50px;
  min-width: 50px;
  text-align: center;
  background: var(--color-primary);
  padding: 15px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-style-one.solid .icon {
  border-radius: 0;
  background: var(--dark);
}

.bg-dark .btn-style-one.solid .icon {
  background: var(--white);
}

.bg-dark .btn-style-one.solid .icon svg path {
  stroke: var(--color-heading);
}

.btn-style-one.dark .icon {
  background: var(--dark);
}

.btn-style-one.border-dark .icon {
  background: transparent;
  border: 2px solid var(--dark);
}

.btn-style-one.border-white .icon {
  background: transparent;
  border: 2px solid var(--white);
}

.btn-style-one.border-theme .icon {
  background: transparent;
  border: 2px solid var(--color-primary);
}

.btn-style-one.white .icon {
  background: var(--white);
}

.text-light .btn-style-one.white .icon {
  background: var(--white);
}

.btn-style-one.white {
  color: var(--color-heading);
}

.bg-theme.text-light .btn-style-one.white .icon {
  background: var(--dark);
}

a.btn-circle {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  min-height: 115px;
  color: var(--color-heading);
  padding-left: 25px;
  padding-bottom: 42px;
  padding-top: 35px;
}

.text-light a.btn-circle {
  color: var(--white);
}

a.btn-circle img {
  height: 30px;
  margin-right: 15px;
  transition: all 0.35s ease-in-out;
}

.text-light a.btn-circle::after {
  filter: brightness(0) invert(1);
}

.text-light a.btn-circle img {
  filter: brightness(0) invert(1);
}

.text-light a.btn-circle:hover img {
  filter: none;
}

.text-light a.btn-circle:hover::after {
  background: var(--white);
}

a.btn-circle span {
  position: relative;
}

a.btn-circle::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 110px;
  width: 110px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url(../img/icon/round-shape.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.35s ease-in-out;
}

.bg-dark a.btn-circle::after {
  filter: brightness(0) invert(1);
}

.bg-dark a.btn-circle img {
  filter: brightness(0) invert(1);
}

a.btn-circle .button-content {
  position: relative;
  z-index: 1;
}

.bg-dark a.btn-circle {
  color: var(--white);
}

a.btn-circle:hover::after {
  background-color: var(--color-primary);
  filter: none;
  transform: translateY(-50%) scale(0.85);
  left: -10px;
  background-image: none;
}

a.btn-circle:hover img {
  filter: brightness(0) invert(1);
}

a.btn-circle strong {
  transition: all 0.35s ease-in-out;
  font-size: 18px;
}

a.btn-circle:hover strong {
  margin-left: 25px;
}

.text-end a.btn-circle:hover strong {
  transform: translateX(25px);
  margin-left: 0;
}

a.btn-circle:hover img {
  height: 20px;
}

/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-button {
  display: inline-block;
  position: relative;
  height: 120px;
  width: 120px;
  line-height: 120px;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
}

.video-button i {
  font-weight: 300;
  color: var(--white);
}

.video-button::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 105%;
  width: 105%;
  border: 1px solid var(--white);
  animation: pulse-border 3s linear infinite;
  border-radius: 50%;
}

@-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;
  }
}

/* ============================================================== 
    # Template Animation
=================================================================== */

/* Video Paly */
@-webkit-keyframes video-play {
  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 video-play {
  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;
  }
}

/*Zoom Animation */
.zoom-animation {
  -webkit-animation: zoom 2000ms ease-out infinite;
  animation: zoom 2000ms ease-out infinite;
}

/* Slider Zoom Effect */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }

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

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

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

/* Spiner Animation */
.spiner-animation {
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

/* Spiner Animation */
.spiner-reverse-animation {
  -webkit-animation: spinnerReverse 20s infinite linear;
  animation: spinnerReverse 20s infinite linear;
}

/*Preloader Spiner Animation */
@-webkit-keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

@keyframes spinnerReverse {
  to {
    -webkit-transform: rotateZ(-360deg);
    transform: rotateZ(-360deg);
  }
}

/* Infinite Up Down Animation */
@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

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

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

/* Animation UpDown */
.updown-animation {
  -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: UpDown;
  animation-name: UpDown;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

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

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

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

/* Animation Left Right */
.leftRight-animation {
  -webkit-animation: fadeLeftRight 10s ease-out infinite;
  animation: fadeLeftRight 10s ease-out infinite;
}

/* Fade Left Right */
@keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@-webkit-keyframes fadeLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

/* Animation Right Left */
.rightLeft-animation {
  -webkit-animation: fadeRightLeft 10s ease-out infinite;
  animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

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

@-webkit-keyframes fadeRightLeft {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

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

/* Animation Zoom Up Down */
.zoomUpDown-animation {
  -webkit-animation: zoomUpDown 10s ease-out infinite;
  animation: zoomUpDown 10s ease-out infinite;
}

/* Zoom Up Down */
@keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes zoomUpDown {
  0%,
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

/* Animation Moving */
.moving-animation {
  -webkit-animation: moving 10s ease-out infinite;
  animation: moving 10s ease-out infinite;
}

/* Mooving Animation */
@-webkit-keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

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

@keyframes moving {
  0% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  20% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
  }

  50% {
    -webkit-transform: translate(-100px, -30px);
    transform: translate(-100px, -30px);
  }

  70% {
    -webkit-transform: translate(-100px, 0px);
    transform: translate(-100px, 0px);
  }

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

/* Animation Rotation */
@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Border Animation */
@-webkit-keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@keyframes open {
  0% {
    width: 0;
    height: 0;
  }

  50% {
    width: 100px;
    height: 0;
  }

  100% {
    width: 100px;
    height: 55px;
  }
}

@-webkit-keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

@keyframes openB {
  0% {
    width: 0px;
  }

  100% {
    width: 100px;
  }
}

/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 180px;
  }

  100% {
    background-position: 180px;
  }
}

@-webkit-keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes infiniteMove {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@-webkit-keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

@keyframes infiniteMove2 {
  0% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }

  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
  }

  100% {
    border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
  }
}

/* ============================================================== 
    # Nice Select Styles
=================================================================== */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border: solid 1px #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 15px;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999999;
}

.nice-select::after {
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  overflow-y: auto !important;
  height: auto;
}

.nice-select.open ::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999999;
  pointer-events: none;
}

.nice-select.disabled::after {
  border-color: #96aac1;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small::after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  transition:
    all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
    opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 600;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.mfp-iframe-holder .mfp-close {
  color: transparent;
  background: transparent;
}

.mfp-iframe-holder .mfp-close::before {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
  display: block;
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */

.top-bar-area {
  padding: 8px 0;
  position: relative;
}

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

.top-bar-area.bg-dark,
.top-bar-area.bg-theme {
  color: var(--white);
  border: none;
}

.top-bar-area.bg-gray {
  border: none;
}

.top-bar-area ul.item-flex {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  column-gap: 30px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.top-bar-area ul.item-flex li a {
  font-weight: 500;
}

.top-bar-area ul.item-flex i,
.top-bar-area p i {
  margin-right: 6px;
  color: var(--color-primary);
}

.top-bar-area.bg-dark ul.item-flex i,
.top-bar-area.bg-dark p i,
.top-bar-area.bg-theme ul.item-flex i {
  color: var(--white);
}

.top-bar-area .text-end ul.item-flex i {
  margin-right: 0;
  color: inherit;
}

.text-end .item-flex {
  justify-content: end;
}

.top-bar-area .social ul.item-flex {
  gap: 10px;
}

.top-bar-area .text-end .d-flex {
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.top-bar-area.bg-dark .social li a img,
.top-bar-area.bg-theme .social li a img {
  filter: brightness(0) invert(1);
}

.top-bar-area.bg-dark .social li a,
.top-bar-area.bg-theme .social li a {
  border-color: rgba(255, 255, 255, 0.3);
}

.top-bar-area.bg-dark .social li a:hover {
  border-color: var(--color-primary);
}

.top-bar-area.bg-gray li {
  color: var(--color-heading);
}

.top-bar-area p {
  margin-bottom: 0;
}

.top-bar-area.bg-dark p,
.top-bar-area.bg-theme p {
  color: var(--white);
}

@media (min-width: 1200px) {
  .top-bar-area.style-one {
    padding-right: 70px;
  }

  .top-bar-area .offset-xl-3 {
    padding-left: 25px;
  }
}

.top-bar-area .social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-bar-area .social li a {
  display: inline-flex;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: 1px solid #a8c5c5;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.top-bar-area .social li a img {
  height: 16px;
  transition: all 0.35s ease-in-out;
}

.top-bar-area .social li a:hover img {
  filter: brightness(1) invert(1);
}

.top-bar-area .social li a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--white);
}

.top-bar-area.style-two {
  overflow: hidden;
}

.top-bar-area.style-two .social {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-left: 40px;
}

.top-bar-area.style-two .social::after {
  position: absolute;
  left: 0;
  top: -30px;
  content: "";
  width: 600%;
  background: var(--color-primary);
  z-index: -1;
  height: 100px;
}

.dropdown.language-switcher button {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-heading);
}

.bg-dark .dropdown.language-switcher button,
.bg-theme .dropdown.language-switcher button {
  color: var(--white);
}

.dropdown.language-switcher button img {
  height: 30px;
}

.dropdown.language-switcher button::after {
  display: none;
}

.dropdown.language-switcher button i {
  font-weight: 500;
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-left: 2px;
}

.dropdown.language-switcher .dropdown-menu li a {
  color: var(--color-heading);
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  padding: 7px 20px;
}

.dropdown.language-switcher .dropdown-menu {
  min-width: 200px;
  padding: 15px 10px;
  margin-top: 10px !important;
}

.top-bar-area.top-bar-style-two {
  overflow: hidden;
  padding: 0;
}

.top-bar-area.top-bar-style-two .social .item-flex {
  background: var(--color-primary);
  display: inline-flex;
  padding: 10px 40px;
}

.top-bar-area.light-bg {
  border-bottom: 1px solid #e7e7e7;
}

.top-bar-area.light-bg {
  padding: 10px 0;
}

.top-bar-area.light-bg .address-info i {
  color: var(--color-primary);
  font-weight: 300;
}

.top-bar-area.light-bg .social li a {
  border: 1px solid #dddddd;
}

.top-bar-area.light-bg .social li a img {
  filter: brightness(0);
}

.top-bar-area.light-bg .address-info li,
.top-bar-area.light-bg .address-info li a {
  color: var(--color-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
}

.top-bar-area .address-info i.fa-map-marker-alt {
  font-size: 20px;
}

/* Banner One Animation */
.banner-style-two-area h1 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.banner-style-two-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
}

.banner-style-two-area .content p {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  padding-right: 25%;
  margin: 0;
  visibility: hidden;
}

.banner-style-two-area .button {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-style-two-area .card-wrap {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  margin-top: 30px;
}

.banner-style-two-area .swiper-slide.swiper-slide-active h1 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  opacity: 1;
  visibility: visible;
}

.banner-style-two-area .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  opacity: 1;
  visibility: visible;
}

.swiper-slide.swiper-slide-active .content p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
  opacity: 1;
  visibility: visible;
}

.banner-style-two-area .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
  opacity: 1;
  visibility: visible;
}

.banner-style-two-area .swiper-slide.swiper-slide-active .card-wrap {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  opacity: 1;
  visibility: visible;
}

/* ============================================================== 
    # Banner Style One
=================================================================== */

.banner-style-one {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-style-one::after {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  height: 100%;
  right: 0;
  background: var(--color-primary);
  z-index: -2;
  margin-left: 95px;
}

.banner-style-one h2 {
  font-size: 70px;
  line-height: 1;
  margin-bottom: 25px;
  padding-bottom: 5px;
}

.banner-style-one .content p {
  font-size: 20px;
  margin: 0;
}

.banner-style-one .content {
  padding-right: 80px;
}

.banner-style-one .right-info {
  padding: 120px 0;
}

.thrusted-by {
  display: flex;
  align-items: center;
  gap: 15px;
}

.thrusted-by .icon i {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background: var(--dark);
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
}

.thrusted-by .ratings i {
  font-size: 15px;
  color: #ffa000;
}

.thrusted-by .ratings {
  margin-bottom: 9px;
  line-height: 1;
}

.thrusted-by h3 {
  margin: 0;
  font-size: 20px;
}

.banner-style-one .thrusted-by {
  margin-top: 80px;
  border-top: 1px solid #dddddd;
  padding-top: 30px;
}

.accordion-style-one .accordion-header {
  margin: 0;
}

.accordion-style-one .accordion-item {
  background: transparent;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #e7e7e7;
}

.accordion-style-one {
  border: none;
}

.accordion-style-one .accordion-header .accordion-button {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 15px 0;
  font-size: 20px;
  box-shadow: none;
}

.accordion-style-one .accordion-header .accordion-button::after {
  display: none;
}

.accordion-style-one .accordion-header .accordion-button::before {
  background: transparent;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 25px;
  position: absolute;
  top: 13px;
  right: 0;
}

.accordion-style-one
  .accordion-header
  .accordion-button:not(.collapsed)::before {
  -webkit-transform: inherit;
  transform: inherit;
  content: "\f106";
}

.banner-style-one .accordion-style-one .accordion-header .accordion-button {
  color: var(--white);
}

.banner-style-one .accordion-style-one .accordion-item {
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion-style-one .accordion-item .accordion-body {
  padding: 10px 0;
  padding-bottom: 20px;
}

.banner-style-one .accordion-style-one .accordion-item .accordion-body p {
  color: var(--white);
  margin: 0;
}

.thrusted-by .icon img {
  height: 70px;
}

/* ============================================================== 
    # Banner Style Two
=================================================================== */

.banner-style-two-area {
  height: 100vh;
  width: 100%;
  position: relative;
  margin: 30px 30px auto;
  border-radius: 50px;
  overflow: hidden;
}

@media (min-width: 1600px) {
  .banner-style-two-area {
    max-width: 97%;
    margin: 30px 30px auto;
    border-radius: 50px;
  }
}

.banner-style-two-area div {
  height: 100%;
}

.banner-style-two-area div.swiper-slide .row div {
  height: auto;
}

@media (max-width: 1023px) {
  .banner-style-two-area {
    height: auto;
    margin: 0;
    border-radius: 0;
  }

  .banner-style-two-area div {
    height: auto;
  }
}

.banner-style-two-area div .card-wrap {
  height: auto;
  position: absolute;
  right: 15px;
  bottom: 50px;
  z-index: 9;
}

.banner-style-two-item .container {
  position: relative;
}

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

.banner-area.zoom-effect .banner-thumb {
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
}

.banner-area.zoom-effect .swiper-slide.swiper-slide-active .banner-thumb {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-area .content {
  position: relative;
  z-index: 9;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-top: 50px;
}

.banner-style-two-area div.banner-fixed-info {
  height: auto;
}

.banner-fixed-info {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.card-style-one {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px;
  width: 350px;
  border-radius: 30px;
  backdrop-filter: blur(20px);
}

.card-style-one h3 {
  color: var(--color-primary);
  font-size: 80px;
  font-weight: 700;
  display: flex;
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: -10px;
}

.card-style-one .counter {
  color: var(--color-primary);
  font-size: 70px;
  font-weight: 700;
  display: flex;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: -10px;
}

.card-style-one h3 strong {
  display: flex;
  line-height: 1;
  font-size: 55px;
}

.card-style-one p {
  margin: 0;
  color: var(--color-heading);
  font-size: 22px;
  font-weight: 600;
}

.card-style-one .icon img {
  height: 60px;
  margin-bottom: 120px;
}

.banner-style-two-item .content .info {
  padding-left: 100px;
}

.banner-style-two-item .content h1 {
  font-size: 120px;
  line-height: 1;
  margin-bottom: -10px;
  text-transform: uppercase;
  font-weight: 200;
}

.banner-style-two-item .content h2 {
  font-size: 120px;
  margin-left: -10px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.banner-style-two-item .info p {
  font-size: 20px;
  padding-right: 100px;
  margin: 0;
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
}

.banner-area .content h4 {
  text-transform: uppercase;
  font-size: 26px;
}

.banner-style-two-item .card-style-one .info p {
  padding: 0;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-heading);
}

.card-style-one h4 {
  margin: 0;
  margin-top: 20px;
  font-size: 26px;
  display: flex;
  align-items: center;
  border-top: 1px solid #e0d4d4;
  padding-top: 15px;
  justify-content: space-between;
}

.card-style-one h4 strong {
  margin-left: 50px;
  font-weight: 500;
  font-size: 18px;
}

.card-style-one h4 i {
  color: #ff9b00;
  position: relative;
  font-size: 20px;
  margin-left: 5px;
  top: -1px;
}

.banner-style-two-area div.banner-fade-control {
  height: auto;
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 9;
  width: 100%;
}

.banner-style-two-area div.banner-fade-control div {
  height: auto;
}

.banner-style-two-area div.banner-fade-navs {
  height: auto;
  display: flex;
  gap: 10px;
}

.banner-fade-navs > div {
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

.banner-fade-navs i {
  font-weight: 300;
}

/* ============================================================== 
    # Banner Style Three
=================================================================== */

.banner-style-three-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-style-three-area video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-style-three-area,
.banner-style-three-area div {
  height: 100vh;
}

.banner-style-three-area .row div {
  height: auto;
}

@media (max-width: 1023px) {
  .banner-style-three-area,
  .banner-style-three-area div {
    height: auto;
  }
}

.consultation-card {
  position: absolute;
  right: 15px;
  bottom: 0;
  z-index: 2;
  background: #fae1da;
  height: auto;
  padding: 60px;
  max-width: 550px;
  padding-right: 200px;
  border-radius: 10px 10px 0 0;
}

.banner-style-two-wrap .container,
.banner-style-two-wrap .container-full {
  position: relative;
}

.consultation-card > img {
  position: absolute;
  width: 210px;
  bottom: 0;
  right: 10px;
  z-index: -1;
}

.banner-style-three-area div.consultation-card,
.banner-style-three-area div.consultation-card div {
  height: auto;
}

.consultation-card h2 {
  color: var(--color-heading);
  font-size: 30px;
  margin-bottom: 25px;
}

.consultation-card a.btn-simple {
  color: var(--color-primary) !important;
  font-weight: 600;
}

.consultation-card .customer-list > i {
  background: var(--dark);
}

.banner-style-two-wrap .content h1 {
  font-size: 80px;
  line-height: 1;
}

.banner-style-three-area .content h2 {
  font-size: 30px;
  margin: 0;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  padding-left: 25px;
  font-weight: 400;
  margin-left: 10px;
}

.banner-style-three-area .content h2 strong {
  font-style: italic;
  font-weight: 500;
}

.banner-style-three-area .content h2::after {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  background: var(--white);
  bottom: 5px;
  width: 3px;
}

.banner-style-three-area .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  height: auto;
  opacity: 0.5;
}

/* ============================================================== 
    # Video Section 
=================================================================== */
.video-section-two-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.video-section-two-area img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.video-section-two-area .video-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================================== 
    # About Style One
=================================================================== */
.accordion-style-two .accordion-item {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  top: -15px;
}

.accordion-style-two .accordion-item:first-child {
  top: 0;
}

.accordion-style-two .accordion-item .accordion-button {
  background: var(--dark);
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  padding: 40px;
  border-radius: 0;
  font-size: 26px;
  transition: all 0.35s ease-in-out;
}

.accordion-style-two .accordion-item .accordion-button:hover {
  z-index: inherit;
}

.accordion-style-two .accordion-item .accordion-button h4 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.accordion-style-two .accordion-item .accordion-button::before {
  display: none;
}

.accordion-style-two .accordion-item .accordion-header {
  margin: 0;
  padding: 0;
  border: none;
}

.accordion-style-two .accordion-item .accordion-collapse {
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-style-two .accordion-item p {
  color: var(--white);
}

.accordion-style-two .accordion-item .accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: var(--white);
}

.accordion-style-two .accordion-item .accordion-button::after {
  display: none;
}

.accordion-style-two .accordion-item .accordion-button::before {
  background: transparent;
  content: "\2b";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 25px;
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  transform: translateY(-50%) !important;
}

.accordion-style-two .accordion-item .accordion-button:not(.collapsed)::before {
  -webkit-transform: inherit;
  transform: inherit;
  content: "\f068";
}

.accordion-style-two .accordion-item .accordion-body {
  padding: 30px 50px;
}

.accordion-style-two .accordion-item .accordion-body p:last-child {
  margin: 0;
}

.about-style-one-items .experience-card {
  padding: 0;
  border: none;
  border-top: 1px solid #dddddd;
  border-radius: 0;
  margin-top: 20px;
  padding-top: 20px;
  background: transparent;
}

.about-style-one-items p {
  margin-bottom: 15px;
}

.about-style-one-items .thumb {
  margin-bottom: -150px;
  position: relative;
  height: 100%;
}

.about-style-one-items .thumb img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

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

ul.list-style-two {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

ul.list-style-two li {
  margin-top: 10px;
  position: relative;
  z-index: 1;
  padding-left: 25px;
  color: var(--color-heading);
}

.text-light ul.list-style-two li {
  color: var(--white);
}

ul.list-style-two li:first-child {
  margin-top: 0;
}

ul.list-style-two li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\e801";
  font-family: "validicon";
  color: var(--color-primary);
}

.experience-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border: 1px solid #aed9da;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
}

.experience-card .js-counter {
  display: flex;
  font-size: 60px;
  line-height: 50px;
  color: var(--color-primary);
  font-weight: 400;
  margin-bottom: 15px;
}

.experience-card .js-counter span {
  font-size: 120px;
  line-height: 100px;
  color: var(--color-heading);
  font-weight: 700;
}

.experience-card h2 {
  margin: 0;
  font-size: 20px;
}

.accordion-style-two {
  margin-bottom: -15px;
}

/* ============================================================== 
    # About Style Two
=================================================================== */

.about-style-two-area .shape {
  position: absolute;
  left: 0;
  top: 0;
}

.about-style-two-area {
  position: relative;
  z-index: 1;
}

.about-style-two-area .illustration {
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: -1;
}

ul.card-style-two {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  position: relative;
}

.card-two-item {
  border: 1px solid #dddddd;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

.text-light .card-two-item {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-two-item:first-child {
  grid-column: 1;
  grid-row: 1;
  border-bottom-right-radius: 0;
}

.card-two-item:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
  margin-left: -1px;
  margin-right: -1px;
  margin-top: -1px;
  border-radius: 0 0 10px 10px;
}

.card-two-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  border-bottom-left-radius: 0;
}

.card-two-item h2 {
  font-size: 24px;
}

.card-two-item p {
  margin: 0;
  color: var(--color-heading);
  font-weight: 500;
}

.text-light .card-two-item p {
  color: var(--white);
}

.text-light .about-heading-right-info {
  margin-top: -90px;
}

.about-heading-right-info p {
  font-size: 22px;
  line-height: 1.4;
}

li.card-two-item .js-counter {
  font-size: 70px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--color-heading);
}

.text-light li.card-two-item .js-counter {
  color: var(--white);
}

.about-style-two-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ============================================================== 
    # Services One
=================================================================== */

.service-style-one-item h2 {
  font-size: 24px;
}

.service-style-one-item .icon-box {
  height: 80px;
  margin-bottom: 180px;
}

.service-style-one-item .icon {
  height: 80px;
  width: 80px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease-in-out;
  clip-path: polygon(82% 0, 100% 16%, 100% 100%, 0 100%, 0 0);
}

.service-style-one-item .icon i {
  color: var(--white);
  font-size: 46px;
}

.service-style-one-item .icon img {
  height: 46px;
  max-width: max-content;
}

.service-style-one-item {
  background: var(--white);
  padding: 40px;
  position: relative;
  clip-path: polygon(89% 0, 100% 8%, 100% 100%, 0 100%, 0 0);
}

.service-style-one-item .info > a {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  margin-top: 5px;
}

.active .service-style-one-item .info > a {
  color: var(--color-primary);
}

.service-style-one-item .thumb {
  position: absolute;
  right: 20px;
  left: 20px;
  top: 20px;
}

.service-style-one-item .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(92% 0, 100% 13%, 100% 100%, 0 100%, 0 0);
  height: 255px;
  opacity: 1;
  visibility: visible;
}

/* ============================================================== 
    # Services Style Two
=================================================================== */
.shape-style-one {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.services-style-two-item {
  padding: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 100%;
  background: var(--bg-gray-secondary);
  clip-path: polygon(
    /* Top-left */ 8% 0,
    7% 0.1%,
    6% 0.3%,
    5% 0.8%,
    4% 1.5%,
    3% 2.5%,
    2% 3.5%,
    1% 4.5%,
    0.3% 5.5%,
    0 7%,

    /* Left */ 0 93%,
    0.3% 94.5%,
    1% 95.5%,
    2% 96.5%,
    3% 97.5%,
    4% 98.5%,
    5% 99.2%,
    6% 99.7%,
    8% 100%,

    /* Bottom */ 92% 100%,
    94% 99.7%,
    95% 99.2%,
    96% 98.5%,
    97% 97.5%,
    98% 96.5%,
    99% 95.5%,
    99.7% 94.5%,
    100% 93%,

    /* Right */ 100% 7%,
    99.7% 5.5%,
    99% 4.5%,
    98% 3.5%,
    97% 2.5%,
    96% 1.5%,
    95% 0.8%,
    94% 0.3%,
    93% 0.1%,
    92% 0
  );
}

.bg-gray-secondary .services-style-two-item {
  background: var(--white);
}

.services-style-two-item h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.services-style-two-item .icon img {
  height: 70px;
  margin-bottom: 150px;
}

.service-heading-card {
  padding: 50px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.service-heading-card .sub-title {
  color: var(--white-secondary);
}

.service-heading-card .sub-title::before {
  background: var(--white);
}

.service-heading-card .sub-title::after {
  background: var(--white);
}

.service-heading-card .illustration {
  position: absolute;
  left: -60px;
  bottom: -15px;
  z-index: -1;
}

.service-heading-card .illustration img {
  width: 45%;
}

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

ul.list-style-four li {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

ul.list-style-four li:first-child {
  margin-top: 0;
}

ul.list-style-four li p {
  margin-bottom: 0;
}

ul.list-style-four li i {
  display: inline-block;
  width: 48px;
  min-width: 48px;
  font-size: 35px;
  color: var(--color-primary);
  text-align: center;
  font-weight: 300;
  border-radius: 50%;
  margin-top: 7px;
}

.service-heading-card ul.list-style-four {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  margin-top: 30px;
}

ul.list-style-four li strong {
  font-size: 20px;
}

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

ul.list-style-three li {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  margin-top: 5px;
}

ul.list-style-three li::after {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  height: 7px;
  width: 7px;
  background: var(--color-primary);
}

.text-light ul.list-style-three li {
  color: var(--white);
}

.text-light ul.list-style-three li::after {
  background: var(--white);
}

/* ============================================================== 
    # Services Details
=================================================================== */

.services-details-items img {
  border-radius: 10px;
}

.services-list-widget {
  background: #f2ebeb;
  padding: 30px;
}

.single-widget {
  margin-top: 30px;
  overflow: hidden;
  border-radius: 8px;
}

.single-widget:first-child {
  margin-top: 0;
}

.services-list-widget li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: rgba(255, 255, 255, 0.65);
  padding: 20px 30px;
  border-radius: 5px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
}

.services-list-widget li.active a {
  background: var(--color-primary);
  color: var(--white);
}

.services-list-widget li a i {
  transform: rotate(-45deg);
}

.services-list-widget li {
  margin-top: 5px;
}

.services-list-widget li:first-child {
  margin-top: 0;
}

.quick-contact-widget {
  padding: 50px;
  padding-top: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.quick-contact-widget::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 60%;
  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;
  z-index: -1;
}

.services-details-items {
  position: relative;
}

.services-widgets {
  position: sticky;
  top: 150px;
}

.card-style-seven {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}

.card-style-seven img {
  position: absolute;
  z-index: -1;
  max-width: 45%;
  left: 0;
  bottom: 0;
}

.card-style-seven h2 {
  margin-bottom: 0;
  margin-top: 80px;
}

.card-style-six {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-style-six .info {
  padding: 50px;
  position: relative;
  z-index: 1;
}

.card-style-six .info p {
  margin: 0;
}

.card-style-six .thumb {
  position: relative;
  margin-top: -110px;
}

.card-style-six .thumb::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 150px;
  width: 100%;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to top, rgba(0, 0, 0, 0) 0%, var(--white) 70%) repeat scroll
    0 0;
}

/* ============================================================== 
    # Choose Us Style One
=================================================================== */
.choose-us-style-one-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.shape-right-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 40%;
}

.choose-us-style-one-area .choose-us-style-one-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
}

.bg-gray .choose-us-style-one-thumb .slicer-path {
  background: var(--bg-gray);
}

.bg-gray-secondary .choose-us-style-one-thumb .slicer-path {
  background: var(--bg-gray-secondary);
}

.bg-gray-secondary .bg-white .choose-us-style-one-thumb .slicer-path {
  background: var(--white);
}

.choose-us-style-one-area .choose-us-style-one-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.client-counter-card h2 {
  font-size: 20px;
  margin: 0;
  line-height: 1.4;
}

.customer-list h2 {
  margin: 0;
  font-size: 20px;
  margin-left: 15px;
  line-height: 1.4;
}

.flex-card {
  display: flex;
  gap: 10px;
}

.client-counter-card {
  min-width: 300px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-counter-card .js-counter {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 15px;
}

.active-client-overview {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.active-client-overview p {
  margin: 0;
  line-height: 1.4;
  font-size: 20px;
  color: var(--color-heading);
  font-weight: 600;
}

.active-client-overview .customer-list {
  margin-bottom: 20px;
}

.customer-list {
  display: flex;
  align-items: center;
  margin-left: 15px;
  text-align: left;
}

.customer-list img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin-left: -15px;
}

.customer-list > span,
.customer-list > i {
  margin: 0;
  height: 55px;
  width: 55px;
  min-width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-left: -20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}

/* ============================================================== 
    # Feature Style One
=================================================================== */

@media (min-width: 992px) {
  .feature-style-one-items {
    margin: 0 -30px;
  }
}

.feature-style-one-item {
  position: relative;
  z-index: 1;
  padding: 0 50px;
}

.feature-style-one-item h2 {
  font-size: 24px;
}

.feature-style-one-item::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    #b3caca,
    rgba(255, 255, 255, 0)
  );
}

.text-light .feature-style-one-item::after {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    var(--white-secondary),
    rgba(255, 255, 255, 0)
  );
}

.feature-style-one-item:last-child::after {
  display: none;
}

.feature-style-one-item img {
  height: 60px;
  margin-bottom: 50px;
}

.feature-style-one-item p {
  margin: 0;
}

/* ============================================================== 
    # Project Style One
=================================================================== */

.project-style-one-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.project-style-one-area::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 50%;
  width: 40%;
  background: var(--bg-gray-secondary);
  z-index: -1;
}

.project-style-one-item img {
  width: 100%;
}

.project-style-one-item {
  position: relative;
  z-index: 1;
  padding-top: 250px;
}

.project-style-one-item .project-card-info {
  position: relative;
  left: 100px;
  bottom: 50px;
  padding: 50px;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.swiper-slide-active .project-style-one-item .project-card-info {
  left: 50px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

.project-card-info {
  background: var(--white);
}

.project-card-info h2 {
  font-size: 30px;
}

@media (min-width: 1600px) {
  .project-card-info {
    max-width: 60%;
  }
}

.project-style-one-item ul {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  column-gap: 30px;
  border-top: 1px solid #dddddd;
  padding-top: 25px;
}

.project-style-one-item ul li {
  position: relative;
  z-index: 1;
  padding-left: 15px;
}

.project-style-one-item ul li::after {
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  height: 6px;
  width: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.project-style-one-item ul li strong {
  color: var(--color-heading);
  display: block;
  font-size: 18px;
}

.project-card-info > span {
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid #e7e7e7;
  padding: 2px 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.project-style-one-item > img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.project-one-swiper-nav > div {
  display: inline-flex;
  height: 60px;
  width: 60px;
  text-align: center;
  background: var(--color-primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.project-page .project-one-swiper-nav > div.project-one-next {
  background: var(--color-primary);
  color: var(--white);
}

.project-one-swiper-nav > div i {
  line-height: 1;
  font-size: 16px;
  position: relative;
  top: -2px;
  left: -4px;
}

.project-one-swiper-nav {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
}

.project-one-swiper-nav > div.project-one-prev {
  margin-right: 60px;
  background: var(--dark);
  color: var(--white);
}

/* ============================================================== 
    # Accordion Portfolio 
=================================================================== */

.accordion-portfolio-lists li {
  overflow: hidden;
  border-bottom: none;
  min-height: 600px;
}

.bg-dark .accordion-portfolio-lists li {
  border: 7px solid var(--dark);
}

.accordion-portfolio-lists {
  margin: 0 auto;
  list-style: none;
  transition: all 300ms ease;
  position: relative;
  display: flex;
  gap: 10px;
  padding-right: 30px;
}

.accordion-portfolio-lists li {
  cursor: grab;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  padding: 1.6em;
  list-style: none;
  width: 19%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 20px;
  min-width: 300px;
}

.accordion-portfolio-lists li a {
  display: inline-block;
}

.accordion-portfolio-lists li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(160 0 0) 100%) repeat
    scroll 0 0;
  z-index: -1;
  opacity: 0.75;
  transition: all 0.35s ease-in-out;
}

.accordion-portfolio-lists li.out::after {
  opacity: 0;
}

.accordion-portfolio-lists li .accordion-overlay.big-section {
  width: 100%;
}

.accordion-portfolio-lists li.out {
  width: 40%;
}

.accrdion-portfolio-area .accordion-overlay {
  display: inline-block;
  height: auto;
  min-height: auto;
  padding: 30px;
  border-radius: 20px;
  padding-bottom: 0;
  z-index: 1;
}

.accordion-portfolio-lists li h3 {
  position: absolute;
  left: 30px;
  margin: 0 !important;
  font-weight: 600;
  padding: 0;
  bottom: 25px;
  transition: all 0.35s ease-in-out;
  font-size: 22px;
}

.accordion-portfolio-lists li.out h3 {
  writing-mode: inherit;
  left: auto;
  transform: inherit;
  right: 50px;
  display: none;
  border-radius: 10px;
}

.accordion-portfolio-lists li > .project-tags {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  font-size: 80px;
  bottom: -50px;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  transition: all 0.35s ease-in-out;
}

.accordion-portfolio-lists li.out > .project-tags {
  bottom: -200px;
  visibility: visible;
  opacity: 0;
  transition-duration: 0.1s;
}

.accordion-portfolio-lists li::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 30%;
  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;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.accordion-portfolio-lists li.out::before {
  height: 80%;
  visibility: visible;
  opacity: 1;
}

.accrdion-portfolio-area .accordion-overlay .project-tags {
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  transform: translateX(100px);
  opacity: 0;
  visibility: hidden;
}

.accrdion-portfolio-area .out .accordion-overlay .project-tags {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.15s;
}

.accrdion-portfolio-area .accordion-overlay h2 {
  font-weight: 500;
  transition: all 0.35s ease-in-out;
  transform: translateX(-100px);
  opacity: 0;
  visibility: hidden;
  line-height: 1.2;
  margin-bottom: 10px;
}

.accrdion-portfolio-area .accordion-overlay h2 strong {
  display: block;
  margin-left: 60px;
}

.accrdion-portfolio-area .out .accordion-overlay h2 {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.15s;
}

.accrdion-portfolio-area .accordion-overlay p {
  z-index: 1;
  position: relative;
  color: var(--white);
  margin: 0;
  margin-top: 15px;
  transition: all 0.35s ease-in-out;
  transform: translateX(50px);
  opacity: 0;
  visibility: hidden;
}

.accrdion-portfolio-area .out .accordion-overlay p {
  opacity: 0.9;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.15s;
}

.accrdion-portfolio-area .accordion-overlay > a {
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 68px;
  background: var(--dark);
  border-radius: 50%;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(25px);
  font-size: 30px;
  border: 2px solid rgba(255, 255, 255, 1);
}

.accrdion-portfolio-area .accordion-overlay a i {
  transform: rotate(-45deg);
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.accrdion-portfolio-area .out .accordion-overlay a {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ============================================================== 
    # Project Details
=================================================================== */

.project-details-items img {
  border-radius: 10px;
}

@media (min-width: 1600px) {
  .project-details-main-info .title {
    padding-right: 15%;
  }
}

ul.project-info-list {
  border-bottom: 1px solid #dddddd;
  display: flex;
  gap: 50px;
  padding-bottom: 30px;
}

ul.project-info-list h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

ul.project-info-list p {
  margin: 0;
  font-weight: 500;
}

ul.project-info-list > li {
  flex-grow: 1;
}

ul.project-info-list > li:last-child {
  border: none;
}

ul.project-info-list ul li {
  margin-top: 5px;
}

.item-grid-container {
  display: grid;
  grid-row-gap: 60px;
}

.item-grid-container img {
  margin-top: 50px;
}

.item-grid-colum {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  grid-column-gap: 50px;
  grid-row-gap: 60px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  height: 100%;
}

.thumb-grid img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-details-items .check-list h2 {
  font-size: 24px;
}

.item-grid-colum .left-info h3 {
  display: flex;
  align-items: center;
}

.item-grid-colum .left-info h3 strong {
  position: relative;
  z-index: 1;
  margin-right: 25px;
  padding-right: 50px;
  font-size: 40px;
  color: var(--color-primary);
  font-weight: 700;
}

.bg-dark .item-grid-colum .left-info h3 strong {
  -webkit-text-stroke: 1px #cccccc;
}

.item-grid-colum .left-info h3 strong::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 2px;
  width: 30px;
  border-top: 1px solid;
  color: var(--color-primary);
}

.bg-dark .item-grid-colum .left-info h3 strong::after {
  border-top: 1px solid;
  color: var(--white);
}

.project-paginvation-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dddddd;
  padding-top: 60px;
  padding-bottom: 60px;
}

.default-padding-bottom .project-paginvation-items {
  padding-bottom: 0;
}

.bg-dark .project-paginvation-items {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-previous a,
.project-next a {
  display: flex;
  align-items: center;
}

.project-next a {
  text-align: right;
}

.project-previous .icon {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--bg-gray);
  margin-right: 15px;
  color: var(--color-heading);
  border: 1px solid #f2c3b5;
  border-radius: 5px;
}

.project-next .icon {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--bg-gray);
  margin-left: 15px;
  color: var(--color-heading);
  border: 1px solid #f2c3b5;
  border-radius: 5px;
}

.bg-dark .project-next .icon {
  background: var(--dark-optional);
  color: var(--white);
}

.project-previous strong,
.project-next strong {
  margin: 0;
}

.project-previous .nav-title,
.project-next .nav-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
}

.project-previous .nav-title strong,
.project-next .nav-title strong {
  text-transform: none;
  font-size: 20px;
  margin-top: 3px;
  display: block;
  line-height: 1.2;
}

.project-paginvation-items .project-all i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--color-primary);
  color: var(--white);
  border-radius: 5px;
  font-size: 23px;
  font-weight: 300;
}

.project-previous .icon i,
.project-next .icon i {
  font-weight: 500;
}

.blockquote {
  display: flex;
  padding: 50px;
  border-radius: 7px;
  gap: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.blockquote::after {
  position: absolute;
  left: 50%;
  bottom: -100px;
  content: "";
  transform: translateX(-50%);
  height: 200px;
  width: 30%;
  background: var(--color-primary);
  z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
}

.blockquote i {
  display: inline-block;
  height: 70px;
  width: 70px;
  min-width: 70px;
  background: var(--color-primary);
  color: var(--white);
  text-align: center;
  line-height: 70px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 300;
  transform: rotate(180deg);
  border-radius: 5px;
  margin-top: 10px;
}

.blockquote p {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--white);
}

.blockquote p cite {
  display: block;
  font-style: normal;
  font-size: 18px;
  color: var(--white-secondary);
  margin-top: 15px;
  text-transform: uppercase;
}

.project-details-carousel {
  position: relative;
}

.project-details-carousel .project-details-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.project-details-carousel
  .project-details-pagination
  .swiper-pagination-bullet {
  background: var(--white);
  height: 15px;
  width: 15px;
  margin: 0;
  transition: all 0.35s ease-in-out;
  border: 1px solid var(--white);
  opacity: 1;
  border-radius: 50%;
  padding: 0;
}

.project-details-carousel
  .project-details-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.3);
  background: var(--color-primary);
}

/* ============================================================== 
    # Process Style One
=================================================================== */
.process-style-one-area {
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.process-style-one-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: flex-start;
}

.process-style-one-item {
  background: var(--white);
  padding: 60px 50px;
  border-radius: 10px;
  text-align: center;
}

.process-style-one-item .icon img {
  height: 150px;
}

.process-style-one-item:nth-child(2) {
  margin-top: 200px;
}

.process-style-one-items .shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  top: 80px;
  max-width: 45%;
}

.process-style-one-item h2 {
  font-size: 24px;
}

.process-style-one-item p {
  margin: 0;
}

.process-style-one-item span {
  background: var(--bg-gradient);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 10px;
  margin-top: 30px;
  display: block;
  text-transform: uppercase;
}

/* ============================================================== 
    # Team Style One
=================================================================== */
.team-one-thumb-items {
  position: relative;
  height: 100%;
}

.team-one-thumb-item {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  object-fit: contain;
  object-position: center;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.team-one-thumb-item.active {
  opacity: 1;
  visibility: visible;
}

.team-one-thumb-item img {
  transition: all 0.35s ease-in-out;
  transform: scale(0.9);
}

.team-one-thumb-item.active img {
  transform: scale(1);
}

ul.list-social {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 5px;
}

ul.list-social li a i {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  height: 42px;
  width: 42px;
  text-align: center;
  line-height: 43px;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
}

.team-one-content-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.team-one-content-info ul.list-social {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  right: -60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-in-out;
}

.active .team-one-content-info ul.list-social {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.team-one-content-info h4,
.team-one-content-info h2 {
  margin: 0;
  font-size: 24px;
}

.team-one-content-list .item {
  padding: 25px 0;
  border-top: 1px solid #cccccc;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease-in-out;
}

.team-one-content-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #cccccc;
}

.team-hire-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.team-hire-card h3 {
  font-size: 24px;
}

.team-one-content-info span {
  transition: all 0.35s ease-in-out;
  position: relative;
}

.active .team-one-content-info span {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
}

.team-one-thumb-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================== 
    # Team Style Two
=================================================================== */
.team-style-two-item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.team-style-two-item img {
  border-radius: 10px 10px 10px 0;
}

.team-style-two-item .info {
  position: absolute;
  left: 0;
  bottom: -5px;
  display: inline-block;
  background: var(--white);
  padding: 20px;
  width: 80%;
  padding-bottom: 0;
  padding-left: 0;
  clip-path: polygon(92% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
}

.team-style-two-item .info h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-style-two-item .info span {
  text-transform: uppercase;
}

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

.team-social ul li {
  float: left;
}

.team-style-two-item .team-social {
  position: absolute;
  bottom: 79px;
  left: -50px;
  background: var(--color-primary);
  clip-path: polygon(92% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.team-style-two-item .team-social li a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.team-style-two-item .team-social li:last-child a {
  border: navajowhite;
}

.team-style-two-item:hover .team-social {
  left: 0;
  opacity: 1;
}

/* Join Card */
.join-card a {
  display: inline-block;
  animation: spinner 20s infinite linear;
}

.join-card {
  display: inline-block;
  width: 260px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
  border: 12px solid var(--white);
  border-radius: 50%;
}

.join-card::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  transform: translate(-50%, -50%) rotate(-45deg);
  color: var(--white);
  font-size: 45px;
  font-weight: 900;
}

.join-team-wrap {
  position: relative;
  z-index: 1;
}

.join-team-wrap::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 120px;
  width: 100%;
  background: var(--bg-gray-secondary);
  z-index: -1;
}

.join-team-wrap.shape-less::after {
  display: none;
}

/* ============================================================== 
    # Team Single
=================================================================== */

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

.team-single-items .thumb img {
  border-radius: 10px;
  width: 100%;
}

@media (min-width: 992px) {
  .team-single-items .thumb {
    position: sticky;
    top: 160px;
  }
}

.team-single-area .right-info .social {
  display: flex;
  margin-top: 35px;
  font-weight: 600;
  align-items: center;
}

.team-single-area .right-info .social h4 {
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 25px;
}

.team-single-area .right-info .social ul {
  margin: 0;
  padding: 0;
  border: none;
}

.team-single-area .right-info .social .share-link {
  position: relative;
  z-index: 1;
  margin-left: 15px;
  padding-right: 20px;
}

.team-single-area .right-info .social .share-link > i {
  display: inline-block;
  height: 45px;
  background: var(--dark);
  line-height: 45px;
  width: 45px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
}

.bg-dark .team-single-area .right-info .social .share-link > i {
  background: var(--white);
  color: var(--color-heading);
}

.team-single-area .right-info .social ul {
  display: flex;
  list-style-type: none;
  grid-gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0s;
}

.team-single-area .right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

.team-single-area .right-info .social ul li {
  display: inline-block;
  margin: 0;
}

.team-single-area .right-info .social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: #f1f1f1;
  text-align: center;
  border-radius: 50%;
  color: var(--color-heading);
}

.team-single-items .about ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 25px;
}

.team-single-items .about ul li {
  margin-top: 10px;
  font-size: 18px;
  color: var(--color-heading);
  font-weight: 500;
}

.bg-dark .team-single-items .about ul li {
  color: var(--white);
}

.team-single-items .about ul li a {
  color: var(--color-paragraph);
  font-weight: 500;
}

.bg-dark .team-single-items .about ul li a {
  color: var(--white-secondary);
}

.team-single-items .about ul li a:hover {
  color: var(--color-primary);
}

.color-secondary .team-single-items .about ul li a:hover {
  color: var(--color-primary-two);
}

.team-single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.team-single-area .right-info .title {
  margin-bottom: 10px;
}

.team-single-area .right-info .about span {
  display: block;
  margin-bottom: 20px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
}

.color-secondary .team-single-area .right-info .about span {
  color: var(--color-primary-two);
}

.team-list-item h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.team-list-item h3 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-list-item span {
  text-transform: none;
  margin-bottom: 5px;
  color: var(--color-heading);
  display: block;
}

.bg-dark .team-list-item span {
  color: var(--white-secondary);
}

.team-list-item li {
  margin-top: 30px;
}

.team-list-item li:first-child {
  margin-top: 0;
}

.team-single-list ul {
  border: none;
  margin-top: 0;
  padding: 0;
}

.team-list-item ul {
  border-left: 1px solid;
  padding-left: 25px;
}

.team-list-item ul li {
  position: relative;
  z-index: 1;
}

.team-list-item ul li::after {
  position: absolute;
  left: -33px;
  top: 3px;
  content: "";
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--white);
}

.color-secondary .team-list-item ul li::after {
  border: 2px solid var(--color-primary-two);
}

.bg-dark .team-list-item ul li::after {
  background: var(--dark);
}

.skill-items .progress {
  overflow: inherit;
  height: 10px;
  border-radius: 50px;
  background: #e4e5e7;
}

.skill-items h2 {
  font-size: 28px;
}

.bg-dark .skill-items .progress {
  background: #869099;
}

.skill-items .progress .progress-bar {
  background: var(--color-primary);
  overflow: inherit;
  border-radius: 30px;
  position: relative;
}

.color-secondary .skill-items .progress .progress-bar {
  background: var(--color-primary-two);
}

.progress-box:first-child {
  margin-top: 0;
}

.progress-box {
  margin-top: 35px;
}

.skill-items .progress-box h3 {
  font-size: 20px;
  font-weight: 500;
}

.skill-items .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -45px;
  background: #e8e6e6;
  border-radius: 5px;
  font-weight: 600;
  padding: 0px 8px;
  display: inline-block;
  color: var(--color-heading);
  font-size: 17px;
}

.bg-dark .skill-items .progress .progress-bar span {
  background: var(--white);
}

.skill-items .progress .progress-bar span::after {
  position: absolute;
  left: 3px;
  bottom: -10px;
  content: "";
  height: 11px;
  width: 12px;
  background: var(--white-secondary);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.contact-form-card {
  padding: 80px;
  border-radius: 10px;
  background: #f0f0f2;
}

.bg-dark .contact-form-card {
  background: #323441;
}

.contact-form-card p {
  font-size: 17px;
}

.contact-form-card .sub-title {
  border-color: #c5c6ff;
  margin-bottom: 25px;
}

.contact-form-card .form-group {
  margin-bottom: 30px;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d6d6e2;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.bg-dark .contact-form-card .form-group input,
.bg-dark .contact-form-card .form-group textarea {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* CSS */
.bg-dark .contact-form-card .form-group input::-webkit-input-placeholder,
.bg-dark .contact-form-card .form-group textarea::-webkit-input-placeholder {
  /* Chrome */
  color: var(--white-secondary);
}

.bg-dark .contact-form-card .form-group input:-ms-input-placeholder,
.contact-form-card .form-group textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--white-secondary);
}

.bg-dark .contact-form-card .form-group input::-moz-placeholder,
.bg-dark .contact-form-card .form-group textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--white-secondary);
  opacity: 1;
}

.bg-dark .contact-form-card .form-group input:-moz-placeholder,
.bg-dark .contact-form-card .form-group textarea:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: var(--white-secondary);
  opacity: 1;
}

.contact-form-card .form-group textarea {
  height: 150px;
}

/* ============================================================== 
    # Testimonial One
=================================================================== */

.tesimonial-style-one-area {
  background-size: 28%;
  background-repeat: no-repeat;
  background-position: right bottom;
  overflow: hidden;
}

.testimonial-one-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  height: 100%;
}

.rating-card-one {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.rating-card-one h2 {
  margin: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  letter-spacing: -1px;
  border-radius: 5px;
  border: 1px solid;
}

.rating-card-one i {
  color: #ffb500;
  font-size: 16px;
}

.rating-card-one h3 {
  margin: 0;
  margin-top: 5px;
  font-size: 24px;
}

.testimonial-style-one-item {
  padding: 50px;
  background: var(--white);
  border-radius: 10px;
}

.testimonial-style-one-item .tm-provider {
  border-top: 1px solid #e4e0df;
  padding-top: 20px;
  margin-top: 50px;
  display: block;
}

.testimonial-style-one-item .tm-provider h4 {
  margin-bottom: 5px;
  font-size: 22px;
}

.testimonial-style-one-item .thumb img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.testimonial-style-one-item .thumb {
  height: 70px;
  width: 70px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.testimonial-one-left .thumb {
  position: relative;
  z-index: 1;
  max-width: 300px;
}

.testimonial-one-left .thumb img {
  border-radius: 8px;
}

.testimonial-one-left .thumb::after {
  position: absolute;
  left: 100%;
  top: -40px;
  content: "";
  height: 50px;
  width: 50px;
  background: var(--color-primary);
  border-radius: 7px;
  margin-left: -15px;
  z-index: -1;
}

.testimonial-one-left .thumb::before {
  position: absolute;
  left: 100%;
  top: -60px;
  content: "";
  height: 30px;
  width: 30px;
  background: #ffa387;
  margin-left: 20px;
  border-radius: 5px;
  z-index: -1;
}

.testimonial-style-one-item .thumb i {
  position: absolute;
  right: -11px;
  bottom: 0;
  height: 35px;
  width: 35px;
  background: var(--white);
  border-radius: 50%;
  color: var(--color-primary);
  line-height: 35px;
  font-size: 13px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid;
}

.testimonial-style-one-item .thumb i::before {
  top: 2px;
  position: relative;
}

.testimonial-style-one-item .item-ratings {
  position: absolute;
  right: 50px;
  top: 70px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-style-one-item .item-ratings i {
  font-size: 16px;
  position: relative;
  top: -1px;
  color: #ffba10;
}

/* ============================================================== 
    # Testimonial Style Two
=================================================================== */

.testimonial-style-two-area {
  background-repeat: no-repeat;
  background-position: left bottom;
}

.testimonial-two-wrap {
  position: relative;
  max-width: 50%;
  padding-top: 150px;
}

.testimonial-style-two-item {
  background: var(--bg-gray-secondary);
  padding: 80px;
  margin-left: inherit;
  position: relative;
  z-index: 1;
}

.testimonial-style-two-area.bg-gray-secondary .testimonial-style-two-item {
  background: var(--white);
}

.testimonial-style-two-items {
  position: relative;
}

.testimonial-thumb {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding-bottom: 60px;
  max-width: 80%;
}

.testimonial-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-style-two-item .quote-icon i {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary);
}

.testimonial-style-two-item p {
  font-size: 22px;
  line-height: 1.7;
}

.tm-provider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-top: 1px solid #cccccc;
  padding-top: 25px;
  margin-top: 25px;
  flex-direction: row-reverse;
}

.tm-provider .author img {
  height: 70px;
  min-width: 70px;
  width: 70px;
  border-radius: 50%;
}

.tm-provider .info h2 {
  margin-bottom: 5px;
  font-size: 24px;
}

.testimonial-two-nav-wrap {
  position: absolute;
  display: inline-flex;
  left: 100%;
  bottom: 0;
}

.testimonial-two-nav-wrap i {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--dark);
  color: var(--white);
  font-size: 20px;
  font-weight: 300;
}

.testimonial-two-nav-wrap .testimonial-two-next i {
  background: var(--color-primary);
}

.customer-list.style-two {
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 30px;
  display: inline-flex;
  padding-left: 45px;
  margin: 0;
}

.customer-list.style-two .info {
  margin-left: 20px;
}

.customer-list.style-two h2 {
  margin: 0;
  font-size: 24px;
  margin-bottom: 2px;
}

.customer-list.style-two .info i {
  color: #f7a003;
  font-size: 15px;
  margin-right: -2px;
}

.customer-list.style-two img {
  height: 60px;
  width: 60px;
}

.customer-list.style-two > span,
.customer-list.style-two > i {
  height: 60px;
  width: 60px;
  min-width: 60px;
  line-height: 60px;
  font-size: 18px;
}

/* ============================================================== 
    # Faq
=================================================================== */
.accordion-style-three-item button.accordion-button {
  box-shadow: none;
  padding: 25px 30px;
  font-size: 20px;
  background: transparent;
  border-radius: 10px;
  padding-right: 85px;
  line-height: 1.4;
}

.accordion-secondary .accordion-style-three-item button.accordion-button {
  border: 2px solid var(--white);
}

.accordion-style-three-item button.accordion-button::before {
  position: absolute;
  right: 30px;
  top: 20px;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  height: 35px;
  width: 35px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 15px;
}

.gray-version .accordion-style-three-item button.accordion-button::before {
  background: transparent;
  color: var(--color-heading);
  border: 1px solid #dddddd;
}

.accordion-style-three-item button.accordion-button:not(.collapsed)::before {
  -webkit-transform: inherit;
  transform: inherit;
  content: "\f068";
}

.accordion-style-three-item button.accordion-button:not(.collapsed) {
  background: var(--dark);
  border-radius: 0;
  border: none;
  color: var(--white);
}

.gray-version
  .accordion-style-three-item
  button.accordion-button:not(.collapsed) {
  background: var(--bg-gray-secondary);
  color: var(--color-heading);
}

.accordion-style-three-item button.accordion-button:not(.collapsed)::before {
  background: var(--white);
  color: var(--color-heading);
}

.accordion-style-three-item .accordion-body {
  background: var(--white);
  position: relative;
  z-index: 1;
  padding: 30px;
}

.accordion-style-three-item {
  overflow: hidden;
  border-radius: 10px;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid;
}

.gray-version .accordion-style-three-item {
  border: 1px solid #dddddd;
}

.accordion-style-three-item .accordion-body p {
  margin: 0;
}

.accordion-style-three-item:first-child {
  margin-top: 0;
}

.accordion-style-three-item button.accordion-button::after {
  display: none;
}

.funfact-card {
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.funfact-card h2,
.funfact-card h4 {
  margin: 0;
  font-size: 20px;
}

.funfact-card .js-counter {
  font-size: 45px;
  line-height: 1;
  margin-bottom: 30px;
  color: var(--color-heading);
  font-weight: 600;
}

.text-light.funfact-card .js-counter {
  color: var(--white);
}

.funfact-card i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-heading);
}

.funfact-card:nth-child(2) i {
  transform: translateY(-50%) rotate(90deg);
}

.text-light.funfact-card i {
  color: var(--white);
}

/* ============================================================== 
    # Promotional Brand
=================================================================== */

.brand-two-items {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.brand-content {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation-name: marqee_left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-duration: 20s;
  gap: 40px;
}

.promotional-brand-one.bg-dark .brand-content {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation-name: marqee_left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-duration: 20s;
}

.brand-content h2 {
  margin: 0;
  font-size: 50px;
  margin: 0 50px;
  font-weight: 600;
  line-height: 1.4;
}

.brand-content .item {
  position: relative;
  display: flex;
  white-space: nowrap;
  gap: 10px;
  font-size: 20px;
}

.brand-content .item::after {
  position: absolute;
  right: -25px;
  top: 50%;
  content: "";
  height: 60px;
  width: 10px;
  border: 2px solid;
  transform: rotate(-15deg) translateY(-50%);
  opacity: 0.7;
}

.brand-content .item:nth-child(2n):after {
  transform: rotate(15deg) translateY(-50%);
}

.promotional-brand-one h2 {
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 800;
}

.brand-content .item span {
  width: 35px;
  margin-right: 5px;
}

.promotional-brand-one .brand-content .item:nth-child(2n) h2 {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  border: none;
}

@keyframes marqee_left {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

/* ============================================================== 
    # Brand Style One
=================================================================== */
.brand-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.brand-area::after {
  position: absolute;
  right: 60%;
  top: 0;
  content: "";
  height: 100%;
  width: 60%;
  background: var(--color-primary);
  z-index: -1;
  transform: skewX(-11deg);
}

.brand-area::before {
  position: absolute;
  right: 60%;
  top: 0;
  content: "";
  height: 100%;
  width: 20px;
  background: var(--bg-gray-secondary);
  transform: skewX(-11deg);
  margin-right: 20px;
}

.brand-area h2 {
  margin-bottom: 0;
}

/* ============================================================== 
    # Blog Style One
=================================================================== */

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

.shape-top-right {
  position: absolute;
  right: 10%;
  top: 0;
  z-index: -1;
}

.blog-style-one {
  background: var(--white);
  padding: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog-style-one img {
  height: 100%;
}

.blog-card {
  padding: 30px;
}

.blog-card h2 {
  line-height: 1.4;
  font-size: 24px;
}

.blog-card .info > i {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
}

.color-style-eight .blog-card .info > i {
  color: var(--color-style-eight);
}

.blog-card .meta li,
.blog-card .meta li a {
  color: var(--white-secondary);
}

.blog-style-one .meta {
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.blog-style-one .blog-card {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  top: 20%;
  transition: all 0.35s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-style-one:hover .blog-card,
.active .blog-style-one .blog-card {
  top: 15px;
  visibility: visible;
  opacity: 1;
}

/* ============================================================== 
    # Blog Style Two
=================================================================== */
.blog-style-two-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--white);
}

.blog-style-two-item .thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  right: 0;
  top: 0;
  min-width: 170%;
}

ul.meta-style-two {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.blog-style-two-item h2 {
  font-size: 28px;
}

.blog-style-two-item p {
  margin-bottom: 20px;
}

.blog-style-two-item .info {
  background: var(--white);
  position: relative;
  z-index: 1;
  padding-right: 30px;
  padding-top: 10px;
}

.blog-style-two-item .thumb {
  position: relative;
  height: 100%;
}

.blog-style-two-item .meta-style-two {
  padding-top: 30px;
}

ul.meta-style-two a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  padding: 4px 20px;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

ul.meta-style-two li:first-child a {
  background: var(--dark);
}

/* ============================================================== 
    # Quick Contact
=================================================================== */
.quick-contact-area video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quick-contact-wrap {
  position: relative;
  z-index: 1;
  margin-right: -50px;
}

.quick-contact-wrap form {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px;
  padding-top: 65px;
  backdrop-filter: blur(10px);
  border-radius: 0 0 10px 10px;
}

.quick-contact-wrap h2 {
  margin-bottom: 30px;
}

.quick-contact-wrap textarea {
  height: 150px;
}

.quick-contact-wrap form input,
.quick-contact-wrap form textarea {
  background: transparent;
  border: none;
  border-bottom: none !important;
  border-radius: 0;
  padding: 13px 30px;
  box-shadow: none;
  padding-right: 30px;
  font-weight: 400;
  padding-top: 18px;
}

.quick-contact-wrap form input:focus,
.quick-contact-wrap form textarea:focus {
  background: transparent;
  box-shadow: none !important;
}

.quick-contact-wrap .form-group {
  border: 1px solid;
  position: relative;
  border-radius: 10px;
  margin-bottom: 37px;
}

.quick-contact-wrap .form-group label {
  background: #edeeee;
  position: absolute;
  top: -16px;
  left: 20px;
  padding: 0 10px;
  font-weight: 600;
  color: var(--color-heading);
}

.contact-style-two-items .quick-contact-wrap .form-group label {
  background: var(--white);
}

.quick-contact-wrap form textarea {
  padding-top: 25px;
}

.quick-contact-wrap .top-info {
  background: var(--color-primary);
  padding: 30px 60px;
  border-radius: 10px 10px 0 0;
}

.quick-contact-wrap .top-info h2 {
  margin-bottom: 10px;
}

.quick-contact-wrap .top-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.quick-contact-wrap .top-info ul li {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  font-size: 16px;
}

.quick-contact-wrap .top-info ul li::after {
  position: absolute;
  left: -18px;
  top: 11px;
  content: "";
  height: 6px;
  width: 6px;
  background: var(--white);
  border-radius: 50%;
}

.quick-contact-wrap .top-info ul li:first-child::after {
  display: none;
}

.quick-contact-area {
  overflow: hidden;
}

.contact-shape {
  position: relative;
}

.contact-shape img {
  position: absolute;
  left: -75px;
  top: -150px;
  z-index: 2;
  width: 117px;
}

/* ============================================================== 
    # Contact
=================================================================== */

.contact-style-two-items {
  background-repeat: no-repeat;
  background-position: left center;
}

.contact-style-two-items .quick-contact-wrap {
  margin-right: 0;
}

.google-maps iframe {
  height: 650px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: -15px;
}

.contact-style-two-items {
  background-repeat: no-repeat;
  background-position: left center;
}

.contact-style-two-items .quick-contact-wrap .top-info {
  background: var(--dark);
}

.contact-style-two-info h1,
.contact-style-two-info h2 {
  margin-bottom: 40px;
}

.contact-style-two-info li {
  display: flex;
  margin-top: 50px;
}

.contact-style-two-info li:first-child {
  margin-top: 0;
}

.contact-style-two-info li .icon {
  display: inline-flex;
  height: 70px;
  width: 70px;
  min-width: 70px;
  text-align: center;
  line-height: 70px;
  background: var(--color-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  margin-right: 20px;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.contact-style-two-info li:nth-child(2) .icon {
  background: var(--color-secondary);
}

.contact-style-two-info li:nth-child(3) .icon {
  background: var(--dark);
}

.contact-style-two-info li p {
  margin: 0;
}

.contact-style-two-info li h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-style-two-info li a {
  font-weight: 400;
}

.contact-style-two-info li h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

/* ============================================================== 
    # Footer
=================================================================== */
footer.footer-style-one {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 100px;
  align-items: center;
}

.newsletter-flex {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: flex-end;
}

.newsletter-flex h3 {
  margin: 0;
}

.footer-top .logo img {
  height: 56px;
}

form.newsletter-style-one {
  position: relative;
  z-index: 1;
}

form.newsletter-style-one input {
  background: var(--white);
  box-shadow: none;
  border: none;
  padding: 15px;
  min-height: 60px;
  min-width: 470px;
}

form.newsletter-style-one button {
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--color-primary);
  border: none;
  height: 42px;
  width: 42px;
  border-radius: 5px;
}

.color-style-eight form.newsletter-style-one button {
  background: var(--color-style-eight);
}

.footer-style-one .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px 0;
}

.footer-bottom p {
  margin: 0;
}

ul.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-end ul.link-list {
  justify-content: flex-end;
}

ul.link-list li a {
  font-weight: 400;
}

footer a {
  font-weight: 400;
}

footer.text-light,
footer.text-light li,
footer.text-light p,
footer.text-light a {
  color: var(--white-secondary);
}

footer.text-light a:hover {
  color: var(--white);
}

footer ul.social-profile {
  justify-content: flex-start;
}

.footer-style-one .f-item.about {
  position: relative;
  z-index: 1;
}

.footer-style-one .f-item.about::after {
  position: absolute;
  right: 0;
  top: -80%;
  content: "";
  height: 500%;
  width: 2px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-style-one .f-items {
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 120px;
}

.widget-title {
  margin-bottom: 30px;
}

footer ul.useful-link {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer ul.useful-link li {
  margin-top: 12px;
}

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

ul.contact-list li h5 {
  margin-bottom: 5px;
  font-size: 20px;
}

ul.contact-list li {
  margin-top: 20px;
}

ul.social-profile {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

ul.social-profile li a i {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
}

.text-light ul.social-profile li a i {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

ul.social-profile li a {
  display: inline-block;
  border-radius: 50%;
}

ul.social-profile li a:hover {
  background: var(--color-primary);
  color: var(--white);
}

/* ============================================================== 
    # 404 page
=================================================================== */

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

.error-page-area .shape-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: left !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-page-area .shape-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 20%;
  background-position: right !important;
  background-repeat: no-repeat !important;
  z-index: -1;
  opacity: 0.3;
  background-size: contain !important;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Responsive
=================================================================== */

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  /* Banner */
  .banner-style-two-area {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }

  /* Services */
  .shape-style-one {
    max-width: 50%;
  }

  /* Project Style Two */

  .project-style-one-carousel {
    margin-top: 30px;
  }

  .swiper-slide-active .project-style-one-item .project-card-info {
    left: 0;
  }

  .project-style-one-item > img {
    height: auto;
    position: inherit;
  }

  .project-style-one-item {
    padding: 0;
  }

  .project-style-one-item .project-card-info {
    border: 1px solid #dddddd;
    border-top: none;
    padding: 37px;
  }

  .project-style-one-item .project-card-info {
    bottom: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    padding: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /* Default CSS */
  .title {
    font-size: 48px !important;
  }

  /* Banner*/
  .banner-style-two-item .content h1 {
    font-size: 100px;
  }

  .banner-style-two-item .content h2 {
    font-size: 100px;
  }

  .banner-style-two-item .content .info {
    padding-left: 150px;
  }

  .banner-style-two-area {
    margin: 0;
    border-radius: 0;
    max-width: 100%;
  }

  /* Banner Style One */
  .banner-style-two-wrap .content h1 {
    font-size: 80px;
  }

  /* Services */
  .shape-style-one {
    max-width: 50%;
  }

  /* About */
  .about-style-two-area .shape {
    max-width: 50%;
  }

  .about-style-two-area {
    padding-top: 220px;
  }

  .about-style-two-area .illustration img {
    max-width: 70%;
  }

  .about-heading-right-info {
    margin-bottom: 10px;
  }

  .about-style-two-info {
    margin-right: -80px;
  }

  /* Process */
  .process-style-one-items {
    gap: 30px;
  }

  /* Why Choose Us */
  .client-counter-card {
    padding: 30px;
    min-width: 250px;
  }

  .active-client-overview {
    padding: 30px;
  }

  /* Portfolio */
  .accordion-portfolio-lists li {
    width: 15%;
    min-width: 220px;
  }

  .accordion-portfolio-lists li.out {
    width: 37%;
  }

  .accrdion-portfolio-area .accordion-overlay {
    padding: 0;
  }

  .accrdion-portfolio-area .accordion-overlay h2 {
    font-size: 30px;
  }

  /* Project Style Two */

  .project-style-one-carousel {
    margin-top: 30px;
  }

  .swiper-slide-active .project-style-one-item .project-card-info {
    left: 0;
  }

  .project-style-one-item > img {
    height: auto;
    position: inherit;
  }

  .project-style-one-item {
    padding: 0;
  }

  .project-style-one-item .project-card-info {
    border: 1px solid #dddddd;
    border-top: none;
    padding: 37px;
  }

  .project-style-one-item .project-card-info {
    bottom: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    padding: 40px;
  }

  /* Team */
  .team-hire-card {
    padding: 30px;
  }

  .team-hire-card .btn-style-one span {
    font-size: 16px;
    padding: 0 18px;
  }

  /* Testimonial */
  .heading-left .customer-list.style-two {
    margin-right: -40px;
  }

  .testimonial-thumb {
    max-width: 70%;
  }

  .testimonial-style-two-item {
    padding: 60px;
  }

  /* Blog */
  .blog-card h2 {
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Default CSS */
  .title {
    font-size: 48px !important;
  }

  /* Banner Style One*/

  .banner-style-two-area {
    margin: 0;
    border-radius: 0;
    max-width: 100%;
  }

  .banner-style-two-area,
  .banner-style-two-area div {
    height: auto;
  }

  .banner-style-two-item {
    padding-top: 180px;
    padding-bottom: 200px;
  }

  .banner-style-two-item .content h1 {
    font-size: 100px;
  }

  .banner-style-two-item .content h2 {
    font-size: 100px;
  }

  .banner-style-two-item .info p {
    font-size: 17px;
    padding-right: 20px;
  }

  .banner-style-two-area div .card-wrap {
    bottom: -150px;
  }

  .banner-style-two-area div.banner-fade-navs {
    left: 105px;
    position: relative;
  }

  /* Banner Style Two */

  .banner-style-three-area,
  .banner-style-three-area div {
    height: auto;
  }

  .banner-style-two-wrap .content h1 {
    font-size: 70px;
  }

  .consultation-card {
    max-width: 400px;
    padding: 50px;
    bottom: -120px;
  }

  .consultation-card > img {
    display: none;
  }

  .banner-style-two-wrap {
    padding-top: 130px;
    padding-bottom: 120px;
  }

  /* Servies */
  .service-heading-card {
    padding: 80px;
    margin-bottom: 30px;
  }

  .shape-style-one {
    width: 50%;
  }

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

  /* About */
  .about-style-two-area {
    padding-top: 150px;
  }

  .about-style-two-area.pt-220 {
    padding-top: 210px;
  }

  .about-style-two-area .shape {
    display: none;
  }

  .about-heading-right-info {
    margin: 0;
    border-top: 1px solid #dddddd;
    padding-top: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-light .about-heading-right-info {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 0;
  }

  .about-style-two-card {
    display: none;
  }

  /* Why Choose Us */
  .choose-us-style-one-area .choose-us-style-one-thumb {
    display: none;
  }

  .shape-right-bottom {
    max-width: 60%;
  }

  .client-counter-card {
    min-width: 400px;
    padding: 80px;
  }

  /* Feature */
  .feature-style-one-item {
    padding: 0 37px;
  }

  .feature-style-one-item h2 {
    font-size: 22px;
  }

  /* Services Details*/

  .services-single-content .card-style-six {
    margin-top: 50px;
    height: auto;
  }

  .services-single-content .content .list-style-two {
    margin-bottom: 30px;
  }

  .services-style-three-items .services-style-two-item {
    margin-top: 30px;
    height: auto;
  }

  .quick-contact-widget {
    padding: 30px;
    padding-top: 200px;
  }

  /* Process */
  .process-style-one-items {
    gap: 30px;
  }

  .process-style-one-item {
    padding: 30px;
  }

  /* Portfolio */
  .accordion-portfolio-lists li,
  .accordion-portfolio-lists li.out {
    width: auto;
  }

  .accordion-portfolio-lists {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Project Style Two */
  .project-style-one-carousel {
    margin-top: 30px;
  }

  .swiper-slide-active .project-style-one-item .project-card-info {
    left: 0;
    padding: 60px;
  }

  .project-style-one-item > img {
    height: auto;
    position: inherit;
  }

  .project-style-one-item {
    padding: 0;
  }

  .project-style-one-item .project-card-info {
    border: 1px solid #dddddd;
    border-top: none;
    padding: 37px;
  }

  .project-style-one-item .project-card-info {
    bottom: 0;
  }

  .heading-left .sub-title {
    margin-bottom: 15px;
  }

  /* Project Details */
  .item-grid-colum {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Testimonial */
  .customer-list.style-two {
    padding: 30px 20px;
    padding-left: 35px;
  }

  .testimonial-thumb {
    display: none;
  }

  .testimonial-two-wrap {
    max-width: 100%;
    padding-top: 0;
  }

  .testimonial-style-two-item {
    padding: 120px;
    border-radius: 10px;
  }

  .testimonial-two-nav-wrap {
    left: 120px;
    z-index: 2;
  }

  .testimonial-style-two-area .heading-left {
    text-align: center;
  }

  .testimonial-style-two-area .customer-list {
    display: none;
  }

  /* Testimonial One */
  .testimonial-one-left {
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    height: auto;
    display: none;
  }

  .testimonial-one-left .thumb {
    display: none;
  }

  /* Team */
  .team-hire-card .btn-style-one span {
    font-size: 16px;
    padding: 0 20px;
  }

  /* Brand */
  .brand-area::after {
    width: 65%;
    right: 55%;
  }

  .brand-area::before {
    right: 55%;
    display: none;
  }

  /* Footer */
  .footer-item {
    padding-left: 15px;
  }

  .footer-style-one .f-item.about {
    padding-right: 0;
  }

  .footer-style-one .f-item.about br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
  .banner-style-two-item {
    padding-top: 120px;
  }

  .banner-style-two-wrap {
    padding-top: 70px;
  }
}

@media (min-width: 1024px) {
}

@media only screen and (max-width: 1023px) {
  .text-scroll-animation .text {
    color: var(--color-heading);
  }

  .bg-dark .text-scroll-animation .text {
    color: var(--white);
  }
}

/* Screen Mobile To Tablet */
@media screen and (max-width: 991px) {
  .back-to-top-wrapper {
    display: none;
  }
}

/* Tablet Layout: 768px.*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Default CSS */
  .title {
    font-size: 48px !important;
  }

  /* Banner */

  .banner-style-two-item .content h1 {
    font-size: 60px;
    margin-bottom: 10px;
  }

  .banner-style-two-item .content .info {
    padding: 0;
  }

  .banner-style-two-item .content h2 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 100px;
  }

  .banner-style-two-item .info p {
    padding-right: 0;
  }

  .banner-style-two-area div .card-wrap {
    position: inherit;
    right: 0;
    bottom: 0;
    display: none;
  }

  .card-style-one {
    width: 100%;
    padding: 30px;
    margin-top: 30px;
  }

  .banner-area .content {
    padding: 0;
  }

  .banner-style-two-item {
    padding-top: 140px;
    padding-bottom: 250px;
    position: relative;
    z-index: 1;
  }

  .banner-style-two-area div.banner-fade-control {
    bottom: 140px;
    text-align: center;
  }

  .banner-style-two-item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    opacity: 0.4;
  }

  /* Banner Style Two */
  .banner-style-two-wrap {
    padding: 100px 0;
  }

  .banner-style-two-wrap .content h1 {
    font-size: 90px;
  }

  .consultation-card {
    position: inherit;
    bottom: -120px;
    right: auto;
    left: 0;
    max-width: 100%;
    margin-top: -60px;
    padding-right: 300px;
  }

  .consultation-card > img {
    width: 250px;
  }

  .banner-style-three-area .content h2 {
    margin-top: 30px;
  }

  /* Services */
  .row.g-2 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
  }

  .services-style-two-item {
    clip-path: inherit;
    border-radius: 20px;
    padding: 50px 37px;
  }

  .services-style-two-item .icon img {
    margin-bottom: 80px;
  }

  .shape-style-one {
    max-width: 60%;
  }

  /* About */

  .about-style-two-area {
    padding-top: 150px;
  }

  .about-style-two-area .shape {
    display: none;
  }

  .about-heading-right-info {
    border-top: 1px solid #dddddd;
    margin-top: 30px;
    padding-top: 50px;
    margin-bottom: 35px;
  }

  .text-light .about-heading-right-info {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 0;
  }

  .about-style-two-area .illustration {
    display: none;
  }

  .about-style-two-card {
    height: auto;
    display: none;
  }

  /* About Style One */
  .site-heading .icon {
    display: none;
  }

  .shape-left-bottom {
    display: none;
  }

  /* Why Choose Us */

  .choose-us-style-one-area .choose-us-style-one-thumb {
    position: inherit;
    height: auto;
    width: 100%;
    padding: 0 12px;
    max-width: 720px;
    margin: auto auto 40px;
  }

  .slicer-path-wrap {
    display: none;
  }

  .choose-us-style-one-area .shape-right-bottom {
    max-width: 100%;
  }

  /* Feature */
  .feature-style-one-item::after {
    display: none;
  }

  .feature-style-one-item {
    padding: 0 12px;
  }

  .feature-style-one-item .item {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 10px;
  }

  /* Process */
  .process-style-one-items {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .process-style-one-items .shape {
    display: none;
  }

  .process-style-one-item:nth-child(2) {
    margin: 0;
  }

  /* Portfolio */
  .left-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .accordion-portfolio-lists li {
    min-height: 400px;
  }

  .accordion-portfolio-lists li,
  .accordion-portfolio-lists li.out {
    width: auto;
  }

  .accordion-portfolio-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .accrdion-portfolio-area .accordion-overlay {
    padding: 0;
  }

  .accrdion-portfolio-area .accordion-overlay h2 {
    font-size: 30px;
  }

  /* Project Style Two */
  .project-style-one-area::after {
    display: none;
  }

  .project-one-swiper-nav {
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 15px;
    margin-top: 30px;
  }

  .project-one-swiper-nav > div {
    background: var(--color-primary);
    color: var(--white);
  }

  .project-one-swiper-nav > div.project-one-prev {
    margin: 0;
  }

  .project-style-one-carousel {
    margin-top: 30px;
  }

  .swiper-slide-active .project-style-one-item .project-card-info {
    left: 0;
    padding: 60px;
  }

  .project-style-one-item > img {
    height: auto;
    position: inherit;
  }

  .project-style-one-item {
    padding: 0;
  }

  .project-style-one-item .project-card-info {
    border: 1px solid #dddddd;
    border-top: none;
    padding: 37px;
  }

  .project-style-one-item ul {
    grid-template-columns: 1fr;
  }

  .project-style-one-item .project-card-info {
    bottom: 0;
  }

  .heading-left .sub-title {
    margin-bottom: 15px;
  }

  /* Project Details */
  .thumb-grid img {
    height: auto;
  }

  .item-grid-colum {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Testimonial */

  .testimonial-style-two-area {
    text-align: center;
  }

  .customer-list.style-two {
    margin-bottom: 50px;
  }

  .testimonial-thumb {
    display: none;
  }

  .testimonial-two-wrap {
    max-width: 100%;
    padding: 0;
    margin-top: 10px;
  }

  .testimonial-style-two-item {
    padding: 80px;
    border-radius: 10px;
    text-align: center;
  }

  .testimonial-two-nav-wrap {
    position: inherit;
    left: auto;
    margin-top: 50px;
    gap: 15px;
  }

  .tm-provider {
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .testimonial-style-two-item p {
    font-size: 18px;
    line-height: 1.8;
  }

  .testimonial-two-nav-wrap i {
    border-radius: 50%;
  }

  /* Testimonial One */
  .rating-card-one {
    justify-content: center;
  }

  .testimonial-one-left .thumb {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .testimonial-one-left .thumb img {
    width: 100%;
  }

  .testimonial-one-left .thumb::before,
  .testimonial-one-left .thumb::after {
    display: none;
  }

  .testimonial-style-one-item .tm-provider {
    text-align: left;
  }

  .testimonial-one-left {
    gap: 50px;
  }

  .testimonial-style-one-item {
    padding: 50px 37px;
  }

  /* Brand */

  .brand-area {
    text-align: center;
  }

  .brand-area::before,
  .brand-area::after {
    display: none;
  }

  .brand-area h2 {
    color: var(--color-heading);
    font-size: 48px;
  }

  .brand-style-one-carousel {
    margin-top: 50px;
  }

  .brand-item img {
    height: 80px;
  }

  /* Team Style Two */

  .team-one-thumb-items {
    height: auto;
    margin-bottom: 50px;
  }

  .team-one-thumb-item {
    position: inherit;
    display: none;
  }

  .team-one-thumb-item.active {
    display: block;
  }

  .team-hire-card {
    height: auto;
    justify-content: center;
    align-items: center;
  }

  /* Service Details */
  .card-style-seven {
    height: auto;
    padding: 50px;
  }

  .card-style-six .info {
    padding: 50px;
  }

  .card-style-six .thumb::after {
    display: none;
  }

  .card-style-six .thumb {
    margin: 0;
    padding: 30px;
    padding-top: 0;
  }

  .quick-contact-widget {
    padding: 30px;
    padding-top: 200px;
  }

  .card-style-seven h2 {
    margin-top: 50px;
  }

  /* Faq */

  .accordion-style-one-area .heading {
    text-align: center;
  }

  .accordion-style-one-area {
    padding-top: 60px;
  }

  .accordion-style-three {
    margin-top: 20px;
  }

  /* Blog */
  .blog-style-two-item {
    background: var(--bg-gray-secondary);
  }

  .blog-style-two-item .info {
    background: var(--bg-gray-secondary);
    padding: 30px;
    padding-top: 10px;
  }

  .blog-style-two-item .meta-style-two {
    padding-left: 30px;
  }

  /* Blog */
  .blog-card h2 {
    font-size: 24px;
  }

  .blog-area .meta li {
    font-size: 15px;
  }

  /* Contact */
  .quick-contact-wrap {
    margin: 0;
  }

  .contact-style-two-items .quick-contact-wrap .top-info {
    background: var(--color-primary);
  }

  .contact-shape {
    display: none;
  }

  .google-maps iframe {
    height: 400px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 0;
    border: none;
    padding-top: 140px;
    display: none;
  }

  .newsletter-flex {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 50px;
    display: none;
  }

  .newsletter-flex h3 {
    margin-bottom: 30px;
  }

  form.newsletter-style-one input {
    min-width: 100%;
  }

  .footer-style-one .f-item.about::after {
    display: none;
  }

  .footer-style-one .f-items {
    padding-top: 90px;
    padding-bottom: 140px;
  }

  footer p br {
    display: none;
  }

  .footer-style-one .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-end {
    text-align: center !important;
  }

  .footer-bottom .text-end ul.link-list {
    justify-content: center;
    margin-top: 10px;
  }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  /* Default CSS */
  .title {
    font-size: 36px;
  }

  /* Banner */
  .banner-style-two-area,
  .banner-style-two-area div {
    height: auto;
  }

  .banner-style-two-item .content h1 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .banner-style-two-item .content .info {
    padding: 0;
  }

  .banner-style-two-item .content h2 {
    font-size: 50px;
    margin: 0;
    margin-bottom: 20px;
  }

  .banner-style-two-item .info p {
    padding-right: 0;
    font-size: 17px;
    line-height: 1.8;
  }

  .banner-style-two-area div .card-wrap {
    position: inherit;
    right: 0;
    bottom: 0;
  }

  .card-style-one {
    width: 100%;
    padding: 30px;
    margin-top: 30px;
  }

  .banner-area .content {
    padding: 0;
  }

  .banner-style-two-item {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
  }

  .banner-style-two-area div.banner-fade-control {
    bottom: 70px;
    text-align: center;
    display: none;
  }

  .banner-style-two-item::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    opacity: 0.4;
  }

  /* Banner Two */
  .consultation-card {
    position: relative;
    right: 0;
    padding: 50px;
    margin-top: 40px;
    border-radius: 15px;
    display: none;
  }

  .banner-style-three-area,
  .banner-style-three-area div {
    height: auto;
  }

  .consultation-card > img {
    display: none;
  }

  .banner-style-two-wrap .content h1 {
    font-size: 46px;
    line-height: 1.1;
  }

  .banner-style-two-wrap {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .banner-style-three-area .content h2 {
    margin-top: 35px;
    font-size: 24px;
    padding-left: 20px;
  }

  .consultation-card h2 {
    font-size: 24px;
  }

  /* About */
  .about-style-two-area {
    padding-top: 70px;
  }

  .about-heading-right-info {
    margin: 0;
    margin-bottom: 30px;
    margin-top: 20px;
    border-top: 1px solid #dddddd;
    padding-top: 30px;
  }

  .text-light .about-heading-right-info {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0;
  }

  ul.card-style-two {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }

  .card-two-item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    border-radius: 10px;
  }

  .card-two-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    border-radius: 10px;
  }

  .card-two-item {
    text-align: center;
  }

  li.card-two-item .js-counter {
    justify-content: center;
  }

  .about-style-two-area .illustration {
    display: none;
  }

  .about-style-two-area .shape {
    display: none;
  }

  /* About Two */
  .site-heading .icon {
    display: none;
  }

  .accordion-style-two .accordion-item .accordion-button {
    padding: 40px 30px;
  }

  .accordion-style-two .accordion-item .accordion-body {
    padding: 30px;
  }

  .shape-left-bottom {
    display: none;
  }

  /* Why Choose Us */
  .choose-us-style-one-area .choose-us-style-one-thumb {
    position: inherit;
    height: auto;
    width: 100%;
    padding: 0 12px;
    max-width: 540px;
    margin: auto auto 40px;
  }

  .slicer-path-wrap {
    display: none;
  }

  .flex-card {
    display: grid;
    gap: 30px;
  }

  /* Feature */
  .feature-style-one-item::after {
    display: none;
  }

  .feature-style-one-item {
    padding: 0 12px;
  }

  .feature-style-one-item .item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
  }

  /* Service */
  .services-style-two-item {
    border-radius: 20px;
    clip-path: inherit;
    height: auto;
    padding: 50px 35px;
  }

  .services-style-two-item .icon img {
    margin-bottom: 50px;
  }

  .row.g-2 {
    --bs-gutter-y: 30px;
  }

  .service-heading-card {
    padding: 30px;
  }

  /* Service Details */
  .card-style-seven {
    height: auto;
    padding: 30px;
  }

  .card-style-six .info {
    padding: 30px;
  }

  .card-style-six .thumb::after {
    display: none;
  }

  .card-style-six .thumb {
    margin: 0;
    padding: 30px;
    padding-top: 0;
  }

  .quick-contact-widget {
    padding: 30px;
    padding-top: 200px;
  }

  .card-style-seven h2 {
    margin-top: 50px;
  }

  /* Process */
  .process-style-one-items {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-style-one-item:nth-child(2) {
    margin-top: 0;
  }

  /* Project */
  .left-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .accrdion-portfolio-area .accordion-overlay {
    padding: 0;
  }

  .accordion-portfolio-lists li {
    min-height: 300px;
    width: 100%;
  }

  .accordion-portfolio-lists li.out {
    width: 100%;
  }

  .accrdion-portfolio-area .accordion-overlay h2 {
    margin-bottom: 15px;
    font-size: 32px;
  }

  .accordion-portfolio-lists {
    padding-right: 15px;
    gap: 30px;
    flex-wrap: wrap;
  }

  /* Project Style Two */
  .project-style-one-area::after {
    display: none;
  }

  .project-one-swiper-nav {
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 15px;
    margin-top: 30px;
  }

  .project-one-swiper-nav > div {
    background: var(--color-primary);
    color: var(--white);
  }

  .project-one-swiper-nav > div.project-one-prev {
    margin: 0;
  }

  .project-style-one-carousel {
    margin-top: 30px;
  }

  .swiper-slide-active .project-style-one-item .project-card-info {
    left: 0;
  }

  .project-style-one-item > img {
    height: auto;
    position: inherit;
  }

  .project-style-one-item {
    padding: 0;
  }

  .project-style-one-item .project-card-info {
    border: 1px solid #dddddd;
    border-top: none;
    padding: 37px;
  }

  .project-style-one-item ul {
    grid-template-columns: 1fr;
  }

  .project-style-one-item .project-card-info {
    bottom: 0;
  }

  .heading-left .sub-title {
    margin-bottom: 15px;
  }

  /* Project Single */
  ul.project-info-list {
    display: block;
    text-align: center;
  }

  ul.project-info-list > li {
    margin-top: 20px;
  }

  ul.project-info-list > li:first-child {
    margin-top: 0;
  }

  .blockquote {
    display: block;
    padding: 30px;
  }

  .blockquote p {
    font-size: 18px;
    line-height: 1.7;
  }

  .thumb-grid {
    height: auto;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .item-grid-colum {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .item-grid-container img {
    margin-top: 30px;
  }

  .item-grid-colum .left-info h3 {
    flex-wrap: wrap;
    grid-gap: 15px;
    column-gap: 25px;
  }

  .item-grid-colum .left-info h3 strong {
    margin-right: 0;
  }

  .project-paginvation-items {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    padding-top: 0;
    border: none;
  }

  .project-previous a,
  .project-next a {
    border: 1px solid #e7e7e7;
    padding: 15px;
    border-radius: 8px;
    justify-content: center;
  }

  .project-previous a {
    text-align: left;
  }

  .project-next a {
    text-align: right;
  }

  .project-all {
    display: none;
  }

  /* Testimonial */

  .testimonial-style-two-area {
    text-align: center;
  }

  .customer-list.style-two {
    margin-bottom: 50px;
  }

  .testimonial-thumb {
    display: none;
  }

  .testimonial-two-wrap {
    max-width: 100%;
    padding: 0;
    margin-top: 10px;
  }

  .testimonial-style-two-item {
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
  }

  .testimonial-two-nav-wrap {
    position: inherit;
    left: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-two-nav-wrap i {
    width: 100%;
  }

  .tm-provider {
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .testimonial-style-two-item p {
    font-size: 18px;
    line-height: 1.8;
  }

  /* Testimonial One */
  .rating-card-one {
    justify-content: center;
  }

  .testimonial-one-left .thumb {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .testimonial-one-left .thumb img {
    width: 100%;
  }

  .testimonial-one-left .thumb::before,
  .testimonial-one-left .thumb::after {
    display: none;
  }

  .testimonial-style-one-item .tm-provider {
    text-align: left;
  }

  .testimonial-one-left {
    gap: 50px;
  }

  /* Brand */

  .brand-area {
    text-align: center;
    padding: 70px 0;
  }

  .brand-area::before,
  .brand-area::after {
    display: none;
  }

  .brand-area h2 {
    color: var(--color-heading);
  }

  .brand-style-one-carousel {
    margin-top: 50px;
  }

  .brand-item img {
    height: 80px;
  }

  /* Brand Style Two */
  .promotional-brand-one h2 {
    font-size: 45px;
    margin: 0 15px;
  }

  .brand-content .item::after {
    height: 40px;
  }

  /* Team */
  .join-card {
    margin-top: 30px;
  }

  /* Team Style Two */
  .team-one-thumb-item {
    position: inherit;
    display: none;
  }

  .team-one-thumb-item.active {
    display: block;
  }

  .active .team-one-content-info ul.list-social {
    right: auto;
    position: inherit;
    transform: none;
    top: auto;
    justify-content: center;
    margin-top: 5px;
  }

  .active .team-one-content-info span {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .team-one-content-info {
    gap: 10px;
    display: grid;
    justify-content: center;
    text-align: center;
  }

  .team-one-content-info ul.list-social {
    transform: none;
    top: auto;
    position: inherit;
    opacity: 1;
    visibility: visible;
    right: auto;
    justify-content: center;
    display: none;
  }

  .team-hire-card {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .team-hire-card h4 {
    margin-bottom: 20px;
  }

  /* Team Details */
  .team-single-area .right-info .social .share-link {
    display: none;
  }

  .team-single-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-card {
    padding: 50px 30px;
  }

  /* Accordion */
  .accordion-style-one-area .heading {
    text-align: center;
    margin-bottom: 40px;
  }

  /* Contact */
  .contact-shape {
    display: none;
  }

  .quick-contact-wrap .top-info {
    padding: 30px;
  }

  .quick-contact-wrap {
    margin: 0;
  }

  .quick-contact-wrap .top-info ul {
    display: grid;
    gap: 5px;
    padding-left: 22px;
  }

  .quick-contact-wrap .top-info h2 {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .quick-contact-wrap .top-info ul li:first-child::after {
    display: block;
  }

  .quick-contact-wrap form {
    padding: 50px;
    padding-top: 50px;
  }

  .contact-style-two-info li .icon {
    height: 60px;
    width: 60px;
    min-width: 60px;
    line-height: 60px;
  }

  .contact-style-two-items .quick-contact-wrap .top-info {
    background: var(--color-primary);
  }

  .google-maps iframe {
    height: 350px;
  }

  /* Blog */
  .blog-style-two-item {
    display: flex;
    flex-direction: column-reverse;
  }

  .blog-style-two-item .thumb img {
    position: inherit;
    height: auto;
    width: 100%;
    min-width: 100%;
  }

  .blog-style-two-item .thumb {
    height: auto;
  }

  .blog-style-two-item .meta-style-two {
    margin-bottom: 10px;
  }

  /* Blog Two */
  .shape-top-right {
    display: none;
  }

  .blog-card h2 {
    font-size: 22px;
  }

  .blog-area .meta li {
    font-size: 15px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 0;
    border: none;
  }

  .newsletter-flex {
    flex-wrap: wrap;
    justify-content: flex-start;
    display: none;
  }

  form.newsletter-style-one input {
    min-width: 100%;
  }

  .footer-style-one .f-item.about::after {
    display: none;
  }

  .footer-style-one .f-items {
    padding-top: 0;
    padding-bottom: 70px;
  }

  footer p br {
    display: none;
  }

  .footer-style-one .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-end {
    text-align: center !important;
  }

  .footer-bottom .text-end ul.link-list {
    justify-content: center;
    margin-top: 10px;
  }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.buildu-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.buildu-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.buildu-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 30px;
  content: "";
  height: 50px;
  width: 50px;
  background: url(../img/logo-icon.png);
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.buildu-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(2, 109, 255, 0.2);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: 0 auto 30px auto;
  width: 110px;
}

.buildu-preloader.secondary .animation-preloader .spinner {
  border-top-color: var(--color-secondary);
}

.buildu-preloader .animation-preloader .txt-loading {
  font:
    bold 4em "Hanken Grotesk",
    sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.buildu-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.buildu-preloader .animation-preloader .txt-loading .letters-loading:before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Hanken Grotesk", sans-serif;
  position: absolute;
  top: -3px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.buildu-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.buildu-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.buildu-preloader.dark .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.2);
}

.buildu-preloader.dark
  .animation-preloader
  .txt-loading
  .letters-loading:before {
  color: #fff;
}

.buildu-preloader p {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #3b3b3b;
}

.buildu-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.buildu-preloader .loader .row {
  height: 100%;
}

.buildu-preloader .loader .loader-section {
  padding: 0px;
}

.buildu-preloader .loader .loader-section .bg {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.buildu-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.buildu-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.buildu-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
