
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800;900&family=Kumbh+Sans:wght@400;500;600;700;800&display=swap");


.back-to-top-wrapper,
a,
button,
p,
input,
li {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}


.tp-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* transform */

:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Jost', sans-serif;
  --tp-ff-heading: 'Jost', sans-serif;
  --tp-ff-p: 'Kumbh Sans', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-common-gray: #F4F5FA;
  --tp-theme-primary: #6D18EF;
  --tp-gradient-primary: linear-gradient(90deg, #A977F6 0%, #6D18EF 100%);
  --tp-heading-primary: #0E1E2A;
  --tp-heading-secondary: #021D35;
  --tp-text-body: #67687A;
  --tp-text-1: #767A7D;
  --tp-border-primary: #EAEBED;
  --tp-border-secondary: #F0F2F4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: 14px;
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}


h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-text-body);
  line-height: 32px;
  margin-bottom: 0px;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=password],
input[type=url] {
  outline: none;
  background-color: #fff;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: var(--tp-common-black);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #E0E2E3;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #95999D;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder {
  /* Firefox 19+ */
  color: #95999D;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder {
  /* Firefox 4-18 */
  color: #95999D;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: #95999D;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder {
  /* MODERN BROWSER */
  color: #95999D;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus {
  border-color: var(--tp-common-black);
}

input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder {
  opacity: 0;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/

.fix {
  overflow: hidden;
}

.z-index-1 {
  z-index: 1;
}

.p-relative {
  position: relative;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--tp-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay:hover {
  cursor: url("../img/icon/close.png"), pointer;
}

/* dropcap */

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

/* gutter for x axis */

/* gutter for x axis */

/* gutter for x axis */

/* gutter for x axis */

.play-btn {
  height: 50px;
  width: 50px;
  display: inline-block;
  background: var(--tp-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
}

.play-btn i {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(90deg, #A977F6 0%, #6D18EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.play-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: borderanimate2 2s linear infinite;
  animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  z-index: -1;
}

.play-btn::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: borderanimate2 2s linear infinite;
  animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  z-index: -1;
}

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--tp-gradient-primary);
  box-shadow: 0px 5px 12px rgba(87, 88, 190, 0.5);
  color: var(--tp-common-white);
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  2.2 Theme Settings
/*----------------------------------------*/

@-webkit-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.tp-btn {
  position: relative;
  display: inline-block;
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  padding: 17px 50px;
  letter-spacing: 0.8px;
  color: var(--tp-common-white);
  background: var(--tp-gradient-primary);
  overflow: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.tp-btn span {
  transform: translateY(1px);
  display: inline-block;
  margin-left: 8px;
}

.tp-btn:hover {
  color: var(--tp-common-white);
}

.tp-btn:hover::before {
  animation: shine 800ms;
}

/* hamburger btn */

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
/* pulse effect animation */
@-webkit-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-moz-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-ms-keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes tp-pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-moz-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-ms-keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes tp-pulse-2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-moz-keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-ms-keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes tp-shake {

  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}

@-webkit-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-moz-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-ms-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-webkit-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tp-rotate-center {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-moz-keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-ms-keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes tp-mobile-view {

  0%,
  10% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }

  50%,
  60% {
    -webkit-transform: translateY(-57%);
    -moz-transform: translateY(-57%);
    -ms-transform: translateY(-57%);
    -o-transform: translateY(-57%);
    transform: translateY(-57%);
  }

  90%,
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@-webkit-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@-moz-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@-ms-keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@keyframes tp-svg-line {
  100% {
    stroke-dashoffset: 350;
  }
}

@-webkit-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@-moz-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@-ms-keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@keyframes tp-border-loader {
  0% {
    stroke-dashoffset: -356px;
    stroke-dasharray: 356px, 366px;
  }

  95% {
    stroke-dashoffset: 0;
    stroke-dasharray: 356px, 366px;
  }

  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 0, 366px;
  }
}

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-moz-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-ms-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-webkit-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-webkit-keyframes tpupdown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@-moz-keyframes tpupdown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@-ms-keyframes tpupdown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes tpupdown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@-webkit-keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}

@-moz-keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}

@-ms-keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}

@keyframes tptranslateX2 {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }
}

@-webkit-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-moz-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@-ms-keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes borderanimate2 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

/* 04. ========= btn-arrow-animation ========== */
@-webkit-keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }

  50% {
    opacity: 0;
    transform: translateX(-30%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@-moz-keyframes shine {
  100% {
    left: 125%;
  }
}

@-ms-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@-webkit-keyframes lara {
  0% {
    transform: translateX(-50%) translateY(-1px);
  }

  25% {
    transform: translateX(-50%) translateY(-5px);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }

  75% {
    transform: translateX(-50%) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) translateY(-1px);
  }
}

@-moz-keyframes lara {
  0% {
    transform: translateX(-50%) translateY(-1px);
  }

  25% {
    transform: translateX(-50%) translateY(-5px);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }

  75% {
    transform: translateX(-50%) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) translateY(-1px);
  }
}

@-ms-keyframes lara {
  0% {
    transform: translateX(-50%) translateY(-1px);
  }

  25% {
    transform: translateX(-50%) translateY(-5px);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }

  75% {
    transform: translateX(-50%) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) translateY(-1px);
  }
}

@keyframes lara {
  0% {
    transform: translateX(-50%) translateY(-1px);
  }

  25% {
    transform: translateX(-50%) translateY(-5px);
  }

  50% {
    transform: translateX(-50%) translateY(-7px);
  }

  75% {
    transform: translateX(-50%) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) translateY(-1px);
  }
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/

