/*-----------------------------------------------------------------------------------

    JETKOLAY
----------------------------------------------------------------------------------- */


@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap&family=Niconne&display=swap");
.tp-offcanvas-area, .tp-offcanvas-social ul li a, .back-to-top-wrapper, a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.tp-btn-white span {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.tp-footer-widget-content ul li a span {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.tp-slider-scroll-down a span {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
}

/* transform */
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: "Manrope", sans-serif;
  --tp-ff-heading: "Manrope", sans-serif;
  --tp-ff-p: "Manrope", sans-serif;
  --tp-ff-niconne: "Niconne", cursive;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #FFFFFF;
  --tp-common-black: #141820;
  --tp-common-black-2: #171b24;
  --tp-common-black-3: #002B3B;
  --tp-common-black-4: #012836;
  --tp-common-yellow: #FFEF5B;
  --tp-common-yellow-2: #FAFF1C;
  --tp-common-pink: #d70b54;
  --tp-common-pink-2: #FD4185;
  --tp-common-pink-3: #f939a0;
  --tp-common-sky: #27B5FF;
  --tp-common-sky-2: #44E8F2;
  --tp-common-blue: #277dff;
  --tp-common-paste: #a1ecea;
  --tp-common-purple: #605cfa;
  --tp-common-purple-2: #35387a;
  --tp-common-purple-3: #6B68CE;
  --tp-common-purple-4: #6C68D4;
  --tp-theme-1: #A4FF5C;
  --tp-grey-1: #F6F7F9;
  --tp-grey-2: #b4b7be;
  --tp-grey-3: #EEF0F5;
  --tp-grey-4: #EFF1F2;
  --tp-grey-5: #eef0f5;
  --tp-text-body: #525356;
  --tp-border-1: #EAEBED;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1230px;
    --bs-gutter-x: 30px;
  }
  .container-1680 {
    max-width: 1680px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-size: 14px;
  line-height: 26px;
  font-weight: normal;
  color: var(--tp-text-body);
  font-family: var(--tp-ff-body);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-heading);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
  font-family: var(--tp-ff-p);
  color: var(--tp-text-body);
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  padding-left: 26px;
  padding-right: 26px;
  color: var(--tp-common-black);
  border: 1px solid var(--tp-common-black);
  background-color: var(--tp-common-white);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--tp-common-black);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: var(--tp-common-black);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: var(--tp-common-black);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: var(--tp-common-black);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: var(--tp-common-black);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--tp-common-black);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}

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

.tp-line-black {
  display: inline;
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-image: linear-gradient(#141820, #141820), linear-gradient(#141820, #141820);
}
.tp-line-black:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-line-white {
  display: inline;
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}
.tp-line-white:hover {
  background-size: 0% 1px, 100% 1px;
}

/*---------------------------------
    1.1 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

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

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

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

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

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

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

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

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

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

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

.gx-40 {
  --bs-gutter-x: 40px;
}

.gx-45 {
  --bs-gutter-x: 45px;
}

.gx-50 {
  --bs-gutter-x: 50px;
}

.gx-60 {
  --bs-gutter-x: 60px;
}

.gx-70 {
  --bs-gutter-x: 70px;
}

.gx-80 {
  --bs-gutter-x: 80px;
}

.gx-90 {
  --bs-gutter-x: 90px;
}

.gx-100 {
  --bs-gutter-x: 100px;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

/* dropcap */
.tp-dropcap::first-letter {
  float: left;
  width: 65px;
  height: 85px;
  font-size: 90px;
  line-height: 0.8;
  font-weight: 500;
  margin-right: 5px;
  text-align: center;
  line-height: inherit;
  text-transform: capitalize;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-body);
}

.tp-line-hover {
  position: relative;
  display: inline-block;
}
.tp-line-hover::after {
  right: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  content: "";
  position: absolute;
  background-color: var(--tp-common-black);
  transition: 0.4s;
}
.tp-line-hover:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 20px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 20px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #000000;
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s 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.3 Buttons
/*----------------------------------------*/
.tp-btn {
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  display: inline-block;
  padding: 12px 28px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  background-color: #bf0606;
  color: #fff;
}
.tp-btn:hover {
  color: #fff;
  background-color:  #ec0404;
}
.tp-btn-subscribe {
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 11px 24px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  background-color: var(--tp-common-purple);
}
.tp-btn-subscribe span {
  margin-right: 3px;
  display: inline-block;
}
.tp-btn-subscribe span svg {
  transform: translateY(-1px);
}
.tp-btn-subscribe.large {
  border-radius: 6px;
  padding: 22px 24px;
  background-color: var(--tp-common-blue);
}

.tp-btn-white-border {
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  padding: 4px 23px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  border: 2px solid rgba(20, 24, 32, 0.1);
}
@media (max-width: 767px) {
  .tp-btn-white-border {
    padding: 4px 15px;
  }
}
.tp-btn-white-border:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-purple);
  background-color: var(--tp-common-purple);
}

.tp-btn-border {
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  letter-spacing: -0.02em;
  display: inline-block;
  color: var(--tp-common-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
.tp-btn-border span {
  margin-left: 7px;
}
.tp-btn-border.sm {
  padding: 10px 30px;
}
.tp-btn-border:hover {
  color: var(--tp-common-black);
  border-color: var(--tp-theme-1);
  background-color: var(--tp-theme-1);
}
.tp-btn-border.grey-border {
  color: var(--tp-common-black);
  border-color: rgba(20, 24, 32, 0.1);
}
.tp-btn-border.grey-border:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
  background-color: var(--tp-common-black);
}
.tp-btn-border-radius {
  font-size: 14px;
  transition: 0.3s;
  font-weight: 600;
  padding: 4px 24px;
  padding-bottom: 5px;
  border-radius: 30px;
  display: inline-block;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-3);
  border: 2px solid rgba(0, 43, 59, 0.1);
}
.tp-btn-border-radius:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}
.tp-btn-border-radius-6 {
  padding: 5px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.tp-btn-border-radius-6 span {
  margin-left: 5px;
  display: inline-block;
}
.tp-btn-border-radius-6 span svg {
  transform: translateY(-1px);
}
.tp-btn-border-radius-6:hover {
  color: var(--tp-common-black);
  border-color: var(--tp-common-white);
  background-color: var(--tp-common-white);
}
.tp-btn-border-radius-6.grey-border {
  color: var(--tp-common-black);
  border: 2px solid rgba(20, 24, 32, 0.1);
}
.tp-btn-border-radius-6.grey-border:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-purple);
  background-color: var(--tp-common-purple);
}
.tp-btn-border-radius-6.lg {
  padding: 8px 22px;
}
.tp-btn-border-radius-6.lg:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
  background-color: var(--tp-common-black);
}

.tp-btn-sky {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 30px;
  transition: 0.3s;
  display: inline-block;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  background-color: var(--tp-common-sky-2);
}
.tp-btn-sky:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-pink-2);
}
.tp-btn-sky.blue-bg {
  color: var(--tp-common-white);
  background-color: #bf0606;
}
.tp-btn-sky.blue-bg:hover {
  color: var(--tp-common-white);
  background-color: #dd0404;
}

.tp-btn-white {
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  padding: 17px 45px;
  letter-spacing: -0.02em;
  display: inline-block;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}
.tp-btn-white span {
  margin-left: 6px;
  display: inline-block;
}
.tp-btn-white:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-theme-1);
}
.tp-btn-white.sm {
  padding: 9px 20px;
  font-size: 14px;
  border-radius: 6px;
  letter-spacing: -0.02em;
}
.tp-btn-white.sm:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}

.tp-btn-black-radius {
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
  padding: 5px 24px;
  padding-bottom: 6px;
  border-radius: 30px;
  display: inline-block;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black-3);
}
.tp-btn-black-radius:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}

.tp-btn-blue {
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 30px;
  display: inline-block;
  padding: 10px 30px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}
.tp-btn-blue:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black-3);
}
.tp-btn-blue.sky-bg {
  background-color: #a1ecea;
  color: var(--tp-common-black-3);
}
.tp-btn-blue.sky-bg:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}
.tp-btn-blue.radius-6 {
  border-radius: 6px;
}
.tp-btn-blue.radius-6 span {
  margin-left: 10px;
}
.tp-btn-blue.height-46 {
  border-radius: 6px;
  padding: 15px 29px;
}
.tp-btn-blue.height-46 span {
  margin-left: 7px;
  display: inline-block;
}

.tp-btn-border-paste {
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  padding: 8px 26px;
  transition: all 0.3s;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  border: 2px solid var(--tp-common-paste);
}
.tp-btn-border-paste span {
  margin-left: 8px;
  display: inline-block;
  transform: translateY(-1px);
}
.tp-btn-border-paste:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-paste);
}
.tp-btn-border-paste.height-50 {
  padding: 10px 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-paste);
}
.tp-btn-border-paste.height-50:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-blue);
  background-color: var(--tp-common-blue);
}

