@font-face {
  font-family: 'blockletter';
  src: url('../fonts/Gogh-ExtraBold.ttf');
  /* 如果字体格式是OTF，请使用 'opentype' */
}

@font-face {
  font-family: 'poppins';
  src: url('../fonts/Poppins-Regular.otf');
}

/* Varialbes */
:root {
  --font-default: "poppins", sans-serif;
  --font-heading: "blockletter", sans-serif;
  --fontawesome: "Font Awesome 5 Pro";
  --black: #000000;
  --dark: #1d1d1d;
  --dark-secondary: #262525;
  --white: #ffffff;
  --color-primary: #ff0074;
  --color-secondary: #02ebad;
  --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: #f1f3f5;
  --bg-gradient: linear-gradient(45deg, #f70fff 0%, #12d6df 80%);
}

/* ============================================================== 
     # 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;
}



.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: #fff;
}

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

.secondary a:hover {
  color: var(--color-optional);
}

button {
  outline: medium none;
}

iframe {
  border: none;
}

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

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: 800;
}

strong {
  font-weight: 800;
}

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

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

body {
  font-family: var(--font-default);
  font-size: 15px;
  font-weight: 500;
  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;
  font-family: var(--font-heading);
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 27px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

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

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

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

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

@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: 95%;
    width: 95%;
  }

  .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: 50px;
    padding-right: 50px;
  }
}

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

@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-dark .bg-gray {
  background: var(--dark-secondary);
}

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

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

.bg-dark {
  background;
}

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

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

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

.bg-gradient-secondary {
  background-color: var(--color-optional);
  background: var(--bg-gradient-reverse) !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);
}

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

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

.shadow.dark:after {
  background: var(--dark);
  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.dark-hard {
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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: 20px;
  }
}

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

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

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

.banner .align-center {
  position: absolute;
  top: 27%;
}

@media (max-width: 1800px) {
  .banner .align-center {
    top: 23%;
  }
}



.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: 800;
  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: 800;
  position: relative;
  z-index: 1;
}

.site-heading strong::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/35.html);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}

.title {
  font-weight: 800;
  font-size: 50px !important;
  margin-top: -15px;
}

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

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

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

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

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

.bg-gradient .sub-title,
.bg-theme .sub-title {
  color: var(--white);
  -webkit-background-clip: inherit;
  background-clip: inherit;
  -webkit-text-fill-color: inherit;
  background: transparent;
}

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

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

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

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
  background: var(--white);
}

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

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

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

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

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

.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);
}

/* ============================================
 Title Line
 ============================================== */
.title-line {
  clear: both;
  position: relative;
  line-height: 0;
  margin-bottom: 30px;
}

.title-line .long-line {
  background-color: #fff;
  border-radius: 10px;
  display: inline-block;
  height: 3px;
  position: relative;
  width: 120px;
}

.title-line .short-line {
  background: linear-gradient(45deg, #d70a84 0%, #51127f 80%);
  border-radius: 10px;
  display: inline-block;
  height: 3px;
  margin-right: 5px;
  position: relative;
  width: 30px;
}


/* ============================================================== 
    # Video Play Button 
=================================================================== */
.video-play-button i {
  display: inline-block;
  background: var(--color-primary);
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  color: #ffffff;
  position: relative;
}

.video-play-button i {
  font-weight: 100;
  font-size: 35px;
  position: relative;
  left: 3px;
  top: 2px;
}

.video-play-button .effect {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
}

.video-play-button .effect::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.video-play-button .effect::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  background: #07071e;
  opacity: 0;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  -webkit-animation: video-play 1500ms ease-out infinite;
  animation: video-play 1500ms ease-out infinite;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.video-play-button.with-text {
  width: auto;
  background: transparent;
}

.video-play-button.with-text span {
  position: relative;
  z-index: 1;
}

.video-play-button.with-text span i {
  margin-left: 25px;
  margin-right: 30px;
  color: var(--white);
  left: -1px;
}

.video-play-button.with-text .effect {
  height: 60px;
  width: 60px;
  left: 0;
  -webkit-animation: inherit;
  animation: inherit;
  background: var(--color-primary);
  top: 0;
  opacity: 1;
  z-index: 1;
}

.video-play-button.with-text .effect::before {
  display: none;
}

.video-play-button.with-text .effect::after {
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  z-index: inherit;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

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

/* ============================================================== 
    # Button Styles
=================================================================== */
.btn {
  display: inline-block;
  font-weight: 800;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: none !important;
  font-size: 16px;
  letter-spacing: 0;
  padding: 13px 30px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
}

.btn:focus,
.btn.active {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  border: 2px solid transparent;
}

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

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

.btn.btn-border {
  border: 2px solid #dddddd;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 800;
}

.btn.btn-border::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-border:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

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

.btn.btn-border.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: #e7e7e7;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
  border-color: #e7e7e7;
  color: var(--dark);
}

.btn.btn-border.animation:hover::after {
  width: 100%;
}

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

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

.btn.btn-border-dark.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

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

.btn.btn-border-dark.animation:hover::after {
  width: 100%;
}

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

.btn.btn-border-theme:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
  border-color: var(--color-primary);
  color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
  width: 100%;
}

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

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

.btn.btn-border-light.animation::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
  border-color: var(--white);
  color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
  width: 100%;
}

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

.btn.btn-border.light::after {
  background: var(--color-primary);
}

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

.btn.btn-gradient {
  border: none;
  color: var(--white);
}

.btn.btn-gradient::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: linear-gradient(to left,
      var(--color-primary),
      var(--color-secondary),
      var(--color-primary));
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-size: 220%;
}

.btn.btn-gradient:hover::after {
  background-position: -70% 0;
}

.btn.btn-gradient.active {
  background-position: -70% 0;
}

.btn.btn-theme {
  color: var(--white);
  border: none;
  background: var(--color-primary);
}

.btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

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

.bg-dark .btn.btn-theme:hover {
  color: var(--color-heading);
}

.banner-style-four .btn.btn-theme::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background: var(--white) !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-theme:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.banner-style-four .btn.btn-theme:hover {
  color: var(--color-heading) !important;
}

button {
  display: inline-block;
  font-weight: 800;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 14px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: linear-gradient(45deg, #d70a84 0%, #51127f 80%);
}

button::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

button:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

button i {
  margin-right: 4px;
}

.btn.btn-theme.secondary {
  color: var(--white);
  border: none;
  background: var(--color-optional);
}

.btn.btn-theme.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
  background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
  color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
  background-color: var(--white);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
  color: var(--dark);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

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

.btn.btn-light.btn-md {
  padding: 13px 52px;
}

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

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

.btn.btn-dark::after {
  position: absolute;
  top: 0;
  right: inherit;
  bottom: inherit;
  left: 0;
  content: "";
  height: 100%;
  width: 0;
  z-index: -1;
  background-color: var(--color-primary);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

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

.shadow .btn.btn-dark:hover {
  color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
  width: 100%;
}

.btn.btn-dark.secondary {
  color: var(--white);
  border: none;
  background: var(--dark);
}

.btn.btn-dark.secondary::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  background-color: var(--color-optional);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn i {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.btn.text-slide {
  min-width: 150px;
  height: 55px;
  line-height: 55px;
}

.btn.text-slide span {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
}

.btn.animate-border {
  overflow: inherit;
  z-index: inherit;
  width: 200px;
  height: 55px;
  line-height: 55px;
  padding: 0;
}

.btn.animate-border:hover {
  background: transparent;
  color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
  opacity: 1;
  -webkit-animation: open 0.4s;
  /* Chrome, Safari, Opera */
  animation: open 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
  opacity: 1;
  -webkit-animation: openB 0.4s;
  /* Chrome, Safari, Opera */
  animation: openB 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-direction: normal;
  animation-direction: normal;
}

.btn.animate-border .hover-border {
  position: absolute;
  left: 0;
  top: -1px;
  height: 100%;
  width: 100%;
}

.btn.animate-border .hover-border::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-left: solid 2px var(--color-primary);
  right: 98px;
  top: -1px;
}

.btn.animate-border .hover-border::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  display: block;
  opacity: 0;
  border-top: solid 2px var(--color-primary);
  border-right: solid 2px var(--color-primary);
  left: 98px;
  top: -1px;
}

.btn.animate-border .hover-border-bottom {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 55px;
  border-bottom: solid 2px var(--color-primary);
  right: -1px;
  bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
  position: absolute;
  content: "";
  width: 0;
  display: block;
  opacity: 0;
  height: 100%;
  border-bottom: solid 2px var(--color-primary);
  left: 0;
  bottom: -2px;
}

.btn.animated-arrow {
  border: none;
  background: transparent;
  min-width: 14rem;
  height: auto;
  padding: 0;
}

.btn.animated-arrow .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary);
  border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 15px;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn.animated-arrow .circle .icon::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid var(--white);
  border-right: 0.125rem solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  margin: 0 0 0 70px;
  color: var(--dark);
  line-height: 2;
  text-align: left;
  width: 100%;
  font-size: 14px;
}

.btn.animated-arrow:hover {
  color: var(--white);
}

.btn.animated-arrow:hover .circle {
  width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
  background: var(--white);
  -webkit-transform: translate(1.5rem, 0);
  transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
  color: var(--white);
}

.btn.circle {
  border-radius: 30px !important;
}

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

.btn-simple i {
  transform: rotate(-45deg);
  display: inline-block;
  margin-left: 2px;
}

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

.video-btn i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: var(--white);
}

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

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--color-primary) repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.text-light .video-btn i::after {
  background: var(--white) repeat scroll 0 0;
}

