@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap");
:root {
  /**
    @font family declaration
    */
  --tp-ff-body: "Outfit", sans-serif;
  --tp-ff-heading: "Outfit", sans-serif;
  --tp-ff-p: "Outfit", sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
    @color declaration
    */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-heading-primary: #0d1c37;
  --tp-grey-1: #f1f1f1;
  --tp-grey-2: #f5f6f8;
  --tp-grey-3: #f4f6fd;
  --tp-text-body: #6a6d7a;
  --tp-text-1: #5b677d;
  --tp-text-2: #0d1c37;
  --tp-theme-primary: #020f2a;
  --tp-theme-secondary: #ffc700;
  --tp-theme-1: #f4f6fd;
  --tp-border-primary: #000;
  --tp-border-secondary: #000;
  --tp-border-1: #e6ebf0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    --bs-gutter-x: 36px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    --bs-gutter-x: 36px;
  }
}
body {
  font-family: var(--tp-ff-body);
  font-size: 18px;
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-heading-primary);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-text-body);
  margin-bottom: 15px;
  line-height: 26px;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none; color:#000;
}
.tp-features-area{ padding-top:70px;}
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;
  background-color: #eff0f2;
  height: 54px;
  width: 100%;
  line-height: 54px;
  font-size: 16px;
  border: 2px solid #eff0f2;
  color: var(--tp-common-black);
  padding-left: 29px;
  padding-right: 29px;
}
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="number"],
[dir="rtl"] input[type="password"],
[dir="rtl"] input[type="url"],
[dir="rtl"] textarea {
  text-align: right;
}
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: #84848b;
}
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: #84848b;
}
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: #84848b;
}
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: #84848b;
}
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: #84848b;
}

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: var(--tp-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: var(--tp-fz-body);
  opacity: 1;
}

.test-class {
  padding: 5px 20px;
  background-color: green;
  color: #000;
  position: relative;
  overflow: hidden;
}
.test-class::after,
.test-class::before {
  position: absolute;
  content: "";
  left: -23px;
  bottom: -7px;
  width: 79%;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}