.tp-btn-circle {
  height: 160px;
  width: 160px;
  line-height: 1.29;
  border-radius: 50%;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-common-black-3);
  border: 1px solid var(--tp-common-black-3);
}
.tp-btn-circle-icon {
  margin-left: -7px;
  transform: translateY(-13px);
  transition: all 0.4s ease-in-out;
}
.tp-btn-circle-text {
  transition: all 0.4s ease-in-out;
}
.tp-btn-circle .tp-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 20px;
  height: 20px;
  z-index: -1;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--tp-common-black-3);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.tp-btn-circle:hover {
  border: 1px solid transparent;
}
.tp-btn-circle:hover .tp-btn-circle-dot {
  width: 520px;
  height: 520px;
}
.tp-btn-circle:hover span {
  color: var(--tp-common-white);
}
.tp-btn-circle.white {
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-white);
}
.tp-btn-circle.white .tp-btn-circle-dot {
  background-color: var(--tp-common-white);
}
.tp-btn-circle.white:hover span {
  color: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-btn-circle.solid-black {
  color: var(--tp-common-black);
  border: 1px solid var(--tp-common-black);
}
.tp-btn-circle.solid-black .tp-btn-circle-dot {
  background-color: var(--tp-common-black);
}
.tp-btn-circle.solid-black:hover span {
  color: var(--tp-common-white);
  border-color: var(--tp-common-white);
}
.tp-btn-circle.sm {
  height: 140px;
  width: 140px;
}
.tp-btn-circle.sm .tp-btn-circle-icon {
  margin-left: -25px;
  transform: translateX(-9px) translateY(-13px);
}

.tp-btn-purple {
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  padding: 13px 32px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  background-color: var(--tp-common-purple-2);
}
.tp-btn-purple span {
  margin-left: 5px;
  display: inline-block;
  transform: translateY(-1px);
}
.tp-btn-purple:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-purple);
  background-color: var(--tp-common-purple);
}

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll1 {
  0% {
    top: 0px;
  }
  100% {
    top: 100%;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
.preloader-layout-wrap {
  margin: auto;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 99;
  background-color: var(--tp-common-black);
}

.preloader-layout {
  margin: auto;
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-path {
  margin: 0;
  height: 80px;
  width: 80px;
  animation: preloader 2s linear 0s infinite;
}
.preloader-path svg {
  height: 100%;
  width: 100%;
}

.preloader-logo {
  margin: 0;
  transform: translateY(4px);
}

@keyframes preloader {
  0% {
    rotate: 0deg;
    transform: scale(0.6);
  }
  50% {
    rotate: 100deg;
    transform: scale(0.4);
  }
  100% {
    rotate: 360deg;
    transform: scale(0.6);
  }
}
/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/
.grey-bg {
  background-color: var(--tp-grey-1);
}

.grey-bg-2 {
  background-color: var(--tp-grey-3);
}

.grey-bg-3 {
  background-color: var(--tp-grey-4);
}

.grey-bg-4 {
  background-color: var(--tp-grey-5);
}

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

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

.black-bg {
  background-color: var(--tp-common-black);
}

.black-bg-2 {
  background-color: var(--tp-common-black-2);
}

.black-bg-3 {
  background-color: var(--tp-common-black-3);
}

.black-bg-4 {
  background-color: var(--tp-common-black-4);
}

.pink-bg {
  background-color: var(--tp-common-pink);
}

.purple-bg {
  background-color: var(--tp-common-purple-4);
}

.purple-bg-2 {
  background-color: var(--tp-common-purple-2);
}

.yellow-bg {
  background-color: var(--tp-common-yellow);
}

.gradient-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, #171b23 0%, #141820 100%);
}

.gradient-bg-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, #f8f9fd 0%, #fff 100%);
}

[data-bg-color=footer-bg-grey] {
  background-color: var(--tp-footer-grey-1);
}

[data-bg-color=footer-bg-white] {
  background-color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
  background: rgba(24, 24, 24, 0.4);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.tp-offcanvas-area {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  z-index: 99;
  z-index: 99999;
  padding: 50px 50px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  background: #FFF;
  overscroll-behavior-y: contain;
  -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 (max-width: 767px) {
  .tp-offcanvas-area {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-offcanvas-area {
    width: 450px;
  }
}
.tp-offcanvas-area.opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.tp-offcanvas-top {
  margin-bottom: 60px;
}
.tp-offcanvas-close-btn {
  color: black;
}
.tp-offcanvas-close-btn:hover {
  opacity: 1;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-offcanvas-content {
  margin-bottom: 45px;
}
.tp-offcanvas-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #414144;
}
.tp-offcanvas-title {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--tp-common-black);
}
.tp-offcanvas-title.sm {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: var(--tp-common-black);
}
.tp-offcanvas-gallery {
  margin-bottom: 65px;
}
.tp-offcanvas-contact {
  margin-bottom: 55px;
}
.tp-offcanvas-contact ul li {
  list-style: none;
}
.tp-offcanvas-contact ul li:not(:last-child) {
  margin-bottom: 2px;
}
.tp-offcanvas-contact ul li a {
  display: inline-block;
  color: #414144;
  font-size: 18px;
  position: relative;
}
.tp-offcanvas-contact ul li a::after {
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 0;
  height: 1px;
  content: "";
  transition: 0.4s;
  background-color: #1e1e1e;
}
.tp-offcanvas-contact ul li a:hover {
  color: var(--tp-common-black);
}
.tp-offcanvas-contact ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.tp-offcanvas-social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.tp-offcanvas-social ul li {
  list-style: none;
}
.tp-offcanvas-social ul li:not(:last-child) {
  margin-right: 8px;
}
.tp-offcanvas-social ul li a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 40px;
  color: var(--tp-common-black);
  border: 1px solid rgba(2, 11, 24, 0.1);
}
.tp-offcanvas-social ul li a:hover {
  background-color: var(--tp-common-black);
  border-color: var(--tp-common-black);
  color: var(--tp-common-white);
}
.tp-offcanvas-social ul li a svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.tp-offcanvas-style-2 .tp-offcanvas-top {
  margin-bottom: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-offcanvas-style-2 .tp-offcanvas-top {
    margin-bottom: 60px;
  }
}

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
.breadcrumb-bg {
  padding-top: 240px;
  padding-bottom: 140px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
@media (max-width: 767px) {
  .breadcrumb-bg {
    padding-top: 190px;
    padding-bottom: 100px;
  }
}
.breadcrumb-overlay {
  position: relative;
}
.breadcrumb-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(10, 12, 17, 0.4);
}
.breadcrumb-title {
  font-weight: 800;
  font-size: 70px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 40px;
  }
}
.breadcrumb-list {
  display: inline-block;
  padding: 0px 10px;
}
.breadcrumb-list span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
.breadcrumb-list span.dvdr i {
  padding: 0px 14px;
}
.breadcrumb-style-2 .breadcrumb-list span {
  color: #525356;
}
.breadcrumb-style-2 .breadcrumb-list span.active {
  color: var(--tp-common-black);
}
.breadcrumb-style-2 .breadcrumb-content {
  padding: 12px 0;
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.tp-faq-wrapper .accordion-items {
  position: relative;
  padding: 0;
}
.tp-faq-wrapper .accordion-items:not(:last-child) {
  box-shadow: 0 1px 0 0 rgba(1, 17, 22, 0.14);
}
.tp-faq-wrapper .accordion-header {
  position: relative;
}
.tp-faq-wrapper .accordion-header .accordion-buttons {
  width: 100%;
  padding: 25px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
  position: relative;
  padding-right: 30px;
  color: var(--tp-common-black-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-faq-wrapper .accordion-header .accordion-buttons {
    font-size: 18px;
  }
}
.tp-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) {
  color: var(--tp-common-blue);
}
.tp-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.tp-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::after {
  background-color: var(--tp-common-blue);
}
.tp-faq-wrapper .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 35px;
  right: 10px;
}
.tp-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  transition: 0.4s;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black-3);
}
.tp-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  left: 50%;
  top: 50%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black-3);
}
.tp-faq-wrapper .accordion-body {
  padding: 0;
  padding-right: 110px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-faq-wrapper .accordion-body {
    padding-right: 65px;
  }
}
.tp-faq-wrapper .accordion-body p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
  color: #4d5051;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-faq-wrapper .accordion-body p br {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.13 Tab
/*----------------------------------------*/
.tp-toggler-pre,
.tp-toggler-post {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #848788;
  transition: all 0.3s;
}
.tp-toggler-pre.is-active,
.tp-toggler-post.is-active {
  color: var(--tp-common-black-3);
}
.tp-toggler-pre:hover,
.tp-toggler-post:hover {
  color: var(--tp-common-black-3);
}

.tp-toggler-pre {
  margin-right: 15px;
}

.tp-toggler-post {
  margin-left: 15px;
}

.tp-toggle-input-wrap {
  position: relative;
  width: 76px;
  height: 36px;
  overflow: hidden;
  border-radius: 100px;
  background-color: var(--tp-common-blue);
}

.tp-price-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-price-nav-wrapper .tp-input-check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
}
.tp-price-nav-wrapper .tp-input-check:checked ~ .tp-switch-toggle {
  left: 4px;
  right: 57.3%;
}