.text-shine {
  background: linear-gradient(to right,
      var(--dark) 0,
      var(--white) 10%,
      var(--color-primary) 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shine 3s infinite linear;
  animation: shine 3s infinite linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 48px;
}

.animate-inout {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#8a6552),
      to(#472d20));
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
  color: var(--white);
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: solid 2px var(--color-primary);
  cursor: pointer;
}

.btn-icon {
  position: relative;
  padding-left: 20px;
}

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

.btn-icon::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 2px;
  left: 0;
  background: var(--color-heading);
  transform: translateY(-50%);
  margin-top: -1px;
  transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
  background: var(--color-primary);
}

.btn-icon i {
  font-weight: 800;
}

.btn-icon:hover {
  padding-left: 40px;
}

.animate-inout span {
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
  width: 0%;
  height: 0%;
  position: absolute;
  content: "";
  border-radius: 100%;
}

.animate-inout:after {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: var(--white);
}

.animate-inout:before {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
  background: transparent;
  color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#8a6552),
      to(#472d20));
  background: linear-gradient(90deg, #8a6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
  color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.animate-inout:hover {
  color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
  width: 200px;
  height: 200px;
  border-radius: 4px;
}

.animate-inout:hover::before {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
  -webkit-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}

.btn-md {
  padding: 16px 52px;
  font-size: 17px;
}

.btn-md.btn-border {
  padding: 14px 52px;
}

.btn-sm {
  padding: 16px 45px;
  font-size: 14px;
}

.btn-sm.btn-border,
.btn-sm.btn-light {
  padding: 14px 45px;
}

.mfp-close-btn-in .mfp-close::after {
  display: none;
}

/* Btn Animation */

.btn-animation {
  z-index: 1;
  position: relative;
  font-size: 18px;
  display: inline-block;
  margin-left: 10px;
}

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

.btn-animation i {
  display: inline-block;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--white);
  color: var(--color-heading);
  border-radius: 50%;
  font-weight: 400;
  margin-right: 10px;
  transition: all 0.35s ease-in-out;
  transform: scale(0);
}

.btn-animation:hover {
  margin-left: 0;
  color: var(--color-heading);
}

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

.btn-animation:hover i {
  transform: scale(1);
}

.btn-animation::after {
  position: absolute;
  left: -13px;
  top: 0;
  content: "";
  height: 60px;
  width: 60px;
  border: 1px solid #c2bfbf;
  border-radius: 50%;
  transition: all 0.35s ease-in-out;
  transform: scale(1);
  z-index: -1;
}

.bg-dark .btn-animation::after {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-animation:hover::after {
  transform: scale(0);
}

.btn-animation span {
  transition: all 0.35s ease-in-out;
  left: -50px;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-animation:hover span {
  left: 0;
}

.btn-animation.dark::after {
  border-color: #c5c5c5;
  z-index: -1;
}

.btn-animation.dark i {
  background: var(--color-primary);
  color: var(--white);
}

.btn-animation.dark:hover {
  color: var(--color-heading);
}

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

a.btn-round-animation {
  display: inline-block;
  height: 180px;
  width: 180px;
  text-align: center;
  line-height: 180px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

a.btn-round-animation i {
  display: inline-block;
  transform: rotate(-45deg);
  font-weight: 400;
  margin-left: 5px;
}

a.btn-round-animation::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 0;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

a.btn-round-animation:hover {
  color: var(--white);
}

a.btn-round-animation:hover::before {
  height: 100%;
}

a.btn-round-animation:hover::after {
  opacity: 0.4;
  height: 80%;
}

a.btn-round-animation.dark {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-dark,
.bg-dark-secondary,
.bg-dark p,
.bg-dark-secondary p {
  color: #cccccc;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: var(--white);
}

/* ============================================================== 
    # 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: 800;
}

.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: 100;
  color: var(--white);
}

/* ============================================================== 
    # Topbar Styles
=================================================================== */
.item-flex {
  align-items: center;
  display: flex;
}

.item-flex li {
  margin-left: 30px;
}

.item-flex li:first-child {
  margin: 0;
  border: none;
  padding: 0;
}

.item-flex li i {
  margin-right: 10px;
  font-weight: 100;
  font-size: 24px;
  color: var(--color-primary);
}

.top-bar-area li {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  margin-left: 30px;
  padding-left: 30px;
}

.top-bar-area .social li {
  display: inline-block;
  margin-right: 30px;
}

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

.top-bar-area .text-end .social li {
  margin-right: 0;
  margin-left: 30px;
}

.top-bar-area .text-end .social li:first-child {
  margin-left: 0;
}

.top-bar-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.top-bar-area.top-bar-style-one.bg-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.top-bar-style-two {
  padding: 20px 0;
}

.top-bar-style-two .text-end .social li {
  margin-left: 8px;
}

.top-bar-style-two .social li a {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.top-bar-style-two .item-flex li i {
  font-weight: 600;
  color: var(--color-paragraph);
}

.call-entry {
  display: flex;
  justify-content: right;
  text-align: left;
}

.call-entry p {
  margin-bottom: 5px;
  line-height: 1;
  font-size: 14px;
}

.call-entry p strong {
  font-weight: 600;
  color: var(--blue);
}

.call-entry h5 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.call-entry h5 a {
  padding: 0 !important;
  display: inline-block;
  text-transform: lowercase;
}

.call-entry i {
  display: inline-block;
  font-size: 40px;
  margin-right: 15px;
  position: relative;
  color: var(--white);
}

.top-bar-style-two .item-flex li strong {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}

.top-bar-style-two .item-flex li a {
  font-weight: 500;
  color: var(--white);
}

.top-bar-style-two .item-flex li a:hover {
  color: var(--white);
}

.top-bar-style-two .item-flex li {
  line-height: 1.7;
}

.top-bar-style-two .item-flex li i {
  display: inline-block;
  font-size: 40px;
  color: var(--white);
  margin-right: 15px;
  font-weight: 100;
}

/* ============================================================== 
    # Banner Styles
=================================================================== */
.banner-area {
  height: 100%;
  width: 100%;
  position: relative;
}

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

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

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

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

@media (max-width: 1023px) {
  .banner-area.top-pad-80 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-80 .content {
    padding-top: 140px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area.top-pad-90 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-90 .content {
    padding-top: 140px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area.top-pad-100 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-100 .content {
    padding-top: 140px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area.top-pad-110 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-110 .content {
    padding-top: 140px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area.top-pad-120 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-120 .content {
    padding-top: 140px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area.top-pad-130 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-130 .content {
    padding-top: 140px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area.top-pad-150 .content {
    padding-top: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area.top-pad-150 .content {
    padding-top: 140px;
  }
}

.banner-area.auto-height {
  height: auto;
}

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

.banner-area.auto-height .content {
  padding: 200px 0;
}

@media only screen and (max-width: 767px) {
  .banner-area.auto-height .content {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.auto-height .content {
    padding: 120px 0;
  }
}

.banner-area.auto-height .content .thumb {
  padding-left: 35px;
}

@media (max-width: 991px) {
  .banner-area.auto-height .content .thumb {
    padding-left: 0;
    margin-top: 50px;
  }
}

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

@media (max-width: 1023px) {
  .banner-area .content {
    padding: 120px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area .content {
    padding: 60px 0;
  }
}

.banner-area h4 {
  -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-area h2 {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.banner-area p,
.banner-area ul {
  -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;
}

@media (max-width: 1023px) {
  .banner-area p {
    padding-right: 0;
  }
}

.banner-area.text-center p {
  padding-left: 13%;
  padding-right: 13%;
}

@media (max-width: 1023px) {
  .banner-area.text-center p {
    padding: 0;
  }
}

.banner-area .thumb {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.banner-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-area .banner-slide h4 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide h2 {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide p,
.banner-area .banner-slide ul {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .button {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active h2 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active p,
.banner-area .banner-slide .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}

.banner-area .banner-slide .swiper-slide.swiper-slide-active .button {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-area.double-items .thumb {
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

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

.banner-area.double-items.bottom-thumb .content {
  padding: 0;
}

.banner-area.double-items.bottom-thumb .content .thumb {
  margin-top: 120px;
}

@media only screen and (max-width: 767px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 50px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area.double-items.bottom-thumb .content {
    padding: 120px 0;
  }

  .banner-area.double-items.bottom-thumb .content .thumb {
    margin-top: 50px;
  }
}

.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 .swiper-notification {
  display: none;
}

.banner-area .swiper-slide.swiper-slide-active h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 800ms;
  transition-delay: 800ms;
}

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

.banner-area .swiper-slide.swiper-slide-active p,
.banner-area .swiper-slide.swiper-slide-active ul {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

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

.banner-area.banner-style-two .swiper-slide.swiper-slide-active .button {
  -webkit-transition-delay: 2400ms;
  transition-delay: 2400ms;
}

.banner-area .banner-items {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.banner-area:hover .swiper-button-prev,
.banner-area:hover .swiper-button-next {
  opacity: 1;
}

.banner-area:hover .swiper-button-prev {
  left: 30px;
  right: auto;
}

.banner-area:hover .swiper-button-next {
  right: 30px;
  left: auto;
}

.banner-area .swiper-button-prev,
.banner-area .swiper-button-next {
  height: auto;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}

.banner-area .swiper-button-prev::after,
.banner-area .swiper-button-next::after {
  font-size: 28px;
  color: var(--color-heading);
}


@media only screen and (max-width: 830px) {

  .banner-area .swiper-button-prev,
  .banner-area .swiper-button-next {
    display: none;
  }
}



/* ============================================================== 
    # Banner Custom Style
=================================================================== */


.banner .banner-home img {
  width: 100%;
  height: 100%;
}

.banner-one-item h4 {
  font-weight: 800;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  color: var(--color-primary);
  border: 1px solid;
  border-radius: 30px;
  margin-bottom: 20px;
}

.bg-dark .banner-one-item h4 {
  border: 1px solid rgb(255, 255, 255);
  font-family: var(--font-default);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.banner-one-item h1 {
  margin: 0;
  font-size: 90px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.bg-dark .banner-one-item h1 {
  background: linear-gradient(90deg, #f70fff 0%, #12d6df 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  letter-spacing: 0px;
}

.banner-one-item h3 {
  margin-top: 10px;
  letter-spacing: 2px;
}

@media (min-width: 1200px) {
  .banner-one-item h1 {
    font-size: 70px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 65px;
  }
}

.bg-dark .banner-one-item h1 strong {
  color: #fff;
  font-size: 70px;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 70px;
}

.bg-dark .banner-one-item p {
  font-style: 20px;
  margin-top: 10px;
}

.curve-text svg {
  fill: var(--white);
  height: 170px;
  width: 170px;
  overflow: inherit;
  animation: spinner 20s infinite linear;
  text-shadow: 1px 1px #000000;
}

.curve-text svg {
  background: var(--bg-gradient);
  border-radius: 50%;
  padding: 18px;
  position: relative;
  z-index: 1;
  font-size: 25px;
  height: 100px;
  width: 100px;
  text-transform: uppercase;
  font-weight: 800;
}

.curve-text svg a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
}

.curve-text {
  position: absolute;
  bottom: -22%;
  right: -60%;
  z-index: 1;
}

.curve-text a {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 30px;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.curve-text svg path {
  fill: none;
}

.curve-text svg text {
  fill: var(--white);
  letter-spacing: 4px;
}

.banner-home-btn {
  display: flex;
}

.banner-one-item p {
  color: #fff;
  font-size: 16px;
}

.cta-btn a {
  display: inline-block;
  font-weight: 800;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 10px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: none;
  background: linear-gradient(45deg, #d70a84 0%, #51127f 80%);
  margin-right: 60px;
}

.cta-btn a::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.cta-btn a:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
  background-color: #fff;
}

.cta-btn a:hover {
  color: #ff0074;
}

.cta-btn-2 a {
  display: inline-block;
  font-weight: 800;
  text-transform: capitalize;
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  border-radius: 7px;
  border: 2px solid transparent;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  font-size: 16px;
  letter-spacing: 0;
  padding: 10px 40px;
  background: #e7edf8;
  position: relative;
  z-index: 1;
  color: var(--white);
  border: 1px solid #fff;
  background: transparent;
}

.cta-btn-2 a::after {
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: -5%;
  content: "";
  height: 150px;
  width: 115%;
  z-index: -1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translateY(-45%) skew(25deg) scale(0);
  transform: translateY(-45%) skew(25deg) scale(0);
}

.cta-btn-2 a:hover::after {
  -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
  transform: translateY(-45%) skew(25deg) scale(1.2);
  background-color: #fff;
}

.cta-btn-2 a:hover {
  color: #ff0074;
}

@media (max-width: 1600px) {
  .bg-dark .banner-one-item h1 {
    font-size: 60px;
    line-height: 55px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 60px;
    line-height: 55px;
  }

  .banner-one-item h3 {
    font-size: 22px;
  }

  .banner-one-item p {
    font-size: 14px;
  }
}

@media (max-width: 1450px) {
  .bg-dark .banner-one-item h4 {
    font-size: 14px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 50px;
    line-height: 45px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 50px;
    line-height: 45px;
  }

  .banner-one-item h3 {
    font-size: 20px;
  }

  .banner-one-item p {
    font-size: 14px;
  }

  .cta-btn a {
    font-size: 14px;
    letter-spacing: 0;
    padding: 5px 30px;
    margin-right: 40px;
  }

  .cta-btn-2 a {
    font-size: 14px;
    letter-spacing: 0;
    padding: 5px 30px;
  }

  .curve-text svg {
    background: var(--bg-gradient);
    border-radius: 50%;
    padding: 12px;
    position: relative;
    z-index: 1;
    font-size: 20px;
    height: 80px;
    width: 80px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .curve-text a {
    font-size: 25px;
  }
}

@media (max-width: 1399px) {
  .curve-text {
    position: absolute;
    bottom: -10%;
    right: -70%;
  }
}

@media (max-width: 1310px) {
  .bg-dark .banner-one-item h4 {
    font-size: 12px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 40px;
    line-height: 35px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 40px;
    line-height: 35px;
  }

  .banner-one-item h3 {
    font-size: 20px;
  }

  .banner-one-item p {
    font-size: 12px;
  }

  .cta-btn a {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 5px 30px;
    margin-right: 40px;
  }

  .cta-btn-2 a {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 5px 30px;
  }

  .curve-text {
    bottom: -10%;
    right: -80%;
  }
}

@media (max-width: 1199px) {
  .banner .align-center {
    top: 20%;
  }

  .bg-dark .banner-one-item h4 {
    font-size: 12px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 40px;
    line-height: 35px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 40px;
    line-height: 35px;
  }

  .banner-one-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .banner-one-item p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
  }

  .cta-btn a {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 5px 30px;
    margin-right: 40px;
  }

  .cta-btn-2 a {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 5px 30px;
  }

  .curve-text {
    bottom: -10%;
    right: -60%;
  }
}

@media (max-width: 991px) {
  .banner .align-center {
    top: 23%;
  }

  .bg-dark .banner-one-item h4 {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 8px 20px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 30px;
    line-height: 30px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 30px;
    line-height: 30px;
  }

  .banner-one-item h3 {
    font-size: 18px;
    margin: 5px 0;
  }

  .banner-one-item p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
    width: 350px;
  }

  .banner-one-item p br {
    display: none;
  }

  .cta-btn a {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 5px 20px;
    margin-right: 40px;
  }

  .cta-btn-2 a {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 5px 20px;
  }

  .curve-text {
    bottom: -10%;
    right: -50%;
  }

  .curve-text svg {
    padding: 10px;
    position: relative;
    z-index: 1;
    font-size: 20px;
    height: 65px;
    width: 65px;
  }

  .curve-text a {
    font-size: 18px;
  }
}

@media (max-width: 870px) {
  .banner .align-center {
    top: 20%;
  }
}

@media (max-width: 780px) {
  .banner .align-center {
    top: 17%;
  }
}

@media (min-width:768px) {
  .banner-home-2 img {
    display: none;
  }
}

@media (max-width:767px) {
  .banner-home img {
    display: none;
  }

  .banner-home-2 img {
    display: block;
    max-height: 100%;
    max-width: 100%;
  }

  .curve-text {
    position: relative;
    bottom: -300%;
    left: -40%;
  }

  .banner .align-center {
    position: absolute;
    top: 42%;
    /* 将元素的顶部定位到父容器的中点 */
    left: 55%;
    /* 将元素的左侧定位到父容器的中点 */
    transform: translate(-50%, -50%);
    /* 使用transform来水平和垂直居中对齐 */
  }

  .bg-dark .banner-one-item {
    font-size: 12px;
    /* 设置字体大小 */
    display: flex;
    /* 使用 flex 布局 */
    flex-direction: column;
    align-items: center;
    /* 垂直居中 */
    text-align: center;
    width: 500px;
  }

  .bg-dark .banner-one-item h4 {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 8px 30px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 35px;
    line-height: 40px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 35px;
    line-height: 40px;
  }

  .bg-dark .banner-one-item h1 strong .br-2 {
    display: none;
  }

  .banner-one-item h3 {
    font-size: 20px;
    margin: 10px 0;
  }

  .banner-one-item p {
    font-size: 14px;
    line-height: 24px;
    width: 400px;
    margin-bottom: 20px;
  }

}

@media (max-width:570px) {

  .curve-text {
    position: relative;
    bottom: -150%;
    left: -40%;
  }

  .banner .align-center {
    position: absolute;
    top: 42%;
    /* 将元素的顶部定位到父容器的中点 */
    left: 52.5%;
    /* 将元素的左侧定位到父容器的中点 */
    transform: translate(-50%, -50%);
    /* 使用transform来水平和垂直居中对齐 */
  }

  .bg-dark .banner-one-item {
    padding: 0 0;
    width: 480px;
  }

  .bg-dark .banner-one-item h4 {
    font-size: 12px;
    margin-bottom: 20px;
    padding: 8px 30px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 30px;
    line-height: 40px;
  }

  .bg-dark .banner-one-item h1 strong .br-2 {
    display: none;
  }

  .banner-one-item h3 {
    font-size: 20px;
    margin: 10px 0;
  }

  .banner-one-item p {
    font-size: 12px;
    line-height: 24px;
    width: 400px;
    margin-bottom: 20px;
  }

}

@media (max-width:500px) {

  .curve-text {
    position: relative;
    bottom: -150%;
    left: -35%;
  }

  .banner .align-center {
    position: absolute;
    top: 38%;
    /* 将元素的顶部定位到父容器的中点 */
    left: 53%;
    /* 将元素的左侧定位到父容器的中点 */
    transform: translate(-50%, -50%);
    /* 使用transform来水平和垂直居中对齐 */
  }

  .bg-dark .banner-one-item {
    padding: 0 10px;
    width: 400px;
  }

  .bg-dark .banner-one-item h4 {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 8px 30px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 30px;
    line-height: 35px;
  }

  .bg-dark .banner-one-item h1 strong .br-2 {
    display: none;
  }

  .banner-one-item h3 {
    font-size: 18px;
    margin: 5px 0 0 0;
  }

  .banner-one-item p {
    font-size: 11px;
    line-height: 20px;
    width: 300px;
    margin-bottom: 20px;
  }

  .cta-btn a {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 20px;
    margin-right: 40px;
  }

  .cta-btn-2 a {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 20px;
  }

}

@media (max-width:450px) {

  .curve-text {
    position: relative;
    bottom: -80%;
    left: -45%;
  }

  .banner .align-center {
    position: absolute;
    left: 55%;
    /* 将元素的左侧定位到父容器的中点 */
    transform: translate(-50%, -50%);
    /* 使用transform来水平和垂直居中对齐 */
  }

  .bg-dark .banner-one-item {
    padding: 0 10px;
    width: 300px;
  }

  .bg-dark .banner-one-item h4 {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 8px 20px;
  }

  .bg-dark .banner-one-item h1 {
    font-size: 24px;
    line-height: 28px;
  }

  .bg-dark .banner-one-item h1 strong {
    font-size: 24px;
    line-height: 25px;
  }

  .bg-dark .banner-one-item h1 strong .br-2 {
    display: none;
  }

  .banner-one-item h3 {
    font-size: 14px;
    margin: 5px 0 0 0;
  }

  .banner-one-item p {
    font-size: 10px;
    line-height: 15px;
    width: 250px;
    margin-bottom: 20px;
  }

  .cta-btn a {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 20px;
    margin-right: 40px;
  }

  .cta-btn-2 a {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 20px;
  }

  .curve-text svg {
    padding: 10px;
    position: relative;
    z-index: 1;
    font-size: 20px;
    height: 55px;
    width: 55px;
  }

  .curve-text a {
    font-size: 16px;
  }

}

@media (max-width:450px) {
  .banner-home-2 {
    height: 55vh;
    width: 100vw;
  }

}

@media (max-width:340px) {

  .curve-text {
    position: relative;
    bottom: -80%;
    left: -35%;
  }

  .bg-dark .banner-one-item {
    padding: 0 10px;
    width: 250px;
  }

  .banner-one-item p {
    font-size: 10px;
    line-height: 15px;
    width: 250px;
    margin-bottom: 20px;
  }

  .cta-btn a {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 15px;
    margin-right: 20px;
  }

  .cta-btn-2 a {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 5px 15px;
  }
}


/********************* [ About Section ] **************************/

.about-bg {
  background: url(../img/about-section-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

.image-container {
  display: flex;
  justify-content: center;
  /* 水平居中对齐 */
  align-items: center;
  /* 垂直居中对齐 */
  height: 100%;
  /* 使容器充满整个列高度 */
}

.sr-content {
  max-width: 100%;
  /* 图像宽度最大为列宽度 */
  height: auto;
  /* 根据图像比例调整高度 */
}

.about-content {
  padding: 80px 0 40px;
}

.about-all-wrap {
  max-width: 696px;
  margin-left: 10px;
}

.about-all-wrap h5 {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
}

.about-all-wrap h1 {
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: 0px;
  background: -webkit-linear-gradient(0deg, #f70fff 0%, #12d6df 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.about-wrap {
  margin: 0 0 30px;
  padding: 0 0 0 60px;
  position: relative;
  text-align: left;
}

.about-icon {
  left: 0;
  position: absolute;
  top: 0;
}

.about-wrap h3 {
  font-size: 18px;
  margin: 0 0 0px;
  letter-spacing: 0px;
}

.about-wrap:hover i {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.about-icon i {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-dark);
  font-size: 20px;
  height: 40px;
  line-height: 36px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 40px;
}

.about-details p {
  font-weight: 400;
  margin-bottom: 0;
  line-height: 25px;
  font-family: "Open Sans", sans-serif;
}

.about-section-btn {
  margin-top: 10px;
}


/*
=============================================
Counter 
=============================================
*/
.counter-area {
  background-color: #0100032c;
}

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

.counter-area_v1 .counter-card {
  overflow: hidden;
  background: -webkit-linear-gradient(0deg, #f70fff 0%, #12d6df 100%);
  border-radius: 10px;
}

.counter-card_content {
  margin-top: 25px;
}

.counter-card:hover {
  color: black;
}

.counter-card:hover .counter-card-text {
  color: #000000;
}

.counter-area_v1 .counter-card::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 2px;
  right: 0;
  bottom: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 10px;
  background-color: #010003;
  transition: width 0.4s ease;
  z-index: -1;
}

.counter-area_v1 .counter-card:hover::before {
  width: 0;
}



/*** 
=============================================
    Book Expert Area Style      
=============================================
***/

.book-expert-area {
  background: url(../img/book-expert-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 120px;
}

.book-expert-bg img {
  width: 100%;
  height: 100%;
}

.book-expert-text-box {
  position: relative;
  display: block;
}

.sec-title h5 {
  font-family: "poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 0px;
}

.sec-title h2 {
  letter-spacing: 0px;
  font-size: 46px;
}

.white-text {
  color: white;
  font-weight: 500;
  letter-spacing: 0px;
  font-size: 46px;
}

.tint-text {
  background: -webkit-linear-gradient(0deg, #f70fff 0%, #12d6df 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 46px;
}

.tint-text-1 {
  background: -webkit-linear-gradient(0deg, #f70fff 20%, #12d6df 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 0px;
  font-size: 46px;
}

.book-expert-text-box .inner-content {
  position: relative;
  display: block;
}

.book-expert-text-box .inner-content .text {}

.book-expert-text-box .inner-content .text p {
  margin: 0 0 30px;
}

.book-expert-text-box .inner-content .text a {
  padding: 27px 40px 27px;
}

.book-expert-image-box {
  position: relative;
  display: block;
  margin-left: 0px;
}

.book-expert-image-box .img-box-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width:1199px) {
  .book-expert-image-box .img-box-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.book-expert-image-box .img-box-1 img {
  width: auto;
}

.book-expert-image-box .img-box-2 {
  position: absolute;
  display: block;
  margin: 30px 0 0 30px;
  width: 100%;
  height: auto;
  top: 200px;
  z-index: 3;
  left: 20px;
  animation: jump-2 5s linear infinite;
}


.book-expert-image-box .img-box-2 img {
  width: auto;
}

@keyframes jump-2 {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

@media (max-width:615px) {
  .book-expert-image-box .img-box-2 {
    position: absolute;
    display: block;
    margin: 30px 0 0 30px;
    width: 70%;
    height: auto;
    top: 200px;
    z-index: 3;
    left: 2px;
    animation: jump-2 5s linear infinite;
  }

  .book-expert-image-box .img-box-2 img {
    display: none;
  }

  .book-expert-image-box .img-box-1 {
    align-items: center;
  }
}

.service-wrapper {
  display: flex;
  align-items: center;
  gap: 130px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .service-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.service-wrapper .single-service {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-wrapper .single-service i {
  margin-right: 8px;
  font-weight: 400;
}

.service-wrapper .single-service p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  font-family: var(--font-primary);
}


/* Benefits Window Tint */
.benefits-bg {
  background: url(../img/benefits-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0 120px;
}

.benefits-bg img {
  width: 100%;
  height: 100%;
}

.benefits-text-box {
  position: relative;
  display: block;
}

.benefits-text-box .white-text {
  color: white;
  font-weight: 500;
  margin-bottom: -0px;
  letter-spacing: 3px;
}

.benefits-text-box .tint-text {
  background: -webkit-linear-gradient(0deg, #f70fff 40%, #12d6df 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  letter-spacing: 3px;
}

.sec-title h2 {
  letter-spacing: 3px;
  font-size: 46px;
}

.card {
  aspect-ratio: 1 / 1.6;
  border: 0.5vmin solid #30cfd0;
  cursor: pointer;
  position: relative;
  width: 50vmin;
}

.card:before {
  background: linear-gradient(130deg,
      transparent 0% 35%,
      #30cfd0 65%,
      #330867 100%);
  background-position: 0% 0%;
  background-size: 300% 300%;
  content: "";
  height: 100%;
  left: 0px;
  pointer-events: none;
  position: absolute;
  top: 0px;
  transition: background-position 350ms ease, transform 350ms ease;
  width: 100%;
  z-index: 1;
}

.card:hover:before {
  background-position: 100% 100%;
  transform: scale(1.08, 1.03);
}

.card-content {
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 8%,
      transparent 8%);
  background-position: 0% 0%;
  background-size: 5vmin 5vmin;
  height: calc(100% - 10vmin);
  padding: 5vmin;
  position: relative;
  transition: background-position 350ms ease;
  width: calc(100% - 10vmin);
  z-index: 2;
}

.card:hover>.card-content {
  background-position: -10% -10%;
}

.card-title,
.card-subtitle {
  color: white;
  font-family: "Anek Latin", sans-serif;
  font-weight: 400;
  margin: 0px;
}

.card-title {
  font-size: 6vmin;
}

.card-subtitle {
  font-size: 3vmin;
  margin-top: 2vmin;
}

.card-subtitle-word {
  display: inline-block;
  margin: 0vmin 0.3vmin;
  opacity: 0;
  position: relative;
  transform: translateY(40%);
  transition: none;
}

.card:hover>.card-content>.card-subtitle>.card-subtitle-word {
  opacity: 1;
  transform: translateY(0%);
  transition: opacity 0ms, transform 200ms cubic-bezier(.90, .06, .15, .90);
}


/* Benefits Window TInt */


/* Features BBA Tint */

.elementor-widget-container {
  background: url(../img/features-bg.png);
}

.features {
  padding: 120px 0 140px;
}


.features__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
}

.features__item {
  --border-width: 3px;
  position: relative;
  align-items: center;
  padding: 20px;
  border: var(--border-width) solid transparent;
  /* 定义一个透明的边框 */
  border-image: linear-gradient(170deg, hsl(302, 100%, 61%), hsl(269, 95%, 22%), #12d6df);
  border-image-slice: 1;
  background: #000000da;
  border-radius: var(--border-width);

  &::after {
    position: absolute;
    content: "";
    top: calc(-1 * var(--border-width));
    left: calc(-1 * var(--border-width));
    z-index: -1;
    width: calc(100% + var(--border-width) * 2);
    height: calc(100% + var(--border-width) * 2);
    background: linear-gradient(60deg,
        hsl(302, 100%, 61%),
        hsl(269, 95%, 22%),
        #12d6df);
    background-size: 300% 300%;
    background-position: 0 50%;
    border-radius: calc(2 * var(--border-width));
    animation: moveGradient 4s alternate infinite;
  }
}

@keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width:1080px) {
  .features__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width:500px) {
  .features__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}


.features .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.features .features__title p {
  font-weight: 600;
  margin-top: 15px;
  font-size: 15px;
  color: #ff0074;
  letter-spacing: 1px;
}


/* Features BBA Tint */


/********************* [ 07. Collection Or Screenshots Or Product Showcase Section ] **************************/

section.collection {
  background: var(--color-white);
  margin-top: 100px;
  margin-bottom: 100px;
}

.products-bg {
  background: url(../img/products-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0 120px;
}

.collection-text h1 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
  text-indent: -3px;
  margin-bottom: 15px;
}

.collection-text h1 span {
  display: block;
}


.collection-text p {
  margin-top: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.collection .owl-carousel .item {
  border: 1px solid var(--color-light-gray);
  padding: 10px;
  -webkit-transition: all 2s ease-in-out 0s;
  transition: all 2s ease-in-out 0s;
}

.collection-text a {
  color: var(--color-dark-gray);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 15px;
}

.collection-text a i {
  color: var(--color-primary);
  font-size: 18px;
}

.collection-text a:hover i {
  color: var(--color-white);
}

.cpsp-des {
  text-align: center;
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  padding: 5px 0 10px 0;
  display: block;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.collection .owl-carousel .item:hover .cpsp-des {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cpsp-des .btn {
  font-size: 20px;
  padding: 8px 10px;
  text-align: center;
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 0;
}

.cpsp-des .btn i {
  margin-right: 0 !important;
}

.cpsp-des .cpsp-price {
  color: var(--color-white);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.cpsp-des .cpsp-price span {
  color: var(--color-primary);
  text-decoration: line-through;
}




/* ============================================================== 
    # Background Move
=================================================================== */

.banner-animation-zoom {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 600px;
  width: 100%;
}

.banner-animation-zoom .animation-zoom-banner {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

@media (min-width: 1800px) {
  .banner-animation-zoom {
    height: 650px;
  }
}

.experience-box {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 100px;
  text-align: left;
  max-width: 40%;
}

.experience-box .inner-content {
  position: relative;
  z-index: 1;
}

.banner-animation-zoom .container {
  position: relative;
  height: 100%;
}

.experience-box strong {
  display: block;
  font-size: 100px;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: -15px;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.experience-box h2 {
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 25px;
}

.experience-box::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 500%;
  background: var(--color-primary);
  content: "";
  z-index: -1;
}

.experience-box::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 500%;
  background: url(../img/shape/graph.html);
  content: "";
  background-repeat: no-repeat;
}

.experience-box .btn-animation {
  color: var(--white);
}

.experience-box p {
  color: var(--white);
  opacity: 0.9;
}

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

.services-item-one-items .services-carousel {
  position: relative;
  padding: 30px;
  top: -30px;
  margin: -30px;
  margin-bottom: -60px;
}

.cteative-service-item {
  padding: 67px 40px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bg-dark .cteative-service-item {
  background: #0000007e;
  box-shadow: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.bg-dark .cteative-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #12d6df;
  border-width: 3px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}


.bg-dark .cteative-service-item:before {
  background: linear-gradient(130deg,
      transparent 0% 35%,
      #f70fff 65%, #12d6df 100%);
  background-position: 0% 0%;
  background-size: 300% 300%;
  content: "";
  height: 100%;
  left: 0px;
  pointer-events: none;
  position: absolute;
  top: 0px;
  transition: background-position 350ms ease, transform 350ms ease;
  width: 100%;
  z-index: -20;
}

.bg-dark .cteative-service-item:hover:before {
  background-position: 100% 100%;
  transform: scale(1.08, 1.03);
}

.cteative-service-item i {
  display: inline-block;
  font-size: 50px;
  font-weight: 100;
  margin-bottom: 30px;
}

.bg-dark .cteative-service-item a {
  color: var(--white);
  text-align: center;
  display: block;
  /* 将链接设置为块级元素 */
  margin: 0 auto;
  /* 使用 margin 居中 */
}

.bg-dark .cteative-service-item a:hover {
  color: var(--color-primary);
}

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

  .bg-dark .cteative-service-item {
    max-width: 355px;
  }
}

.cteative-service-item h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cteative-service-item img {
  height: 80px;
  margin-bottom: 50px;
  width: auto !important;
}

.cteative-service-item:hover img {
  color: #fff;
}

.cteative-service-item p {
  margin: 0;
  text-align: center;
}

.cteative-service-item span {
  position: absolute;
  bottom: -19px;
  right: 0;
  font-size: 120px;
  z-index: -1;
  font-weight: 900;
  line-height: 1;
  color: #cccccc;
  opacity: 0.2;
}

.bg-dark .cteative-service-item span {
  color: var(--white);
  opacity: 0.02;
}

.bg-dark .cteative-service-item:hover span {
  color: var(--white);
  opacity: 0.15;
}

.services-carousel.owl-carousel .owl-dots {
  position: absolute;
  top: -90px;
  right: 100px;
}

.services-carousel.owl-carousel .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid;
  height: 25px;
  width: 25px;
  border-color: var(--color-primary);
  position: relative;
  opacity: 0.6;
}

.services-carousel.owl-carousel .owl-dots .owl-dot span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 8px;
  width: 8px;
  background: var(--bg-gradient);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.6;
}

.services-carousel.owl-carousel .owl-dots .owl-dot.active span {
  opacity: 1;
}

.services-carousel.owl-carousel .owl-dots .owl-dot.active span::after {
  opacity: 1;
}

img.bg-move {
  position: absolute;
  max-width: 200px;
  transform: rotate(45deg);
  left: 0;
  bottom: 80px;
  z-index: 9;
}

.services-button-prev,
.services-button-next {
  display: inline-block;
  height: 60px;
  width: 70px;
  line-height: 60px;
  position: relative;
  z-index: 99;
}

.services-button-prev:hover,
.services-button-next:hover {
  background: #fff;
  color: #ff0074;
  font-weight: 900;
  transition: all 0.8s;
}

/* ============================================================== 
    # Service Style Three
=================================================================== */

.service-hover-item {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  counter-increment: count;
}

.service-hover-wrapper {
  position: absolute;
  width: 337px;
  top: 50px;
  left: 185px;
  pointer-events: none;
  transform: translate(-100%, -50%);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
  background-color: var(--ogency-black2);
  z-index: -1;
}

.service-hover-wrapper img {
  height: 100%;
}

.service-hover-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-hover-items>ul>li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 50px 0;
}

.service-hover-items>ul>li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-hover-content {
  display: grid;
  grid-template-columns: 0.5fr 1.6fr 2.5fr 1.2fr;
  grid-column-gap: 70px;
}

.service-hover-content .arrow {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-hover-items .icon i {
  display: inline-block;
  font-weight: 100;
  font-size: 55px;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-hover-content h2 {
  font-weight: 700;
  margin-top: -8px;
  font-size: 30px;
}

.service-hover-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 25px;
}

.service-hover-content ul li {
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding-left: 27px;
  color: #cccccc;
  margin-top: 5px;
}

.service-hover-content ul li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  font-size: 15px;
  font-weight: 100;
}

.service-hover-content p {
  margin-bottom: 0;
}

.service-hover-content .item-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-hover-content .item-title span {
  font-size: 60px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  opacity: 0.3;
}

.service-hover-content .arrow .btn-animation {
  left: 50px;
}

.service-hover-content .btn-animation::after {
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

/* ============================================================== 
    # Services Details
=================================================================== */
.services-details-area .thumb img {
  margin-bottom: 40px;
}

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

.feature-list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list-item li {
  position: relative;
  z-index: 1;
  padding-left: 32px;
  margin-top: 10px;
  font-weight: 600;
}

.feature-list-item li::after {
  position: absolute;
  left: 0;
  top: 4px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  color: var(--color-heading);
  font-weight: 500;
  font-size: 12px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.quick-contact-widget {
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 60px 37px;
  background-position: center center;
  overflow: hidden;
}

.quick-contact-widget .content {
  position: relative;
  z-index: 1;
}

.quick-contact-widget h2 {
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 25px;
}

.quick-contact-widget h4 a {
  font-weight: 400;
  border-bottom: 2px solid;
}

.quick-contact-widget i {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  font-weight: 100;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 40px;
  position: relative;
}

.quick-contact-widget i::after {
  position: absolute;
  left: -10px;
  top: -10px;
  content: "";
  height: 80px;
  width: 80px;
  background: #ffffff;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.8;
}

.quick-contact-widget .btn-sm {
  font-size: 16px;
}

.services-sidebar .single-widget {
  margin-top: 50px;
}

.services-sidebar .single-widget .widget-title {
  display: block;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: -5px;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 15px;
}

.services-sidebar .single-widget .widget-title::after {
  position: absolute;
  left: 10px;
  bottom: 0;
  content: "";
  height: 3px;
  width: 50px;
  border-bottom: 3px solid var(--color-primary);
}

.services-sidebar .single-widget .widget-title::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 3px;
  width: 5px;
  background: var(--dark);
}

.services-sidebar .single-widget h4.widget-title {
  font-size: 24px;
}

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

.widget-brochure ul {
  padding-left: 0;
  list-style: none;
}

.widget-brochure ul li a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 5px;
  border: 2px solid #cddff7;
  color: var(--color-heading);
}

.widget-brochure ul li a:hover {
  color: var(--color-primary);
}

.widget-brochure ul li:first-child a {
  margin-top: 0;
}

.widget-brochure ul li:first-child a,
.widget-brochure ul li a:hover {
  background: var(--dark);
  border-color: transparent;
  color: var(--white);
}

.widget-brochure ul li i {
  font-size: 35px;
  font-weight: 100;
  margin-right: 16px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.widget-brochure ul li:hover i,
.widget-brochure ul li:first-child i {
  color: var(--white);
}

@media only screen and (max-width: 767px) {
  .services-more .row {
    margin-top: -20px;
  }
}

.services-more .item {
  padding: 50px 35px;
  overflow: hidden;
  margin-top: 15px;
  position: relative;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(90, 144, 225, 0.1);
}

.services-more .item img {
  height: 80px;
  margin-bottom: 30px;
}

.services-more .item i::before {
  line-height: inherit;
}

@media only screen and (max-width: 767px) {
  .services-more .item {
    margin-top: 30px;
    text-align: center;
  }
}

.services-more .item i {
  display: inline-block;
  font-size: 40px;
  margin-bottom: 30px;
  background: var(--color-primary);
  color: var(--white);
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  border-radius: 50%;
}

.services-more .item a {
  color: var(--color-heading);
}

.services-more .item a:hover {
  color: var(--color-primary);
}

.services-more .item p {
  margin: 0;
}

.service-single-thumb {
  position: relative;
  z-index: 1;
}

.service-single-thumb img {
  margin-bottom: 40px;
}

.services-list-widget {
  padding: 50px;
  background-size: cover;
  background-position: center;
  border: 2px solid;
  padding-top: 60px;
}

.services-list-widget a {
  display: block;
  padding: 10px 0;
  font-weight: 700;
  position: relative;
  padding-right: 50px;
  font-size: 17px;
}

.services-list-widget .current-item a {
  color: var(--color-primary);
  font-weight: 800;
}

.services-list-widget li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.services-list-widget li:first-child {
  border: none;
  margin-top: -10px;
}

.services-list-widget a i {
  float: right;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  margin-top: 1px;
}

.services-sidebar .single-widget.text-light .widget-title::after {
  border-color: var(--white);
}

/* ============================================================== 
    # About
=================================================================== */
.about-style-one-thumb {
  position: relative;
  padding-bottom: 50px;
}

.about-style-one-thumb .fun-fact {
  background: url(../img/shape/9.html);
  position: absolute;
  right: 50px;
  bottom: -50px;
  padding: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding-bottom: 100px;
}

.about-style-one-thumb .fun-fact .counter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.about-style-one-thumb .fun-fact .medium {
  font-weight: 600;
}

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

a.arrow-btn {
  display: inline-block;
  transform: rotate(-45deg);
  font-size: 100px;
  -webkit-text-stroke: 1px var(--color-primary);
  color: transparent;
  margin-top: 25px;
  line-height: 1;
}

.bg-dark a.arrow-btn {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.blur-bg-theme {
  position: absolute;
  right: 0;
  top: 0;
  height: 300px;
  width: 300px;
  background: rgb(233, 10, 10);
  z-index: -1;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.07;
}

.bg-dark .blur-bg-theme {
  opacity: 0.4;
  background: var(--bg-gradient);
  filter: blur(100px);
}

ul.list-simple {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

ul.list-simple li {
  font-weight: 700;
  font-size: 18px;
  margin-top: 7px;
  padding-left: 32px;
  position: relative;
  z-index: 1;
}

ul.list-simple li::after {
  position: absolute;
  left: 0;
  top: 7px;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  border: 1px solid #dddddd;
  height: 20px;
  width: 20px;
  line-height: 19px;
  text-align: center;
  border-radius: 5px;
  font-size: 12px;
  color: var(--color-heading);
}

.bg-dark ul.list-simple li::after {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #cccccc;
}

/* About Style Two */

.bg-dark .about-style-two-area {
  background: var(--dark-secondary);
}

.about-style-two-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 90%;
  width: 50%;
  background-size: cover;
  background-position: center;
}

.experience-style-one {
  display: flex;
  align-items: center;
  position: absolute;
  background: var(--bg-gradient);
  padding: 35px;
  right: -50px;
  bottom: -12%;
}

.experience-style-one h3 {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.experience-style-one .video-button {
  margin-right: 40px;
}

.experience-style-one .video-button .video-play-button {
  position: relative;
  z-index: 1;
  display: block;
}

.experience-style-one .video-button .effect {
  background: var(--white);
  height: 60px;
  width: 60px;
  margin-top: 2px;
  margin-left: 2px;
}

.experience-style-one .video-button .effect::before,
.experience-style-one .video-button .effect::after {
  background: var(--white);
  height: 100px;
  width: 100px;
}

.experience-style-one .video-button .video-play-button i {
  background: var(--white);
  color: var(--color-heading);
}

.about-style-two-info h2 strong {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.about-style-two-info h2 strong::after {
  position: absolute;
  left: 0;
  bottom: 0px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/shape/8.html);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-style-two-info {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.bg-dark .about-style-two-info {
  padding: 0;
}

.bg-dark .about-style-two-info::after {
  position: absolute;
  right: 0;
  top: -120px;
  content: "";
  height: 450px;
  width: 450px;
  background: var(--bg-gradient);
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

/* Faq Style ONe */

.faq-style-one {
  position: relative;
}

.faq-style-one button.accordion-button {
  color: var(--color-heading);
  font-size: 20px;
  font-weight: 800 !important;
  padding: 0 !important;
  background: transparent !important;
  padding-left: 35px !important;
  position: relative;
  box-shadow: inherit;
  border: none;
  border-radius: inherit !important;
  text-transform: inherit;
}

.bg-dark .faq-style-one button.accordion-button {
  font-weight: 700 !important;
}

.faq-style-one button.accordion-button::after {
  background: transparent;
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 100;
  font-size: 26px;
  position: absolute;
  top: -3px;
  left: 0;
  opacity: 1;
  height: 100%;
  transform: inherit;
}

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

.faq-style-one button.accordion-button:focus {
  background: transparent;
  color: var(--color-heading);
  border: none;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  padding-left: 0;
  font-weight: 800;
}

.faq-style-one .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 35px;
}

.faq-style-one .accordion-body {
  padding-left: 35px;
  padding-top: 25px;
  padding-bottom: 0;
}

.faq-style-one-content {
  margin-top: -15px;
}

.faq-style-one .accordion-body p:last-child {
  margin: 0;
}

.bg-dark .faq-style-one button.accordion-button {
  color: var(--white);
}

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

.faq-style-two.faq-style-one button.accordion-button {
  padding-left: 0 !important;
  padding-right: 35px !important;
}

.faq-style-two.faq-style-one .accordion-body {
  padding-left: 0;
  padding-right: 35px;
  margin-bottom: 15px;
}

.faq-style-two.faq-style-one button.accordion-button::after {
  left: auto;
  right: 0;
}

.faq-style-two.faq-style-one .accordion-item {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

.faq-style-two.faq-style-one .accordion-item {
  margin-bottom: 20px;
}

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

.item-center .portfolio-style-one {
  padding-right: 30px;
}

.item-center:nth-child(2n) .portfolio-style-one {
  padding-right: 0;
  padding-left: 30px;
}

.portfolio-style-one {
  margin-top: 50px;
}

.pf-item-info {
  display: flex;
  justify-content: space-between;
  padding-left: 50px;
  margin-top: 30px;
  padding-right: 30px;
}

a.pf-btn {
  display: inline-block;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  background: var(--bg-gradient);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 40px;
}

.bg-dark a.pf-btn {
  background: var(--dark-secondary);
}

a.pf-btn i {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  font-weight: 900;
  transform: rotate(-45deg);
}

.pf-item-info .button {
  position: relative;
  top: -80px;
}

.pf-item-info .content-info {
  margin-right: 30px;
}

.pf-item-info .content-info span {
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid;
  padding: 3px 15px;
  border-radius: 40px;
}

.bg-dark .pf-item-info .content-info span {
  background: var(--bg-gradient);
  color: var(--white);
  border-radius: inherit;
  border: none;
}

.bg-dark .pf-item-info .content-info h2 a {
  color: var(--white);
}

.thumb-zoom {
  overflow: hidden;
}

.thumb-zoom img {
  transition: all 0.35s ease-in-out;
}

.thumb-zoom:hover img {
  transform: scale(1.2);
}

/* ============================================================== 
    # Project
=================================================================== */
@media (min-width: 1200px) {
  .project-style-one-area .container-fill {
    padding-left: 0;
    padding-right: 0;
  }
}

.project-style-one {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.project-style-one .overlay {
  position: absolute;
  left: 50px;
  bottom: -50px;
  display: flex;
  align-items: center;
  background: var(--white);
  transition: all 0.35s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.bg-dark .project-style-one .overlay {
  background: var(--dark);
}

.project-style-one .overlay::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  height: 10px;
  width: 100%;
  background: var(--bg-gradient);
}

.project-style-one .overlay .link a {
  display: inline-block;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  border-right: 1px solid #dddddd;
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
  font-size: 40px;
}

.bg-dark .project-style-one .overlay .link a {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.project-style-one .overlay .content {
  padding: 15px 50px;
  padding-left: 40px;
  padding-bottom: 22px;
}

.project-style-one .overlay .content h4 {
  margin: 0;
}

.bg-dark .project-style-one .overlay .content h4 a {
  color: var(--white);
}

.project-style-one .overlay .content span {
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.9;
  margin-top: -5px;
}

.project-style-one .overlay .link a i {
  transform: rotate(-45deg);
}

.swiper-slide.swiper-slide-active .project-style-one .overlay {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.project-button-prev,
.project-button-next {
  height: 60px;
  width: 80px;
  line-height: 60px;
  position: relative;
  z-index: 1;
}

.project-button-prev {
  border-right: 1px solid;
}

.bg-dark .project-button-prev {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.project-button-next::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f061";
  font-family: "Font Awesome 5 Pro";
  transform: translate(-50%, -50%);
  margin-top: 1px;
}

.project-button-prev::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "\f060";
  font-family: "Font Awesome 5 Pro";
  transform: translate(-50%, -50%);
  margin-top: 1px;
}


/* ============================================================== 
    # Pricing
=================================================================== */

.shape-left-top {
  position: absolute;
  left: 0;
  top: -25%;
  width: 30%;
  z-index: -1;
}

.pricing-style-one-area {
  position: relative;
  z-index: 1;
}

.pricing-style-one {
  display: flex;
  padding: 40px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 1);
  border-radius: 30px;
}

.bg-dark .pricing-style-one {
  background: rgba(255, 255, 255, 0.06);
}

.pricing-style-one:first-child {
  margin-top: 0;
}

.pricing-style-one.active {
  background: var(--bg-gradient);
}

.pricing-style-one .left {
  width: 50%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  margin-right: 30px;
  padding-right: 30px;
}

.pricing-style-one h4 {
  font-weight: 900;
}

.pricing-style-one.active h4 {
  color: var(--white);
}

.pricing-style-one ul li {
  font-weight: 600;
  position: relative;
  z-index: 1;
  list-style: circle;
}

.pricing-style-one.active ul li {
  color: var(--white);
}

.pricing-style-one ul {
  list-style: circle;
  margin-left: 20px;
}

.pricing-style-one h2 {
  margin: 0;
  margin-top: 20px;
  font-weight: 700;
  font-size: 50px;
}

.pricing-style-one.active h2 {
  color: var(--white);
}

.pricing-style-one span {
  display: block;
}

.bg-dark .pricing-style-one span {
  color: #cccccc;
}

.pricing-style-one.active span {
  color: var(--white);
  opacity: 0.9;
}

.pricing-items p {
  margin-top: 25px;
}

.pricing-items h5 {
  margin: 0;
  margin-top: 25px;
  font-weight: 600;
  font-size: 24px;
}

.bg-dark .pricing-items h5 {
  color: var(--white);
}

.pricing-items h5 strong {
  font-size: 36px;
  text-decoration: underline;
  margin: 0 3px;
  color: var(--color-secondary);
}

.pricing-style-one:first-child .btn {
  color: var(--color-heading);
  border-color: #e7e7e7;
}

.pricing-style-one:first-child .btn:hover {
  color: var(--white);
  border-color: var(--color-primary);
}

.bg-dark .pricing-style-one:first-child .btn {
  color: var(--white);
  border-color: var(--white);
}

.bg-dark .pricing-style-one:first-child .btn:hover {
  color: var(--white);
  border-color: var(--color-primary);
}

/* ============================================================== 
    # Fun Factor
=================================================================== */
.fun-fact .counter {
  display: flex;
  align-items: center;
  font-size: 60px;
  line-height: 1.2;
  position: relative;
  margin-top: 20px;
}

.fun-fact .counter .operator {
  font-weight: 800;
}

.fun-fact-circle-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 195px;
  margin-bottom: 170px;
}

.fun-fact-circle-lists .fun-fact {
  position: relative;
  padding: 15px;
  text-align: center;
  z-index: 1;
}

.fun-fact-circle-lists .fun-fact .operator {
  font-weight: 800;
}

.bg-dark .fun-fact-circle-lists .fun-fact .operator {
  font-weight: 600;
}

.fun-fact-circle-lists .fun-fact .counter {
  justify-content: center;
  color: var(--color-heading);
  font-weight: 800;
}

.bg-dark .fun-fact-circle-lists .fun-fact .counter {
  color: var(--white);
  font-weight: 600;
}

.fun-fact-circle-lists .fun-fact::after {
  height: 300px;
  width: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #c9c4c4;
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.bg-dark .fun-fact-circle-lists .fun-fact::after {
  border: 1px solid #6f6c6c;
}

.fun-fact-circle-lists .fun-fact:nth-child(2)::after {
  height: 380px;
  width: 380px;
  background: var(--white);
}

.bg-dark .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
  background: var(--dark);
}

.fun-fact-circle-lists .fun-fact:last-child::after {
  height: 420px;
  width: 420px;
  background: var(--white);
}

.bg-dark .fun-fact-circle-lists .fun-fact:last-child::after {
  background: var(--dark);
}

.fun-fact-circle-lists .fun-fact:last-child .counter {
  margin: 0;
}

.fun-fact-circle-lists .fun-fact span.medium {
  font-weight: 600;
}

.bg-dark .fun-fact-circle-lists .fun-fact span.medium {
  color: var(--white);
  opacity: 0.9;
}

.fun-fact-circle-lists .fun-fact:nth-child(2) {
  position: relative;
  top: 40px;
  left: -5px;
  z-index: 9;
}

.fun-fact-circle-lists .fun-fact:nth-child(3) {
  top: -120px;
  left: -35px;
}

.fun-fact-circle-lists .fun-fact:nth-child(3)::after {
  height: 330px;
  width: 330px;
}

.fun-fact-circle-lists .fun-fact:last-child {
  top: 50px;
  right: 60px;
}

.fun-fact-circle-lists .fun-fact:last-child .counter .timer {
  font-size: 100px;
  font-weight: 900;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  margin-top: 0;
}

/* ============================================================== 
    # Brand
=================================================================== */

.brand-items {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 50px;
}

.brand-conetnt {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slide-left 50s linear infinite;
}

.brand-conetnt h2 {
  margin: 0;
  font-size: 100px;
  margin: 0 50px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: underline;
}

.bg-dark .brand-conetnt h2 {
  color: var(--white);
}

.brand-conetnt .item:nth-child(2n) h2 {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
  border: none;
  text-decoration: none;
}

.brand-style-two-area .brand-conetnt .item:nth-child(2n) h2 {
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
  border: none;
  text-decoration: none;
}

.bg-dark .brand-style-two-area .brand-conetnt .item:nth-child(2n) h2 {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.brand-conetnt .item {
  position: relative;
}

.brand-conetnt .item::after {
  position: absolute;
  right: -15px;
  top: 50%;
  content: "";
  height: 40px;
  width: 40px;
  background: url(../img/shape/4.html);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transform: translateY(-50%);
  margin-top: 10px;
}

.brand-style-two-area .brand-conetnt .item::after {
  background: url(../img/shape/4-dark.html);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.bg-dark .brand-conetnt .item::after {
  position: absolute;
  right: -15px;
  top: 50%;
  content: "";
  height: 40px;
  width: 40px;
  background: url(../img/shape/4.html);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  transform: translateY(-50%);
  margin-top: 10px;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

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

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

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

/* ============================================================== 
    # Brand Style Two
=================================================================== */

.bg-dark .brand-style-two-area {
  background: var(--dark-secondary);
}

.brand-style-two-area .brand-items {
  padding: 0;
}

.brand-style-two-area .brand-items .brand-conetnt h2 {
  line-height: 1;
}

/* ============================================================== 
    # Clietns Area
=================================================================== */

.clietns-area {
  overflow: hidden;
}

.client-items {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 120px;
}

.client-items h4,
.client-items h5 {
  font-weight: 600;
  margin-bottom: 30px;
  color: #cccccc;
}

.partner-box:first-child {
  margin-top: -35px;
}

.client-items .partner-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.client-item-box::after {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 160%;
  width: 160%;
  background: url(../img/shape/globe.html);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
}

.client-items .partner-box .item {
  height: 100px;
  width: 100px;
  margin: 30px 16px 0;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  line-height: 100px;
  border-radius: 8px;
}

.client-items .partner-box .item img {
  height: 45px;
  width: auto;
}

.client-items .partner-box .item i {
  display: inline-block;
  font-size: 50px;
  line-height: 100px;
}

.client-items .partner-box .item i.fab.fa-angular {
  color: #dd1b16;
}

.client-items .partner-box .item i.fab.fa-blackberry {
  color: #4d0026;
}

.client-items .partner-box .item i.fab.fa-amazon-pay {
  color: #333e47;
}

.client-items .partner-box .item i.fab.fa-codepen {
  color: #3b5998;
}

.client-items .partner-box .item i.fab.fa-digital-ocean {
  color: #0080ff;
}

.client-items .partner-box .item i.fab.fa-dropbox {
  color: #3d9ae8;
}

.client-items .partner-box .item i.fab.fa-reddit {
  color: #ff4500;
}

/* ============================================================== 
    # Team Area 
=================================================================== */

.team-style-one-area {
  background-position: top !important;
}

.team-style-one {
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 30px;
}

.bg-dark .team-style-one {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-style-one img {
  border-radius: 50%;
  max-width: 80%;
  margin: auto;
}

.team-style-one .thumb {
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-style-one .content {
  position: relative;
  padding: 30px;
  z-index: 1;
  border-top: 1px solid #dddddd;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bg-dark .team-style-one .content {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.team-style-one .content i {
  display: inline-block;
  font-size: 38px;
  font-weight: 100;
  color: var(--color-primary);
}

.bg-dark .team-style-one .content i {
  color: var(--white);
}

.team-style-one h4 {
  margin-bottom: 5px;
}

.bg-dark .team-style-one h4 a {
  color: var(--white);
}

.team-style-one span {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.6px;
}

.bg-dark .team-style-one span {
  color: #cccccc;
}

.team-style-one .thumb .social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.team-style-one .thumb .social li {
  display: inline-block;
  margin: 0 1px;
}

.team-style-one .thumb .social li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: var(--color-primary);
  line-height: 45px;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  bottom: -30px;
  opacity: 0;
  visibility: hidden;
}

.team-style-one .thumb .social li:last-child a {
  transition: all 0.55s ease-in-out;
}

.team-style-one:hover .thumb .social li a {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.team-style-one .social li.facebook a {
  background: #3b5998;
}

.team-style-one .social li.twitter a {
  background: #1da1f2;
}

.team-style-one:hover .thumb img {
  filter: blur(2px);
}

/* ============================================================== 
     # Team Single  
=================================================================== */
.team-right-info h2 {
  font-weight: 800;
}

.team-right-info .fun-fact .medium {
  display: block;
  color: var(--color-heading);
  font-weight: 500;
  margin-bottom: 25px;
}

.team-right-info ul {
  margin-top: 25px;
  border-top: 2px solid #dddddd;
  padding-top: 17px;
}

ul.user-location li {
  display: grid;
  grid-template-columns: 2fr 4fr;
  margin-top: 15px;
}

ul.user-location li p {
  margin: 0;
}

.team-right-info ul li a {
  font-weight: 600;
}

.team-right-info ul li strong {
  font-weight: 800;
  color: var(--color-heading);
}

.team-right-info ul li a {
  font-weight: 600;
  opacity: 0.9;
}

.team-right-info ul li a:hover {
  color: var(--color-primary);
}

.team-right-info>span {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
}

.team-right-info .social {
  display: flex;
  margin-top: 25px;
  font-weight: 800;
  align-items: center;
}

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

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

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

.team-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);
}

.team-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-right-info .social .share-link:hover ul {
  left: 58px;
  opacity: 1;
  pointer-events: auto;
}

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

.team-right-info .social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 47px;
  background: var(--color-primary);
  text-align: center;
  border-radius: 50%;
  color: var(--white);
}

.skill-items .progress-box {
  margin-bottom: 35px;
}

.skill-items .progress-box:last-child {
  margin-bottom: 0;
}

.skill-items .progress-box h5 {
  font-weight: 700;
  margin-bottom: 5px;
  text-align: left;
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.skill-items .progress-box h5 span {
  position: absolute;
  font-size: 50px;
  line-height: 1;
  top: -21px;
  left: 0;
  z-index: -1;
  opacity: 0.05;
  font-weight: 800;
}

.skill-items .skill-items {
  margin-top: 40px;
}

.skill-items .progress-box .progress {
  background: transparent;
  border-bottom: 2px solid #cfc8c8;
  box-shadow: inherit;
  border-radius: inherit;
  overflow: inherit;
}

.skill-items .progress-box .progress .progress-bar {
  height: 6px;
  background: var(--bg-gradient);
  top: 12px;
  position: relative;
  overflow: inherit;
  border-radius: 30px;
}

.skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  top: -40px;
  display: block;
  font-size: 16px;
  color: var(--color-heading);
  font-weight: 700;
}

.qualification-item {
  display: inline-block;
  position: relative;
  padding: 50px;
  border-radius: 5px;
  z-index: 1;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 3px 40px 0 rgb(0 0 0 / 10%);
}

.qualification-grid {
  display: grid;
  grid-template-columns: 0.3fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
}

.qualification-item i {
  display: inline-block;
  font-size: 70px;
  margin-bottom: 15px;
  color: var(--color-heading);
  line-height: 1;
}

.qualification-item h4 {
  margin: 0;
  font-weight: 800;
}

.team-right-info {
  padding: 90px 100px;
  padding-left: 70px;
  z-index: 1;
}

.team-experience .fun-fact .counter {
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  font-size: 70px;
  letter-spacing: -2px;
}

.team-right-info p {
  opacity: 0.9;
}

.team-content-top {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.team-content-top::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 2px solid;
  z-index: -1;
}

.team-content-top .thumb img {
  padding: 50px;
  position: relative;
  margin-top: -100px;
  padding-right: 0;
}

.team-qualifcations h2 {
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 30px;
}

.team-qualifcations p:last-child {
  margin-bottom: 0;
}

.qualification-grid h2 {
  writing-mode: vertical-lr;
  text-transform: uppercase;
  margin: 0;
  color: #b9bdc6;
}

/* ============================================================== 
    # Why Choose Us
=================================================================== */
.choose-us-style-one .bottom-info {
  display: flex;
  align-items: center;
  justify-content: right;
}

ul.list-item li {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #c7c8c9;
  font-size: 20px;
  font-weight: 800;
  align-items: center;
  color: var(--color-heading);
}

.bg-dark ul.list-item li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  color: #cccccc;
}

ul.list-item li strong {
  margin-left: 120px;
  font-size: 36px;
  -webkit-text-stroke: 1px #9b9b9b;
  color: transparent;
  font-weight: 900;
}

ul.list-item {
  margin-top: 50px;
}

ul.list-item li:first-child {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.choose-us-style-one-thumb {
  position: relative;
}

.choose-us-style-one-thumb .video-play-button {
  position: absolute;
  right: -45px;
  bottom: 150px;
  overflow: inherit;
  background: transparent;
  z-index: 1;
}

.choose-us-style-one-thumb .video-play-button i {
  background: var(--bg-gradient);
}

.video-play-button i::before {
  left: 3px;
  position: relative;
}

/* ============================================================== 
    # Testimonials
=================================================================== */
.testimonial-style-one {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 60px;
  align-items: center;
  border: 1px solid #dddddd;
  border-top: none;
  border-bottom: none;
}

.bg-dark .testimonial-style-one {
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-style-one .rating {
  color: #ffaa17;
  display: block;
  margin-bottom: 20px;
}

.testimonial-style-one .provider .thumb {
  height: 180px;
  width: 180px;
  margin: auto auto 30px;
  text-align: center;
  border-radius: 50%;
  position: relative;
}

.testimonial-style-one .provider .thumb>img {
  border-radius: 50%;
  display: block;
}

.testimonial-style-one .provider h4 {
  font-weight: 800;
  margin-bottom: 7px;
}

.testimonial-style-one-area .heading-left {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 50px;
  margin: 0;
}

.bg-dark .testimonial-style-one-area .heading-left {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-style-one .content p {
  font-size: 26px;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: -5px;
}

.testimonial-style-one .content {
  border-left: 1px solid #dddddd;
  padding: 120px 80px;
}

.bg-dark .testimonial-style-one .content {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-style-one .provider {
  text-align: center;
}

.testimonial-style-one .provider .thumb .quote {
  height: 60px;
  width: 60px;
  background: var(--bg-gradient);
  text-align: center;
  line-height: 64px;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-style-one .provider .thumb .quote img {
  height: 20px;
}

/* ============================================================== 
    # Slide Multi Section
=================================================================== */

.thecontainer {
  width: 300%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 7;
}

.panel {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.panel .title {
  margin-bottom: 0;
}

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

.bg-shape-top {
  position: absolute;
  right: 5%;
  top: 0;
  max-width: 10%;
  z-index: -1;
}

.achivement-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

.achivement-item {
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.achivement-item:nth-child(2) {
  background: rgba(255, 255, 255, 0.1);
}

.achivement-grid:nth-child(2) .achivement-item {
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
}

.achivement-grid {
  display: grid;
  grid-row-gap: 30px;
}

.achivement-item i {
  display: inline-block;
  font-size: 60px;
  margin-bottom: 25px;
}

.achivement-item h4 {
  font-weight: 600;
  margin: 0;
}

.achivement-skill-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 10%;
  grid-row-gap: 60px;
  text-align: left;
  margin-top: 60px;
  padding-bottom: 60px;
}

.achivement-skill-items .progress-box .progress {
  height: 3px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.4);
  overflow: inherit;
}

.achivement-skill-items .progress-box .progress .progress-bar {
  background: var(--white);
  position: relative;
  overflow: inherit;
}

.achivement-skill-items .progress-box .progress .progress-bar span {
  position: absolute;
  right: 0;
  bottom: -80px;
  font-size: 40px;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.achivement-skill-items .progress-box h5 {
  font-weight: 900;
  margin-bottom: 25px;
}

.achivement-skill-items .progress-box .progress .progress-bar::after {
  position: absolute;
  right: 0;
  top: -9px;
  content: "";
  height: 20px;
  width: 20px;
  background: var(--color-primary);
  border: 3px solid;
  border-radius: 50%;
}

.contact-panel-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background-size: cover;
  background-position: left top;
}

/* ============================================================== 
    # Footer
=================================================================== */

.footer-box {
  border: 1px solid #dddddd;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 60px;
}

.bg-dark .footer-box {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

footer {
  margin: 60px 60px;
  padding-bottom: 4%;
  background-color: #000000ab;
  border-radius: 30px;
}

footer .f-item.about {
  position: relative;
  z-index: 1;
}

footer .f-item.about::after {
  position: absolute;
  right: 0;
  top: -100%;
  content: "";
  height: 400%;
  width: 300%;
  background: #f6f6f6;
  z-index: -1;
  border-right: 1px solid #dddddd;
}

.bg-dark footer .f-item.about::after {
  position: absolute;
  right: 0;
  top: -100%;
  content: "";
  height: 400%;
  width: 300%;
  background: #000;
  z-index: -1;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  border-top: 1px solid #dddddd;
  margin: 0;
  padding: 15px;
  background: transparent !important;
}

.bg-dark .footer-bottom {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
  margin: 0;
  color: var(--color-paragraph);
}

.bg-dark .footer-bottom p {
  color: #cccccc;
}

footer img.logo {
  height: 60px;
  margin-bottom: 30px;
}

footer .widget-title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 800;
}

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

.bg-dark footer p,
.bg-dark footer {
  color: #cccccc;
  background-color: #000;
}

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

.footer-social ul li {
  display: inline-block;
}

.footer-social ul li a {
  display: inline-block;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white);
  background: var(--dark);
}

.bg-dark .footer-social ul li a {
  background: #403e44;
}

.bg-dark .footer-social ul li a {
  color: var(--white);
}

.footer-social ul li a:hover {
  background: var(--color-primary);
}

footer .f-item.link li {
  margin-top: 10px;
  font-size: 15px;
}

footer .f-item.link li a {
  display: inline-block;
  font-weight: 500;
  color: var(--color-paragraph);
}

footer .f-item.link li a:hover {
  color: var(--color-primary);
}

.bg-dark footer .f-item.link li a {
  color: #d2d2d4;
}

footer .f-item.link li a:hover {
  color: var(--color-primary);
}

.bg-dark footer .f-item.link li a:hover {
  color: #ff0074;
}

.f-item.contact li {
  display: flex;
  margin-top: 20px;
}

.f-item.contact li strong {
  display: block;
  text-transform: uppercase;
  color: var(--color-heading);
  font-size: 14px;
  margin-bottom: 3px;
}

.bg-dark .f-item.contact li strong {
  color: var(--white);
}

.f-item.contact li i {
  display: inline-block;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  margin-right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 300;
  font-size: 18px;
}

.bg-dark .f-item.contact li {
  color: #dedede;
}

.f-item.contact li p {
  margin: 0;
}

.bg-dark .f-item.contact li p {
  color: #dedede;
}

.f-item.contact li a {
  font-weight: 500;
}

.bg-dark .f-item.contact li a {
  color: #dedede;
}

.bg-dark .f-item.contact li a:hover {
  color: var(--white);
}

.f-item.newsletter form {
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin-top: 20px;
  border: 2px solid;
}

.bg-dark .f-item.newsletter form {
  border: none;
}

.f-item.newsletter form input {
  box-shadow: inherit;
  border: none;
  min-height: 60px;
  padding-left: 25px;
}

.f-item.newsletter form button {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 50px;
  width: 50px;
  padding: 0;
  border-radius: 50%;
}

.f-item.newsletter form button i {
  margin: 0;
  margin-left: 2px;
  transform: rotate(-45deg);
}

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

.accrdion-portfolio-area,
.accrdion-portfolio-area div {
  height: 100%;
  min-height: 100vh;
}

.accordion-portfolio-lists li {
  overflow: hidden;
  border: 7px solid var(--dark);
  border-bottom: none;
}

.accordion-portfolio-lists {
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  min-height: auto;
  position: relative;
}

.accordion-portfolio-lists {
  height: 100%;
  padding-top: 130px;
  padding-bottom: 25px;
  width: 98%;
}

.accordion-portfolio-lists li {
  cursor: grab;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  padding: 1.6em;
  list-style: none;
  width: 16.66666667%;
  height: inherit;
  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;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.accordion-portfolio-lists li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 100%;
  background: var(--bg-gradient);
  z-index: -1;
  opacity: 0.75;
  transition: all 0.35s ease-in-out;
}

.accordion-portfolio-lists li:nth-child(2)::after {
  background: #fba065;
}

.accordion-portfolio-lists li:nth-child(3)::after {
  background: #bccd7e;
}

.accordion-portfolio-lists li:nth-child(4)::after {
  background: #6a850b;
}

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

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

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

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

.accordion-portfolio-lists li h3 {
  position: absolute;
  left: 50%;
  margin: 0 !important;
  font-weight: 700;
  padding: 0;
  transform: translateX(-50%);
  top: 50px;
  writing-mode: vertical-rl;
  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>span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  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>span {
  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 span {
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 115px;
  transition: all 0.35s ease-in-out;
  transform: translateX(100px);
  opacity: 0;
  visibility: hidden;
}

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

.accrdion-portfolio-area .accordion-overlay span::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  height: 1px;
  width: 100px;
  background: var(--white);
}

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

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

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

.popup-single-modal .modal-content {
  position: relative;
}

.bg-dark .popup-single-modal .modal-content {
  background: var(--dark-secondary);
}

.popup-single-modal .modal-dialog-scrollable .modal-body {
  padding: 50px;
  border-radius: inherit;
}

.popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background-color: var(--dark);
}

.bg-dark .popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px var(--white);
  background-color: #f5f5f5;
}

.bg-dark .popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.bg-dark .popup-single-modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
}

@media (min-width: 1400px) {
  .popup-single-modal .modal-xl {
    max-width: 1320px;
  }
}

ul.gallery-project-basic-info {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #dddddd;
  padding-left: 50px;
  margin-left: 50px;
}

.bg-dark ul.gallery-project-basic-info {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

ul.gallery-project-basic-info li {
  margin-top: 20px;
  font-weight: 700;
  color: var(--color-heading);
  font-size: 18px;
}

.bg-dark ul.gallery-project-basic-info li {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  margin-top: 25px;
}

ul.gallery-project-basic-info li:first-child {
  margin-top: 0;
}

ul.gallery-project-basic-info li span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-paragraph);
}

.bg-dark ul.gallery-project-basic-info li span {
  color: #cccccc;
  font-weight: 400;
}

.project-details h1,
.project-details h2,
.project-details h3,
.project-details h4,
.project-details h5,
.project-details h6 {
  font-weight: 800;
  margin-bottom: 20px;
}

.bg-dark .project-details h1,
.bg-dark .project-details h2,
.bg-dark .project-details h3,
.bg-dark .project-details h4,
.bg-dark .project-details h5,
.bg-dark .project-details h6 {
  font-weight: 700;
}

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

ul.list-disc {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
}

ul.list-disc li {
  list-style: disc;
  margin-top: 7px;
}

.bg-dark ul.list-disc li {
  color: #cccccc;
}

/* ============================================================== 
    # Home Blog 
=================================================================== */

/* Home Blog */

.home-blog-style-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 1;
  padding-left: 0;
}

.home-blog-style-one .info {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 0;
  border-radius: 10px;
}

.home-blog-style-one img {
  border-radius: 10px !important;
}

.home-blog-style-one::after {
  position: absolute;
  right: 0;
  left: 30px;
  top: 0;
  content: "";
  height: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  z-index: -1;
}

.home-blog-style-one h4 {
  font-size: 24px;
}

.bg-dark .home-blog-style-one .info {
  background: transparent;
}

.bg-dark .home-blog-style-one::after {
  border-color: rgba(255, 255, 255, 0.15);
}

.bg-dark .home-blog-style-one .info li,
.bg-dark .home-blog-style-one .info a {
  color: #cccccc;
}

.bg-dark .blog-area .meta li::after {
  background: #cccccc;
}

.bg-dark .blog-area .post-title a {
  color: var(--white);
}

.home-blog-style-one .thumb {
  margin-right: 30px;
}

.home-blog-two .thumb img {
  border-radius: 10px;
}

.home-blog-two .info .content {
  background: var(--white);
  padding: 45px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 40px 0 rgb(0 0 0 / 10%);
}

.bg-dark .home-blog-two .info .content {
  background: #333232;
  box-shadow: none;
}

.home-blog-two .info {
  position: relative;
  padding-left: 150px;
  top: -80px;
  margin-bottom: -100px;
  padding-right: 30px;
}

.bg-dark .blog-area .home-blog-two .meta li,
.bg-dark .blog-area .home-blog-two .meta li a {
  color: #cccccc;
}

.bg-dark .blog-area .home-blog-two .meta li a:hover {
  color: var(--white);
}

.bg-dark .blog-area .home-blog-two a.button-regular {
  color: #cccccc;
}

.bg-dark .blog-area .home-blog-two a.button-regular:hover {
  color: var(--white);
}

.home-blog-two .thumb .date {
  position: absolute;
  left: 30px;
  bottom: -25px;
  background: var(--bg-gradient);
  color: var(--white);
  font-size: 50px;
  text-align: center;
  line-height: 1;
}

.home-blog-two .thumb .date {
  display: block;
  font-size: 36px;
  padding: 20px 30px;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  padding-bottom: 25px;
  border-radius: 10px;
}

.home-blog-two .thumb .date strong {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

@media (min-width: 1024px) {
  .blog-style-two-area .row {
    --bs-gutter-x: 60px;
  }
}

/* ============================================================== 
    # Contact CSS
=================================================================== */
ul.contact-address {
  padding: 90px 60px;
  border-radius: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}

ul.contact-address h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

ul.contact-address>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

ul.contact-address li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

ul.contact-address li p {
  margin: 0;
}

ul.contact-address li a {
  font-weight: 500;
  color: #cccccc;
}

ul.contact-address li a:hover {
  color: var(--white);
}

ul.contact-address ul.social-link li {
  display: inline-block;
}

ul.contact-address ul.social-link li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 54px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 10px;
}

ul.contact-address ul.social-link li a:hover {
  background: var(--color-primary);
  color: var(--white);
}

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

.contact-form-style-one input,
.contact-form-style-one textarea {
  min-height: 60px;
  padding: 10px 30px;
  border-radius: 30px;
}

.contact-form-style-one textarea {
  padding-top: 20px;
  min-height: 220px;
}

ul.contact-address li a.phone-link {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  text-decoration: underline;
}

ul.contact-address>li:first-child {
  border: none;
  margin-bottom: 0;
}

.contact-form-style-one button {
  border-radius: 30px;
  margin-top: 13px;
}

/* ============================================================== 
    # 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 {
  padding-top: 60px;
}

.error-box h1 {
  font-size: 150px;
  line-height: 110px;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 3px 3px #c0c0c0;
}

.error-box h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.error-box p {
  padding: 0 10%;
}

/* ============================================================== 
    # Responsive CSS
=================================================================== */

/* Desktop Mini */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .experience-box {
    max-width: 50%;
  }

  .pf-item-info .content-info h2 {
    font-size: 30px;
  }

  .pf-item-info {
    padding-left: 0;
  }

  .pf-item-info .content-info h2 {
    font-size: 30px;
  }

  .pf-item-info {
    padding-left: 0;
  }

  .fun-fact-circle-lists .fun-fact:nth-child(2)::after {
    height: 300px;
    width: 300px;
  }

  .fun-fact-circle-lists .fun-fact:last-child::after {
    height: 350px;
    width: 350px;
  }

  .fun-fact-circle-lists .fun-fact::after {
    height: 270px;
    width: 270px;
  }

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

  .testimonial-style-one {
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 15px;
  }

  .service-hover-content {
    grid-template-columns: 0.5fr 1.6fr 2fr 1.5fr;
    grid-column-gap: 50px;
  }

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

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

  .qualification-grid {
    display: block;
  }

  .qualification-grid h2 {
    writing-mode: inherit;
    color: var(--color-heading);
    margin-bottom: 30px;
  }

  .qualification-item {
    margin-right: 30px;
    width: 45%;
  }

  .team-qualifcations .skill-items {
    padding-left: 0;
    margin-top: 50px;
  }

  footer {
    padding-bottom: 2%;
  }

  footer .f-item.about {
    padding-right: 20px;
  }
}

@media (max-width:1080px) {
  footer .f-item.about {
    padding-right: 20px;
    margin-left: -10px;
  }
}

/* Tablet To Mobile */
@media (max-width: 991px) {

  /* Accordion Portfolio */
  .accordion-portfolio-lists {
    padding: 30px 15px;
    display: block;
    height: auto;
    width: 100%;
  }

  .accrdion-portfolio-area,
  .accrdion-portfolio-area div {
    height: inherit;
    min-height: inherit;
  }

  .accordion-portfolio-lists li {
    width: 100%;
    height: 90px;
    display: block;
    border: none;
    margin-top: 15px;
    border-radius: 10px;
    padding: 35px;
  }

  .accordion-portfolio-lists li h3 {
    writing-mode: inherit;
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    left: 100px;
    text-align: right;
  }

  .accordion-portfolio-lists li>span {
    left: 30px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 60px;
    bottom: auto;
  }

  .accordion-portfolio-lists li.out {
    width: 100%;
    padding-top: 200px;
    height: auto;
  }

  .accordion-portfolio-lists li.out h3 {
    display: none;
  }

  .accrdion-portfolio-area .out .accordion-overlay h2 {
    font-size: 24px;
  }

  .accordion-portfolio-lists li.out::before {
    height: 100%;
  }

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

  .accrdion-portfolio-area .out .accordion-overlay p {
    padding: 0;
  }

  .bg-dark ul.gallery-project-basic-info {
    border: none;
    background: var(--dark);
  }

  /* Error Box */
  .error-box {
    padding-top: 0;
  }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* Multi Section */

  .pin-spacer {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
  }

  .thecontainer {
    max-width: inherit !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
    position: inherit !important;
    transform: none !important;
  }

  .panel.overflow-hidden {
    display: block;
    height: auto;
    min-height: auto;
    transform: none !important;
    padding: 120px 0;
    text-align: center;
  }

  .panel .site-title {
    margin-bottom: 30px;
  }

  .achivement-skill-items {
    grid-template-columns: 1fr;
    margin-top: 20px;
    grid-row-gap: 45px;
    padding-bottom: 10px;
  }

  .achivement-skill-items .progress-box .progress .progress-bar span {
    bottom: auto;
    font-size: 20px;
    top: -54px;
    -webkit-text-stroke: inherit;
    color: var(--white);
    font-weight: 700;
  }

  .achivement-skill-items .progress-box h5 {
    display: inline-block;
  }

  .contact-panel-bg {
    display: none;
  }

  .panel.contact-panel {
    text-align: center;
  }

  /* Accordion Portfolio */
  .accordion-portfolio-lists li.out {
    padding-top: 280px;
  }

  .accrdion-portfolio-area .out .accordion-overlay h2 {
    font-size: 36px;
  }

  /* Banner Zoom */
  .banner-one-item h4 {
    margin-bottom: 30px;
  }

  .experience-box {
    position: inherit;
    background: var(--bg-gradient);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 50px;
  }

  .banner-animation-zoom {
    height: auto;
    padding-top: 450px;
  }

  .banner-animation-zoom .animation-zoom-banner {
    height: 450px;
  }

  .banner-animation-zoom .row>div {
    padding: 0;
  }

  .banner-one-item h4 {
    margin-bottom: 30px;
  }

  .experience-box {
    position: inherit;
    background: transparent;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 120px 0;
  }

  .experience-box::after {
    left: -100%;
  }

  .experience-box::before {
    left: -50%;
    width: 200%;
    background-size: cover;
  }

  /* About */

  .about-area.default-padding-bottom.relative {
    overflow: hidden;
  }

  .portfolio-style-one-area.default-padding.bg-gray {
    overflow: hidden;
  }

  .about-style-one-thumb {
    margin-bottom: 50px;
  }

  /* About */
  .about-style-one-thumb .fun-fact {
    display: none;
  }

  .about-style-one-thumb {
    padding-bottom: 30px;
  }

  .about-style-two-thumb {
    width: 100%;
    height: 450px;
    position: relative;
    margin-bottom: 50px;
  }

  .about-style-two-info {
    padding: 0;
  }

  .experience-style-one {
    display: none;
  }

  /* Clients */
  .client-items {
    text-align: center;
  }

  .client-item-box {
    margin-top: 50px;
  }

  /* Team Single */
  .team-content-top .thumb img {
    padding: 0;
    margin: 0;
  }

  .team-content-top {
    margin: 0;
  }

  .team-content-top::after {
    display: none;
  }

  .team-right-info {
    padding: 0;
    margin-top: 50px;
  }

  .award-area .site-title {
    margin-bottom: 60px;
  }

  /* Pricing */
  .pricing-style-one:first-child {
    margin-top: 50px;
  }

  /* Testimonial */
  .testimonial-style-one {
    display: block;
  }

  .testimonial-style-one .provider .thumb {
    margin: auto auto 30px;
  }

  .testimonial-style-one {
    padding: 50px 37px;
    text-align: center;
    border-bottom: 1px solid #dddddd;
  }

  .bg-dark .testimonial-style-one {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .testimonial-style-one .content {
    border: none;
    border-top: 1px solid #dddddd;
    padding: 0;
    margin-top: 30px;
    padding-top: 30px;
  }

  .bg-dark .testimonial-style-one .content {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
  }

  .testimonial-style-one .content p {
    font-size: 20px;
    line-height: 1.8;
  }

  .testimonial-style-one-area {
    padding-bottom: 120px;
  }

  /* Fun Factor */

  .fun-fact-circle-lists {
    grid-template-columns: 1fr 1fr;
    margin: 0;
    grid-row-gap: 50px;
  }

  .fun-fact-circle-lists .fun-fact {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 30px auto auto;
  }

  .fun-fact-circle-lists .fun-fact::after {
    height: 100% !important;
    width: 100% !important;
  }

  .fun-fact-circle-lists .fun-fact {
    height: 300px !important;
    width: 300px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .fun-fact-circle-lists .fun-fact:first-child {
    margin-top: 0;
  }

  .fun-fact-circle-lists .fun-fact .counter {
    margin: 0;
  }

  /* Services */

  .cteative-service-item {
    padding: 60px 30px;
    border: 1px solid #dddddd;
    box-shadow: none;
  }

  .bg-dark .cteative-service-item {
    border: none;
  }

  .services-item-one-items .services-carousel {
    top: 0;
    margin: 0;
    padding: 0;
  }

  .bg-static {
    display: none;
  }

  /* Service Style Two */
  .service-hover-wrapper {
    display: none;
  }

  .service-hover-content {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }

  .service-hover-content .arrow {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .service-hover-content .arrow .btn-animation {
    left: 0;
  }

  /* Why Choose Us */
  .choose-us-style-one-thumb .video-play-button {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  ul.list-item {
    margin-top: 0;
  }

  .choose-us-style-one-thumb {
    margin-bottom: 50px;
  }

  .choose-us-style-one .bottom-info {
    display: block;
    margin-top: 10px;
  }

  /* Brand */
  .brand-conetnt h2 {
    font-size: 60px;
  }

  .brand-conetnt .item::after {
    margin-top: 5px !important;
  }

  /* Portfolio */
  .item-center:nth-child(2n) .portfolio-style-one {
    padding-right: 0;
    padding-left: 0;
  }

  .item-center .portfolio-style-one {
    padding-right: 0;
  }

  /* Project Single */
  ul.gallery-project-basic-info {
    border: none;
    margin: 0;
    background: var(--bg-gray);
    padding: 50px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 30px;
  }

  ul.gallery-project-basic-info li {
    margin: 0 !important;
  }

  .thumb-grid {
    margin-top: 40px;
  }

  /* Home Blog */

  .home-blog-style-one {
    display: block;
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    padding: 30px;
  }

  .home-blog-style-one .thumb {
    margin: 0;
  }

  .home-blog-style-one::after {
    display: none;
  }

  .bg-dark .home-blog-style-one {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .home-blog-style-one .thumb {
    margin-bottom: 30px;
  }

  .home-blog-two .info {
    top: 0;
    padding: 0;
    margin: 0;
  }

  .home-blog-two .info .content {
    border-radius: inherit;
    background: var(--bg-gray);
  }

  .home-blog-two .thumb .date {
    bottom: 30px;
  }

  .home-blog-two .thumb img {
    border-radius: inherit;
  }

  .home-blog-two {
    overflow: hidden;
    border-radius: 10px;
  }

  /* Footer  */

  footer .f-items {
    padding-left: 50px;
    padding-right: 50px;
  }

  footer .f-item.about {
    padding-right: 30px;
  }

  footer .f-item.about::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 767px) {

  /* Accordion Portfolio */
  .accrdion-portfolio-area .accordion-overlay span {
    background: var(--bg-gradient);
    padding: 4px 20px;
    margin-bottom: 15px;
    transform: translateX(0);
  }

  .accrdion-portfolio-area .accordion-overlay span::after {
    display: none;
  }

  .accrdion-portfolio-area .accordion-overlay {
    padding: 0;
    text-align: center;
    width: 100%;
  }

  .accrdion-portfolio-area .accordion-overlay h2 {
    transform: translateX(0) !important;
  }

  /* Banner Style One */
  .banner-one-item h1 {
    font-size: 40px;
  }

  .banner-one-item h1 strong {
    float: none;
  }


  .banner-one-item h4 {
    margin-bottom: 30px;
  }

  /* Banner Style Three */
  .banner-style-three {
    padding: 60px 0;
    text-align: center;
  }

  .banner-style-three .fun-fact .counter {
    margin-top: 0;
  }

  .banner-style-three .fun-fact .counter {
    justify-content: center;
  }

  .banner-style-three h2 {
    font-size: 36px;
  }

  .banner-style-three .content::after {
    height: 300px;
    width: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .banner-style-three .thumb img {
    width: 100%;
    max-width: 100%;
  }

  .banner-style-three .content {
    margin-top: 30px;
  }

  /* Banner Zoom */
  .banner-one-item h4 {
    margin-bottom: 30px;
  }

  .experience-box {
    position: inherit;
    background: var(--bg-gradient);
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 50px;
  }

  .banner-animation-zoom {
    height: auto;
    padding-top: 300px;
  }

  .banner-animation-zoom .animation-zoom-banner {
    height: 300px;
  }

  .banner-animation-zoom .row>div {
    padding: 0;
  }

  .banner-one-item h4 {
    margin-bottom: 30px;
  }

  .experience-box {
    position: inherit;
    background: transparent;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 50px 15px;
  }

  .experience-box::after {
    left: -100%;
  }

  .experience-box::before {
    left: -50%;
    width: 200%;
    background-size: cover;
  }

  /* About */
  .about-style-one-thumb .fun-fact {
    display: none;
  }

  .about-style-one-thumb {
    padding-bottom: 30px;
  }

  .about-style-two-thumb {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 40px;
  }

  .experience-style-one {
    display: none;
  }

  .about-style-two-info {
    padding: 0;
  }

  /* Fun Factor */

  .fun-fact-circle-lists {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .fun-fact-circle-lists .fun-fact {
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 30px auto auto;
  }

  .fun-fact-circle-lists .fun-fact::after {
    height: 100% !important;
    width: 100% !important;
  }

  .fun-fact-circle-lists .fun-fact {
    height: 300px !important;
    width: 300px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fun-fact-circle-lists .fun-fact:first-child {
    margin-top: 0;
  }

  .fun-fact-circle-lists .fun-fact .counter {
    margin: 0;
  }

  /* Team Single */
  .team-content-top .thumb img {
    padding: 0;
    margin: 0;
  }

  .team-content-top {
    margin: 0;
  }

  .team-content-top::after {
    display: none;
  }

  .award-area .site-title {
    margin-bottom: 30px;
  }

  .award-area {
    text-align: center;
  }

  .qualification-grid h2 {
    writing-mode: inherit;
  }

  .qualification-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-right-info {
    padding: 0;
    margin-top: 30px;
  }

  /* Portfolio */
  .pf-item-info {
    padding-left: 0;
    padding-right: 0;
  }

  .pf-item-info {
    display: block;
  }

  .bg-dark .fun-factor-circle-area.bg-gray {
    background: var(--dark);
    padding-top: 60px;
  }

  .item-center .portfolio-style-one {
    padding-right: 0;
  }

  .pf-item-info .button {
    right: auto;
    top: 0;
    margin-top: 30px;
  }

  .item-center:nth-child(2n) .portfolio-style-one {
    padding-left: 0;
  }

  .pf-item-info .content-info {
    margin-right: 0;
  }

  .pf-item-info {
    display: block;
  }

  .project-style-one .overlay {
    left: 30px;
  }

  /* Project Single */
  ul.gallery-project-basic-info {
    border: none;
    margin: 0;
    background: var(--bg-gray);
    padding: 50px;
    margin-bottom: 30px;
  }

  .thumb-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  /* Pricing */
  .pricing-style-one:first-child {
    margin-top: 40px;
  }

  .pricing-style-one {
    display: block;
  }

  .pricing-style-one .left {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .pricing-style-one:first-child {
    margin-top: 40px;
  }

  /* Client Items */
  .client-items {
    text-align: center;
    padding-top: 60px;
  }

  .client-item-box {
    margin-top: 40px;
  }

  .client-item-box::after {
    height: 100%;
    width: 100%;
  }

  .client-items .partner-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin: 0;
  }

  .client-items .partner-box .item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: 100px;
    margin: 0;
    padding: 50px 0;
  }

  .client-items .partner-box:nth-child(2) {
    margin-top: 30px;
  }

  .client-items .partner-box .item i {
    line-height: initial;
  }

  /* Why Choose Us */
  .choose-us-style-one-thumb .video-play-button {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  ul.list-item {
    margin-top: 0;
  }

  .choose-us-style-one-thumb {
    margin-bottom: 40px;
  }

  .choose-us-style-one .bottom-info {
    display: block;
    margin-top: 10px;
  }

  /* Multi Section */

  .pin-spacer {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
  }

  .thecontainer {
    max-width: inherit !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
    position: inherit !important;
    transform: none !important;
  }

  .panel.overflow-hidden {
    display: block;
    height: auto;
    min-height: auto;
    transform: none !important;
    padding: 60px 0;
    text-align: center;
  }

  .panel .site-title {
    margin-bottom: 30px;
  }

  .achivement-items {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }

  .achivement-skill-items {
    grid-template-columns: 1fr;
    margin-top: 20px;
    grid-row-gap: 45px;
    padding-bottom: 10px;
  }

  .achivement-skill-items .progress-box .progress .progress-bar span {
    bottom: auto;
    font-size: 20px;
    top: -54px;
    -webkit-text-stroke: inherit;
    color: var(--white);
    font-weight: 700;
  }

  .achivement-skill-items .progress-box h5 {
    display: inline-block;
  }

  .contact-panel-bg {
    display: none;
  }

  .panel.contact-panel {
    text-align: center;
  }

  /* Services */
  .services-nav {
    top: 0;
    margin: 0;
    justify-content: left;
    padding: 0;
    margin-bottom: 40px;
  }

  .services-item-one-items .services-carousel {
    top: 0;
    margin: 0;
    padding: 0;
  }

  .cteative-service-item {
    border: 1px solid #dddddd;
  }

  .bg-dark .cteative-service-item {
    border: none;
  }

  .bg-static {
    display: none;
  }



  /* Service Style Two */
  .service-hover-wrapper {
    display: none;
  }

  .service-hover-content {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }

  .service-hover-content .arrow {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .service-hover-content .arrow .btn-animation {
    left: 0;
  }

  /* Testimonial */
  .testimonial-style-one {
    display: block;
  }

  .testimonial-style-one .provider .thumb {
    margin: auto auto 30px;
  }

  .testimonial-style-one {
    padding: 50px 37px;
    text-align: center;
    border-bottom: 1px solid #dddddd;
  }

  .bg-dark .testimonial-style-one {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .testimonial-style-one .content {
    border: none;
    border-top: 1px solid #dddddd;
    padding: 0;
    margin-top: 30px;
    padding-top: 30px;
  }

  .bg-dark .testimonial-style-one .content {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
  }

  .testimonial-style-one .content p {
    font-size: 20px;
    line-height: 1.8;
  }

  .testimonial-style-one-area {
    padding-bottom: 60px;
  }


  /* Brand */
  .brand-conetnt h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .brand-items {
    padding-top: 40px;
  }

  .brand-conetnt .item::after,
  .bg-dark .brand-conetnt .item::after {
    margin-top: 5px;
  }

  /* Home Blog */

  .home-blog-style-one {
    display: block;
    border: 1px solid #e7e7e7;
    border-radius: 30px;
    padding: 30px;
  }

  .home-blog-style-one .thumb {
    margin: 0;
  }

  .home-blog-style-one::after {
    display: none;
  }

  .bg-dark .home-blog-style-one {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .home-blog-style-one .thumb {
    margin-bottom: 30px;
  }

  .home-blog-two .info {
    top: 0;
    padding: 0;
    margin: 0;
  }

  .home-blog-two .info .content {
    border-radius: inherit;
    background: var(--bg-gray);
  }

  .home-blog-two .thumb .date {
    bottom: 30px;
  }

  .home-blog-two .thumb img {
    border-radius: inherit;
  }

  .home-blog-two {
    overflow: hidden;
    border-radius: 10px;
  }

  /* Footer */
  footer .f-item.about::after {
    display: none;
  }

  footer .f-items {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Max Wide Mobile Layout: 600px. */
@media only screen and (min-width: 600px) and (max-width: 1200px) {}

/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {}

/* Custom Layout */
@media only screen and (max-width: 480px) {
  .cteative-service-item {
    padding: 50px 37px;
  }

  .swiper-slide.swiper-slide-active .project-style-one .overlay {
    left: 0;
    background: var(--color-primary);
    bottom: 9px;
  }

  .project-style-one .overlay .content span {
    color: var(--white);
    opacity: 0.9;
  }

  .project-style-one .overlay .link {
    display: none;
  }

  .project-style-one .overlay .content {
    padding: 25px 60px;
    padding-bottom: 30px;
    border: none;
  }

  .project-style-one .overlay::after {
    display: none;
  }

  .project-style-one .overlay .content h4 a {
    color: var(--white);
  }

  /* Team Single */
  .team-content-top .thumb img {
    padding: 0;
    margin: 0;
  }

  .team-content-top {
    margin: 0;
  }

  .team-content-top::after {
    display: none;
  }

  .team-right-info {
    padding: 0;
    margin-top: 30px;
  }

  .team-right-info .social {
    display: block;
  }

  .team-right-info .social .share-link {
    margin: 0;
    margin-top: 30px;
    display: none;
  }
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.avrix-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;
}

.avrix-preloader .animation-preloader {
  z-index: 1000;
  position: relative;
}

.avrix-preloader .animation-preloader::after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/logo-icon.html);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
}

.bg-dark .avrix-preloader .animation-preloader::after {
  background: url(../img/logo-icon-light.html);
  background-repeat: no-repeat;
  background-position: center;
}

.avrix-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 2px solid rgba(2, 109, 255, 0.3);
  border-top-color: var(--color-primary);
  height: 110px;
  margin: auto;
  width: 110px;
}

.bg-dark .avrix-preloader .animation-preloader .spinner {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 1);
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.avrix-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.avrix-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.avrix-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.avrix-preloader .loader .row {
  height: 100%;
}

.avrix-preloader .loader .loader-section {
  padding: 0px;
}

.avrix-preloader .loader .loader-section .bg {
  background-color: var(--white);
  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);
}

.bg-dark .avrix-preloader .loader .loader-section .bg {
  background-color: var(--dark);
}

.avrix-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.avrix-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.avrix-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);
  }
}

@media screen and (max-width: 767px) {
  .avrix-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}

@media screen and (max-width: 500px) {
  .avrix-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
}


/* Project Details Version Two */

.project-details-thumb img {
  margin-bottom: 60px;
}

.project-single-tags a {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 10px;
  text-transform: uppercase;
  color: var(--color-paragraph);
}

.project-single-tags a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: ",";
}

.project-single-tags a:last-child::after {
  display: none;
}

.project-single-tags {
  margin-bottom: 15px;
}

.project-single-tags a:hover {
  color: var(--color-primary);
}

.project-details-thumb h2 {
  font-weight: 800;
  margin: 0;
  padding-right: 15%;
}

.project-author-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-row-gap: 30px;
}

.project-author-details ul li {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-column-gap: 60px;
  position: relative;
  z-index: 1;
  border-top: 1px solid #dddddd;
  padding-top: 30px;
}

.project-author-details ul li:first-child {
  border: none;
  padding: 0;
}

.project-author-details ul li h3 {
  font-weight: 800;
  font-size: 20px;
  margin: 0;
}

.project-author-details ul li p {
  margin: 0;
}

.project-author-details ul li .right-info h3 {
  color: var(--color-paragraph);
  font-weight: 600;
}

p.project-inner-tag {
  font-weight: 700;
  line-height: 2.3;
  text-transform: uppercase;
}

.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 3fr;
  grid-column-gap: 50px;
  grid-row-gap: 60px;
}

.item-grid-colum h1,
.item-grid-colum h2,
.item-grid-colum h3,
.item-grid-colum h4,
.item-grid-colum h5,
.item-grid-colum h6 {
  font-weight: 800;
}

/* Related Projects */
.related-project-items {
  border-top: 1px solid #dddddd;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .item-grid-container {
    grid-row-gap: 30px;
  }

  .item-grid-colum {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }

  .project-details-thumb h2 {
    padding-right: 0;
  }

  .project-details-style-two .thumb-grid {
    margin-top: 0;
    margin-bottom: 40px;
  }

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

@media (max-width: 767px) {
  .project-details-thumb img {
    margin-bottom: 30px;
  }

  .project-details-thumb h2 {
    padding-right: 0;
  }

  .project-author-details ul li {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }

  .item-grid-colum {
    grid-template-columns: 1fr;
    grid-row-gap: 0;
  }

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

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

  .project-details-style-two .thumb-grid {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

/*=================================
Appointment Area 
====================================*/
.appointment-bg {
  background: url(../img/contact-bg.png) no-repeat;
  background-position: center center;
}

.appointment-form {
  margin-bottom: 30px;
  margin-right: 45px;
}

.appointment-form .section-title {
  margin-bottom: 30px;
}

.appointment-form .section-title p {
  max-width: 615px;
  margin: 0;
}

.appointment-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.appointment-form .form-group .form-control {
  height: 50px;
  color: #948b9f;
  border: 1px solid #ebebeb;
  background-color: #f8f9fb;
  font-size: 14px;
  padding: 10px 20px;
  width: 100%;
}

.appointment-form .form-group .form-control:focus {
  outline: none;
  border-color: #ff0074;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.appointment-form .form-group textarea.form-control {
  height: auto;
}

.appointment-form .nice-select {
  height: 50px;
  width: 100%;
  line-height: 32px;
  font-size: 15px;
  margin-bottom: 30px;
  padding-left: 20px;
  color: #10142D;
  background-color: #FC8E41;
}

.appointment-form .nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.1);
  border-radius: 0;
  margin-top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.appointment-form .nice-select .list .option {
  -webkit-transition: .6s;
  transition: .6s;
  color: #10142D;
  padding-left: 20px;
  padding-right: 20px;
}

.appointment-form .nice-select .list .option:hover {
  background-color: #FC8E41 !important;
  color: #ffffff;
}

.appointment-form .nice-select .list .option .selected {
  background-color: transparent;
  font-weight: 600;
  color: #10142D;
}

.appointment-form .nice-select::after {
  height: 8px;
  width: 8px;
  border-color: #a7a7a7;
  right: 23px;
}

.appointment-form .default-btn {
  border: 0;
  outline: none;
  padding: 14px 60px;
}

.appointment-form-bg .form-group .form-control {
  background-color: #ffffff;
}

.appointment-img {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.appointment-img img {
  border-radius: 0 50px 0 50px;
}

.appointment-img::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: -webkit-linear-gradient(90deg, #d70a84 0%,
      #51127f 80%);
}

.appointment-img::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: -webkit-linear-gradient(90deg, #d70a84 0%,
      #51127f 80%);
}

@media (max-width:991px) {
  .appointment-form {
    margin-bottom: 80px;
  }
}

/*=================================
Appointment Area End
====================================*/


@media (max-width: 450px) {
  footer {
    margin: 20px 20px;
    padding-bottom: 4%;
    background-color: #000000ab;
    border-radius: 30px;
  }
}

@media (max-width: 991px) {
  .page-scroll {
    margin-bottom: 50px;
  }
}

@media (max-width:991px) {
  .about-all-wrap {
    margin-top: 60px;
  }
}

@media (max-width:1199px) {
  .book-expert-image-box .img-box-1 {
    margin-top: 60px;
  }
}


/* Titanium Nitride Section */
.section-features {
  padding-top: 94px;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #8a8a8a;
  background: url(../img/features-bg.png);
}

.section-features .header-section {
  margin-bottom: 40px;
}

.section-features .header-section .header-titles {
  margin-bottom: 40px;
}

.section-features .header-titles .first-title {
  font-size: 35px;
}

.section-features .header-titles .second-title {
  margin-bottom: 24px;
  font-size: 46px;
  font-weight: 600;
  background: -webkit-linear-gradient(0deg, #f70fff 0%, #12d6df 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-features .header-titles .third-title {
  margin: 0;
  font-size: 20px;
}

.section-features .header-titles span {
  font-weight: 300;
  color: #f86e03;
}

.section-features .header-description {
  font-size: 15px;
  line-height: 2em;
}

.section-features .single-feature {
  margin-bottom: 20px;
}

.section-features .single-feature img {
  width: 100%;
}


.section-features .single-feature .infos {
  position: relative;
  padding: 45px 25px 23px;
  transform: translateY(-30%);
  background-color: #fff;
  margin-right: 20px;
  margin-left: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .1);
}

.section-features .single-feature .icon-feature {
  display: inline-block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  border-radius: 50%;
  background-color: #ff0074;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
}

.section-features .single-feature .section-title {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  line-height: 1.3em;
}

.section-features .single-feature .read-more {
  font-weight: 600;
  text-decoration: none;
}

.section-features .single-feature .read-more i {
  margin-left: 5px;
  vertical-align: middle;
}

.section-features .feature1 .icon-feature {
  background-color: #ff0074;
}

.section-features .feature1 .read-more {
  color: #ff0074;
}

.section-features .feature2 .icon-feature {
  background-color: #ff0074;
}

.section-features .feature2 .read-more {
  color: #ff0074;
}

.section-features .feature3 .icon-feature {
  background-color: #ff0074;
}

.section-features .feature3 .read-more {
  color: #ff0074;
}

.section-features .feature4 .icon-feature {
  background-color: #ff0074;
}

.section-features .feature4 .read-more {
  color: #ff0074;
}

@media (max-width:1399px) {

  .tint-text,
  .tint-text-1,
  .section-features .header-titles .second-title,
  .white-text,
  .sec-title h2 {
    font-size: 40px;
  }

  .about-wrap h3 {
    font-size: 14px;
  }
}

@media (max-width:1199px) {

  .tint-text,
  .tint-text-1,
  .section-features .header-titles .second-title,
  .white-text,
  .sec-title h2 {
    font-size: 35px;
  }

  .about-wrap h3 {
    font-size: 14px;
  }
}

@media (max-width:650px) {

  .tint-text,
  .tint-text-1,
  .section-features .header-titles .second-title,
  .white-text,
  .sec-title h2 {
    font-size: 35px;
  }

  .about-wrap h3 {
    font-size: 15px;
    padding-top: 12px;
  }

  body {
    font-size: 13px;
  }

  .sec-title h5 {
    font-size: 16px;
  }

  .section-features .single-feature .section-title {
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    line-height: 1.3em;
  }

  .section-features .feature1 .read-more {
    font-size: 11px;
  }

  .section-features .single-feature .icon-feature {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }

  .section-features .single-feature .infos {
    padding: 30px 18px 15px;
  }

  .bg-dark .cteative-service-item a {
    font-size: 18px;
  }

  .cteative-service-item {
    padding: 40px 30px;
  }

  .section-features .header-titles .first-title {
    font-size: 28px;
  }

}

@media (max-width:450px) {

  .tint-text,
  .tint-text-1,
  .section-features .header-titles .second-title,
  .white-text,
  .sec-title h2 {
    font-size: 25px;
  }

  .about-wrap h3 {
    font-size: 13px;
    padding-top: 10px;
  }

  body {
    font-size: 13px;
  }

  .service-wrapper .single-service p {
    font-size: 14px;
  }

  .about-icon i {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-dark);
    font-size: 16px;
    height: 30px;
    line-height: 26px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 30px;
  }

  .about-wrap {
    padding: 0 0 0 40px;
  }
}

@media (max-width:355px) {

  .tint-text,
  .tint-text-1,
  .section-features .header-titles .second-title,
  .white-text,
  .sec-title h2 {
    font-size: 22px;
  }
}

/* whatsapp */
#fixed-image {
  position: fixed;
  bottom: 20px;
  right: 20px;
  object-fit: cover;
  z-index: 999;
  width: 70px;
  height: 70px;
}

@media (max-width: 575px) {
  #fixed-image {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
}

@media (min-width: 768px) {
  #fixed-image {
    width: 55px;
    height: 55px;
  }
}

@media (min-width: 992px) {
  #fixed-image {
    width: 70px;
    height: 70px;
  }
}


/* Watermark Section */
.watermark-area {
  text-align: center;
  padding: 40px 0 80px;
  background: url(../img/watermark-bg.png);
}

.watermark-area p {
  width: 70%;
  margin: 0 auto;
  padding-bottom: 30px;
}

.watermark-area img {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .watermark-area p {
    width: 100%;
  }
}

.products-bg .swiper {
  width: 100%;
  height: 100%;
}

.products-bg .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-bg .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-bg .swiper-pagination-bullet {
  background-color: #f70fff;
}

@media (max-width:991px) {
  .products-bg .swiper-slide img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width:400px) {
  .products-bg .swiper-slide img {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width:500px) {
  .features img {
    border: none;
    outline: none;
    max-width: 100px;
  }

  .features .features__title p {
    margin-bottom: 0;
    margin-top: 0px;
  }

  .features__description p {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .benefits-bg,
  .features,
  .products-bg {
    padding: 60px 0 60px;
  }
}