@-webkit-keyframes object_one {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_one {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_two {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_two {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_three {
  75% {
    -webkit-transform: scale(0);
  }
}

@keyframes object_three {
  75% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/

/*----------------------------------------*/
/*  2.7 Carousel
/*----------------------------------------*/
/* tp range slider css */

/* tp swiper slider dot */

/* tp swiper scrollbar */

/* tp slick arrow */

/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  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: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active,
.nice-select:focus {
  border-color: #999;
}

.nice-select::after {
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 0;
  font-family: var(--tp-ff-fontawesome);
  color: var(--tp-common-black);
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*----------------------------------------*/
/*  2.9 Pagination
/*----------------------------------------*/

/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.offcanvas__area {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(-100% - 80px));
  -moz-transform: translateX(calc(-100% - 80px));
  -ms-transform: translateX(calc(-100% - 80px));
  -o-transform: translateX(calc(-100% - 80px));
  transform: translateX(calc(-100% - 80px));
  background: var(--tp-common-white) none repeat scroll 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .offcanvas__area {
    right: 0;
    left: auto;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
  }
}

.offcanvas__area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .offcanvas__top {
    margin-bottom: 30px;
  }
}

.offcanvas__wrapper {
  position: relative;
  padding: 40px;
  z-index: 999;
  min-height: 100%;
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 30px;
  }
}

.offcanvas__close {
  position: absolute;
  top: 35px;
  right: 30px;
}

@media (max-width: 575px) {
  .offcanvas__close {
    right: 20px;
    top: 20px;
  }
}

.offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  background-color: #f5f5f5;
  color: var(--tp-text-1);
}

.offcanvas__close-btn svg {
  transition: all 0.3s ease-in-out;
}

.offcanvas__close-btn:hover svg {
  transform: rotate(45deg);
}

.offcanvas__close-btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.offcanvas__contact {
  margin-bottom: 30px;
}

.offcanvas__contact-content {
  margin-bottom: 10px;
}

.offcanvas__contact-content-icon i {
  color: #6EC1E4;
  margin-right: 10px;
}

.offcanvas__contact-content-content a {
  font-size: 16px;
}

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__area {
    padding-top: 260px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .breadcrumb__area {
    padding-top: 250px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__area {
    padding-top: 220px;
  }
}

.breadcrumb__bg {
  position: absolute;
  top: 20px;
  left: -135px;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .breadcrumb__bg {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .breadcrumb__bg {
    top: 0;
  }
}

.breadcrumb__title {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -1.92px;
  color: var(--tp-common-white);
  margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .breadcrumb__title {
    text-align: center;
    margin-bottom: 20px;
  }
}

.breadcrumb__list span {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.8px;
  color: var(--tp-common-white);
}

.breadcrumb__list span:not(:last-of-type) {
  margin-right: 8px;
}

.breadcrumb__list span a:hover {
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.tp-accordion .accordion-item {
  border: 0;
  background: var(--tp-common-white);
  border-radius: 0px 0px 5px 5px;
  margin-bottom: 20px;
}

.tp-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tp-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tp-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tp-accordion .accordion-button {
  padding: 21px 40px 21px 20px;
  color: var(--tp-heading-primary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.8px;
  /* plus icon css */
}

.tp-accordion .accordion-button::after {
  position: absolute;
  content: "\f101";
  font-family: var(--tp-ff-fontawesome);
  top: 44%;
  right: 21px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  background: var(--tp-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
  font-size: 14px;
}

.tp-accordion .accordion-button.collapsed::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  color: var(--tp-common-black);
}

.tp-accordion .accordion-button:not(.collapsed) {
  color: var(--tp-heading-primary);
  background-color: transparent;
  box-shadow: none;
}

.tp-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
}

.tp-accordion .accordion-body {
  padding: 0 46px 20px 20px;
}

.tp-accordion .accordion-body p {
  font-size: 16px;
  color: var(--tp-text-body);
}

/*----------------------------------------*/
/*  2.13 Tab
/*----------------------------------------*/

/*----------------------------------------*/
/*  2.14 Modal
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section-title {
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.92px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-section-title br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .tp-section-title {
    font-size: 30px;
  }
}

.tp-section-title-pre {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 10px;
  letter-spacing: 4px;
  display: inline-block;
  text-transform: uppercase;
  background: linear-gradient(90deg, #A977F6 0%, #6D18EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/*----------------------------------------*/
/*  2.16 Search css start
/*----------------------------------------*/

/*----------------------------------------*/
/*  2.17 Hostspot css start
/*----------------------------------------*/

/*----------------------------------------*/
/*  2.178 Range Slider css start
/*----------------------------------------*/

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-header-transparent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-height {
    height: inherit !important;
  }
}

.tp-header-top {
  background: var(--tp-gradient-primary);
  padding-top: 22px;
  padding-bottom: 22px;
}

.tp-header-top-info ul li {
  position: relative;
  display: inline-block;
  list-style: none;
}

.tp-header-top-info ul li:not(:last-of-type) {
  padding-right: 45px;
}

.tp-header-top-info ul li a {
  font-family: var(--tp-ff-p);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--tp-common-white);
}

.tp-header-top-info ul li a span {
  color: var(--tp-common-white);
  display: inline-block;
  margin-right: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-logo {
    height: 100px;
    line-height: 100px;
  }
}

.tp-header-bottom {
  background: rgba(255, 255, 255, 0.02);
}

.tp-header-contact-icon span {
  height: 55px;
  width: 55px;
  line-height: 55px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--tp-common-white);
  background: var(--tp-gradient-primary);
  margin-right: 15px;
}

.tp-header-contact-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-white);
  margin-bottom: 2px;
}

.tp-header-contact-content span {
  font-weight: 600;
  display: block;
  font-size: 24px;
  color: var(--tp-common-white);
  letter-spacing: -0.96px;
}

.tp-header-contact-content span:hover {
  color: rgba(255, 255, 255, 0.7);
}