.tp-switch-toggle {
  position: absolute;
  top: 4px;
  right: 4px;
  left: 57.3%;
  bottom: 4px;
  z-index: 1;
  border-radius: 100%;
  box-shadow: 0 4px 6px 0 rgba(1, 17, 22, 0.24);
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background: linear-gradient(180deg, #fff 0%, #e1e4e8 100%);
}

.tp-tab-hide {
  display: none;
}

/*----------------------------------------*/
/*  2.14 Modal
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section-subtitle {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: inline-block;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.tp-section-subtitle::before {
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  margin-right: 9px;
  display: inline-block;
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.7);
}
.tp-section-subtitle.black-dot::before {
  background-color: var(--tp-common-black);
}
.tp-section-subtitle.fs-12 {
  font-weight: 600;
  font-size: 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #eef3f6;
  padding: 2px 23px;
  color: var(--tp-common-black-3);
}
.tp-section-subtitle.fs-12::before {
  display: none;
  margin-right: 0;
}
.tp-section-subtitle.sky-bg {
  background-color: #cae1ec;
}
.tp-section-2-subtitle {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-black);
}
.tp-section-2-subtitle::before {
  content: "";
  height: 1px;
  width: 30px;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(-4px);
  background-color: var(--tp-common-black);
}
.tp-section-2-subtitle.text-white::before {
  background-color: var(--tp-common-white);
}
.tp-section-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .tp-section-title {
    font-size: 35px;
  }
}
.tp-section-title.sm {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .tp-section-title.sm {
    font-size: 28px;
  }
}
.tp-section-title.sm > span {
  color: var(--tp-common-pink-2);
}
.tp-section-title.fs-40 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title.fs-40 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .tp-section-title.fs-40 {
    font-size: 30px;
  }
  .tp-section-title.fs-40 br {
    display: none;
  }
}
.tp-section-title.fs-44 {
  font-size: 44px;
  line-height: 1.18;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title.fs-44 {
    font-size: 35px;
  }
  .tp-section-title.fs-44 br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-section-title.fs-44 {
    font-size: 30px;
  }
  .tp-section-title.fs-44 br {
    display: none;
  }
}
.tp-section-title.fs-44 span {
  color: var(--tp-common-blue);
}
.tp-section-title.fs-55 {
  font-weight: 800;
  font-size: 55px;
  line-height: 1.17;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-section-title.fs-55 {
    font-size: 45px;
  }
}
.tp-section-title.fs-70 {
  font-weight: 800;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title.fs-70 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .tp-section-title.fs-70 {
    font-size: 45px;
  }
}

/*----------------------------------------*/
/*  2.16 Search css start
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.19 Magic Cursor css start
/*----------------------------------------*/
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-header-mob-space {
    padding: 20px 0;
  }
}
.tp-header-logo img {
  width: 135px;
  height: 100%;
}
.tp-header-menu > nav > ul {
  margin-left: -80px;
}
@media 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) {
  .tp-header-menu > nav > ul {
    margin-left: 0;
  }
}
.tp-header-menu > nav > ul > li {
  list-style-type: none;
  display: inline-block;
  margin: 0px 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-menu > nav > ul > li {
    margin: 0px 14px;
  }
}
.tp-header-menu > nav > ul > li > a {
  padding: 37px 0;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
.tp-header-menu > nav > ul > li:hover > a {
  color: var(--tp-theme-1);
}
.tp-header-menu-style-2 > nav > ul {
  margin-left: 0;
}
.tp-header-menu-style-2 > nav > ul > li > a {
  position: relative;
  padding: 27px 0;
}
.tp-header-menu-style-2 > nav > ul > li > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  content: "";
  transition: 0.4s;
  background-color: var(--tp-theme-1);
}
.tp-header-menu-style-2 > nav > ul > li:hover a::after {
  right: auto;
  left: 0;
  width: 100%;
}
.tp-header-menu-style-3 > nav > ul {
  margin-left: 0;
}
.tp-header-menu-style-3 > nav > ul > li > a {
  color: var(--tp-common-black);
}
.tp-header-menu-style-3 > nav > ul > li:hover a {
  color: var(--tp-common-blue);
}
.tp-header-menu-style-4 > nav > ul {
  margin-left: 0;
}
.tp-header-menu-style-4 > nav > ul > li {
  margin: 0;
  padding: 6px 0;
}
.tp-header-menu-style-4 > nav > ul > li > a {
  padding: 0;
  padding: 6px 21px;
  border-radius: 6px;
  display: inline-block;
  background-color: transparent;
  color: var(--tp-common-black);
}
.tp-header-menu-style-4 > nav > ul > li:hover > a {
  background-color: #e8ebf0;
  color: var(--tp-common-black);
}
.tp-header-search-input {
  position: relative;
}
.tp-header-search-input::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition-delay: 0s;
  transition: width 0.3s ease;
  background-color: var(--tp-common-white);
}
.tp-header-search-input.active::before {
  width: 100%;
  transition-delay: 0.3s;
}
.tp-header-search-input.active input {
  width: 230px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-search-input.active input {
    width: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header-search-input.active input {
    width: 160px;
  }
}
.tp-header-search-input input {
  font-weight: 400;
  font-size: 14px;
  padding: 0px 28px;
  padding-right: 0;
  height: 44px;
  width: 80px;
  border: 0;
  letter-spacing: -0.02em;
  background-color: transparent;
  color: var(--tp-common-white);
}
.tp-header-search-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.6);
}
.tp-header-search-input input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.6);
}
.tp-header-search-input input:-moz-placeholder { /* Firefox 4-18 */
  color: rgba(255, 255, 255, 0.6);
}
.tp-header-search-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.6);
}
.tp-header-search-input input::placeholder { /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.6);
}
.tp-header-search-icon {
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
}
.tp-header-search-icon span {
  color: var(--tp-common-white);
}
.tp-header-bar {
  margin-left: 10px;
}
.tp-header-bar button {
  height: 44px;
  width: 44px;
  transition: 0.3s;
  line-height: 44px;
  text-align: center;
  color: #fff;
  background-color: #dd0404;
}
.tp-header-bar button:hover {
  color: var(--tp-common-black);
  background-color: #dd0404;
}
.tp-header-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tp-header-inner-style .tp-btn {
  border-radius: 6px;
}
.tp-header-inner-style .tp-header-bar button {
  border-radius: 5px;
  color: var(--tp-common-black);
  background-color: var(--tp-theme-1);
}
.tp-header-inner-style .tp-header-bar button:hover {
  color: var(--tp-common-black);
  background-color: #dd0404;
}
.tp-header-inner-style-2 .tp-btn {
  border-radius: 6px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}
.tp-header-inner-style-2 .tp-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
}
.tp-header-inner-style-2 .tp-header-menu > nav > ul > li > a {
  color: var(--tp-common-black);
}
.tp-header-inner-style-2 .tp-header-menu > nav > ul > li:hover > a {
  color: var(--tp-common-blue);
}
.tp-header-inner-style-2 .tp-header-menu-style-2 nav ul li a::after {
  background-color: var(--tp-common-blue);
}
.tp-header-inner-style-2 .tp-header-search-input input {
  color: var(--tp-common-black);
}
.tp-header-inner-style-2 .tp-header-search-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #525356;
}
.tp-header-inner-style-2 .tp-header-search-input input::-moz-placeholder { /* Firefox 19+ */
  color: #525356;
}
.tp-header-inner-style-2 .tp-header-search-input input:-moz-placeholder { /* Firefox 4-18 */
  color: #525356;
}
.tp-header-inner-style-2 .tp-header-search-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #525356;
}
.tp-header-inner-style-2 .tp-header-search-input input::placeholder { /* MODERN BROWSER */
  color: #525356;
}
.tp-header-inner-style-2 .tp-header-search-icon span {
  color: var(--tp-common-black);
}
.tp-header-inner-style-2 .tp-header-search-input::before {
  background-color: var(--tp-common-black);
}
.tp-header-inner-style-2 .tp-header-bar button {
  border-radius: 5px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}
.tp-header-inner-style-2 .tp-header-bar button:hover {
  color: var(--tp-common-white);
  background-color: #dd0404;
}

.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background: rgba(20, 24, 32, 0.9);
  box-shadow: 0px 1px 3px 0px rgba(18, 20, 32, 0.14);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.header-sticky::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.header-sticky .tp-header-menu > nav > ul > li > a {
  padding: 22px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .header-sticky.tp-header-mob-space {
    padding: 15px 0;
  }
}
.header-sticky.tp-header-border {
  border-bottom: 0;
}
.header-sticky.sticky-white-bg {
  background-color: rgba(255, 255, 255, 0.9);
}
.header-sticky .tp-header-menu-style-4 > nav > ul > li > a {
  padding: 6px 21px;
}
.header-sticky.sticky-bg-none {
  background: none;
  box-shadow: none;
}
.header-sticky.sticky-bg-none::after {
  display: none;
}

/*----------------------------------------*/
/*  3.3 Header Style 3
/*----------------------------------------*/
.tp-header-style-3 .tp-header-bar button {
  height: 40px;
  width: 40px;
  transition: 0.3s;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black-3);
}
.tp-header-style-3 .tp-header-bar button:hover {
  color: var(--tp-common-white);
  background-color: #dd0404;
}