.test-class::before {
  left: auto;
  right: -23px;
  top: -7px;
  bottom: auto;
}
.test-class span {
  position: relative;
}
.test-class span::after,
.test-class span::before {
  position: absolute;
  content: "";
  left: -23px;
  bottom: -7px;
  width: 79%;
  height: 10px;
  background-color: red;
  border-radius: 50%;
}
.product__thumb img,
.product__details-thumb-nav .nav-link::after,
.product__details-tab-nav .tp-tab-line,
.tp-main-menu ul li .submenu,
.tp-accordion .accordion-button .tp-accordion-plus,
.tp-accordion .accordion-button .tp-accordion-plus::after,
.tp-accordion .accordion-button .tp-accordion-plus::before,
.back-to-top-wrapper,
a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.back-to-top-btn {
  -webkit-transition: transform 0.3s 0s ease-out;
  -moz-transition: transform 0.3s 0s ease-out;
  -ms-transition: transform 0.3s 0s ease-out;
  -o-transition: transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out;
}
/*----------------------------------------*/
/*  7.1 Slider css
/*----------------------------------------*/
.hero-active {
  transition: 1s;
}
.hero-active .is-visible .tp-hero__title-pre,
.hero-active .is-visible .tp-hero__title,
.hero-active .is-visible .tp-hero-content p,
.hero-active .is-visible .tp-hero-list,
.hero-active .is-visible .tp-hero-btn {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.hero-active .is-visible .tp-hero__title-pre {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.hero-active .is-visible .tp-hero__title {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.hero-active .is-visible .tp-hero-content p {
  animation-delay: 1s;
  animation-duration: 1.2s;
}

.hero-active .is-visible .tp-hero-list {
  animation-delay: 1.4s;
  animation-duration: 1.3s;
}

.hero-active .is-visible .tp-hero-btn {
  animation-delay: 1.4s;
  animation-duration: 1.3s;
}

.hero-2-active {
  transition: 1s;
}
.hero-2-active .is-visible .tp-hero-pre,
.hero-2-active .is-visible .tp-hero-2-title,
.hero-2-active .is-visible .tp-hero-2-content p,
.hero-2-active .is-visible .tp-hero-2-btn,
.hero-2-active .is-visible .tp-hero-2-thumb {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.hero-2-active .is-visible .tp-hero-pre {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.hero-2-active .is-visible .tp-hero-2-title {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.hero-2-active .is-visible .tp-hero-2-content p {
  animation-delay: 1s;
  animation-duration: 1.2s;
}

.hero-2-active .is-visible .tp-hero-2-thumb {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.hero-2-active .is-visible .tp-hero-2-btn {
  animation-delay: 1.4s;
  animation-duration: 1.3s;
}

.hero-3-active {
  transition: 1s;
}
.hero-3-active .is-visible .tp-hero-3-pre,
.hero-3-active .is-visible .tp-hero-3-title,
.hero-3-active .is-visible .tp-hero-3-content p,
.hero-3-active .is-visible .tp-hero-2-btn,
.hero-3-active .is-visible .tp-hero-3-thumb {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.hero-3-active .is-visible .tp-hero-3-pre {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.hero-3-active .is-visible .tp-hero-3-title {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.hero-3-active .is-visible .tp-hero-3-thumb {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.hero-3-active .is-visible .tp-hero-3-content p {
  animation-delay: 1s;
  animation-duration: 1.2s;
}

.hero-3-active .is-visible .tp-hero-2-btn {
  animation-delay: 1.4s;
  animation-duration: 1.3s;
}

@keyframes tpsmthslide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(-1250px);
  }
}
/*----------------------------------------*/
/*  8.0 hero css
/*----------------------------------------*/
.tp-hero-2-area {
  margin-top: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-2-area {
    margin-top: 0;
  }
}
.tp-hero-bg {
  height: 790px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-bg {
    height: 586px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-bg {
    height: 595px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-bg {
    height: 740px;
    background-position: 54% center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-bg {
    background-position: 60% center;
  }
}
@media (max-width: 575px) {
  .tp-hero-bg {
    height: 690px;
  }
}
.tp-hero-overlay {
  position: relative;
}
.tp-hero-overlay::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    90deg,
    #2144d8 18.05%,
    rgba(33, 68, 216, 0) 85.78%
  );
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tp-hero-2-overlay {
  position: relative;
}
.tp-hero-2-overlay::before {
  position: absolute;
  content: "";
  background: #2144d8;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.tp-hero-3-overlay {
  position: relative;
}
.tp-hero-2-thumb {
  position: relative;
  z-index: 1;
  margin-top: 95px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-2-thumb {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .tp-hero-2-thumb {
    margin-top: 30px;
  }
}
.tp-hero-2-thumb img {
  max-width: 100%;
}
.tp-hero-shape .shape-1 {
  position: absolute;
  top: -200px;
  left: 50px;
}
.tp-hero-shape .shape-2 {
  position: absolute;
  bottom: 0;
  left: 200px;
}
.tp-hero-shape .shape-3 {
  position: absolute;
  bottom: 0;
  right: 0px;
}
.tp-hero__title-pre {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-text-2);
  background-color: var(--tp-common-white);
  padding: 9px 22px;
  display: inline-block;
  margin-bottom: 25px;
}
.tp-hero__title-pre::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: var(--tp-theme-secondary);
}
.tp-hero__title {
  font-weight: 800;
  font-size: 40px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--tp-common-white);
  margin-bottom: 12px;
}
@media (max-width: 575px) {
  .tp-hero__title {
    font-size: 35px;
  }
}
.tp-hero-content {
  padding-top: 160px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-content {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-content {
    padding-top: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-content {
    padding-top: 90px;
  }
}
@media (max-width: 575px) {
  .tp-hero-content {
    padding-top: 90px;
  }
}
.tp-hero-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 31px;
  color: var(--tp-common-white);
  opacity: 0.78;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .tp-hero-content p br {
    display: none;
  }
}
.tp-hero-content .tp-hero-list {
  overflow: hidden;
  margin-bottom: 20px;
}
.tp-hero-content .tp-hero-list li {
  margin-bottom: 13px;
  list-style: none;
  font-weight: 700;
  font-size: 17px;
  line-height: 31px;
  color: var(--tp-common-white);
  float: left;
  width: 46%;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-content .tp-hero-list li {
    float: none;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .tp-hero-content .tp-hero-list li {
    float: none;
    width: 110%;
  }
}
.tp-hero-content .tp-hero-list li i {
  font-size: 19px;
  margin-right: 6px;
  color: var(--tp-theme-secondary);
}
.tp-hero-content-btn a {
  display: flex;
}
.tp-hero-wrapper {
  height: 100%;
  position: relative;
  z-index: 99;
}
.tp-hero-pre {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  margin-left: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-common-white);
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .tp-hero-pre {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.tp-hero-pre::before {
  position: absolute;
  bottom: 10px;
  left: -28px;
  content: "";
  width: 15px;
  height: 4px;
  display: inline-block;
  background-color: var(--tp-theme-secondary);
}
.tp-hero-2-bg {
  height: 825px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-2-bg {
    height: 750px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-2-bg {
    height: 595px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-bg {
    height: 1130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-2-bg {
    height: 1050px;
  }
}
@media (max-width: 575px) {
  .tp-hero-2-bg {
    height: 1015px;
  }
}
.tp-hero-2-title {
  font-weight: 800;
  font-size: 69px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--tp-common-white);
  margin-bottom: 17px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-2-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-2-title {
    font-size: 53px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-2-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .tp-hero-2-title {
    font-size: 37px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-2-title br {
    display: none;
  }
}
.tp-hero-2-title span {
  position: relative;
  color: var(--tp-text-2);
}
.tp-hero-2-title span::before {
  content: "";
  position: absolute;
  height: 83%;
  width: 105%;
  background: #ffc700;
  display: block;
  top: 50%;
  left: -5px;
  z-index: -1;
  transform: translateY(-50%);
}
.tp-hero-2-content {
  padding-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-2-content {
    padding-top: 80px;
  }
}
@media (max-width: 575px) {
  .tp-hero-2-content {
    padding-top: 80px;
  }
}
.tp-hero-2-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.78;
  color: var(--tp-common-white);
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-2-content p br {
    display: none;
  }
}
.tp-hero-2-btn .tp-btn {
  padding: 18px 37px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-2-btn .tp-btn {
    padding: 16px 24px;
  }
}
.tp-hero-2-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}
.tp-hero-2-btn span {
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: var(--tp-common-white);
  opacity: 0.78;
  margin-left: 35px;
  margin-right: 12px;
}
@media (max-width: 575px) {
  .tp-hero-2-btn span {
    margin-left: 20px;
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .tp-hero-2-btn img {
    margin-top: 30px;
  }
}

.tp-hero-3-bg {
  height: 810px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-3-bg {
    height: 700px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-3-bg {
    height: 670px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-3-bg {
    height: 1270px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-3-bg {
    height: 1110px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-hero-3-bg {
    height: 1000px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-hero-3-bg {
    height: 870px;
  }
}
.tp-hero-3-content {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-3-content {
    padding-top: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-3-content {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .tp-hero-3-content {
    padding-top: 40px;
  }
}
.tp-hero-3-wrapper {
  height: 100%;
  position: relative;
  z-index: 99;
}
.tp-hero-3-pre {
  position: relative;
}
.tp-hero-3-pre::before {
  position: absolute;
  content: "";
  border: 2px dashed var(--tp-theme-primary);
  height: 94px;
  width: 94px;
  border-radius: 50%;
  top: -7px;
  left: -7px;
  animation: tprotate 5s ease-in-out 3s forwards infinite alternate;
}
.tp-hero-3-pre i {
  font-size: 42px;
  height: 80px;
  width: 80px;
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-radius: 50%;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 86px;
  text-align: center;
}
.tp-hero-3-title {
  font-weight: 800;
  font-size: 69px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-hero-3-title br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-hero-3-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-3-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-3-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-3-title {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .tp-hero-3-title {
    font-size: 40px;
  }
}
.tp-hero-3-title span {
  color: var(--tp-theme-primary);
}
.tp-hero-3-content p {
  font-weight: 500;
  font-size: 23px;
  color: #4c5464;
  margin-bottom: 36px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-3-content p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .tp-hero-3-content p {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.tp-hero-3-thumb {
  position: relative;
  z-index: 1;
  margin-top: 77px;
  margin-left: -70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-3-thumb {
    margin-top: 80px;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-3-thumb {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1701px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px),
  only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-hero-3-thumb img {
    max-width: 100%;
  }
}

.hero-active .splide__arrows .splide__arrow--prev,
.hero-active .splide__arrows .splide__arrow--next {
  position: absolute;
  top: 46%;
  right: 280px;
  background: #dee1ef;
  color: #0d1c37;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 50px;
  opacity: 1;
  left: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-active .splide__arrows .splide__arrow--prev,
  .hero-active .splide__arrows .splide__arrow--next {
    right: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-active .splide__arrows .splide__arrow--prev,
  .hero-active .splide__arrows .splide__arrow--next {
    top: 53%;
    right: 115px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-active .splide__arrows .splide__arrow--prev,
  .hero-active .splide__arrows .splide__arrow--next {
    top: 55%;
    right: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-active .splide__arrows .splide__arrow--prev,
  .hero-active .splide__arrows .splide__arrow--next {
    top: 53%;
    right: 92px;
  }
}
.hero-active .splide__arrows .splide__arrow--prev:hover,
.hero-active .splide__arrows .splide__arrow--next:hover {
  color: var(--tp-common-white);
}
.hero-active .splide__arrows .splide__arrow--next {
  top: 39%;
  right: 255px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-active .splide__arrows .splide__arrow--next {
    right: 90px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-active .splide__arrows .splide__arrow--next {
    top: 44%;
    right: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-active .splide__arrows .splide__arrow--next {
    top: 46%;
    right: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-active .splide__arrows .splide__arrow--next {
    top: 46%;
    right: 70px;
  }
}
.hero-active .splide__arrows .splide__arrow--next:hover {
  color: var(--tp-common-white);
}
.hero-active .splide__slide.slider-item.is-visible.is-active .tp-hero__title {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}
.hero-2-active .splide__arrows .splide__arrow--prev,
.hero-2-active .splide__arrows .splide__arrow--next {
  position: absolute;
  top: 46%;
  left: 0;
  background: var(--tp-common-white);
  color: var(--tp-text-2);
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 50px;
  opacity: 1;
}
.hero-2-active .splide__arrows .splide__arrow--prev::before,
.hero-2-active .splide__arrows .splide__arrow--next::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: var(--tp-theme-secondary);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.hero-2-active .splide__arrows .splide__arrow--prev:hover,
.hero-2-active .splide__arrows .splide__arrow--next:hover {
  color: var(--tp-common-white);
}
.hero-2-active .splide__arrows .splide__arrow--prev:hover::before,
.hero-2-active .splide__arrows .splide__arrow--next:hover::before {
  width: 50px;
}
.hero-2-active .splide__arrows .splide__arrow--next {
  top: 39%;
}
.hero-2-active .splide__arrows .splide__arrow--next::before {
  position: absolute;
  content: "";
  top: 0;
  left: auto;
  right: 0;
  height: 100%;
  width: 5px;
  background: var(--tp-theme-secondary);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.hero-2-active .splide__arrows .splide__arrow--next:hover {
  color: var(--tp-common-white);
}
.hero-2-active .splide__arrows .splide__arrow--next:hover::before {
  width: 50px;
}
.hero-2-active
  .splide__slide.slider-item.is-visible.is-active
  .tp-hero-2-title {
  animation-name: fadeInUp;
  animation-fill-mode: both;
}

.hero-3-active .splide__arrows .splide__arrow--prev,
.hero-3-active .splide__arrows .splide__arrow--next {
  position: absolute;
  height: 66px;
  width: 66px;
  display: inline-block;
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
  opacity: 1;
  border: 1px solid rgba(13, 28, 55, 0.06);
  box-shadow: 0px 0px 40px rgba(13, 28, 55, 0.08);
  left: 80px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-3-active .splide__arrows .splide__arrow--prev,
  .hero-3-active .splide__arrows .splide__arrow--next {
    left: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-3-active .splide__arrows .splide__arrow--prev,
  .hero-3-active .splide__arrows .splide__arrow--next {
    left: -20px;
  }
}
.hero-3-active .splide__arrows .splide__arrow--prev:hover,
.hero-3-active .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.hero-3-active .splide__arrows .splide__arrow--next {
  left: auto;
  right: 80px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero-3-active .splide__arrows .splide__arrow--next {
    right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-3-active .splide__arrows .splide__arrow--next {
    right: -20px;
  }
}
.hero-3-active .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.tp-hero-btn {
  display: inline-block;
}
.tp-hero-btn .tp-hero-btn-text {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  text-align: center;
  padding: 18px 36px;
  z-index: 1;
  overflow: hidden;
  margin-right: -2px;
  transition: all 0.3s ease-in-out;
}
.tp-hero-btn .tp-hero-btn-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--tp-text-2);
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.tp-hero-btn .tp-hero-btn-icon {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  padding: 18px 24px;
  overflow: hidden;
}
.tp-hero-btn .tp-btn-2:hover .tp-hero-btn-text,
.tp-hero-btn .tp-btn-2:hover .tp-hero-btn-icon {
  color: #fff;
}
.tp-hero-btn .tp-btn-2:hover .tp-hero-btn-text::before,
.tp-hero-btn .tp-btn-2:hover .tp-hero-btn-icon::before {
  transform: translateX(0);
}
.tp-hero-btn i,
.tp-hero-btn svg {
  margin-right: 0px;
}
.tp-hero-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-hero-btn:focus {
  color: var(--tp-common-white);
}

.bubbles {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

.bubble-container {
  position: absolute;
  bottom: 0;
  will-change: transform;
  -webkit-animation: bubblerise 4s infinite ease-in;
  -moz-animation: bubblerise 4s infinite ease-in;
  -ms-animation: bubblerise 4s infinite ease-in;
  animation: bubblerise 4s infinite ease-in;
  opacity: 0;
}

.bubble {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  will-change: transform;
  border-radius: 50%;
  -webkit-animation: bubblewobble 0.4s infinite linear;
  -moz-animation: bubblewobble 0.4s infinite linear;
  -ms-animation: bubblewobble 0.4s infinite linear;
  animation: bubblewobble 0.4s infinite linear;
}

@-webkit-keyframes bubblerise {
  0% {
    bottom: 0;
    opacity: 0;
  }
  5% {
    bottom: 0;
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}
@-moz-keyframes bubblerise {
  0% {
    bottom: 0;
    opacity: 0;
  }
  5% {
    bottom: 0;
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}
@-ms-keyframes bubblerise {
  0% {
    bottom: 0;
    opacity: 0;
  }
  5% {
    bottom: 0;
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}
@keyframes bubblerise {
  0% {
    bottom: 0;
    opacity: 0;
  }
  5% {
    bottom: 0;
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
@-moz-keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
@-ms-keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
@keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
/*----------------------------------------*/
/*  7.4 brand css
  /*----------------------------------------*/
.tp-brands-overlay {
  background: linear-gradient(
    180deg,
    rgba(33, 68, 216, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tp-brands-shape {
  position: absolute;
  top: 76px;
  right: 135px;
  animation: arrow-round 2s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-brands-shape {
    right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-shape {
    display: none;
  }
}
.tp-brands-filter .filter-1 {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}
.tp-brands-filter .filter-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.tp-brands-hover img {
  filter: grayscale(100%);
  opacity: 45%;
  transition: all 0.3s ease-in-out;
}
.tp-brands-hover img:hover {
  filter: none;
  opacity: 1;
}
.tp-brands-from {
  padding: 72px 60px 72px 62px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  margin-top: -195px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brands-from {
    padding: 55px 50px 55px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-brands-from {
    padding: 50px 40px 50px 40px;
    margin-top: -125px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-from {
    padding: 65px 50px 65px 50px;
  }
}
@media (max-width: 575px) {
  .tp-brands-from {
    padding: 50px 20px 50px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-from {
    margin-top: 0;
    margin-bottom: 80px;
  }
}
.tp-brands-from .tp-brands-title {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  (max-width: 575px) {
  .tp-brands-from .tp-brands-title {
    font-size: 30px;
  }
}
.tp-brands-from-input {
  margin-bottom: 13px;
}
.tp-brands-from-input.contact-mb {
  margin-bottom: 20px;
}
.tp-brands-from-input input,
.tp-brands-from-input textarea {
  background: var(--tp-common-white);
  width: 100%;
  height: 58px;
  outline: 0;
  resize: none;
  padding: 0 25px;
  border: 1px solid #fff;
}
.tp-brands-from-input input::placeholder,
.tp-brands-from-input textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  color: var(--tp-text-body);
}
.tp-brands-from-input input:focus::placeholder,
.tp-brands-from-input textarea:focus::placeholder {
  opacity: 0;
}
.tp-brands-from-input.contact-textarea textarea {
  height: 150px;
}
.tp-brands-from-input.appoinment-textarea textarea {
  height: 190px;
}
.tp-brands-from-input textarea {
  width: 100%;
  height: 140px;
  padding: 15px 25px;
  line-height: 1;
}
.tp-brands-from-input .nice-select {
  margin-bottom: 13px;
  border-radius: 0;
  height: 58px;
  padding: 0px 25px;
  border: none;
  line-height: 58px;
}
.tp-brands-from-input .nice-select:focus {
  border: none;
}
.tp-brands-from-input .nice-select span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--tp-text-body);
}
.tp-brands-from-input .nice-select span:active {
  border: none;
}
.tp-brands-from-input .nice-select .list {
  border-radius: 0;
}
.tp-brands-from-overlay::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: #e9e9e9; bix-shadow:0 0 10px #e2e2e2
}
.tp-brands-from .tp-btn {
  padding: 18px 37px;
  margin-top: 15px;
}
.tp-brands-from .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}
.tp-brands-input-4 textarea {
  background: var(--tp-common-white);
  width: 100%;
  height: 58px;
  outline: 0;
  resize: none;
  padding: 0 25px;
  border: none;
  margin-bottom: 13px;
}
.tp-brands-input-4 textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  color: var(--tp-text-body);
}
.tp-brands-input-4 textarea:focus::placeholder {
  opacity: 0;
}
.tp-brands-input-3 .nice-select {
  margin-bottom: 13px;
}

@media (max-width: 575px) {
  .tp-brands-2-area {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-brands-2-wrapper {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-2-wrapper {
    margin-bottom: 50px;
  }
}
.tp-brands-2-wrapper .tp-section__title {
  text-transform: uppercase;
}
.tp-brands-2-top {
  padding-left: 45px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-2-top {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .tp-brands-2-top {
    flex-wrap: wrap;
  }
}
.tp-brands-2-top::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: #edf1ff;
  height: 2px;
  width: 700px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brands-2-top::after {
    left: 15px;
    width: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-2-top::after {
    left: 0px;
    width: 530px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-brands-2-top::after {
    left: 0px;
  }
}
@media (max-width: 575px) {
  .tp-brands-2-top::after {
    content: none;
  }
}
.tp-brands-2-top-img {
  margin-right: 90px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brands-2-top-img {
    margin-right: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-2-top-img {
    margin-right: 40px;
  }
}
@media (max-width: 575px) {
  .tp-brands-2-top-img {
    margin-right: 0px;
    width: 50%;
  }
}
.tp-brands-2-top-img img {
  filter: grayscale(100%);
  opacity: 45%;
  transition: all 0.3s ease-in-out;
}
.tp-brands-2-top-img img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 575px) {
  .tp-brands-2-top-img img {
    margin-bottom: 30px;
  }
}
.tp-brands-2-top-img:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 138px;
  background: #edf1ff;
  margin-left: 42px;
  bottom: -30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-2-top-img:not(:last-of-type)::after {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-2-top-img:not(:last-of-type)::after {
    margin-left: 20px;
  }
}
@media (max-width: 575px) {
  .tp-brands-2-top-img:not(:last-of-type)::after {
    content: none;
  }
}
.tp-brands-2-bottom {
  padding-left: 120px;
  margin-top: 60px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brands-2-bottom {
    padding-left: 72px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-brands-2-bottom {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-brands-2-bottom {
    padding-left: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-2-bottom {
    padding-left: 0px;
  }
  ul.lef-pad {
    padding-left: 48px!important;
}
}
@media (max-width: 575px) {
  .tp-brands-2-bottom {
    margin-top: 0;
    flex-wrap: wrap;
  }
}
.tp-brands-2-bottom-img {
  margin-right: 90px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-2-bottom-img {
    margin-right: 80px;
  }
}
@media (max-width: 575px) {
  .tp-brands-2-bottom-img {
    margin-right: 0px;
    width: 50%;
  }
}
.tp-brands-2-bottom-img img {
  filter: grayscale(100%);
  opacity: 45%;
  transition: all 0.3s ease-in-out;
}
.tp-brands-2-bottom-img img:hover {
  filter: none;
  opacity: 1;
}
@media (max-width: 575px) {
  .tp-brands-2-bottom-img img {
    margin-bottom: 30px;
  }
}
.tp-brands-2-bottom-img:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 138px;
  background: #edf1ff;
  margin-left: 42px;
  bottom: 0px;
}
@media (max-width: 575px) {
  .tp-brands-2-bottom-img:not(:last-of-type)::after {
    content: none;
  }
}
.p-relative {
  position: relative;
}
div#splide01-slide01 {
  width: calc(100%);
  transform: translateX(0%);
}
/* TITLE  */
.tp-section__title-pre {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  padding: 9px 22px;
  display: inline-block;
  margin-bottom: 22px;
}
.tp-section__title {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
}
.tp-section__title-pre::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: var(--tp-theme-secondary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section__title {
    font-size: 45px;
  }
}
.tp-brands-overlay {
  background: linear-gradient(
    180deg,
    rgba(33, 68, 216, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tp-brands-area {
  padding-top: 90px;
  padding-bottom: 90px;
}
.tp-brands-overlay {
  background: linear-gradient(
    180deg,
    rgba(33, 68, 216, 0.15) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tp-brands-shape {
  position: absolute;
  top: 76px;
  right: 135px;
  animation: arrow-round 2s infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-brands-shape {
    right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-shape {
    display: none;
  }
}
.tp-brands-filter .filter-1 {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}
.tp-brands-filter .filter-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.tp-brands-hover img {
  filter: grayscale(100%);
  opacity: 45%;
  transition: all 0.3s ease-in-out;
}
.tp-brands-hover img:hover {
  filter: none;
  opacity: 1;
}
.tp-brands-from {
  padding: 72px 60px 72px 62px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  margin-top: -195px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brands-from {
    padding: 55px 50px 55px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-brands-from {
    padding: 50px 40px 50px 40px;
    margin-top: -125px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-brands-from {
    padding: 65px 50px 65px 50px;
  }
}
@media (max-width: 575px) {
  .tp-brands-from {
    padding: 50px 20px 50px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-brands-from {
    margin-top: 0;
    margin-bottom: 80px;
  }
}
.tp-brands-from .tp-brands-title {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 30px;
}
.pt-10 {
  padding-top: 60px;
}
/*----------------------------------------*/
/*  7.9 features css
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-features-area {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-features-area {
    padding-bottom: 50px;
  }
}
.tp-features-item-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tp-features-item-wrapper {
  position: relative;
  padding: 30px;
  background: #f4f6fd;
}
.tp-features-item-wrapper:hover .tp-features-item-thumb::before {
  animation: shine 800ms;
}
@media (max-width: 575px) {
  .tp-features-item-wrapper {
    padding: 24px;
  }
}
.tp-features-item-wrapper .feature-btn {
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  left: 50%;
  transform: translate(-50%, 50%);
}
.tp-features-item-wrapper-2 {
  padding: 25px;
  background: var(--tp-theme-primary);
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 575px) {
  .tp-features-item-wrapper-2 {
    padding: 39px 30px 52px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-features-item-wrapper-2 {
    margin-top: 20px;
  }
}
.tp-features-item-wrapper-2 .tp-features-item-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  text-transform: capitalize;
  color: var(--tp-common-white);
}
.tp-features-item-wrapper-2 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #c7cff0;
  margin-bottom: 34px;
}
.tp-features-item-wrapper-2 input {
  background: var(--tp-common-white);
  width: 100%;
  height: 52px;
  outline: 0;
  padding: 0 25px;
  margin-bottom: 15px;
}
.tp-features-item-wrapper-2 input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  color: var(--tp-text-body);
}
.tp-features-item-wrapper-2 input:focus::placeholder {
  opacity: 0;
}
.tp-features-item-wrapper-2 .item-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 70px;
  z-index: -1;
  opacity: 0.15;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-features-item-wrapper-2 .item-shape .shape-1 {
    left: 42px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-features-item-wrapper-2 .item-shape .shape-1 {
    left: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-features-item-wrapper-2 .item-shape .shape-1 {
    left: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-features-item-wrapper-2 .item-shape .shape-1 {
    left: 130px;
  }
}
@media (max-width: 575px) {
  .tp-features-item-wrapper-2 .item-shape .shape-1 {
    left: 10px;
  }
}
.tp-features-item-wrapper-2 .item-shape .shape-2 {
  position: absolute;
  bottom: -72px;
  left: -6px;
  z-index: -1;
  opacity: 0.15;
}
.tp-features-item-wrapper-2.tp-footer-2-margin {
  padding: 63px 48px 60px 48px;
}
.tp-features-item-thumb {
  overflow: hidden;
  position: relative;
}
.tp-features-item-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}
.tp-features-item-thumb img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-features-item-thumb img {
    min-width: 100%;
  }
}
.tp-features-item-thumb img:hover {
  transform: scale(1.1);
}
.tp-features-item-content {
  padding-top: 32px;
  padding-bottom: 20px;
}
.tp-features-item-content p {
 font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    color: #000;
    padding-left: 10px;
}
.tp-features-item-title {
  font-weight: 700;
  font-size: 24px !important;
  text-transform: capitalize;
  color: var(--tp-text-2);
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-features-item-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .tp-features-item-title {
    font-size: 23px;
  }
}
.tp-features-item-title a:hover {
  color: var(--tp-theme-primary);
}
.tp-features-btn .tp-btn-2 span {
  font-weight: 400;
  font-size: 16px;
  padding: 12px 21px;
}
.tp-features-btn .tp-btn-2 i {
  font-weight: 400;
  font-size: 16px;
}

.tp-features-btn .tp-feature-btn-text {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  text-align: center;
  padding: 18px 36px;
  z-index: 1;
  overflow: hidden;
  margin-right: -2px;
  transition: all 0.3s ease-in-out;
}
.tp-features-btn .tp-feature-btn-text::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--tp-text-2);
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.tp-features-btn .tp-feature-btn-icon {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  padding: 18px 24px;
  overflow: hidden;
}
.tp-features-btn .tp-btn-2:hover .tp-feature-btn-text,
.tp-features-btn .tp-btn-2:hover .tp-feature-btn-icon {
  color: #fff;
}
.tp-features-btn .tp-btn-2:hover .tp-feature-btn-text::before,
.tp-features-btn .tp-btn-2:hover .tp-feature-btn-icon::before {
  transform: translateX(0);
}
.tp-features-btn i,
.tp-features-btn svg {
  margin-right: 0px;
}
.tp-features-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-features-btn:focus {
  color: var(--tp-common-white);
}
.tp-btn-effect i,
.tp-btn-effect svg {
  margin-right: 0px;
  display: flex;
  justify-content: center;
  line-height: 50px;
}.tp-about-area {
   background:#fafafa;
  }

/*----------------------------------------*/
/*  7.2 About css
/*----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-area {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-area {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-area {
    padding-bottom: 75px;
  }
}
.tp-about-thumb img {
  max-width: 100%;
}
@media (max-width: 575px) {
  .tp-about-thumb img {
    margin-bottom: 0;
  }
}
.tp-about-thumb-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-thumb-wrapper {
    gap: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-thumb-wrapper {
  }
}
.tp-about-inner {

}
@media (max-width: 575px) {
  .tp-about-inner {
    margin-right: 0;
  }
}
@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-about-inner {
    margin-bottom: 15px;
  }
}
.tp-about-inner-thumb i img {
  width: 44px;
}
.tp-about-inner-thumb {
  background: #e8ecfb;
  height: 68px;
  width: 68px;
  line-height: 74px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 17px;
  flex: 0 0 auto;
}
.tp-about-inner-thumb i {
  font-size: 30px;
  color: var(--tp-theme-primary);
  line-height: 1.5;
  position: relative;
  left: 2px;
}
.tp-about-section-title-wrapper {
  margin-right: -20px;
  margin-top: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-section-title-wrapper {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-section-title-wrapper {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .tp-about-section-title-wrapper {
    margin-top: 50px;
    margin-right: 0;
  }
}
.tp-about-section-title-wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 5px; color:#000;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-about-section-title-wrapper .tp-section__title {
    font-size: 35px;
  }
}
.tp-about-inner-title {
 font-size: 19px;
    color: #e0c516;
    font-weight: 600;
}
.tp-about-inner-text p {
  font-size: 16px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-inner-text p {
    margin-bottom: 24px;
    color: black;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .tp-about-inner-text p br {
    display: none;
  }
}
.tp-about-btn .tp-btn {
  margin-top: 5px;
  padding: 18px 33px;
}
.tp-about-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}

@media (max-width: 575px) {
  .skill__wrapper {
    padding-right: 0;
  }
}
.skill__wrapper p {
  padding-left: 28px;
  position: relative;
  margin-bottom: 40px;
}
.skill__wrapper p::after {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 3px;
  height: 90%;
  background: #000;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .skill__progress {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .skill__progress {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .skill__progress {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .skill__progress {
    margin-top: 50px;
  }
}
.skill__progress-circle h4 {
  position: absolute;
  top: 26%;
  left: 45px;
  font-weight: 700;
  font-size: 21px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .skill__progress-circle h4 {
    top: 27%;
  }
}
@media (max-width: 575px) {
  .skill__progress-circle h4 {
    top: 26%;
  }
}
@media (max-width: 575px) {
  .skill__progress-circle {
    margin-bottom: 25px;
  }
}
.skill__progress-circle .knob {
  font-weight: 700 !important;
  font-size: 28px !important;
  font-family: outfit !important;
  color: #0d1c37 !important;
  z-index: 7 !important;
}
.skill__progress-circle .progress-circular {
  position: absolute;
  top: 40px;
  left: 50px;
}
.mb-20 {
  margin-bottom: 20px;
}
.tp-about-thumb img {
  max-width: 100%;
}
.skill__progress-circle .progress-circular::after {
  position: absolute;
  content: "";
  left: 10px;
  top: 11px;
  width: 86%;
  height: 81%;
  box-shadow: 0px 0px 38px rgba(13, 28, 55, 0.1);
  border-radius: 50%;
  z-index: 1;
}
.skill__progress-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.skill__progress-content p {
  margin-bottom: 0;
}
.skill__shape-1 {
  position: absolute;
  top: -65%;
  left: 15%;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .skill__shape-1 {
    width: 100%;
    left: 0;
  }
}
/* btn stye  */
.tp-btn {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  text-align: center;
  padding: 18px 33px;
  z-index: 1;
  overflow: hidden;
}
.tp-btn i,
.tp-btn svg {
  margin-right: 9px;
}
.tp-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.tp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--tp-text-2);
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.tp-btn:hover {
  color: #fff;
}
.tp-btn:hover::before {
  transform: translateX(0);
}
.tp-btn:focus {
  color: var(--tp-common-white);
}

.tp-btn-2 span {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  text-align: center;
  padding: 18px 36px;
  z-index: 1;
  overflow: hidden;
  margin-right: -2px;
  transition: all 0.3s ease-in-out;
}
/*----------------------------------------*/
/*  8.4 service css
/*----------------------------------------*/
.tp-service-shape .service-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.tp-service-shape .service-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.tp-service-overlay {
  background: #f4f6fd;
}
.tp-service-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 300px;
  background: linear-gradient(-90deg, #f4f6fd 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-overlay::before {
    width: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-overlay::before {
    content: none;
  }
}
.tp-service-overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  /* background: linear-gradient(90deg, #F4F6FD 0%, rgba(255, 255, 255, 0) 100%); */
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-overlay::after {
    width: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-overlay::after {
    content: none;
  }
}
.tp-service-item {
  background-color: var(--tp-common-white);
  padding: 16px 21px 16px 21px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-item {
    padding: 30px 20px 30px 25px;
  }
}
.tp-service-item .item-shape {
  position: absolute;
  top: 0;
  right: 30px;
  transition: all 0.3s ease-in-out;
}
.tp-service-item p {
  font-size: 17px; color:#000;
  line-height: 28px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.tp-service-item-btn a {
  background: var(--tp-theme-primary);
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  color: var(--tp-common-white);
  transition: 0.2s;
}
.tp-service-item-btn a i {
  transition: 0.2s;
}
.tp-service-item:hover {
  background-color: var(--tp-theme-primary);
}
.tp-service-item:hover .item-shape {
  opacity: 0.15;
}
.tp-service-item:hover .tp-service-title {
  color: #f4f6fd;
}
.tp-service-item:hover p {
  color: #cfd3e4;
}
.tp-service-item:hover .tp-service-item-btn a {
  background: var(--tp-theme-secondary);
  color: var(--tp-text-2);
}
.tp-service-item:hover .tp-service-item-btn a i {
  transform: rotate(45deg);
}
.tp-service-title {
  font-size: 21px;
  margin-bottom: 10px;
  transition: none;
}
.tp-service-thumb {
  background: #f4f6fd;
  width: 90px;
  height: 90px;
  line-height: 2.5;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 30px;
  display: inline-block;
}
.tp-service-thumb i {
  font-size: 42px;
  color: var(--tp-theme-primary);
}
.tp-service-all-btn .tp-btn {
  padding: 18px 36px;
}
.tp-service-all-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}
.pb-110 {
  padding-bottom: 70px;
}
.pt-120 {
  padding-top: 70px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-80 {
  margin-bottom: 80px;
}
.pb-120 {
  padding-bottom: 120px;
}
.tp-service-thumb i img {
  vertical-align: middle;
  position: relative;
  top: -11px;
}
/*----------------------------------------*/
/*  8.1 portfolio css
/*----------------------------------------*/
@media (max-width: 575px) {
  .tp-portfolio-area {
    padding-bottom: 80px;
  }
}
.tp-portfolio-btn .tp-btn {
  padding: 18px 37px;
}
.tp-portfolio-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}
.tp-portfolio-title p {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
}
.tp-portfolio-thumb {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.tp-portfolio-thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #2144d8 100%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-portfolio-section-title-wrapper {
    margin-bottom: 30px;
  }
}
.tp-portfolio-content {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0px;
  left: 50px;
  right: 50px;
  transition: 0.5s;
  transition-delay: 0.5s;
  -moz-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  z-index: 2;
  transition: all 400ms ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-portfolio-content {
    left: 30px;
    right: 30px;
  }
}
@media (max-width: 575px) {
  .tp-portfolio-content {
    left: 20px;
    right: 20px;
  }
}
.tp-portfolio-content-btn a {
  background: var(--tp-theme-secondary);
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  color: #0d1c37;
  transition: background 0.3s ease-in-out;
}
.tp-portfolio-content-btn a i {
  transition: all 0.3s ease-in-out;
}
.tp-portfolio-content-btn a:hover {
  color: var(--tp-common-white);
}
.tp-portfolio-content-btn a:hover i {
  transform: rotate(45deg);
}
.tp-portfolio-content-title {
  font-weight: 700;
  font-size: 26px;
  color: var(--tp-common-white);
}
@media (max-width: 575px) {
  .tp-portfolio-content-title {
    font-size: 20px;
  }
}

.portfolio-active .splide__arrows .splide__arrow--prev {
  height: 66px;
  width: 66px;
  display: inline-block;
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
  opacity: 1;
  border: 1px solid rgba(13, 28, 55, 0.06);
  box-shadow: 0px 0px 40px rgba(13, 28, 55, 0.08);
  position: absolute;
  left: -35px;
  top: 60%;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-active .splide__arrows .splide__arrow--prev {
    left: -20px;
  }
}
.portfolio-active .splide__arrows .splide__arrow--prev:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.portfolio-active .splide__arrows .splide__arrow--next {
  height: 66px;
  width: 66px;
  display: inline-block;
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
  opacity: 1;
  border: 1px solid rgba(13, 28, 55, 0.06);
  box-shadow: 0px 0px 40px rgba(13, 28, 55, 0.08);
  position: absolute;
  right: -35px;
  top: 60%;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .portfolio-active .splide__arrows .splide__arrow--next {
    right: -20px;
  }
}
.portfolio-active .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.portfolio-active .splide__slide .tp-portfolio-thumb::after {
  opacity: 0;
  visibility: hidden;
}
.portfolio-active .splide__slide .tp-portfolio-content {
  opacity: 0;
  visibility: hidden;
}
.portfolio-active
  .splide__slide.is-visible.is-active
  .tp-portfolio-thumb::after {
  opacity: 1;
  visibility: visible;
}
.portfolio-active .splide__slide.is-visible.is-active .tp-portfolio-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  -moz-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .portfolio-active .splide__slide.is-visible.is-active .tp-portfolio-content {
    bottom: 5px;
  }
}
@media (max-width: 575px) {
  .portfolio-active .splide__track {
    padding-top: 50px;
  }
}

.my-slider-progress {
  background: rgba(33, 68, 216, 0.09);
}
.my-slider-progress-bar {
  background: var(--tp-theme-primary);
  opacity: 1;
  height: 2px;
  transition: width 400ms ease;
  width: 0;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .tp-portfolio-2-area {
    padding-bottom: 165px;
  }
}
.tp-portfolio-2-section-title-wrapper .tp-section__title {
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-portfolio-2-section-title-wrapper .tp-section__title {
    font-size: 30px;
  }
}
.pt-topp {
  padding-top: 23px;
}
.tp-counter-shape .shape-1 {
  position: absolute;
  top: 0;
  left: -15px;
}
@media (max-width: 575px) {
  .tp-counter-shape .shape-1 {
    display: none;
  }
}
.tp-counter-shape .shape-2 {
  position: absolute;
  bottom: -80%;
  right: 0px;
}
.tp-counter-overlay {
  background: #0d1c37;
}
.tp-counter-wrapper {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 25px 20px 15px 34px;
  position: relative;
  justify-content: space-between;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-counter-wrapper {
    padding: 20px 15px 15px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-counter-wrapper {
    padding: 20px 20px 15px 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-counter-wrapper {
    padding: 25px 20px 15px 20px;
  }
}
.tp-counter-wrapper::after {
  position: absolute;
  content: "";
  width: 40%;
  height: 102%;
  left: -2px;
  top: -1px;
  background: linear-gradient(90deg, #2144d8 0%, rgba(13, 28, 55, 0) 100%);
  transition: all 0.3s ease-in;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.tp-counter-wrapper:hover::after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.tp-counter-wrapper:hover .tp-counter-content h4 {
  color: var(--tp-common-white);
}
.tp-counter-content p {
  font-weight: 600;
  font-size: 21px;
  line-height: 29px;
  color: var(--tp-common-white);
}
.tp-counter-title {
  font-weight: 600;
  font-size: 48px;
  color: var(--tp-theme-secondary);
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.tp-counter-thumb i {
  font-size: 58px;
  background-image: linear-gradient(180deg, #fff 0%, rgba(13, 28, 55, 0) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: inline-block;
  margin-left: 15px;
}

.tp-counter-2-wrapper {
  background: var(--tp-theme-primary);
  padding: 57px 110px 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-counter-2-wrapper {
    padding: 57px 55px 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-counter-2-wrapper {
    padding: 57px 72px 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-counter-2-wrapper {
    padding: 57px 60px 8px;
  }
}
/*----------------------------------------*/
/*  8.7 testimonial css
/*----------------------------------------*/
.tp-testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 307px;
  background-color: #0d1c37;
  z-index: -1;
}
.tp-testimonial-shape .shape-1 {
  position: absolute;
  top: 42px;
  left: 118px;
  animation: soft-move-y 2s infinite linear;
}
@media only screen and (min-width: 1701px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-testimonial-shape .shape-1 {
    top: -62px;
    left: 85px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-shape .shape-1 {
    top: -70px;
    left: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-shape .shape-1 {
    display: none;
  }
}
.tp-testimonial-shape .shape-2 {
  position: absolute;
  top: 42px;
  left: 118px;
  animation: soft-move-y 3s infinite linear;
}
@media only screen and (min-width: 1701px) and (max-width: 1800px),
  only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-testimonial-shape .shape-2 {
    top: -62px;
    left: 85px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-shape .shape-2 {
    top: -70px;
    left: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-shape .shape-2 {
    display: none;
  }
}
.tp-testimonial-shape .shape-3 {
  position: absolute;
  bottom: 150px;
  right: 230px;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-shape .shape-3 {
    right: 30px;
  }
}
.tp-testimonial-shape .shape-4 {
  position: absolute;
  bottom: -68%;
  left: -20px;
  z-index: -1;
}
.tp-testimonial-wrapper {
  position: relative;
  background: var(--tp-theme-primary);
}
.tp-testimonial-thumb {
  padding-top: 60px;
  padding-left: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-thumb {
    padding-top: 98px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-thumb {
    padding-top: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-thumb {
    padding-left: 0;
    padding-top: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-testimonial-thumb img {
    max-width: 100%;
  }
}
.tp-testimonial-user img {
  border-radius: 50%;
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
}
.tp-testimonial-content {
  padding: 76px 70px;
}
@media (max-width: 575px) {
  .tp-testimonial-content {
    padding: 60px 40px;
  }
}
.tp-testimonial-content p {
  font-size: 23px;
  font-weight: 600;
  line-height: 37px;
  color: var(--tp-common-white);
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .tp-testimonial-content p {
    font-size: 20px;
  }
}
.tp-testimonial-content span {
  display: block;
  font-weight: 700;
  font-size: 25px;
  color: var(--tp-common-white);
  margin-bottom: 8px;
}
.tp-testimonial-content .tp-testimonial-designation {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-theme-secondary);
}

.testimonial-navigation-active {
  margin: auto;
}
.testimonial-navigation-active .tp-testimonial-user img {
  transition: all 0.3s ease-in-out;
}
.testimonial-navigation-active
  .splide__track--nav
  > .splide__list
  > .splide__slide {
  padding-top: 20px;
  border: none;
}
.testimonial-navigation-active .splide__slide.is-visible.is-active {
  border: none;
  z-index: 1;
}
.testimonial-navigation-active
  .splide__slide.is-visible.is-active
  .tp-testimonial-user
  img {
  transform: scale(1.5);
}

.tp-nav-wrap {
  width: 185px;
  overflow: hidden;
  margin: auto;
}

.testimonial-main-active .splide__pagination .splide__pagination__page {
  margin-left: 7px;
  height: 10px;
  width: 10px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.testimonial-main-active .splide__pagination .splide__pagination__page::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease-in-out;
}
.testimonial-main-active .splide__pagination .is-active {
  transform: scale(1);
}
.testimonial-main-active .splide__pagination .is-active::after {
  border-color: var(--tp-common-white);
  transform: translate(-50%, -50%) scale(1);
}
.flex-cont {
  display: flex;
  text-align: center;
  align-items: center;
}
.flex-cont span {
  color: white;
  font-size: 39px;
  position: relative;
  left: 10px;
}
.pb-90 {
  padding-bottom: 60px;
}
.tp-footer-plr {
  padding-left: 250px;
  padding-right: 240px;
}
@media only screen and (min-width: 1701px) and (max-width: 1800px) {
  .tp-footer-plr {
    padding-left: 160px;
    padding-right: 160px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-footer-plr {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-footer-plr {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-plr {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .tp-footer-plr {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.tp-footer-wrapper {
  background-repeat: no-repeat;
  padding: 70px 0 0px;
  background-size: cover;
}
.tp-footer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(13, 28, 55, 0.95);
}
.tp-footer-shape .shape-1 {
  position: absolute;
  top: -20px;
  left: 0;
}
@media (max-width: 575px) {
  .tp-footer-shape .shape-1 {
    display: none;
  }
}
.tp-footer-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.tp-footer-logo-content {
  background-color: rgba(255, 255, 255, 0.09);
  padding: 18px 40px;
}
@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-footer-logo-content {
    padding: 18px 30px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-footer-logo-content {
    padding: 18px 15px;
  }
}
.tp-footer-logo-content-shape .shape-3 {
  position: absolute;
  top: 0;
  left: 200px;
  opacity: 0.09;
}
.tp-footer-logo-content-shape .shape-4 {
  position: absolute;
  bottom: 0;
  right: 290px;
  opacity: 0.09;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-logo-content-shape .shape-4 {
    right: 165px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-social {
    margin-top: 15px;
  }
}
.tp-footer-social span {
  font-weight: 600;
  font-size: 18px;
  color: #909bae;
  margin-right: 8px;
}
.tp-footer-social a {
  height: 48px;
  width: 48px;
  background-color: #eef1fd;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  color: #0d1c37;
  font-size: 19px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
  position: relative;
}
@media (max-width: 575px) {
  .tp-footer-social a {
    margin-left: 10px;
  }
}
.tp-footer-social a:hover {
  background-color: var(--tp-theme-secondary);
}
.tp-footer-ml-18 {
  margin-left: -18px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-ml-18 {
    margin-left: 25px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .tp-footer-ml-18 {
    margin-left: 0px;
    margin-top: 30px;
  }
}
.tp-footer-ml-45 {
  margin-left: -45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-ml-45 {
    margin-left: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-footer-ml-45 {
    margin-left: 25px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-widget-area {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .tp-footer-widget-1 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-widget-3 {
    margin-left: 25px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .tp-footer-widget-3 {
    margin-left: 0px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-widget-4 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-widget-4 {
    padding-left: 25px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-widget-4 {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-footer-widget-4 {
    margin-top: 30px;
    padding-left: 25px;
  }
}
@media (max-width: 575px) {
  .tp-footer-widget-4 {
    margin-top: 30px;
    padding-left: 0px;
  }
}
.tp-footer-widget-1 span,
.tp-footer-widget-2 span,
.tp-footer-widget-3 span,
.tp-footer-widget-4 span {
  position: relative;
  font-weight: 700;
  font-size: 23px;
  display: block;
  color: var(--tp-common-white);
  padding-bottom: 32px;
}
.tp-footer-widget-1 span::before,
.tp-footer-widget-2 span::before,
.tp-footer-widget-3 span::before,
.tp-footer-widget-4 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 60px;
  background: var(--tp-theme-primary);
}
.tp-footer-widget-1 span::after,
.tp-footer-widget-2 span::after,
.tp-footer-widget-3 span::after,
.tp-footer-widget-4 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 10px;
  background: var(--tp-theme-secondary);
}
.tp-footer-widget-1 .tp-footer-list-float li,
.tp-footer-widget-2 .tp-footer-list-float li,
.tp-footer-widget-3 .tp-footer-list-float li,
.tp-footer-widget-4 .tp-footer-list-float li {
  width: 53%;
  float: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-widget-1 .tp-footer-list-float li,
  .tp-footer-widget-2 .tp-footer-list-float li,
  .tp-footer-widget-3 .tp-footer-list-float li,
  .tp-footer-widget-4 .tp-footer-list-float li {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .tp-footer-widget-1 .tp-footer-list-float li,
  .tp-footer-widget-2 .tp-footer-list-float li,
  .tp-footer-widget-3 .tp-footer-list-float li,
  .tp-footer-widget-4 .tp-footer-list-float li {
    width: 100%;
  }
}
.tp-footer-widget-1 ul,
.tp-footer-widget-2 ul,
.tp-footer-widget-3 ul,
.tp-footer-widget-4 ul {
  padding-left: 24px;
}
.tp-footer-widget-1 ul li,
.tp-footer-widget-2 ul li,
.tp-footer-widget-3 ul li,
.tp-footer-widget-4 ul li {
  list-style: none;
  margin-bottom: 12px;
  position: relative;
}
.tp-footer-widget-1 ul li::before,
.tp-footer-widget-2 ul li::before,
.tp-footer-widget-3 ul li::before,
.tp-footer-widget-4 ul li::before {
  position: absolute;
  bottom: 12px;
  left: -24px;
  content: "";
  width: 6px;
  height: 2px;
  margin-right: 3px;
  display: inline-block;
  background-color: var(--tp-common-white);
}
.tp-footer-widget-1 ul li a,
.tp-footer-widget-2 ul li a,
.tp-footer-widget-3 ul li a,
.tp-footer-widget-4 ul li a {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-white) !important;
  background-image: linear-gradient(#fcfcff, #d8d8da),
    linear-gradient(#ffffff, #dbdbe6);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}
.tp-footer-widget-1 ul li a:hover,
.tp-footer-widget-2 ul li a:hover,
.tp-footer-widget-3 ul li a:hover,
.tp-footer-widget-4 ul li a:hover {
  color: var(--tp-common-white);
  background-size: 0 1px, 100% 1px;
}
.tp-footer-widget-contact .icon {
  color: var(--tp-theme-secondary);
  background: #233049;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  margin-right: 30px;
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  .tp-footer-widget-contact .icon {
    margin-right: 10px;
  }
}
.tp-footer-widget-contact .contact-inner {
  z-index: 1;
}
.tp-footer-widget-contact .contact-inner p {
  position: relative;
  font-weight: 500;
  font-size: 22px;

  color: var(--tp-common-white);
}
.tp-footer-widget-contact .contact-inner a {
  font-weight: 700;
  font-size: 14px;
  color: var(--tp-common-white);
  transition: 0.3s;
}
@media (max-width: 575px) {
  .tp-footer-widget-contact .contact-inner a {
    font-size: 22px;
  }
}
.tp-footer-widget-contact .contact-inner a:hover {
  color: var(--tp-theme-secondary);
}
.tp-footer-copyright {
  background: #0c1a33;
  position: relative;
  padding-top: 11px;
  padding-bottom: 6px;
}
.tp-footer-copyright p {
  font-weight: 400;
  font-size: 15px;
  margin: 0;
  color: var(--tp-common-white);
}
.tp-footer-logo img {
  width: 184px;
  filter: brightness(0) invert(1);
}
.pt-100 {
  padding-top: 100px;
}
.pb-75 {
  padding-bottom: 75px;
}
.mb-30 {
  margin-bottom: 30px;
}
.pb-120 {
  padding-bottom: 70px;
}
.insidegt.tp-brands-from-input.contact-textarea textarea {
  height: 86px;
}
section.tp-portfolio-area.pt-120.pb-120 {
  background: #fffef8;
}
.mt-30 {
  margin-top: 40px;
}
.breadcrumb__title {
  font-size: 48px;
  color: var(--tp-common-white);
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .breadcrumb__title {
    font-size: 30px;
  }
}
.breadcrumb__title-pre {
  display: inline-block;
  height: 24px;
  line-height: 26px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  background: var(--tp-theme-2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 0 7px;
  margin-bottom: 12px;
}
.breadcrumb__list {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  padding: 9px 23px;
  display: inline-block;
  margin-bottom: 22px;
}
.breadcrumb__list::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: var(--tp-theme-secondary);
}
.breadcrumb__list span {
  font-size: 16px;
  color: var(--tp-common-white);
  font-weight: 500;
  text-transform: capitalize;
}
.breadcrumb__list span a:hover {
  color: var(--tp-theme-secondary);
}
.breadcrumb__list-translate {
  position: absolute;
  bottom: -113px;
  left: 50%;
  transform: translateX(-50%);
}
.breadcrumb__list .dvdr {
  font-size: 10px;
}
.breadcrumb-style {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0 70px;
}
.breadcrumb-style .breadcrumb__list span {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-common-white);
}
.breadcrumb__bg-overlay::after {
  content: "";
  background: #0d1c37;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.breadcrumb-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.breadcrumb__content.text-center {
  position: relative;
}
.breadcrumb-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.tp-service-details-left-box {
  position: sticky;
  top: 110px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-details-right-box {
    padding-left: 0;
  }
}
.tp-service-details__search-box {
  background: #f4f6fd;
  padding: 30px 40px 40px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-details__search-box {
    padding: 30px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .tp-service-details__search-box {
    padding: 20px 15px 30px 15px;
  }
}
.tp-service-details__search-box .tp-service-details-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--tp-text-2);
  margin-bottom: 35px;
}
.tp-service-details__search-box .search-form input {
  position: relative;
  height: 62px;
  line-height: 62px;
  width: 100%;
  padding: 20px;
  padding-right: 70px;
  background: var(--tp-common-white);
  border: 1px solid #fff;
}
.tp-service-details__search-box .search-form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #6a6d7a;
}
.tp-service-details__search-box .search-form input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-service-details__search-box .search-form input:focus::placeholder {
  opacity: 0;
}
.tp-service-details__search-box .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  height: 62px;
  width: 62px;
  line-height: 62px;
}
.tp-service-details__search-box .search-form button:hover i {
  animation: tfLeftToRight 0.5s forwards;
}
.tp-service-details-thumb img {
  margin-bottom: 35px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-details-thumb img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-service-details-thumb-2 {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
  only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-details-thumb-2 img {
    margin-bottom: 30px;
  }
}
.tp-service-details-text-title {
  margin-bottom: 34px;
}
.tp-service-details-text-title .tp-service-details-title {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 18px;
}
.tp-service-details-text-title p {
  font-weight: 400;
    font-size: 18px; 
    margin-bottom: 20px;
    line-height: 32px;
    color: #000;
}

.service-sidebar__widget {
  background: #f4f6fd;
  padding: 28px 40px 40px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-sidebar__widget {
    padding: 30px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .service-sidebar__widget {
    padding: 20px 15px 30px 15px;
  }
}
.service-sidebar__widget-content ul li {
  list-style: none;
  margin-bottom: 15px;
}
.service-sidebar__widget-content ul li a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
  background: var(--tp-common-white);
  padding: 13px 0px 13px 19px;
  transition: all 0.3s ease-in-out;
}
.service-sidebar__widget-content ul li a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.service-sidebar__widget-content ul li a:hover i {
  color: var(--tp-common-white);
  animation: tfLeftToRight 0.5s forwards;
}
.service-sidebar__widget-content ul li a i {
  color: var(--tp-text-2);
  font-size: 18px;
  margin-right: 18px;
  transition: all 0.3s ease-in-out;
}
.service-sidebar__widget-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--tp-text-2);
  margin-bottom: 35px;
}
ul.key-list li {
  list-style: none;
  font-size: 18px;
  color:#000;
  line-height: 38px;
}
ul.key-list li i {
  color: #ffc700;
  padding-right: 10px;
}
section.tp-service-details-area.pt-120.pb-80 {
  padding-bottom: 90px;
}
.tp-contact-area {
  background: #f4f6fd;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-area {
    padding-bottom: 100px;
  }
}
.tp-contact-icon a {
  color: var(--tp-theme-primary);
  background: var(--tp-common-white);
  box-shadow: 0px 0px 54px rgba(33, 68, 216, 0.1);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 77px;
  font-size: 24px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin-right: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tp-contact-icon a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--tp-theme-primary);
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-icon a {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-phone,
  .tp-contact-mail,
  .tp-contact-location {
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .tp-contact-phone,
  .tp-contact-mail,
  .tp-contact-location {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-phone,
  .tp-contact-mail,
  .tp-contact-location {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-phone,
  .tp-contact-mail,
  .tp-contact-location {
    flex-wrap: wrap;
  }
}
.tp-contact-phone:hover .tp-contact-icon a,
.tp-contact-mail:hover .tp-contact-icon a,
.tp-contact-location:hover .tp-contact-icon a {
  color: var(--tp-common-white);
}
.tp-contact-phone:hover .tp-contact-icon a::before,
.tp-contact-mail:hover .tp-contact-icon a::before,
.tp-contact-location:hover .tp-contact-icon a::before {
  transform: translateX(0);
}
.tp-contact-phone .contact-inner p,
.tp-contact-mail .contact-inner p,
.tp-contact-location .contact-inner p {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  color: #2b2b2b;
}
.tp-contact-phone .contact-inner a,
.tp-contact-mail .contact-inner a,
.tp-contact-location .contact-inner a {
  font-weight: 700;
  font-size: 17px;
  color: var(--tp-text-2);
  transition: 0.3s;
}
.tp-contact-phone .contact-inner a:hover,
.tp-contact-mail .contact-inner a:hover,
.tp-contact-location .contact-inner a:hover {
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-phone .contact-inner a,
  .tp-contact-mail .contact-inner a,
  .tp-contact-location .contact-inner a {

    font-size: 17px; font-weight:400!important

  }
}
.tp-contact-from {
  padding: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-from {
    padding: 25px 80px 80px 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-contact-from {
    padding: 25px 70px 70px 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-contact-from {
    padding: 25px 40px 70px 40px;
  }
}
@media (max-width: 575px) {
  .tp-contact-from {
    padding: 25px 15px 60px 15px;
  }
}
.tp-contact-from form p {
  color: var(--tp-theme-secondary);
}
.tp-contact-map {
  height: 580px;
  width: 100%;
  margin-top: -155px;
}
.tp-contact-map iframe {
  height: 100%;
  width: 100%;
}
.tp-contact-submit .tp-btn {
  padding: 18px 34px;
}
.tp-contact-submit .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-contact-wrapper-inner {
    flex-wrap: wrap;
  }
}

.tp-appointment-shape .shape-1 {
  position: absolute;
  top: 73px;
  left: 83px;
}
.tp-appointment-shape .shape-2 {
  position: absolute;
  bottom: 120px;
  left: 37px;
}
.tp-appointment-shape .shape-3 {
  position: absolute;
  top: 40%;
  right: 0;
}
.tp-appointment-from {
  background: #f4f6fd;
}
.tp-appointment-section-title-wrapper {
  padding-top: 135px;
}
@media (max-width: 575px) {
  .tp-appointment-section-title-wrapper {
    padding-top: 115px;
  }
}
.tp-appointment-section-title-wrapper .tp-section__title {
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-appointment-section-title-wrapper .tp-section__title {
    font-size: 32px;
  }
  .breadcrumb-style .breadcrumb__list span {
    font-size: 11px!important;
}
}
.tp-appointment-from-inner {
  padding: 65px 113px 120px 113px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-appointment-from-inner {
    padding: 65px 45px 120px 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-appointment-from-inner {
    padding: 30px 45px 90px 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-appointment-from-inner {
    padding: 50px 90px 80px 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-appointment-from-inner {
    padding: 30px 30px 70px 30px;
  }
}
@media (max-width: 575px) {
  .tp-appointment-from-inner {
    padding: 25px 15px 50px 15px;
  }
}
.tp-appointment-thumb {
  padding-top: 80px;
  margin-left: -30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tp-appointment-thumb {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .tp-appointment-thumb {
    padding-top: 40px;
  }
}
.tp-appointment-thumb img {
  max-width: 100%;
}
.tp-appointment-input input {
  background: var(--tp-common-white);
  width: 100%;
  height: 58px;
  outline: 0;
  padding: 0 25px;
  border: 1px solid #fff;
  margin-bottom: 20px;
}
.tp-appointment-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  color: var(--tp-text-body);
}
.tp-appointment-input input:focus {
  border-color: var(--tp-theme-primary);
}
.tp-appointment-input input:focus::placeholder {
  opacity: 0;
}
.tp-appointment-input input.date {
  padding-right: 50px;
}
.tp-appointment-input .date-icon {
  position: absolute;
  right: 25px;
  top: 17px;
}
.tp-appointment-submit .tp-btn {
  padding: 18px 30px;
}
.tp-appointment-submit .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}
section.tp-contact-input.pt-100 {
  padding: 70px 0 70px;
}
iframe {
    height: 100%;
    width: 100%;
}
.mb-40{ margin-bottom:40px}
p.left-text {
  color: black;
  margin-bottom: 2px;
    font-size: 18px;
}
.d-flexcont {
    display: flex;
    align-items: center;
}
ul.lef-pad {
  padding-left: 94px;
}
.tp-footer-social.d-flex.justify-content-start.justify-content-md-end.align-items-center {
  padding-top: 20px;
  align-items: center;
  text-align: center;
  /* display: block; */
  /* margin: auto; */
}
.tp-contact-phone.d-sm-flex {
  background: #ebf2ff;
  padding: 21px;
  border-radius: 20px;
  /* box-shadow: 0 3px 10px rgb(0 0 0 / 5%); */
  margin-bottom: 10px;
  margin-top: 13px;
}
.tp-contact-mail.d-sm-flex {
  background: #ebf2ff;
  padding: 21px;
  border-radius: 20px;
  /* box-shadow: 0 3px 10px rgb(0 0 0 / 5%); */
  margin-bottom: 10px;
}
.tp-contact-location.d-sm-flex {
  background: #ebf2ff;
  padding: 21px;
  border-radius: 20px;
  /* box-shadow: 0 3px 10px rgb(0 0 0 / 5%); */
  margin-bottom: 10px;
}
.contact-mb select {
  background: var(--tp-common-white);
  width: 100%;
  height: 58px;
  outline: 0;
  resize: none;
  padding: 0 25px;
  border: 1px solid #fff;
  color: #827d87;
  font-size: 16px;
}