.tp-header-hamburger-btn {
  height: 106px;
  line-height: 106px;
  margin-right: 47px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 575px) {
  .tp-header-hamburger-btn {
    margin-right: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-hamburger-btn {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.tp-header-hamburger-btn .hamburger-btn span {
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  3.2 Header Style 2
/*----------------------------------------*/

/*----------------------------------------*/
/*  3.3 Header Style 3
/*----------------------------------------*/

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-main-menu {
  position: relative;
}

.tp-main-menu ul {
  counter-reset: count;
}

.tp-main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  transition: none;
}

.tp-main-menu ul li:not(:last-of-type) {
  margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li:not(:last-of-type) {
    margin-right: 15px;
  }
}

.tp-main-menu ul li a {
  display: inline-block;
  font-family: var(--tp-ff-p);
  padding: 39px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: var(--tp-common-white);
}

.tp-main-menu ul li.has-dropdown>a {
  position: relative;
}

.tp-main-menu ul li.has-dropdown>a::after {
  content: "\f107";
  font-size: 10px;
  color: var(--tp-theme-secondary);
  font-family: var(--tp-ff-fontawesome);
  font-weight: 400;
  margin-left: 6px;
  display: inline-block;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background: var(--tp-common-white);
  padding: 0 0 14px 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: all 0.3s;
  -webkit-transition: 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}

.tp-main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 25px;
  transform: translateY(5px);
  transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
}

.tp-main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.tp-main-menu ul li .submenu li:last-child a {
  border-bottom: 0;
}

.tp-main-menu ul li .submenu li a {
  position: relative;
  padding: 10px 0px;
  font-size: 13px;
  color: var(--tp-common-black);
  width: 100%;
  z-index: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tp-main-menu ul li .submenu li a span {
  transition: all 0.3s ease-in-out;
}

.tp-main-menu ul li .submenu li a span::after {
  display: none;
}

.tp-main-menu ul li .submenu li a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  height: 2px;
  width: 0;
  background: var(--tp-theme-primary);
  transition: all 0.3s ease-in-out;
}

.tp-main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.tp-main-menu ul li .submenu li:hover>a {
  color: var(--tp-theme-primary);
}

.tp-main-menu ul li .submenu li:hover>a span {
  margin-left: 14px;
}

.tp-main-menu ul li .submenu li:hover>a::after {
  color: var(--tp-common-white);
}

.tp-main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.tp-main-menu ul li .submenu li:hover>.submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.tp-main-menu ul li:hover>a {
  color: rgba(255, 255, 255, 0.7);
}

.tp-main-menu ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateX(0);
  -ms-transform: rotateX(0);
  transform: rotateX(0);
}

/*----------------------------------------*/
/*  4.2 Meanmenu css
/*----------------------------------------*/
/*----------------------------------------*/
/*  4.2 Meanmenu css
/*----------------------------------------*/

/*----------------------------------------*/
/*  4.3 Mobilemenu css
/*----------------------------------------*/

.tp-main-menu-mobile ul {
  position: static;
  display: block;
  box-shadow: none;
}

.tp-main-menu-mobile ul li {
  list-style: none;
  position: relative;
  width: 100%;
  padding: 0;
  padding-right: 20px;
}

.tp-main-menu-mobile ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(2, 11, 24, 0.1);
}

.tp-main-menu-mobile ul li.has-dropdown:hover>a::after {
  color: var(--tp-theme-green);
}

.tp-main-menu-mobile ul li:last-child a span {
  border-bottom: 0;
}

.tp-main-menu-mobile ul li>a {
  display: block;
  font-size: 16px;
  color: var(--tp-common-black);
  position: relative;
  padding: 10px 0;
  padding-right: 20px;
}

.tp-main-menu-mobile ul li>a svg {
  transform: translateY(2px);
}

.tp-main-menu-mobile ul li>a>i {
  display: inline-block;
  width: 11%;
  margin-right: 13px;
  -webkit-transform: translateY(4px);
  -moz-transform: translateY(4px);
  -ms-transform: translateY(4px);
  -o-transform: translateY(4px);
  transform: translateY(4px);
  font-size: 21px;
  line-height: 1;
}

.tp-main-menu-mobile ul li img {
  width: 100%;
}

.tp-main-menu-mobile ul li ul {
  padding: 0;
}

.tp-main-menu-mobile ul li ul li {
  padding: 0;
}

.tp-main-menu-mobile ul li ul li a {
  margin-left: auto;
  width: 93%;
  padding: 10px 5%;
  text-shadow: none !important;
  visibility: visible;
  padding-left: 0;
  padding-right: 20px;
}

.tp-main-menu-mobile ul li ul li li a {
  width: 88%;
  padding: 10px 7%;
  padding-left: 0;
  padding-right: 20px;
}

.tp-main-menu-mobile ul li ul li li li a {
  width: 83%;
  padding: 10px 9%;
  padding-left: 0;
  padding-right: 20px;
}

.tp-main-menu-mobile ul li ul li li li li a {
  width: 68%;
  padding: 10px 11%;
  padding-left: 0;
  padding-right: 20px;
}

.tp-main-menu-mobile ul li:hover>a {
  color: var(--tp-theme-primary);
}

.tp-main-menu-mobile ul li:hover>a::after {
  color: var(--tp-theme-primary);
}


.tp-main-menu-mobile ul li .submenu {
  position: static;
  min-width: 100%;
  padding: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  display: none;
}


.tp-main-menu-mobile ul li .submenu li {
  float: none;
  display: block;
  width: 100%;
  padding: 0;
}

.tp-main-menu-mobile * ul,
.tp-main-menu-mobile * li {
  transition: none !important;
}

/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/

/*----------------------------------------*/
/*  5.2 Recent Post css
/*----------------------------------------*/

/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-footer-bg {
  position: absolute;
  top: 0px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: cover;
  z-index: -1;
}

.tp-footer-border {
  border-bottom: 1px solid #3C4958;
  padding-bottom: 30px;
}

.tp-footer-widget .tp-footer-widget-content ul li {
  list-style: none;
}

.tp-footer-widget .tp-footer-widget-content ul li:not(:last-of-type) {
  margin-bottom: 8px;
}

.tp-footer-widget .tp-footer-widget-content ul li a {
  position: relative;
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-white);
}

.tp-footer-widget .tp-footer-widget-content ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: #fff;
  transition: 0.5s;
  display: inline-block;
  box-shadow: 0px 4px 12px rgba(1, 16, 61, 0.14);
  border-radius: 6px;
}