/*----------------------------------------*/
/*  3.4 Header Style 4
/*----------------------------------------*/
.tp-header-4-box {
  width: 100%;
  border-radius: 8px;
  padding: 0px 6px 0px 20px;
  background-color: var(--tp-common-white);
  box-shadow: 0 20px 34px 0 rgba(20, 24, 32, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header-4-box {
    padding: 6px 6px 6px 20px;
  }
}
@media (max-width: 767px) {
  .tp-header-4-box {
    padding: 6px;
  }
}
.tp-header-4-bar {
  height: 50px;
  width: 50px;
  flex: 0 0 auto;
  margin-left: 10px;
  border-radius: 8px;
  transition: all 0.3s;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  box-shadow: 0 20px 34px 0 rgba(20, 24, 32, 0.1);
}
.tp-header-4-bar:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-purple);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.header-main-menu > nav > ul li .submenu {
  position: absolute;
  width: 240px;
  z-index: 999;
  padding: 25px 0px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  text-align: left;
  margin-left: 0;
  transform-origin: top;
  transition-duration: 0.1s;
  backdrop-filter: blur(8px);
  background: var(--tp-common-white);
  box-shadow: 0px 10px 30px 0px rgba(25, 25, 26, 0.1);
  -webkit-transform: perspective(300px) rotateX(-18deg);
  -moz-transform: perspective(300px) rotateX(-18deg);
  -ms-transform: perspective(300px) rotateX(-18deg);
  -o-transform: perspective(300px) rotateX(-18deg);
  transform: perspective(300px) rotateX(-18deg);
}
.header-main-menu > nav > ul li .submenu li {
  list-style: none;
  display: block;
  padding: 0 30px;
  position: relative;
}
.header-main-menu > nav > ul li .submenu li:not(:last-child) {
  margin-bottom: 10px;
}
.header-main-menu > nav > ul li .submenu li .submenu {
  left: 100%;
  top: 0;
}
.header-main-menu > nav > ul li .submenu li a {
  color: #575758;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.3px;
  text-transform: capitalize;
  position: relative;
}
.header-main-menu > nav > ul li .submenu li a::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  height: 2px;
  width: 0px;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
  background-color: var(--tp-common-black);
}
.header-main-menu > nav > ul li .submenu li:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.header-main-menu > nav > ul li .submenu li:hover > a {
  padding-left: 25px;
  color: var(--tp-common-black);
}
.header-main-menu > nav > ul li .submenu li:hover > a::before {
  width: 20px;
  visibility: visible;
  opacity: 1;
}
.header-main-menu > nav > ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.2s;
  -webkit-transform: perspective(300px) rotateX(0deg);
  -moz-transform: perspective(300px) rotateX(0deg);
  -ms-transform: perspective(300px) rotateX(0deg);
  -o-transform: perspective(300px) rotateX(0deg);
  transform: perspective(300px) rotateX(0deg);
}

/*----------------------------------------*/
/*  4.2 Mobilemenu css
/*----------------------------------------*/
.tp-offcanvas-menu {
  margin-bottom: 40px;
}
.tp-offcanvas-menu ul {
  list-style: none;
}
.tp-offcanvas-menu ul li {
  position: relative;
}
.tp-offcanvas-menu ul li > a {
  padding: 8px 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.tp-offcanvas-menu ul li:not(:last-child) > a {
  border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}
.tp-offcanvas-menu ul li.active > a {
  color: var(--tp-common-black-light);
}
.tp-offcanvas-menu ul li.active > .tp-menu-close {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-offcanvas-menu ul li.active > .tp-menu-close i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-offcanvas-menu ul li .tp-submenu {
  display: none;
  padding-left: 20px;
}

.tp-menu-close {
  position: absolute;
  right: 0;
  top: 6px;
  height: 30px;
  width: 30px;
  font-size: 12px;
  line-height: 29px;
  text-align: center;
  border: 1px solid rgba(1, 15, 28, 0.12);
}
.tp-menu-close i {
  transition: all 0.3s;
}

/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/
.postbox-item {
  padding: 20px;
  border-radius: 14px;
  padding-bottom: 34px;
  border: 1px solid rgba(10, 11, 15, 0.1);
}
.postbox-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.18;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox-title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .postbox-title {
    font-size: 30px;
  }
}
.postbox-title a:hover {
  color: var(--tp-common-blue);
}
.postbox-author-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--tp-common-black);
}
.postbox-author-info {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
.postbox-author-info::after {
  position: absolute;
  top: 12px;
  right: -2px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  display: inline-block;
  background-color: #4d5051;
}
.postbox-author-info img {
  margin-right: 10px;
}
.postbox-meta {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #4d5051;
  text-transform: uppercase;
}
.postbox-meta span {
  margin-right: 5px;
  display: inline-block;
}
.postbox-meta span svg {
  transform: translateY(-1px);
}
.postbox-content {
  padding: 12px 38px 45px 38px;
}
@media (max-width: 767px) {
  .postbox-content {
    padding: 12px 0px 45px 0px;
  }
}
.postbox-text {
  padding: 0px 40px;
}
@media (max-width: 767px) {
  .postbox-text {
    padding: 0;
  }
}
.postbox-text p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.57;
  color: #525356;
}
.postbox-thumb {
  margin-bottom: 25px;
}
.postbox-thumb-gradient {
  position: relative;
}
@media (max-width: 767px) {
  .postbox-thumb-gradient {
    margin-bottom: 0;
  }
}
.postbox-thumb-gradient::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(12, 14, 19, 0) 0%, rgba(12, 14, 19, 0.8) 100%);
}
.postbox-thumb-wrap .postbox-category {
  padding-bottom: 20px;
}
.postbox-category {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
}
@media (max-width: 767px) {
  .postbox-category {
    position: static;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.postbox-category a {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #2f3233;
  border-radius: 4px;
  padding: 8px 14px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #fbd2eb;
}
.postbox-category a:not(:last-child) {
  margin-right: 4px;
}
.postbox-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.postbox-play-btn a {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--tp-common-white);
  animation: animate-pulse 3s linear infinite;
}
.postbox-slider-item {
  position: relative;
}
.postbox-slider-item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(12, 14, 19, 0.2);
}
.postbox-slider-arrow button {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 40px;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--tp-common-white);
}
.postbox-slider-arrow button.postbox-arrow-next {
  left: auto;
  right: 40px;
}
@media (max-width: 767px) {
  .postbox-link-post {
    flex-wrap: wrap;
  }
}
.postbox-link-bg {
  border: none;
  padding: 0;
  padding: 35px 55px;
  background-color: #eceff5;
}
@media (max-width: 767px) {
  .postbox-link-bg {
    padding: 35px 35px;
  }
}
.postbox-link-bg.space-bottom {
  padding-bottom: 25px;
}
.postbox-link-icon {
  margin-right: 28px;
  transform: translateY(10px);
}
@media (max-width: 767px) {
  .postbox-link-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.postbox-link-paragraph p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.47;
  padding-bottom: 20px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .postbox-link-paragraph p {
    font-size: 25px;
  }
}
.postbox-link-author span {
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
  margin-right: 10px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  position: relative;
}
.postbox-link-author span::after {
  position: absolute;
  top: 12px;
  right: -3px;
  height: 4px;
  width: 4px;
  content: "";
  border-radius: 50%;
  background-color: rgba(20, 24, 32, 0.5);
}
.postbox-link-author i {
  font-weight: 400;
  font-size: 14px;
  color: #525356;
  font-style: normal;
}
.postbox-blockquote .postbox-link-paragraph p {
  padding-right: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .postbox-blockquote .postbox-link-paragraph p {
    padding-right: 0;
  }
}
.postbox-comment-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.postbox-comment ul li {
  list-style-type: none;
}
.postbox-comment ul li:nth-child(2n) {
  margin-left: 70px;
}
@media (max-width: 767px) {
  .postbox-comment ul li:nth-child(2n) {
    margin-left: 0;
  }
}
.postbox-comment-avater {
  flex: 0 0 auto;
}
.postbox-comment-name {
  margin-bottom: 10px;
}
.postbox-comment-name h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.postbox-comment-name .post-meta {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #919396;
}
.postbox-comment-text {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(20, 24, 32, 0.14);
}
.postbox-comment-text p {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.73;
  color: #525356;
}
.postbox-comment-reply a {
  border-radius: 26px;
  padding: 4px 13px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s;
  border: 1px solid #e4e4e5;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
}
.postbox-comment-reply a span {
  margin-right: 5px;
  display: inline-block;
}
.postbox-comment-reply a:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-blue);
  background-color: var(--tp-common-blue);
}
.postbox-details-item .postbox-category {
  position: static;
  padding: 0;
}
.postbox-details-item .postbox-title {
  font-weight: 800;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox-details-item .postbox-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox-details-item .postbox-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .postbox-details-item .postbox-title {
    font-size: 40px;
  }
}
.postbox-details-thumb img {
  border-radius: 14px;
}
.postbox-details-text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.62;
  color: #1d2026;
}
.postbox-details-text-list {
  margin-bottom: 70px;
}
.postbox-details-text-list span {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
  display: inline-block;
  margin-bottom: 25px;
}
.postbox-details-text-list ul li {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  padding-left: 15px;
  list-style-type: none;
  color: var(--tp-common-black);
}
.postbox-details-text-list ul li:not(:last-child) {
  margin-bottom: 16px;
}
.postbox-details-text-list ul li::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background-color: var(--tp-common-black);
}
.postbox-details-share a {
  height: 34px;
  width: 34px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-white);
  background-color: #1877f2;
  margin-left: 5px;
}
.postbox-details-share a.instagram {
  background: radial-gradient(109.62% 117.86% at 0% 108.33%, rgb(255, 221, 85) 0%, rgb(255, 84, 62) 46.3858932257%, rgb(200, 55, 171) 100%);
}
.postbox-details-share a.twitter {
  background-color: #1da1f2;
}
.postbox-details-share a.link {
  background-color: #eef0f5;
  color: var(--tp-common-black);
}
.postbox-details-share-wrapper {
  padding: 25px 0;
  padding-bottom: 20px;
  border-top: 1px solid rgba(10, 11, 15, 0.1);
  border-bottom: 1px solid rgba(10, 11, 15, 0.1);
}
.postbox-details-navigation-icon {
  color: var(--tp-common-black);
  transition: all 0.3s;
}
.postbox-details-navigation-icon svg {
  transform: translateY(1px);
}
.postbox-details-navigation-text {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.53;
  letter-spacing: -0.01em;
  color: var(--tp-common-black);
  transition: all 0.3s;
}
.postbox-details-navigation-item a:hover .postbox-details-navigation-icon {
  color: var(--tp-common-blue);
}
.postbox-details-navigation-item a:hover .postbox-details-navigation-text {
  color: var(--tp-common-blue);
}
.postbox-details-author-wrap {
  border-radius: 14px;
  padding: 50px;
  background-color: #eceff5;
}
@media (max-width: 767px) {
  .postbox-details-author-wrap {
    padding: 35px;
    flex-wrap: wrap;
  }
}
.postbox-details-author-info p {
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--tp-common-black);
}
@media (max-width: 767px) {
  .postbox-details-author-info p {
    font-size: 20px;
  }
}
.postbox-details-author-info span {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.postbox-details-author-info span::before {
  content: "";
  height: 2px;
  width: 30px;
  margin-right: 11px;
  display: inline-block;
  transform: translateY(-4px);
  background-color: var(--tp-common-black);
}
.postbox-details-author-thumb {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .postbox-details-author-thumb {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.postbox-details-author-thumb img {
  border-radius: 100px;
}
.postbox-details-form-bg {
  background: linear-gradient(180deg, #eef0f5 0%, rgba(238, 240, 245, 0) 100%);
}
.postbox-details-form-title {
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.postbox-details-form p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.86;
  color: #525356;
  margin-bottom: 30px;
}
.postbox-details-input-box {
  line-height: 1;
}
.postbox-details-input input, .postbox-details-input textarea {
  border-radius: 6px;
  border: 1px solid rgba(1, 17, 22, 0.16);
}
.postbox-details-input input::-webkit-input-placeholder, .postbox-details-input textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #848788;
  letter-spacing: -0.02em;
}
.postbox-details-input input::-moz-placeholder, .postbox-details-input textarea::-moz-placeholder { /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #848788;
  letter-spacing: -0.02em;
}
.postbox-details-input input:-moz-placeholder, .postbox-details-input textarea:-moz-placeholder { /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #848788;
  letter-spacing: -0.02em;
}
.postbox-details-input input:-ms-input-placeholder, .postbox-details-input textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #848788;
  letter-spacing: -0.02em;
}
.postbox-details-input input::placeholder, .postbox-details-input textarea::placeholder { /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #848788;
  letter-spacing: -0.02em;
}
.postbox-details-input input:focus, .postbox-details-input textarea:focus {
  border-color: var(--tp-common-blue);
  box-shadow: 0 0 0 3px rgba(39, 125, 255, 0.1);
}
.postbox-details-input textarea {
  height: 160px;
  resize: none;
}
.postbox-details-remeber input {
  display: none;
}
.postbox-details-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.postbox-details-remeber label {
  position: relative;
  padding-left: 26px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  z-index: 1;
  color: #4d5051;
  letter-spacing: -0.02em;
}
.postbox-details-remeber label::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  z-index: -1;
  transition: 0.3s;
  line-height: 16px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #a1a5a7;
}
.postbox-details-remeber label::before {
  position: absolute;
  content: url("../img/home-03/faq/check.svg");
  top: -1px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-black);
  transition: 0.3s;
}
.postbox-details-remeber label:hover {
  cursor: pointer;
}

.related-post-title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.53;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}

.basic-pagination {
  margin-bottom: 40px;
}
.basic-pagination ul li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .basic-pagination ul li {
    margin-right: 5px;
  }
}
.basic-pagination ul li:hover a {
  color: var(--tp-common-white);
  border-color: var(--tp-common-black);
  background-color: var(--tp-common-black);
}
.basic-pagination ul li > a {
  height: 40px;
  width: 40px;
  line-height: 39px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  display: inline-block;
  color: var(--tp-common-black);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(10, 11, 15, 0.1);
}
.basic-pagination ul li .current {
  height: 40px;
  width: 40px;
  line-height: 39px;
  text-align: center;
  font-size: 15px;
  border-radius: 50%;
  display: inline-block;
  color: var(--tp-common-white);
  transition: all 0.3s ease-in-out;
  border-color: var(--tp-common-black);
  background-color: var(--tp-common-black);
}
.basic-pagination-label span {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33;
  color: #525356;
  display: inline-block;
}
@media (max-width: 767px) {
  .basic-pagination-label span {
    margin-bottom: 15px;
  }
}

/*----------------------------------------*/
/*  5.2 Recent Post css
/*----------------------------------------*/
.rc-post:not(:last-child) {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e8e8e9;
}
.rc-post-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44;
  color: var(--tp-common-black);
}
@media (max-width: 767px) {
  .rc-post-title br {
    display: none;
  }
}
.rc-post-title a:hover {
  color: var(--tp-common-blue);
}
.rc-meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #8e8f92;
  position: relative;
  display: inline-block;
}
.rc-meta span:first-child {
  padding-right: 8px;
  margin-right: 8px;
}
.rc-meta span:first-child::after {
  position: absolute;
  content: "";
  top: 5px;
  right: -2px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  display: inline-block;
  background-color: #8e8f92;
}
.rc-category a {
  font-weight: 800;
  font-size: 11px;
  border-radius: 4px;
  padding: 9px 10px;
  color: #525356;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #e6eed9;
}

/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
.sidebar-wrapper {
  padding-left: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-wrapper {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sidebar-wrapper {
    margin-top: 40px;
    padding-left: 0;
  }
}
.sidebar-widget-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 25px;
  color: var(--tp-common-black);
}
.sidebar-widget ul li {
  list-style: none;
  margin-bottom: 18px;
}
.sidebar-widget ul li:last-child {
  margin-bottom: 0;
}
.sidebar-widget ul li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #4d5051;
}
.sidebar-widget ul li a:hover {
  color: var(--tp-common-blue);
}
.sidebar-border-bottom {
  border-bottom: 1px solid #e8e8e9;
}
.sidebar-content-title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-bottom: 6px;
}
.sidebar-content-designation {
  font-weight: 400;
  font-size: 14px;
  color: #727A7D;
  display: block;
  margin-bottom: 13px;
}
.sidebar-content p {
  font-size: 16px;
  color: #838383;
  margin-bottom: 27px;
}
.sidebar-content-social a {
  height: 37px;
  width: 42px;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  border: 1px solid #E8E8E8;
  margin-right: 12px;
}
.sidebar-content-social a i {
  transition: 0.3s;
}
.sidebar-content-social a:hover {
  border: 1px solid var(--tp-theme-1);
  background-color: var(--tp-theme-1);
}
.sidebar-content-social a:hover i {
  color: var(--tp-common-white);
}
.sidebar-search {
  position: relative;
}
.sidebar-search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 25px;
  border-radius: 6px;
  padding-right: 50px;
  background: #eef0f5;
  border: 1px solid transparent;
}
.sidebar-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 400;
  font-size: 15px;
  color: #8e8f92;
}
.sidebar-search input::-moz-placeholder { /* Firefox 19+ */
  font-weight: 400;
  font-size: 15px;
  color: #8e8f92;
}
.sidebar-search input:-moz-placeholder { /* Firefox 4-18 */
  font-weight: 400;
  font-size: 15px;
  color: #8e8f92;
}
.sidebar-search input:-ms-input-placeholder { /* IE 10+  Edge*/
  font-weight: 400;
  font-size: 15px;
  color: #8e8f92;
}
.sidebar-search input::placeholder { /* MODERN BROWSER */
  font-weight: 400;
  font-size: 15px;
  color: #8e8f92;
}
.sidebar-search input:focus {
  border: 1px solid #277dff;
  box-shadow: 0 0 0 3px rgba(39, 125, 255, 0.1);
}
.sidebar-search button {
  position: absolute;
  top: 0;
  right: 25px;
  height: 100%;
  line-height: 60px;
  color: var(--tp-common-black);
}

.tagcloud a {
  border-radius: 4px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #525356;
  margin-bottom: 10px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #eef0f5;
}
@media (max-width: 767px) {
  .tagcloud a {
    padding: 10px 14px;
  }
}
.tagcloud a:not(:last-child) {
  margin-right: 5px;
}
.tagcloud a:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-common-blue);
}