.tp-footer-widget .tp-footer-widget-content ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-footer-widget-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}

.tp-footer-widget-content p {
  color: var(--tp-common-white);
  margin-bottom: 25px;
}

.tp-footer-widget-item-thumb {
  margin-right: 15px;
}

.tp-footer-widget-item-thumb img {
  border-radius: 5px;
}

.tp-footer-widget-item-content span {
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 5px;
  color: var(--tp-common-white);
}

.tp-footer-widget-item-content span i {
  background: linear-gradient(90deg, #A977F6 0%, #6D18EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.tp-footer-widget-item-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin: 0;
  color: var(--tp-common-white);
}

.tp-footer-widget-item-title a {
  background-image: linear-gradient(#f1f1f5, #f3f3f8), linear-gradient(#f3f3f7, #f2f2f7);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.tp-footer-widget-item-title:hover a {
  background-size: 0 1px, 100% 1px;
}

.tp-footer-widget-contact-icon {
  margin-right: 20px;
}

.tp-footer-widget-contact-icon span {
  height: 40px;
  width: 40px;
  display: inline-block;
  line-height: 40px;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--tp-common-white);
  background: var(--tp-gradient-primary);
}

.tp-footer-widget-contact-content a {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-white);
}

.tp-footer-copyright-area {
  padding-top: 30px;
  padding-bottom: 28px;
}

.tp-footer-copyright-inner p {
  color: var(--tp-common-white);
  opacity: 0.7;
}

.tp-footer-copyright-inner a {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  color: var(--tp-common-white);
}

.tp-footer-copyright-inner a:hover {
  color: var(--tp-common-white);
  opacity: 1;
}

.tp-footer-copyright-inner a:not(:last-of-type) {
  margin-right: 24px;
}

/* footer col design for home 1 */
@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-col-1 {
    padding-right: 0;
  }
}