/*----------------------------------------*/
/*  5.4 Blog css
/*----------------------------------------*/
.tp-blog-meta {
  margin-bottom: 5px;
}
.tp-blog-meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
}
.tp-blog-meta span:not(:last-child) {
  padding-right: 11px;
  margin-right: 11px;
}
.tp-blog-meta span:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 8px;
  right: -4px;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: #bf0606;
}
.tp-blog-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 15px;
  display: inline-block;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-title {
    font-size: 20px;
  }
}
.tp-blog-title a:hover {
  color: var(--tp-theme-1);
}
.tp-blog-author-img {
  margin-right: 10px;
  border-radius: 50%;
}
.tp-blog-author-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transform: translateY(1px);
  color: var(--tp-common-white);
}
.tp-blog-content {
  padding: 30px 0;
  padding-top: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tp-blog-content::after {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
  content: "";
  transition: 0.4s;
  background-color: #bf0606;
}
.tp-blog-thumb img {
  transition: 0.9s;
  width: 100%;
}
.tp-blog-item:hover .tp-blog-thumb img {
  transform: scale(1.1) rotate(-2deg);
}
.tp-blog-item:hover .tp-blog-content::after {
  right: auto;
  left: 0;
  width: 100%;
}
.tp-blog-style-2 .tp-blog-meta span {
  color: #525356;
}
.tp-blog-style-2 .tp-blog-meta span:not(:last-child)::after {
  background-color: var(--tp-common-black);
}
.tp-blog-style-2 .tp-blog-title {
  color: var(--tp-common-black);
}
.tp-blog-style-2 .tp-blog-title a:hover {
  color: var(--tp-common-blue);
}
.tp-blog-style-2 .tp-blog-content {
  border-bottom: 1px solid rgba(20, 24, 32, 0.1);
}
.tp-blog-style-2 .tp-blog-content::after {
  background-color: var(--tp-common-blue);
}
.tp-blog-style-2 .tp-blog-author-name {
  color: var(--tp-common-black);
}

.tp-blog-3-item {
  padding: 40px 10px;
  padding-bottom: 45px;
  border-radius: 10px;
  transition: all 0.3s;
  background-color: var(--tp-common-white);
}
.tp-blog-3-item:hover {
  box-shadow: 0 20px 16px 0 rgba(1, 17, 22, 0.06);
}
.tp-blog-3-item:hover .tp-blog-3-thumb img {
  transform: scale(1.1) rotate(-2deg);
}
.tp-blog-3-content {
  padding: 0px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-blog-3-content {
    padding: 0px 20px;
  }
}
.tp-blog-3-category {
  margin-bottom: 10px;
}
.tp-blog-3-category a {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.67;
  border-radius: 4px;
  padding: 4px 10px;
  color: #4d5051;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid rgba(0, 43, 59, 0.1);
}
.tp-blog-3-category a:not(:last-child) {
  margin-right: 4px;
}
.tp-blog-3-category a:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-black-3);
  background-color: var(--tp-common-black-3);
}
.tp-blog-3-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.27;
  color: var(--tp-common-black-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-3-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-3-title {
    font-size: 20px;
  }
}
.tp-blog-3-title a:hover {
  color: var(--tp-common-blue);
}
.tp-blog-3-meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-black-3);
}
.tp-blog-3-meta span svg {
  color: #4d5051;
  margin-right: 4px;
  transform: translateY(-2px);
}
.tp-blog-3-thumb {
  margin-bottom: 20px;
}
.tp-blog-3-thumb img {
  transition: all 0.9s;
}
.tp-blog-3-avater-info img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 10px;
}
.tp-blog-3-avater-info span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--tp-common-black-3);
}
.tp-blog-style-4 .row [class*=col-]:not(:last-child) .tp-blog-3-item {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e8e8e9;
}
.tp-blog-style-4 .tp-blog-3-item {
  padding: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.tp-blog-style-4 .tp-blog-3-content {
  padding: 0;
}
@media (max-width: 767px) {
  .tp-blog-style-4 .tp-blog-3-content {
    margin-bottom: 30px;
  }
}
.tp-blog-style-4 .tp-blog-3-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--tp-common-black);
}
.tp-blog-style-4 .tp-blog-3-title a:hover {
  color: var(--tp-common-purple);
}
.tp-blog-style-4 .tp-blog-3-item:hover {
  box-shadow: none;
}
.tp-blog-style-4 .tp-blog-3-thumb {
  margin-bottom: 0;
  border-radius: 6px;
}
.tp-blog-style-4 .tp-blog-3-thumb img {
  width: 100%;
  border-radius: 6px;
}
.tp-blog-style-4 .tp-blog-3-category a:hover {
  border-color: #eaecf1;
  background-color: #eaecf1;
  color: var(--tp-common-black);
}

@media (max-width: 767px) {
  .tp-blog-4-area {
    padding-top: 0px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-blog-4-btn {
    margin-bottom: 60px;
  }
}

.blog-hero-shape {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.blog-hero-left {
  border-radius: 14px;
  padding: 70px 70px 60px 60px;
  background-color: var(--tp-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-hero-left {
    padding: 70px 40px 60px 40px;
  }
}
@media (max-width: 767px) {
  .blog-hero-left {
    padding: 50px 40px 50px 40px;
  }
}
.blog-hero-left-circle {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 500px;
  width: 500px;
  z-index: -1;
  border-radius: 50%;
  border-radius: 100%;
  display: inline-block;
  background: linear-gradient(212deg, #fff 0%, rgba(255, 255, 255, 0) 70.66%);
}
.blog-hero-title {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-hero-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-hero-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .blog-hero-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
.blog-hero-author {
  margin-bottom: 47px;
}
.blog-hero-author-img {
  margin-right: 15px;
  flex: 0 0 auto;
}
.blog-hero-author-text p {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-hero-author-text p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .blog-hero-subscribe {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-hero-subscribe {
    flex-wrap: inherit;
  }
}
.blog-hero-subscribe-btn {
  flex: 0 0 auto;
  margin-left: 5px;
}
.blog-hero-subscribe-input {
  width: 100%;
}
.blog-hero-subscribe-input input {
  border: 0;
  height: 70px;
  font-weight: 400;
  font-size: 14px;
  line-height: 70px;
  border-radius: 6px;
  padding-left: 50px;
  background-color: #f0f2f5;
  color: var(--tp-common-black);
}
.blog-hero-subscribe-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 400;
  font-size: 14px;
  color: #919396;
}
.blog-hero-subscribe-input input::-moz-placeholder { /* Firefox 19+ */
  font-weight: 400;
  font-size: 14px;
  color: #919396;
}
.blog-hero-subscribe-input input:-moz-placeholder { /* Firefox 4-18 */
  font-weight: 400;
  font-size: 14px;
  color: #919396;
}
.blog-hero-subscribe-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  font-weight: 400;
  font-size: 14px;
  color: #919396;
}
.blog-hero-subscribe-input input::placeholder { /* MODERN BROWSER */
  font-weight: 400;
  font-size: 14px;
  color: #919396;
}
.blog-hero-subscribe-input span {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.blog-hero-right-style .tp-project-4-thumb {
  height: 100%;
}
.blog-hero-right-style .tp-project-4-thumb img {
  height: 100%;
  object-fit: cover;
}
.blog-grid-style .tp-blog-3-category a {
  border: none;
}
.blog-grid-style .tp-blog-3-category a:hover {
  color: var(--tp-common-black);
}
.blog-grid-style .tp-blog-3-item {
  padding: 40px 10px;
  padding-bottom: 40px;
}
.blog-grid-top-wrap {
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 60px;
  background-color: var(--tp-common-white);
}
.blog-grid-top-wrap .tp-service-4-tab ul {
  padding: 0px;
  background-color: transparent;
}
.blog-grid-top-wrap .tp-service-4-tab ul li button {
  font-size: 15px;
  padding: 9px 45px;
}
@media (max-width: 767px) {
  .blog-grid-top-wrap .tp-service-4-tab ul li button {
    font-size: 13px;
    padding: 9px 12px;
  }
}
.blog-grid-top-wrap #lineMarker {
  top: 50%;
  height: 44px;
  background: #f0f2f5;
  transform: translateY(-50%);
}
.blog-grid-search-input input {
  height: 44px;
  border-radius: 6px;
  padding: 13px 15px 13px 17px;
  padding-right: 40px;
  border: 1px solid rgba(1, 17, 22, 0.16);
}
.blog-grid-search-input input:focus {
  border: 1px solid #277dff;
  box-shadow: 0 0 0 3px rgba(39, 125, 255, 0.1);
}
.blog-grid-search-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 400;
  font-size: 14px;
  color: #525356;
  letter-spacing: -0.02em;
}
.blog-grid-search-input input::-moz-placeholder { /* Firefox 19+ */
  font-weight: 400;
  font-size: 14px;
  color: #525356;
  letter-spacing: -0.02em;
}
.blog-grid-search-input input:-moz-placeholder { /* Firefox 4-18 */
  font-weight: 400;
  font-size: 14px;
  color: #525356;
  letter-spacing: -0.02em;
}
.blog-grid-search-input input:-ms-input-placeholder { /* IE 10+  Edge*/
  font-weight: 400;
  font-size: 14px;
  color: #525356;
  letter-spacing: -0.02em;
}
.blog-grid-search-input input::placeholder { /* MODERN BROWSER */
  font-weight: 400;
  font-size: 14px;
  color: #525356;
  letter-spacing: -0.02em;
}
.blog-grid-search-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  line-height: 0;
  transform: translateY(-50%);
  color: var(--tp-common-black);
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-footer-logo {
  margin-bottom: 30px;
}
.tp-footer-logo img {
  width: 135px;
  height: auto;
}
.tp-footer-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #afb2b8;
  margin-bottom: 40px;
}
.tp-footer-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  transition: 0.3s;
  color: var(--tp-common-white);
}
.tp-footer-link span {
  margin-left: 10px;
}
.tp-footer-link:hover {
  color: var(--tp-theme-1);
}
.tp-footer-col-1 {
  padding-right: 50px;
}
.tp-footer-col-3 {
  padding-left: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-col-3 {
    padding-left: 0;
  }
}
.tp-footer-widget-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
.tp-footer-widget-content ul li {
  list-style-type: none;
}
.tp-footer-widget-content ul li:not(:last-child) {
  margin-bottom: 7px;
}
.tp-footer-widget-content ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #afb2b8;
  transition: 0.3s;
}
.tp-footer-widget-content ul li a span {
  display: inline-block;
  margin-right: 10px;
}
.tp-footer-widget-content ul li a:hover {
  color: var(--tp-theme-1);
}
.tp-footer-style-2 .tp-footer-text {
  color: var(--tp-common-black);
}
.tp-footer-style-2 .tp-footer-link {
  color: var(--tp-common-black);
}
.tp-footer-style-2 .tp-footer-link:hover {
  color: var(--tp-common-blue);
}
.tp-footer-style-2 .tp-footer-widget-title {
  color: var(--tp-common-black);
}
.tp-footer-style-2 .tp-footer-widget-content ul li a {
  color: #525356;
}
.tp-footer-style-2 .tp-footer-widget-content ul li a:hover {
  color: var(--tp-common-blue);
}