.tp-footer-col-2 {
  padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-col-2 {
    padding-left: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-col-2 {
    padding-left: 0;
  }
}

/*----------------------------------------*/
/*  6.2 Footer Style 2
/*----------------------------------------*/

/* footer col design for home 2 */

/*----------------------------------------*/
/*  6.3 Footer Style 3
/*----------------------------------------*/

/* footer col design for home 2 */

/*----------------------------------------*/
/*  7.1 Hero css
/*----------------------------------------*/
.tp-hero-area {
  z-index: 1;
}

.tp-hero-height {
  min-height: 1150px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-height {
    min-height: 930px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-height {
    min-height: 1300px;
  }
}

@media (max-width: 575px) {
  .tp-hero-height {
    min-height: 1000px;
  }
}

.tp-hero-shape .shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-hero-shape .shape-bg {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-content {
    padding-top: 170px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-content {
    padding-top: 100px;
  }
}

@media (max-width: 575px) {
  .tp-hero-content {
    margin-bottom: 20px;
    padding-top: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-content-review {
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .tp-hero-content-review {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

.tp-hero-thumb img {
  max-width: 100%;
}

.tp-hero-thumb-shape .shape-1 {
  position: absolute;
  bottom: 29%;
  left: 9%;
  animation: tpupdown 1s infinite alternate;
}

@media (max-width: 575px) {
  .tp-hero-thumb-shape .shape-1 {
    display: none;
  }
}

.tp-hero-thumb-shape .shape-2 {
  position: absolute;
  top: 34%;
  right: -10%;
  animation: tptranslateX2 3s ease-in-out 1s forwards infinite alternate;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-thumb-shape .shape-2 {
    right: -8%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-thumb-shape .shape-2 {
    right: 0%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-thumb-shape .shape-2 {
    top: 40%;
    right: -35px;
  }
}

@media (max-width: 575px) {
  .tp-hero-thumb-shape .shape-2 {
    display: none;
  }
}

.tp-hero-title {
  color: var(--tp-common-white);
  font-weight: 600;
  font-size: 59px;
  line-height: 1.3;
  letter-spacing: -3px;
  text-transform: capitalize;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-title {
    font-size: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title {
    font-size: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .tp-hero-title {
    font-size: 40px;
  }
}

.tp-hero-title-wrapper {
  margin-bottom: 58px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-hero-title-wrapper {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-hero-btn {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .tp-hero-btn {
    margin-right: 15px;
  }
}

/*----------------------------------------*/
/*  7.2 features css
/*----------------------------------------*/
.tp-features-area {
  margin-top: -120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-features-area {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.tp-features-wrapper {
  position: relative;
  background: var(--tp-common-white);
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
  padding: 55px 36px 35px 36px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-features-wrapper {
    padding: 55px 25px 30px 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-features-wrapper {
    padding: 52px 10px 20px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-features-wrapper {
    margin-bottom: 50px;
  }
}

.tp-features-wrapper:hover .tp-features-point span {
  animation: lara 1s infinite linear;
}

.tp-features-point span {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  height: 80px;
  width: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.54px;
  color: var(--tp-common-white);
  background: var(--tp-gradient-primary);
}

.tp-features-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.96px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-features-title {
    font-size: 22px;
  }
}

/*----------------------------------------*/
/*  7.3 about css
/*----------------------------------------*/
.tp-about-shape {
  position: absolute;
  top: -75px;
  right: 0;
  z-index: -1;
}

.tp-about-counter {
  position: absolute;
  right: 42px;
  top: 42px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-counter {
    right: 0px;
    top: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-counter {
    top: 38%;
  }
}

@media (max-width: 575px) {
  .tp-about-counter {
    display: none;
  }
}

.tp-about-counter-inner {
  position: relative;
  width: 324px;
  height: 204px;
  border-radius: 10px;
  background: transparent;
  background-image: none;
  background-origin: padding-box;
  border: 5px solid transparent;
  background-image: var(--tp-gradient-primary);
  background-origin: border-box;
  box-shadow: 2px 1020px 1px white inset;
  padding: 30px;
  z-index: 1;
}

.tp-about-counter-icon {
  margin-right: 15px;
}

.tp-about-counter-title {
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -1.92px;
  margin-bottom: 0;
}

.tp-about-counter-content p {
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-heading-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-thumb-wrapper {
    margin-bottom: 55px;
  }
}

.tp-about-thumb img {
  border-radius: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-thumb img {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .tp-about-thumb img {
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-about-thumb-2 {
    display: inline-block;
    margin-top: 0px !important;
  }
}
.tp-about-thumb-2 {
  position: relative;
  text-align: center;
  margin-top: 263px;
}

@media only screen and (max-width: 955px) {
  .tp-about-counter-inner {
    position: relative;
    width: 266px;
    height: 204px; 
    padding: 11px;
    z-index: 1;
  }
}



@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-thumb-2 {
    display: inline-block;
  }
}

.tp-about-thumb-2 img {
  border-radius: 10px;
}

.tp-about-thumb-2 .tp-play-btn {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
}

.tp-about-wrapper p {
  margin-bottom: 30px;
}

.tp-about-wrapper-list {
  margin-bottom: 30px;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-wrapper-list {
    margin-bottom: 20px;
  }
}

.tp-about-wrapper-list ul li {
  list-style: none;
  float: left;
  width: 50%;
  font-size: 20px;
  font-weight: 500;
  color: var(--tp-heading-primary);
  margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-wrapper-list ul li {
    width: 100%;
    float: none;
  }
}

.tp-about-wrapper-list ul li span {
  height: 24px;
  width: 24px;
  line-height: 24px;
  border-radius: 50%;
  margin-right: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  display: inline-block;
  background: var(--tp-gradient-primary);
  color: var(--tp-common-white);
}

.tp-about-wrapper-list ul li:nth-child(even) {
  padding-left: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-wrapper-list ul li:nth-child(even) {
    padding-left: 0;
  }
}

.tp-about-btn .tp-btn {
  padding: 15px 27px;
}

/*----------------------------------------*/
/*  7.4 service css
/*----------------------------------------*/

.tp-service-details-wrapper p {
  margin-bottom: 20px;
}

.tp-service-details-wrapper ul {
  margin-bottom: 50px;
}

.tp-service-details-wrapper ul li {
  list-style: none;
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.8px;
  color: var(--tp-heading-primary);
  margin-bottom: 20px;
}

.tp-service-details-wrapper ul li i {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--tp-common-white);
  font-weight: 900;
  background: var(--tp-gradient-primary);
  border-radius: 50%;
  margin-right: 10px;
}

.tp-service-details-thumb img {
  border-radius: 5px; 
  max-width: 100%;
  display: block;
  margin: auto;
}

.tp-service-details-thumb .tp-play-btn {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .tp-service-details-thumb .tp-play-btn {
    top: 15%;
  }
}

.tp-service-details-thumb .tp-play-btn .play-btn {
  height: 93px;
  width: 93px;
  line-height: 110px;
}

.tp-service-details-thumb .tp-play-btn .play-btn i {
  font-weight: 900;
  font-size: 30px;
}

.tp-service-details-icon {
  margin-right: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-service-details-box {
    flex-wrap: wrap;
  }
}

.tp-service-details-title {
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -1.92px;
  color: var(--tp-common-black);
}

.tp-service-details-subtitle {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  color: #151718;
}

.tp-service-details-subtitle2 {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.54px;
  color: var(--tp-heading-primary);
  margin-bottom: 32px;
}

.tp-service-widget-item {
  border-radius: 5px;
  background: var(--tp-common-gray);
  padding: 20px;
}

.tp-service-widget-tab ul li {
  list-style: none;
}

.tp-service-widget-tab ul li:not(:last-of-type) {
  margin-bottom: 20px;
}

.tp-service-widget-tab ul li.active a i {
  opacity: 1;
  transform: translateX(0);
}

.tp-service-widget-tab ul li:hover a i {
  transform: translateX(0);
  opacity: 1;
}

.tp-service-widget-tab ul li a {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.8px;
  color: #67687A;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: var(--tp-common-white);
  border-radius: 5px;
  box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
  padding: 20px;
}

.tp-service-widget-tab ul li a i {
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-weight: 900;
  display: inline-block;
  background: var(--tp-gradient-primary);
  color: var(--tp-common-white);
  border-radius: 50%;
  transform: translateX(5px);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  opacity: 0;
}

/*----------------------------------------*/
/*  7.5 team css
/*----------------------------------------*/

.tp-team-item-thumb {
  overflow: hidden;
}

.tp-team-item-thumb img {
  max-width: 100%;
  object-fit: cover;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.tp-team-item-content {
  padding-top: 20px;
}

.tp-team-item-content p {
  margin-bottom: 10px;
}

.tp-team-breadcrumb-item-wrapper {
  background: var(--tp-common-white);
  padding: 15px 15px 20px 15px;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-team-breadcrumb-item-wrapper {
    margin-bottom: 50px;
  }
}

.tp-team-breadcrumb-item-wrapper:hover .tp-team-item-thumb img {
  transform: scale(1.1);
}

/*----------------------------------------*/
/*  7.6 contact css
/*----------------------------------------*/

/*----------------------------------------*/
/*  7.7 counter css
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-counter-area {
    padding-bottom: 65px;
  }
}

.tp-counter-bg {
  position: absolute;
  content: "";
  left: 0;
  top: 90px;
  height: 780px;
  width: 100%;
  background: #0E1E2A;
  z-index: -1;
}

/*----------------------------------------*/
/*  7.8 project css
/*----------------------------------------*/
@media (max-width: 575px) {
  .tp-project-area {
    padding-bottom: 70px;
  }
}

.tp-project-box {
  padding-left: 90px;
  padding-right: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-box {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (max-width: 575px) {
  .tp-project-box {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 575px) {
  .tp-project-title-wrapper {
    margin-bottom: 50px;
  }
}

.tp-project-title-wrapper .tp-section-title {
  color: var(--tp-common-white);
}

.tp-project-item-wrapper:hover .tp-project-item-content span i {
  background-image: linear-gradient(90deg, #A977F6 0%, #6D18EF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}


.tp-project-item-wrapper:hover .tp-project-item-content span::after {
  background: #6f1cef;
}

.tp-project-item-wrapper:hover .tp-project-title {
  color: var(--tp-common-white);
}

.tp-project-item-wrapper:hover .tp-project-title::before {
  width: 100%;
  left: 0;
  right: auto;
}

.tp-project-item-thumb img {
  max-width: 88%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 400px) and (max-width: 767px) {
  .tp-project-item-thumb img {
    max-width: 100%;
  }
}

.tp-project-item-content {
  position: absolute;
  bottom: 27px;
  left: 0;
}

.tp-project-item-content span {
  position: relative;
  font-size: 21.3333px;
  font-weight: 900;
  height: 67px;
  width: 67px;
  line-height: 67px;
  display: inline-block;
  text-align: center;
  color: var(--tp-common-white);
  background-color: var(--tp-common-white);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: 0;
}

.tp-project-item-content span i {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-project-item-content span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  top: 0px;
  left: auto;
  right: 0;
  background-image: var(--tp-gradient-primary);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}

.tp-project-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.96px;
  border-radius: 0px 5px 5px 0px;
  background: var(--tp-common-white);
  height: 67px;
  width: 226px;
  line-height: 67px;
  margin: 0;
  z-index: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-project-title {
    width: 200px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-title {
    width: 185px;
  }
}

@media (max-width: 575px) {
  .tp-project-title {
    width: 170px;
    font-size: 20px;
  }
}

.tp-project-title::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  bottom: 0px;
  left: auto;
  right: 0;
  background-image: var(--tp-gradient-primary);
  border-radius: 0px 5px 5px 0px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}

.tp-project-title a {
  margin-left: 12px;
  transition: none;
}

.play-icon {
  color: #985cf4;
  width: 40px;
  height: 40px;
}

/*----------------------------------------*/
/*  7.9 process css
/*----------------------------------------*/

/*----------------------------------------*/
/*  7.9 faq css
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-faq-area {
    padding-bottom: 80px;
  }
}

.tp-faq-bg-img {
  position: absolute;
  top: -40px;
  left: 0;
  width: 48%;
  height: 110%;
  background-position: center;
  border-radius: 0 10px 10px 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-faq-bg-img {
    display: none;
  }
}

.tp-faq-bg-img .tp-play-btn {
  position: absolute;
  top: 295px;
  left: 44%;
  transform: translateX(44%);
}

.tp-faq-bg-img .tp-play-btn .play-btn {
  position: relative;
  z-index: 1;
  height: 94px;
  width: 94px;
  line-height: 93px;
}

.tp-faq-bg-img .tp-play-btn .play-btn i {
  font-size: 30px;
  font-weight: 900;
}

/*----------------------------------------*/
/*  8.0 blog css
/*----------------------------------------*/

/*----------------------------------------*/
/*  8.1 testimonial css
/*----------------------------------------*/

/*----------------------------------------*/
/*  8.2 testimonial css
/*----------------------------------------*/

/*----------------------------------------*/
/*  8.3 business css
/*----------------------------------------*/

/*----------------------------------------*/
/*  8.4 offer css
/*----------------------------------------*/

/*----------------------------------------*/
/*  8.5 portfolio css
/*----------------------------------------*/


/*----------------------------------------*/
/*  9.1 hero css
/*----------------------------------------*/

@keyframes hero-shape-anim-2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-9px);
  }

}

@keyframes hero-shape-anim {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes hero-shape-anim-dimond {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

/*----------------------------------------*/
/*  9.2 brand css
/*----------------------------------------*/

/*----------------------------------------*/
/*  9.3 features css
/*----------------------------------------*/


/*----------------------------------------*/
/*  9.4 about css
/*----------------------------------------*/


@keyframes transform {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.7);
    opacity: 0.8;
  }
}


@keyframes bannerAnimationTwo {
  0% {
    transform: translate(0px, 0px);
  }

  20% {
    transform: translate(20px, -5px);
  }

  40% {
    transform: translate(50px, 20px);
  }

  60% {
    transform: translate(20px, 50px);
  }

  80% {
    transform: translate(-20px, 30px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}



/*----------------------------------------*/
/*   9.5 service css
/*----------------------------------------*/


/*----------------------------------------*/
/*  9.6 proecess css
/*----------------------------------------*/

/*----------------------------------------*/
/*  9.7 Pricing table css
/*----------------------------------------*/

.depromocao{

  font-size: 18px;
  display: block;
  position: absolute;
  margin-left: 13px;
  color: red;
  text-decoration-line: line-through;
}
.porpromocao{
  top: 9px;
  position: relative;
}
.tp-team-breadcrumb-item-wrapper {
  position: relative;
  /* Define a posição relativa para a div principal */
}

.badge {
  position: absolute;
  top: -12px;
  right: -4px;
  background-color: #e97800;
  padding: 17px 15px;
  border-radius: 32px;
  z-index: 4;
}

.desconto {
  font-size: 16px;
  color: #FFF;
}

.valor_de {
  font-size: 17px;
  color: #ff0000;
  text-decoration-line: line-through;
}

.valor_por {
  font-size: 25px;
  color: #007800;
  font-weight: bolder;

}
.titulo{
  font-size: 20px;
  color: #a42dbd;
  font-weight: 500;
}


   /* Estilo para o conteúdo do modal */
   .modal-content {
    background-color: #f8f8f8;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.48);
 }

 .modal-header{
    background: #503579;  
 }

 /* Estilo para o título do modal */
 .modal-title {
    color: #fff; /* Cor do texto do título */
 }

 /* Estilo para o botão de fechar */
 .btn-close {
    color: #333333; /* Cor do botão de fechar */
 }

 /* Estilo para o formulário dentro do modal */
 #formLogin {
    padding: 20px; /* Espaçamento interno */
 }

 /* Estilo para os links dentro do formulário */
 #formLogin a {
    color: #333333; /* Cor do texto dos links */
 }
 .canaisb{
  font-size: 25px;
  color: #fff;
  font-weight: bold;
 }
 .tituloplano{
  font-size: 27px !important;
  color: #8D00C1 !important;
  text-align: center;
  padding-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-team-breadcrumb-item-wrapper {
    max-width: 286px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-counter-area {
    padding-bottom: 116px;
  }
}

.offcanvas__area {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(-100% - 80px));
  -moz-transform: translateX(calc(-100% - 80px));
  -ms-transform: translateX(calc(-100% - 80px));
  -o-transform: translateX(calc(-100% - 80px));
  transform: translateX(calc(-100% - 80px));
  background: var(--tp-common-white) none repeat scroll 0 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .offcanvas__area {
    right: 0;
    left: auto;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__area.home-2-pos {
    right: 0;
    left: auto;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
  }
}

.offcanvas__area.home-3-pos {
  right: 0;
  left: auto;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
}

.offcanvas__area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.offcanvas__area.offcanvas-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .offcanvas__top {
    margin-bottom: 30px;
  }
}

.offcanvas__wrapper {
  position: relative;
  padding: 40px;
  z-index: 999;
  min-height: 100%;
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 30px;
  }
}

.offcanvas__close {
  position: absolute;
  top: 35px;
  right: 30px;
}

@media (max-width: 575px) {
  .offcanvas__close {
    right: 20px;
    top: 20px;
  }
}

.offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  background-color: #f5f5f5;
  color: var(--tp-text-1);
}

.offcanvas__close-btn svg {
  transition: all 0.3s ease-in-out;
}

.offcanvas__close-btn:hover svg {
  transform: rotate(45deg);
}

.offcanvas__close-btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.offcanvas__inner h4 {
  font-family: var(--tp-ff-space);
  font-size: 24px;
  color: var(--tp-common-white);
  line-height: 1.3;
  margin-bottom: 15px;
}

.offcanvas__inner p {
  font-family: var(--tp-ff-inter);
  font-size: 16px;
  line-height: 22px;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}

.offcanvas__inner>img {
  margin-bottom: 30px;
}

.offcanvas__menu ul li {
  list-style: none;
  margin-bottom: 10px;
}

.offcanvas__menu ul li:last-child {
  margin-bottom: 0;
}

.offcanvas__menu ul li a {
  font-weight: 700;
  font-size: 20px;
  color: var(--tp-common-black);
}

.offcanvas__menu ul li:hover>a {
  color: var(--tp-theme-primary);
}

.offcanvas__text p {
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--tp-common-black-4);
  margin-bottom: 25px;
}

.offcanvas__contact {
  margin-bottom: 30px;
}

.offcanvas__contact-content {
  margin-bottom: 10px;
}

.offcanvas__contact-content-icon i {
  color: #6EC1E4;
  margin-right: 10px;
}

.offcanvas__contact-content-content a {
  font-size: 16px;
}

.offcanvas__social {
  margin-bottom: 22px;
  padding-bottom: 40px;
}

.offcanvas__social .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: transparent;
  color: var(--tp-common-white);
  margin-right: 5px;
  transition: all 0.3s ease-in-out;
}

.offcanvas__social .icon.facebook {
  background-color: #4661C5;
}

.offcanvas__social .icon.twitter {
  background-color: #4CCEF9;
}

.offcanvas__social .icon.youtube {
  background-color: #FF0000;
}

.offcanvas__social .icon.linkedin {
  background-color: #0072b1;
}

.offcanvas__social .icon:hover {
  transform: translateY(-8px);
}

.offcanvas__title {
  font-size: 24px;
  color: #1b1d21;
  font-weight: 700;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .offcanvas__popup {
    display: none;
  }
}

.offcanvas__popup p {
  margin-bottom: 20px;
}

.offcanvas__popup-gallery {
  margin-bottom: 30px;
}

.offcanvas__popup-gallery a {
  margin: 5px 3px;
  display: inline-block;
}

.offcanvas__popup-gallery a img {
  height: 100px;
  max-width: 100px;
  object-fit: cover;
}

.offcanvas__info-item {
  margin-bottom: 38px;
}

.offcanvas__info-item-title {
  font-family: var(--tp-ff-space);
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 12px;
}

.offcanvas__info-item p {
  font-size: 16px;
  color: var(--tp-text-16);
  margin-bottom: 0;
  line-height: 22px;
}

.offcanvas__info-item p a:hover {
  color: var(--tp-theme-primary);
}

.tp-footer-widget-item-thumb img {
  width: 60px; 
  height: 60px; 
  object-fit: cover;  
  border-radius: 5px; 
}
.tp-contact-thumb-wrapper {
  padding-left: 18px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-thumb-wrapper {
    padding-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-thumb-wrapper {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-thumb-wrapper {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-thumb-wrapper {
    padding-top: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-thumb-wrapper img {
    max-width: 100%;
  }
}

.tp-contact-thumb-shape .shape-1 {
  position: absolute;
  left: 25px;
  bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-thumb-shape .shape-1 {
    bottom: -20px;
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-thumb-shape .shape-1 {
    bottom: -35px;
    left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-thumb-shape .shape-1 {
    left: 0px;
    bottom: -10px;
  }
}

@media (max-width: 575px) {
  .tp-contact-thumb-shape .shape-1 {
    display: none;
  }
}

.tp-contact-thumb-shape .shape-2 {
  position: absolute;
  right: -40px;
  top: 55px;
  animation: lara 1s infinite linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-thumb-shape .shape-2 {
    top: 24%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-thumb-shape .shape-2 {
    top: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-thumb-shape .shape-2 {
    top: 22%;
    right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-thumb-shape .shape-2 {
    right: -15px;
    top: 20%;
  }
}

@media (max-width: 575px) {
  .tp-contact-thumb-shape .shape-2 {
    display: none;
  }
}

.tp-contact-thumb-shape .shape-3 {
  position: absolute;
  right: -18px;
  bottom: -7px;
  animation: tptranslateX2 3s ease-in-out 1s forwards infinite alternate;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-thumb-shape .shape-3 {
    right: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-thumb-shape .shape-3 {
    right: 0;
  }
}

@media (max-width: 575px) {
  .tp-contact-thumb-shape .shape-3 {
    display: none;
  }
}

.tp-contact-form .form-group {
  margin-bottom: 25px;
}

.tp-contact-form .form-group .label {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
}

.tp-contact-form .form-group input {
  height: 60px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #E3E3E3;
}

.tp-contact-form .form-group input:focus {
  border: 1px solid var(--tp-theme-primary);
  box-shadow: none;
}

.tp-contact-form .form-group textarea {
  height: 100px;
  font-size: 16px;
  border-radius: 5px;
  resize: none;
  border: 1px solid #E3E3E3;
}

.tp-contact-form .form-group textarea:focus {
  border: 1px solid var(--tp-theme-primary);
  box-shadow: none;
}

.tp-contact-form .form-group .tp-btn {
  position: relative;
  height: 64px;
  width: 100%;
  border: none;
  border-radius: 5px;
}

.tp-contact-form.contact-2 .form-group input {
  height: 72px;
}

.tp-contact-form.contact-2 .form-group input::placeholder {
  font-size: 16px;
  font-weight: 400;
}

.tp-contact-form.contact-3 .form-group {
  margin-bottom: 20px;
}

.tp-contact-form.contact-3 .form-group .form-control {
  position: relative;
  height: 72px;
  background: var(--tp-heading-primary);
  border: 1px solid #3C4958;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 5px;
}

.tp-contact-form.contact-3 .form-group .form-control::placeholder,
.tp-contact-form.contact-3 .form-group .form-control:focus {
  color: var(--tp-common-white);
}

.tp-contact-form.contact-3 .nice-select {
  margin-bottom: 20px;
}

.tp-contact-form.contact-3 .nice-select.wide {
  height: 72px;
  line-height: 72px;
  background: var(--tp-heading-primary);
  border: 1px solid #3C4958;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 5px;
}

.tp-contact-form.contact-3 .nice-select.wide .current {
  color: var(--tp-common-white);
  font-size: 16px;
  font-weight: 400;
}

.tp-contact-form.contact-3 .nice-select::after {
  font-size: 16px;
  font-weight: 900;
  right: 30px;
  color: var(--tp-common-white);
}

.tp-contact-2-title-wrapper .tp-section-title {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-2-title-wrapper {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-2-thumb {
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .tp-contact-2-thumb {
    margin-bottom: 50px;
  }
}

.tp-contact-2-thumb img {
  max-width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-2-thumb img {
    min-width: 100%;
  }
}

.tp-contact-3-bg {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1800px) and (max-width: 1900px),
only screen and (min-width: 1700px) and (max-width: 1800px),
only screen and (min-width: 1600px) and (max-width: 1700px),
only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-3-bg {
    width: 48%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-3-bg {
    display: none;
  }
}

.tp-contact-3-shape {
  position: absolute;
  top: -160px;
  right: 0;
  z-index: 0;
}

.tp-contact-3-title-wrapper .tp-section-title {
  color: var(--tp-common-white);
}

.tp-contact-3-title-wrapper .tp-section-title-pre {
  color: var(--tp-common-white);
  background: transparent;
  -webkit-text-fill-color: initial;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-information-wrapper {
    flex-wrap: wrap;
  }
}

.tp-contact-map-area {
  margin-top: -60px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-map-area {
    margin-top: 20px;
  }
}

.tp-contact-map-content {
  width: 100%;
}

.tp-contact-map-content iframe {
  width: 100%;
  height: 600px;
  border-radius: 5px;
}

.tp-contact-map-info {
  display: inline-block;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-contact-map-info:hover {
  transform: translateY(-10px);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-map-info {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-map-info {
    margin-right: 0;
  }
}

.tp-contact-map-info-wrapper {
  position: relative;
  padding: 35px 67px 26px 35px;
  background: var(--tp-common-white);
  box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
  border-radius: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-map-info-wrapper {
    padding: 35px 50px 26px 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-map-info-wrapper {
    padding: 30px 10px 26px 20px;
  }
}

.tp-contact-map-info-content a {
  font-family: var(--tp-ff-p);
  font-weight: 400;
  font-size: 16px;
  color: #67687A;
}

.tp-contact-map-info-icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  display: inline-block;
  background: var(--tp-gradient-primary);
  text-align: center;
  border-radius: 5px;
  margin-right: 20px;
}

.tp-contact-map-info-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.96px;
  margin-bottom: 5px;
}

.tp-contact-box {
  background: var(--tp-common-gray);
  border-radius: 5px;
  padding: 80px 60px 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-box {
    padding: 60px 40px 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-box {
    padding: 30px;
  }
}

.tp-contact-box p {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-contact-box p br {
    display: none;
  }
}

.tp-contact-box-input input {
  height: 60px;
  background: var(--tp-common-white);
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  margin-bottom: 30px;
}

.tp-contact-box-input input:focus {
  border: 1px solid var(--tp-theme-primary);
}

.tp-contact-box-input input::placeholder {
  font-size: 16px;
  font-weight: 400;
}

.tp-contact-box-input textarea {
  height: 270px;
  border-radius: 5px;
  resize: none;
  margin-bottom: 30px;
}

.tp-contact-box-input textarea:focus {
  border: 1px solid var(--tp-theme-primary);
}

.tp-contact-box-input textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
}

.tp-contact-box-btn .tp-btn {
  width: 100%;
  text-transform: uppercase;
  border-radius: 5px;
}

.tp-contact-title {
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -1.92px;
  margin-bottom: 34px;
}

@media (max-width: 575px) {
  .tp-contact-title {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .tp-contact-title br {
    display: none;
  }
}
textarea {
  outline: none;
  background-color: #fff;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: var(--tp-common-black);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #E0E2E3;
}