.tp-copyright-bg {
  padding: 30px 30px;
  background: rgba(255, 255, 255, 0.04);
}
.tp-copyright-social > span {
  font-weight: 700;
  font-size: 14px;
  color: #828386;
  margin-right: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tp-copyright-social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.06);
}
.tp-copyright-social a:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-theme-1);
}
.tp-copyright-text span {
  font-weight: 500;
  font-size: 14px;
  color: #828386;
}
.tp-copyright-text span a {
  color: var(--tp-common-white);
}
.tp-copyright-style-2 .tp-copyright-bg {
  background: #eef0f5;
}
.tp-copyright-style-2 .tp-copyright-text span {
  color: #525356;
}
.tp-copyright-style-2 .tp-copyright-text span a {
  color: #ec0404;
}
.tp-copyright-style-2 .tp-copyright-social > span {
  color: #525356;
}
.tp-copyright-style-2 .tp-copyright-social a {
  color: #525356;
  background-color: var(--tp-common-white);
}
.tp-copyright-style-2 .tp-copyright-social a:hover {
  color: var(--tp-common-white);
  background-color: #ec0404;
}

/*----------------------------------------*/
/*  6.2 Footer Style 2
/*----------------------------------------*/
.tp-footer-2-widget-paragraph p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--tp-common-white);
}
.tp-footer-2-widget-social a {
  height: 40px;
  width: 40px;
  line-height: 33px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.tp-footer-2-widget-social a:not(:last-child) {
  margin-right: 6px;
}
.tp-footer-2-widget-social a:hover {
  color: var(--tp-common-white);
  border-color: var(--tp-common-blue);
  background-color: var(--tp-common-blue);
}
.tp-footer-2-widget-title {
  font-weight: 800;
  font-size: 74px;
  line-height: 0.86;
  padding-bottom: 20px;
  background-clip: border-box;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(90deg, #d4fc79 0%, #96e6a1 100%);
  background: -webkit-linear-gradient(90deg, #d4fc79 0%, #96e6a1 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-2-widget-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-2-widget-title {
    font-size: 51px;
  }
}
@media (max-width: 767px) {
  .tp-footer-2-widget-title {
    font-size: 45px;
  }
}
.tp-footer-2-widget .tp-footer-link:hover {
  color: var(--tp-common-blue);
}
.tp-footer-2-col-1 {
  padding-right: 125px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-2-col-1 {
    padding-right: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-2-col-1 {
    padding-right: 0;
  }
}
.tp-footer-2-col-2 {
  padding-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-2-col-2 {
    padding-left: 0;
  }
}
.tp-footer-2-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 38.9%;
  height: 100%;
  content: "";
  background-color: #082e3d;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-footer-2-bg::after {
    width: 35.9%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-2-bg::after {
    width: 34.9%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-2-bg::after {
    display: none;
  }
}

.tp-copyright-2-left p {
  font-weight: 500;
  font-size: 14px;
  color: #72878e;
  margin-bottom: 0;
}
.tp-copyright-2-left p a {
  color: var(--tp-common-white);
}
.tp-copyright-2-middle a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.71;
  color: #afb2b8;
  transition: all 0.3s;
}
.tp-copyright-2-middle a span {
  margin-right: 5px;
  display: inline-block;
  transform: translateY(-1px);
}
.tp-copyright-2-middle a:hover {
  color: var(--tp-common-white);
}
.tp-copyright-2-right ul li {
  display: inline-block;
  list-style-type: none;
}
.tp-copyright-2-right ul li:not(:first-child) {
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-copyright-2-right ul li:not(:first-child) {
    margin-left: 20px;
  }
}
.tp-copyright-2-right ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #afb2b8;
  transition: all 0.3s;
}
.tp-copyright-2-right ul li a:hover {
  color: var(--tp-common-white);
}
.tp-copyright-2-border {
  padding-top: 22px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/*----------------------------------------*/
/*  6.3 Footer Style 3
/*----------------------------------------*/
.tp-footer-3-widget-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-3-widget-title {
    font-size: 19px;
  }
}
.tp-footer-3-widget-title span {
  color: #adff5b;
}
.tp-footer-3-widget-link {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
.tp-footer-3-widget-link span {
  height: 34px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  transition: all 0.3s;
  color: var(--tp-common-white);
  background-color: rgba(255, 255, 255, 0.06);
}
.tp-footer-3-widget-link:hover {
  color: var(--tp-common-purple);
}
.tp-footer-3-widget-link:hover span {
  color: var(--tp-common-white);
  background-color: var(--tp-common-purple);
}
.tp-footer-3-widget-menu ul li {
  list-style-type: none;
}
.tp-footer-3-widget-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}
.tp-footer-3-widget-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #a6a8ab;
  position: relative;
  padding-left: 14px;
}
.tp-footer-3-widget-menu ul li a::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a6a8ab;
}
.tp-footer-3-widget-menu ul li a:hover {
  color: var(--tp-common-white);
}
.tp-footer-3-widget-contact-item {
  margin-bottom: 15px;
}
.tp-footer-3-widget-contact-item span {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #999b9e;
  text-transform: uppercase;
}
.tp-footer-3-widget-contact-item a {
  font-weight: 600;
  font-size: 16px;
  color: var(--tp-common-white);
}
.tp-footer-3-widget-social a {
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.4);
}
.tp-footer-3-widget-social a:hover {
  color: var(--tp-common-white);
}
.tp-footer-3-space-2 {
  padding-left: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-3-space-2 {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-3-space-2 {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .tp-footer-3-space-2 {
    padding-left: 0;
  }
}
.tp-footer-3-space-3 {
  padding-left: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-3-space-3 {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .tp-footer-3-space-3 {
    padding-left: 0;
  }
}

.tp-copyright-3-border {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-copyright-3-left {
    margin-bottom: 30px;
  }
}
.tp-copyright-3-left p {
  font-weight: 500;
  font-size: 14px;
  color: #93959b;
  margin-bottom: 0;
}
.tp-copyright-3-left p a {
  color: var(--tp-common-white);
}
.tp-copyright-3-store {
  border-radius: 6px;
  padding: 1px 18px;
  display: inline-block;
  background-color: #2b313f;
  margin-left: 10px;
  transition: 0.3s;
}
.tp-copyright-3-store:hover {
  background-color: #3a4254;
}
.tp-copyright-3-store > span {
  flex: 0 0 auto;
  margin-right: 10px;
}
.tp-copyright-3-store-info span {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-copyright-3-store-info h5 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-copyright-3-right > span {
  font-weight: 700;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.tp-footer-style-5 .tp-footer-2-widget-paragraph p {
  color: #525356;
}
.tp-footer-style-5 .tp-footer-2-widget-social a {
  color: var(--tp-common-black);
  border: 2px solid rgba(20, 24, 32, 0.1);
}
.tp-footer-style-5 .tp-footer-2-widget-social a:hover {
  color: var(--tp-common-white);
  border-color: #277dff;
  background-color: #277dff;
}
.tp-footer-style-5 .tp-footer-2-widget-title {
  background-image: -webkit-linear-gradient(90deg, #3e86f2 0%, #ad60cb 49.48%, #ff656a 100%);
  background-image: -moz-linear-gradient(90deg, #3e86f2 0%, #ad60cb 49.48%, #ff656a 100%);
  background-image: -ms-linear-gradient(90deg, #3e86f2 0%, #ad60cb 49.48%, #ff656a 100%);
  background-image: -o-linear-gradient(90deg, #3e86f2 0%, #ad60cb 49.48%, #ff656a 100%);
  background-image: linear-gradient(90deg, #3e86f2 0%, #ad60cb 49.48%, #ff656a 100%);
  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.tp-footer-style-5 .tp-footer-link {
  color: var(--tp-common-black);
}

.tp-copyright-style-2.tp-copyright-2-border {
  border-top: 1px solid #e8eaed;
}
.tp-copyright-style-2 .tp-copyright-2-left p {
  color: #525356;
}
.tp-copyright-style-2 .tp-copyright-2-left p a {
  color: var(--tp-common-black);
}
.tp-copyright-style-2 .tp-copyright-2-middle a {
  color: var(--tp-common-black);
}
.tp-copyright-style-2 .tp-copyright-2-middle a:hover {
  color: var(--tp-common-blue);
}
.tp-copyright-style-2 .tp-copyright-2-right ul li a {
  color: var(--tp-common-black);
}
.tp-copyright-style-2 .tp-copyright-2-right ul li a:hover {
  color: var(--tp-common-blue);
}

/*----------------------------------------*/
/*  7.9 Hero css
/*----------------------------------------*/
.tp-hero-pt {
  padding-top: 180px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-pt {
    padding-top: 160px;
  }
}
@media (max-width: 767px) {
  .tp-hero-pt {
    padding-top: 150px;
  }
}
.tp-hero-title {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 27px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .tp-hero-title {
    font-size: 45px;
  }
}
.tp-hero-title-box {
  margin-bottom: 45px;
}
.tp-hero-title-box p {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--tp-grey-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-hero-title-box p {
    font-size: 18px;
  }
}
.tp-hero-tell a {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-hero-tell a span {
  height: 50px;
  width: 50px;
  margin-right: 10px;
  line-height: 49px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: var(--tp-common-black);
  background-color: var(--tp-common-yellow);
}
.tp-hero-btn-box {
  line-height: 1;
}
.tp-hero-banner-shape {
  position: absolute;
  top: -60px;
  right: 11%;
  z-index: 2;
}
.tp-hero-banner-shape img {
  animation: rotate 15s linear infinite;
}
.tp-hero-banner-height {
  height: 800px;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-banner-height {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-banner-height {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .tp-hero-banner-height {
    height: 200px;
  }
}
.tp-hero-banner img {
  margin-top: -140px;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-banner img {
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .tp-hero-banner img {
    margin-top: 0px;
    height: 300px;
  }
}
.tp-hero-gradient-circle {
  position: absolute;
  right: -10%;
  top: 25%;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-gradient-circle {
    right: -20%;
    top: 35%;
  }
}
.tp-hero-gradient-circle span {
  height: 900px;
  width: 900px;
  border-radius: 50%;
  filter: blur(400px);
  display: inline-block;
  background-color: rgba(109, 97, 255, 0.4);
}

.tp-hero-3-bg {
  padding-top: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-3-bg {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-3-bg {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .tp-hero-3-bg {
    padding-top: 130px;
  }
}
.tp-hero-3-title {
  font-weight: 800;
  font-size: 70px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-3-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-3-title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .tp-hero-3-title {
    font-size: 36px;
  }
}
.tp-hero-3-title span {
  color: var(--tp-common-blue);
}
.tp-hero-3-title-line {
  position: absolute;
  bottom: -25px;
  left: 30px;
}
.tp-hero-3-title-box P {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-3);
}
@media (max-width: 767px) {
  .tp-hero-3-title-box P {
    font-size: 16px;
  }
  .tp-hero-3-title-box P br {
    display: none;
  }
}
.tp-hero-3-playbtn span {
  height: 46px;
  width: 46px;
  line-height: 46px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  animation: animate-pulse 3s linear infinite;
}
.tp-hero-3-playbtn span svg {
  margin-left: 2px;
}
.tp-hero-3-playbtn i {
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  display: inline-block;
  transform: translateY(3px);
  color: var(--tp-common-black-3);
  font-family: var(--tp-ff-niconne);
}
.tp-hero-3-dashboard {
  position: relative;
}
.tp-hero-3-dashboard::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 220px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 85.94%);
}
.tp-hero-3-shape-1 {
  position: absolute;
  bottom: 70px;
  left: -90px;
  z-index: 2;
}

.tp-hero-4-bg {
  padding-top: 290px;
  padding-bottom: 210px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-hero-4-bg {
    padding-top: 190px;
    padding-bottom: 190px;
  }
}
.tp-hero-4-scroll-nav {
  position: absolute;
  bottom: -120px;
  right: 0;
}
.tp-hero-4-scroll-nav a {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.tp-hero-4-scroll-nav a span {
  margin-left: 10px;
  display: inline-block;
}
.tp-hero-4-scroll-nav a span svg {
  transform: translateY(-1px);
}
.tp-hero-4-subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.87;
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-common-purple-2);
}
.tp-hero-4-title {
  font-weight: 800;
  font-size: 100px;
  line-height: 0.96;
  padding-bottom: 15px;
  letter-spacing: -0.04em;
  background-image: -webkit-linear-gradient(180deg, #935acd 0%, #444899 100%);
  background-image: -moz-linear-gradient(180deg, #935acd 0%, #444899 100%);
  background-image: -ms-linear-gradient(180deg, #935acd 0%, #444899 100%);
  background-image: -o-linear-gradient(180deg, #935acd 0%, #444899 100%);
  background-image: linear-gradient(180deg, #935acd 0%, #444899 100%);
  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-4-title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-4-title {
    font-size: 63px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-4-title {
    font-size: 72px;
  }
}
@media (max-width: 767px) {
  .tp-hero-4-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-4-title {
    font-size: 65px;
  }
}
.tp-hero-4-title-box {
  padding-right: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-hero-4-title-box {
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.tp-hero-4-thumb img {
  max-width: inherit;
  margin-left: -15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-4-thumb img {
    margin-left: -30px;
  }
}
@media (max-width: 767px) {
  .tp-hero-4-thumb img {
    margin-left: 0px;
    max-width: 100%;
  }
}
.tp-hero-4-sub-img {
  position: absolute;
  top: 10%;
  left: 28%;
  animation: anim-top-bottom 1s linear infinite alternate;
}
.tp-hero-4-circle {
  position: absolute;
  top: 4%;
  right: -16%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-4-circle {
    right: -5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-4-circle {
    right: -2%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-4-circle {
    right: 14%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-4-circle {
    right: 0;
  }
}
.tp-hero-4-circle span {
  height: 500px;
  width: 500px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(212deg, #fff 0%, rgba(255, 255, 255, 0) 70.66%);
}

.tp-hero-5-bg {
  background-color: #CED9FF;
}
.tp-hero-5-subtitle {
  font-weight: 600;
  font-size: 14px;
  padding: 1px 14px;
  margin-bottom: 15px;
  border-radius: 20px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #fbcea0;
  color: var(--tp-common-black);
}
.tp-hero-5-title {
  font-weight: 800;
  font-size: 70px;
  line-height: 109%;
  letter-spacing: -0.02em;
  color: var(--tp-common-black);
}
.tp-hero-5-title i {
  font-style: normal;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-5-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-5-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-5-title {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .tp-hero-5-title {
    font-size: 43px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-5-title {
    font-size: 52px;
  }
}
.tp-hero-5-title span {
  color: var(--tp-common-blue);
}
.tp-hero-5-circle-1 {
  position: absolute;
  top: -75%;
  right: 0;
  z-index: -1;
}
.tp-hero-5-circle-1 span {
  height: 800px;
  width: 800px;
  border-radius: 50%;
  border-radius: 100%;
  filter: blur(300px);
  display: inline-block;
  background-color: rgba(16, 255, 212, 0.14);
}
.tp-hero-5-circle-2 {
  position: absolute;
  top: -50px;
  left: -60px;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-5-circle-2 {
    left: -35px;
  }
}
.tp-hero-5-circle-2 span {
  height: 460px;
  width: 460px;
  border-radius: 100%;
  display: inline-block;
  background: linear-gradient(156deg, #fff 9.72%, rgba(255, 255, 255, 0) 70.66%);
}
.tp-hero-5-inner-shape-1 {
  position: absolute;
  top: 23%;
  left: 9%;
  animation: rotate 5s linear infinite;
}
.tp-hero-5-inner-shape-2 {
  position: absolute;
  top: 12%;
  left: 26%;
  animation: rotate 7s linear infinite;
}
.tp-hero-5-inner-shape-3 {
  position: absolute;
  left: -5%;
  bottom: 29%;
  mix-blend-mode: luminosity;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-5-inner-shape-3 {
    left: -13%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-5-inner-shape-3 {
    left: 3%;
  }
}
@media (max-width: 767px) {
  .tp-hero-5-inner-shape-3 {
    left: 0;
  }
}

.tp-hero-inner-bg {
  padding-top: 215px;
  padding-bottom: 160px;
  background-color: #CEE1FF;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-hero-inner-bg {
    padding-bottom: 100px;
  }
}
