@charset "UTF-8";
/*-----------------------------------------------------------------------------------
https://weblearnbd.net/tphtml/kleaso/project-details.html
-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Theme Default
		1.2 Common Classes
		1.3 Default Spacing

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Back to top
		2.2 Theme Settings
		2.3 Buttons
		2.4 Animations
		2.5 Preloader
		2.6 Background 
		2.7 Carousel
		2.8 Nice Select
		2.9 Pagination
		2.10 Offcanvas
		2.11 Breadcrumb
		2.12 Accordion
		2.13 Tab
		2.14 Modal
		2.15 Section Title
	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style 1
		3.2 Header Style 2
		3.3 Header Style 3

    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main menu css
		4.2 Meanmenu css

	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 Postbox css
		5.2 Recent Post css
		5.3 Sidebar css

	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer Style 1
		6.2 Footer Style 2
		6.3 Footer Style 3

	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 Slider css
		7.2 About css
		7.3 blog css
		7.4 brand css
		7.5 cart css
		7.6 contact css
		7.7 counter css
		7.8 error css
		7.9 features css
		8.0 hero css
		8.1 Portfolio css
		8.2 price css
		8.3 project css
		8.4 service css
		8.5 shop css
		8.6 team css
		8.7 testimonial css


**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap");

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

:root {
  /**
  @font family declaration
  */
  font-family: 'Montserrat', sans-serif;
  --tp-ff-heading: 'Roboto Slab', serif;
  --tp-ff-p: 'Roboto Slab', 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: #2144D8;
  --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: 1240px;
    --bs-gutter-x: 36px;
  }
}


@media only screen and (min-width:1920px) {
  .container {
    max-width: 1320px;
    --bs-gutter-x: 36px;

    .tp-hero-bg {
      height: 580px
    }

    main {
      margin-top: -101px;
    }
  }
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: var(--tp-text-body);
  line-height: 26px;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  margin-top: 0px;
  font-weight: 600;
  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: 22px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 15px;
}

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

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
  line-height: 26px;
  text-align: left;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  height: 38px;
  width: 100%;
  line-height: 45px;
  font-size: 15px;
  color: var(--tp-common-black);
  padding-left: 29px;
  padding-right: 29px;
  margin-bottom: 10px;
}

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

.sticky-1 {
  color: white;
  position: fixed;
  right: 0;
  top: 10%;
  background: #972524;
  padding: 10px;
  z-index: 99999;
  border-radius: 20px 0px 0px 20px;
  font-weight: bold;
}

.stickey-tag {
  color: white;
  position: fixed;
  right: 0;
  top: 45%;
  background: #972524;
  padding: 10px;
  z-index: 99999;
  border-radius: 20px 0px 0px 20px;
  font-weight: bold;
}

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

main {
  margin-top: -86px;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-20 {
    --bs-gutter-x: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-20 {
    --bs-gutter-x: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-20 {
    --bs-gutter-x: 10px;
  }
}

@media (max-width: 575px) {
  .tp-gx-20 {
    --bs-gutter-x: 10px;
  }

  .stickey-tag {
    font-size: 10px;
    color: white;
    position: fixed;
    right: 0;
    top: 30%;
    background: #972524;
    padding: 10px;
    z-index: 999;
    border-radius: 20px 0px 0px 20px;
    font-weight: bold;
  }

  .sticky-1 {
    font-size: 10px;
    color: white;
    position: fixed;
    right: 0;
    top: 15%;
    background: #972524;
    padding: 10px;
    z-index: 99;
    border-radius: 20px 0px 0px 20px;
    font-weight: bold;
  }
}


.tp-gx-20 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-30 {
    --bs-gutter-x: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-30 {
    --bs-gutter-x: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-30 {
    --bs-gutter-x: 15px;
  }
}

@media (max-width: 575px) {
  .tp-gx-30 {
    --bs-gutter-x: 10px;
  }

}

.tp-gx-30 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.tp-gx-36 {
  --bs-gutter-x: 36px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-36 {
    --bs-gutter-x: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-36 {
    --bs-gutter-x: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-36 {
    --bs-gutter-x: 15px;
  }
}

@media (max-width: 575px) {
  .tp-gx-36 {
    --bs-gutter-x: 10px;
  }
}

.tp-gx-36 [class*=col-] {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.mousemove {
  --x: 0;
  --y: 0;
  --d: 50;
}

.mousemove:hover .mousemove__image-wrapper {
  transform: scale(1.025) translate(calc(var(--x) / var(--d) * 1px), calc(var(--y) / var(--d) * 1px));
}

.mousemove__image {
  --d: 20;
  transform: translate(calc(var(--x) / var(--d) * 1px), calc(var(--y) / var(--d) * 1px));
}

.mousemove__content {
  --d: 60;
  transform: translate(calc(var(--x) / var(--d) * -1px), calc(var(--y) / var(--d) * -1px));
}

.mousemove__image-wrapper {
  height: 67%;
  -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 0.3s ease-out 0s;
  width: 50%;
}

.mousemove__image {
  --d: 20;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  -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 0.3s ease-out 0s;
  user-select: none;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.tp-box-plr {
  padding-left: 290px;
  padding-right: 290px;
}

.w-img img {
  width: 100%;
}

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.z-index-11 {
  z-index: 11;
}

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.demo {
  -webkit-transition: color 0.3s 0s linear;
  -moz-transition: color 0.3s 0s linear;
  -ms-transition: color 0.3s 0s linear;
  -o-transition: color 0.3s 0s linear;
  transition: color 0.3s 0s linear;
  -webkit-transition: color 0.3s linear, transform 0.2s ease;
  -moz-transition: color 0.3s linear, transform 0.2s ease;
  -ms-transition: color 0.3s linear, transform 0.2s ease;
  -o-transition: color 0.3s linear, transform 0.2s ease;
  transition: color 0.3s linear, transform 0.2s ease;
}

[dir=rtl] .demo {
  margin-left: 0;
  margin-right: 15px;
}

div.demo img {
  margin-left: 10px;
}

[tp-theme=tp-theme-dark] .demo {
  color: yellow;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--tp-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 0.5;
  visibility: visible;
}

/* dropcap */
.tp-dropcap::first-letter {
  font-size: 50px;
  font-weight: 700;
  float: left;
  text-align: center;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-right: 5px;
  line-height: inherit;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 100px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #e33d4f;
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--tp-common-white);
  border-radius: 50%;
}

.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*----------------------------------------*/
/*  2.2 Theme Settings
/*----------------------------------------*/
.tp-theme-settings-area {
  position: fixed;
  top: 50%;
  left: 0;
  width: 240px;
  background-color: #fff;
  border: 1px solid #EAEAEF;
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  z-index: 991;
  direction: ltr;
  border-bottom-right-radius: 4px;
}

.tp-theme-settings-area.settings-opened {
  -webkit-transform: translateY(-50%) translateX(0%);
  -moz-transform: translateY(-50%) translateX(0%);
  -ms-transform: translateY(-50%) translateX(0%);
  -o-transform: translateY(-50%) translateX(0%);
  transform: translateY(-50%) translateX(0%);
}

.tp-theme-settings-area.settings-opened .tp-theme-settings-gear {
  opacity: 0;
}

.tp-theme-settings-area.settings-opened .tp-theme-settings-close {
  opacity: 1;
}

.tp-theme-settings-open {
  position: absolute;
  top: -1px;
  left: 100%;
}

.tp-theme-settings-open button {
  background-color: var(--tp-common-white);
  border: 1px solid #EAEAEF;
  border-left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: var(--tp-common-black);
  position: relative;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.tp-theme-settings-gear {
  display: inline-block;
  -webkit-animation: tp-theme-setting-spin 4s linear infinite;
  -moz-animation: tp-theme-setting-spin 4s linear infinite;
  -ms-animation: tp-theme-setting-spin 4s linear infinite;
  -o-animation: tp-theme-setting-spin 4s linear infinite;
  animation: tp-theme-setting-spin 4s linear infinite;
}

@-webkit-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes tp-theme-setting-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.tp-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.tp-theme-header-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tp-theme-wrapper {
  padding: 20px 30px 30px;
}

.tp-theme-toggle {
  text-align: center;
}

.tp-theme-toggle-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}

.tp-theme-toggle-light,
.tp-theme-toggle-dark {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}

.tp-theme-toggle input {
  display: none;
}

.tp-theme-toggle:hover {
  cursor: pointer;
}

.tp-theme-toggle label {
  color: var(--tp-common-black);
  font-size: 14px;
  font-weight: 500;
}

.tp-theme-toggle label:hover {
  cursor: pointer;
}

.tp-theme-toggle #tp-theme-toggler {
  display: none;
}

.tp-theme-toggle #tp-theme-toggler:checked+i {
  right: calc(50% - 4px);
}

.tp-theme-toggle-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.tp-theme-dir {
  text-align: center;
}

.tp-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}

.tp-theme-dir-ltr,
.tp-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}

.tp-theme-dir input {
  display: none;
}

.tp-theme-dir:hover {
  cursor: pointer;
}

.tp-theme-dir label {
  color: var(--tp-common-black);
  font-size: 14px;
  font-weight: 500;
}

.tp-theme-dir label:hover {
  cursor: pointer;
}

.tp-theme-dir #tp-dir-toggler {
  display: none;
}

.tp-theme-dir #tp-dir-toggler:checked+i {
  right: calc(50% - 4px);
}

.tp-theme-dir-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -ms-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.2s 0s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.tp-theme-color-item.active button::before {
  opacity: 1;
  visibility: visible;
}

.tp-theme-color-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}

.tp-theme-color-btn::before {
  position: absolute;
  content: "\f00c";
  font-weight: 600;
  font-family: var(--tp-ff-fontawesome);
  color: var(--tp-common-white);
  font-size: 15px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  opacity: 0;
  visibility: hidden;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#F50963"] {
  background-color: #F50963;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#008080"] {
  background-color: #008080;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#F31E5E"] {
  background-color: #F31E5E;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#AB6C56"] {
  background-color: #AB6C56;
  color: black;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#4353FF"] {
  background-color: #4353FF;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#3661FC"] {
  background-color: #3661FC;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#2CAE76"] {
  background-color: #2CAE76;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#FF5A1B"] {
  background-color: #FF5A1B;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#03041C"] {
  background-color: #03041C;
}

.tp-theme-color-btn.tp-color-settings-btn[data-color="#ED212C"] {
  background-color: #ED212C;
}

.tp-theme-color-input {
  margin-top: 15px;
}

.tp-theme-color-input h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.tp-theme-color-input label {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--tp-theme-1);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-theme-color-input label:hover {
  cursor: pointer;
}

.tp-theme-color-input input {
  display: none;
}

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
/* theme btn */
.tp-btn {
  position: relative;
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: #000;
  text-align: center;
  padding: 11px 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 #dd1002;
  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;
}

.tp-btn-2 span::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-2 span:hover {
  color: #fff;
}

.tp-btn-2 span:hover::before {
  transform: translateX(0);
}

.tp-btn-2 i,
.tp-btn-2 svg {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}

.tp-btn-2:focus {
  color: var(--tp-common-white);
}

.tp-btn-effect-blue a,
.tp-btn-effect-blue button {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  padding: 25px 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: -2px;
  transition: all 0.3s ease-in-out;
}

.tp-btn-effect-blue a::before,
.tp-btn-effect-blue button::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #000000;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.tp-btn-effect-blue a:hover,
.tp-btn-effect-blue button:hover {
  color: var(--tp-text-2);
}

.tp-btn-effect-blue a:hover::before,
.tp-btn-effect-blue button:hover::before {
  transform: translateX(0);
}

.tp-btn-effect-blue i,
.tp-btn-effect-blue svg {
  margin-right: 0px;
  display: flex;
  justify-content: center;
  line-height: 0px;
}

.tp-btn-effect-blue svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.tp-btn-effect a,
.tp-btn-effect button {
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  padding: 25px 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-right: -2px;
  transition: all 0.3s ease-in-out;
}

.tp-btn-effect a::before,
.tp-btn-effect button::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--tp-theme-secondary);
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.tp-btn-effect a:hover,
.tp-btn-effect button:hover {
  color: var(--tp-text-2);
}

.tp-btn-effect a:hover::before,
.tp-btn-effect button:hover::before {
  transform: translateX(0);
}

.tp-btn-effect i,
.tp-btn-effect svg {
  margin-right: 0px;
  display: flex;
  justify-content: center;
  line-height: 0px;
}

.tp-btn-effect svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* offcanvas btn */
.tp-btn-offcanvas {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  text-align: center;
  font-family: var(--tp-ff-space);
  padding: 9px 22px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}

.tp-btn-offcanvas i {
  padding-left: 5px;
}

.tp-btn-offcanvas:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes soft-move-y {
  0% {
    transform: translateX(3px);
  }

  25% {
    transform: translateX(7px);
  }

  50% {
    transform: translateX(15px);
  }

  75% {
    transform: translateX(7px);
  }

  100% {
    transform: translateX(2px);
  }
}

@keyframes tp-line-dash {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes hero-round {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes arrow-round {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

@keyframes tprotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/* 04. ========= btn-arrow-animation ========== */
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }

  50% {
    opacity: 0;
    transform: translateX(-30%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes lara {
  0% {
    transform: translateX(-50%) translateY(-1px);
  }

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

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

  75% {
    transform: translateX(-50%) translateY(-5px);
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes section_stroke {
  0% {
    stroke-dashoffset: 560;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -560;
  }
}

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }

  100% {
    margin-top: 0;
  }
}

@-moz-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-ms-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@-webkit-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

@keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -150px;
  }
}

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25%;
  transform: translate(-50%, -50%);
}

.loading-infinity {
  width: 120px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loading-infinity div,
.loading-infinity span {
  position: absolute;
}

.loading-infinity div {
  top: 0;
  left: 50%;
  width: 70px;
  height: 70px;
  animation: ctLoadingrotate 6.9s linear infinite;
}

.loading-infinity div span {
  left: -10px;
  top: 50%;
  margin: -10px 0 0;
  width: 20px;
  height: 20px;
  display: block;
  background: #FFC700;
  box-shadow: 2px 2px 8px rgba(0, 124, 251, 0.09);
  border-radius: 50%;
  transform: rotate(90deg);
  animation: ctLoadingmove 6.9s linear infinite;
}

.loading-infinity div span:before,
.loading-infinity div span:after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: inherit;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  box-shadow: inherit;
}

.loading-infinity div span:before {
  animation: ctLoadingdrop1 0.8s linear infinite;
}

.loading-infinity div span:after {
  animation: ctLoadingdrop2 0.8s linear infinite 0.4s;
}

.loading-infinity div:nth-child(2) {
  animation-delay: -2.3s;
}

.loading-infinity div:nth-child(2) span {
  animation-delay: -2.3s;
}

.loading-infinity div:nth-child(3) {
  animation-delay: -4.6s;
}

.loading-infinity div:nth-child(3) span {
  animation-delay: -4.6s;
}

@keyframes ctLoadingrotate {
  50% {
    transform: rotate(360deg);
    margin-left: 0;
  }

  50.0001%,
  100% {
    margin-left: -70px;
  }
}

@keyframes ctLoadingmove {

  0%,
  50% {
    left: -10px;
  }

  25% {
    background: var(--secondary-color);
  }

  75% {
    background: #2144D8;
  }

  50.0001%,
  100% {
    left: auto;
    right: -10px;
  }
}

@keyframes ctLoadingdrop1 {
  100% {
    transform: translate(32px, 10px) scale(0);
  }
}

@keyframes ctLoadingdrop2 {
  0% {
    transform: translate(0, 0) scale(0.9);
  }

  100% {
    transform: translate(32px, -10px) scale(0);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #loading-center-absolute {
    width: 40%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #loading-center-absolute {
    width: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #loading-center-absolute {
    width: 45%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  #loading-center-absolute {
    width: 50%;
  }
}

@media (max-width: 575px) {
  #loading-center-absolute {
    width: 60%;
  }
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.object {
  width: 20px;
  height: 20px;
  background-color: #FFC700;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin-right: 20px;
  margin-bottom: 20px;
  position: absolute;
}

#object_one {
  -webkit-animation: object 2s linear infinite;
  animation: object 2s linear infinite;
}

#object_two {
  -webkit-animation: object 2s linear infinite -0.4s;
  animation: object 2s linear infinite -0.4s;
}

#object_three {
  -webkit-animation: object 2s linear infinite -0.8s;
  animation: object 2s linear infinite -0.8s;
}

#object_four {
  -webkit-animation: object 2s linear infinite -1.2s;
  animation: object 2s linear infinite -1.2s;
}

#object_five {
  -webkit-animation: object 2s linear infinite -1.6s;
  animation: object 2s linear infinite -1.6s;
}

@-webkit-keyframes object {
  0% {
    left: 100px;
    top: 0;
  }

  80% {
    left: 0;
    top: 0;
  }

  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }

  90% {
    width: 40px;
    height: 15px;
  }

  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 100px;
    top: 0;
  }
}

@keyframes object {
  0% {
    left: 100px;
    top: 0;
  }

  80% {
    left: 0;
    top: 0;
  }

  85% {
    left: 0;
    top: -20px;
    width: 20px;
    height: 20px;
  }

  90% {
    width: 40px;
    height: 15px;
  }

  95% {
    left: 100px;
    top: -20px;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 100px;
    top: 0;
  }
}

.loading-icon .loading-logo {
  width: 64px;
  height: 64px;
  -webkit-animation: ghurche 4s linear infinite -1.2s;
  animation: ghurche 4s linear infinite -1.2s;
}

@media (max-width: 575px) {
  .loading-icon .loading-logo {
    margin-bottom: 10px;
  }
}

@-webkit-keyframes ghurche {
  0% {
    left: 100px;
    top: 0;
  }

  100% {
    left: 100px;
    top: 0;
  }
}

@keyframes ghurche {
  0% {
    transform: rotate(0deg);
  }

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

/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/
.grey-bg {
  background: var(--tp-grey-1);
}

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

.grey-bg-3 {
  background: transparent;
}

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

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

/*----------------------------------------*/
/*  2.7 Carousel
/*----------------------------------------*/
/* tp range slider css */
.tp-range-slider .inside-slider {
  padding-left: 7px;
  padding-right: 17px;
}

.tp-range-slider .noUi-target {
  background-color: #191C3C;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
}

.tp-range-slider .noUi-connect {
  background-color: var(--tp-theme-primary);
}

.tp-range-slider .noUi-horizontal {
  height: 6px;
}

.tp-range-slider .noUi-handle {
  height: 24px;
  width: 24px;
  background-color: var(--tp-theme-primary);
  border-radius: 50%;
  border: 4px solid var(--tp-common-white);
  box-shadow: 0px 4px 10px rgba(5, 9, 43, 0.3);
  top: -9px;
}

.tp-range-slider .noUi-handle:hover {
  cursor: pointer;
}

.tp-range-slider .noUi-handle::before,
.tp-range-slider .noUi-handle::after {
  display: none;
}

.tp-range-slider-dark .noUi-handle {
  border: 4px solid #2D314B;
}

/* tp swiper slider dot */
.tp-swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--tp-grey-1);
  opacity: 1;
  margin: 0 9px;
  position: relative;
}

.tp-swiper-dot .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.tp-swiper-dot .swiper-pagination-bullet button {
  font-size: 0;
}

.tp-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tp-theme-primary);
}

.tp-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: var(--tp-theme-primary);
  transform: translate(-50%, -50%) scale(1);
}

.tp-swiper-arrow {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  text-align: center;
  background-color: var(--tp-common-white);
  color: var(--tp-common-black);
}

.tp-swiper-arrow:hover {
  background-color: var(--tp-common-black);
  color: var(--tp-common-white);
}

/* tp slick arrow */
/*----------------------------------------*/
/*  2.8 Nice Select
/*----------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 10px;
}

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

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

.nice-select::after {
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 30px;
  content: "\f107";
  font-family: var(--tp-ff-fontawesome);
  transform-origin: center;
  color: var(--tp-common-black);
  font-weight: 500;
  height: auto;
  width: auto;
  transition: all 0.3s ease-in-out;
}

.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------*/
/*  2.9 Pagination
/*----------------------------------------*/
.tp-pagination ul li {
  display: inline-block;
}

.tp-pagination ul li:not(:last-child) {
  margin-right: 10px;
}

.tp-pagination ul li a,
.tp-pagination ul li span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
}

.tp-pagination ul li a:hover,
.tp-pagination ul li a.current,
.tp-pagination ul li span:hover,
.tp-pagination ul li span.current {
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.10 Offcanvas
/*----------------------------------------*/
.offcanvas__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 360px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--tp-common-white) none repeat scroll 0 0;
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -ms-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -o-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.offcanvas__area.offcanvas-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .offcanvas__top {
    margin-bottom: 30px;
  }
}

.offcanvas__wrapper {
  position: relative;
  padding: 50px 40px 145px;
  z-index: 1;
  min-height: 100%;
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.offcanvas__close {
  position: absolute;
  top: 30px;
  right: 30px;
}

@media (max-width: 575px) {
  .offcanvas__close {
    right: 20px;
    top: 20px;
  }
}

.offcanvas__close-btn {
  display: inline-block;
  font-size: 15px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  border: 2px solid var(--tp-border-primary);
  background-color: transparent;
  color: var(--tp-text-1);
  border-radius: 50%;
}

.offcanvas__close-btn:hover {
  background-color: var(--tp-theme-primary);
  border-color: transparent;
  color: var(--tp-common-white);
}

.offcanvas__close-btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.offcanvas__inner h4 {
  font-family: var(--tp-ff-space);
  font-size: 24px;
  color: var(--tp-common-white);
  line-height: 1.3;
  margin-bottom: 15px;
}

.offcanvas__inner p {
  font-family: var(--tp-ff-inter);
  font-size: 15px;
  line-height: 22px;
  color: var(--tp-common-white);
  margin-bottom: 30px;
}

.offcanvas__inner>img {
  margin-bottom: 30px;
}

.offcanvas__menu ul li {
  list-style: none;
  margin-bottom: 10px;
}

.offcanvas__menu ul li:last-child {
  margin-bottom: 0;
}

.offcanvas__menu ul li a {
  font-weight: 700;
  font-size: 20px;
  color: var(--tp-common-black);
}

.offcanvas__menu ul li:hover>a {
  color: var(--tp-theme-primary);
}

.offcanvas__text p {
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--tp-common-black-4);
  margin-bottom: 25px;
}

.offcanvas__contact-call {
  font-family: var(--tp-ff-space);
  font-weight: 700;
  font-size: 20px;
  color: var(--tp-common-black);
  margin-bottom: 5px;
}

.offcanvas__contact-call a:hover {
  color: var(--tp-theme-primary);
}

.offcanvas__contact-mail {
  font-family: var(--tp-ff-space);
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-text-1);
}

.offcanvas__contact-mail a:hover {
  color: var(--tp-theme-primary);
}

.offcanvas__social {
  margin-bottom: 22px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--tp-border-primary);
}

.offcanvas__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: transparent;
  color: var(--tp-common-black);
  margin-right: 5px;
  border: 2px solid var(--tp-border-primary);
}

.offcanvas__social a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-primary);
}

.offcanvas__btn {
  margin-bottom: 125px;
}

.offcanvas__btn a {
  margin-bottom: 20px;
}

.offcanvas__info-item {
  margin-bottom: 38px;
}

.offcanvas__info-item-title {
  font-family: var(--tp-ff-space);
  font-weight: 700;
  font-size: 18px;
  color: var(--tp-common-white);
  margin-bottom: 12px;
}

.offcanvas__info-item p {
  font-size: 15px;
  color: var(--tp-text-16);
  margin-bottom: 0;
  line-height: 22px;
}

.offcanvas__info-item p a:hover {
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  2.11 Breadcrumb
/*----------------------------------------*/
.breadcrumb__title {
  font-size: 36px;
  color: #fff;
  padding-top: 56px;

}

@media (max-width: 575px) {
  h2 {
    font-size: 26px;
  }

  .pe-5 {
    padding-right: 0rem !important
  }

  .breadcrumb__title {
    padding-top: 0px;
  }

  .breadcrumb__title {
    font-size: 22px;
  }
}

.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: #000;
  padding: 9px 23px;
  display: inline-block;
  margin-bottom: 22px;
}

.breadcrumb__list::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: #eb0117;
}

.breadcrumb__list span {
  font-size: 15px;
  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: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.breadcrumb__list .dvdr {
  font-size: 10px;
}

.breadcrumb-style {
  padding: 110px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position-y: top;
}

.breadcrumb-style .breadcrumb__list span {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  color: var(--tp-common-white);
}

.breadcrumb__bg-overlay::after {
  content: "";
  background:
    position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: -1;
}

.breadcrumb-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.breadcrumb-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

/*----------------------------------------*/
/*  2.12 Accordion
/*----------------------------------------*/
.tp-accordion .accordion-item {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(var(--tp-common-black), 1);
}

.tp-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tp-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tp-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tp-accordion .accordion-button {
  padding: 30px 0;
  padding-right: 15px;
  font-size: 24px;
  font-weight: 500;
  color: var(--tp-common-black);
  background-color: transparent;
  /* plus icon css */
}

.tp-accordion .accordion-button::after {
  position: absolute;
  content: "\f106";
  font-family: var(--tp-ff-fontawesome);
  background-image: none;
  top: 28%;
  right: 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--tp-theme-primary);
  width: auto;
  height: auto;
  font-weight: 500;
  background: none;
}

.tp-accordion .accordion-button.has-plus-icon::after {
  display: none;
}

.tp-accordion .accordion-button .tp-accordion-plus {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
}

[dir=rtl] .tp-accordion .accordion-button .tp-accordion-plus {
  right: auto;
  left: 0;
}

.tp-accordion .accordion-button .tp-accordion-plus::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #525258;
  border-radius: 2px;
}

[dir=rtl] .tp-accordion .accordion-button .tp-accordion-plus::after {
  right: 0;
  left: auto;
}

.tp-accordion .accordion-button .tp-accordion-plus::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #525258;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 2px;
}

[dir=rtl] .tp-accordion .accordion-button .tp-accordion-plus::before {
  right: 50%;
  left: auto;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}

.tp-accordion .accordion-button.collapsed::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  color: var(--tp-common-black);
}

.tp-accordion .accordion-button:not(.collapsed) {
  color: var(--tp-theme-primary);
  background-color: transparent;
  box-shadow: none;
}

.tp-accordion .accordion-button:not(.collapsed) .tp-accordion-plus::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  background-color: var(--tp-theme-1);
}

[dir=rtl] .tp-accordion .accordion-button:not(.collapsed) .tp-accordion-plus::before {
  -webkit-transform: translateX(50%) rotate(90deg);
  -moz-transform: translateX(50%) rotate(90deg);
  -ms-transform: translateX(50%) rotate(90deg);
  -o-transform: translateX(50%) rotate(90deg);
  transform: translateX(50%) rotate(90deg);
}

.tp-accordion .accordion-button:not(.collapsed) .tp-accordion-plus::after {
  background-color: var(--tp-theme-1);
}

.tp-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
}

.tp-accordion .accordion-button:hover {
  color: var(--tp-theme-primary);
}

.tp-accordion .accordion-button:hover::after {
  color: var(--tp-theme-primary);
}

.tp-accordion .accordion-body {
  padding: 0 0 25px;
}

.tp-accordion .accordion-body p {
  font-size: 15px;
  color: var(--tp-text-1);
}

/*----------------------------------------*/
/*  2.13 Tab
/*----------------------------------------*/
.tp-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}

.tp-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
}

/*----------------------------------------*/
/*  2.14 Modal
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section__title {
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section__title {
    font-size: 38px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section__title {
    font-size: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section__title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-style {
    background-size: cover;
  }

  .tp-section__title {
    font-size: 22px;
  }

  .breadcrumb-style {
    padding: 60px 0px;
  }
}

.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: #000;
  padding: 9px 22px;
  display: inline-block;
  margin-bottom: 22px;
}

.tp-section__title-pre::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: #dd1002;
}

.tp-section__title-pre-2 {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-text-2);
  background: linear-gradient(90deg, #FFC700 0%, rgba(255, 255, 255, 0) 100%);
  padding: 9px 22px;
  display: inline-block;
  margin-bottom: 22px;
}

.tp-section__title-pre-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10px;
  background: var(--tp-theme-primary);
}

.tp-inner-pre span {
  position: relative;
  font-size: 30px;
  height: 60px;
  width: 60px;
  background: var(--tp-common-white);
  box-shadow: 0px 7px 14px rgba(33, 68, 216, 0.13);
  color: var(--tp-theme-primary);
  border-radius: 50%;
  display: inline-block;
  line-height: 64px;
  text-align: center;
  margin-bottom: 25px;
}

.tp-inner-pre span::before {
  position: absolute;
  content: "";
  border: 2px dashed var(--tp-theme-primary);
  opacity: 0.3;
  height: 74px;
  width: 74px;
  border-radius: 50%;
  top: -7px;
  left: -7px;
  animation: tprotate 5s ease-in-out 3s forwards infinite alternate;
}

.tp-header-logo img {
  width: 100%;
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-header-space {
  padding-left: 242px;
  padding-right: 242px;
}

@media only screen and (min-width: 1801px) and (max-width: 1900px) {
  .tp-header-space {
    padding-left: 200px;
    padding-right: 200px;
  }
}

@media only screen and (min-width: 1701px) and (max-width: 1800px) {
  .tp-header-space {
    padding-left: 157px;
    padding-right: 157px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-space {
    padding-left: 110px;
    padding-right: 100px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-space {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-space {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-header-space {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-space {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.tp-header-shape .shape-1 {
  position: absolute;
  right: 67px;
  left: auto;
  top: -15px;
  animation: soft-move-y 2s infinite linear;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-shape .shape-1 {
    right: 25px;
  }
}

.tp-header-shape .shape-2 {
  position: absolute;
  right: 67px;
  left: auto;
  top: -15px;
  animation: soft-move-y 3s infinite linear;
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-header-shape .shape-2 {
    right: 25px;
  }
}

.tp-header-top {
  background-color: transparent;
  padding-top: 8px;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 8px;
}

.tp-header-top-info ul li {
  list-style: none;
  display: inline-block;
  padding-right: 40px;
  margin-left: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-top-info ul li {
    padding-right: 7px;
    margin-left: 5px;
  }
}

.tp-header-top-info ul li a {
  font-weight: 500;
  font-size: 15px;
  color: #000;
}

.tp-header-top-info ul li a span {
  color: #000;
  display: inline-block;
  margin-right: 7px;
  transform: translateY(2px);
}

.tp-header-top-social span {
  font-weight: 500;
  font-size: 15px;
  color: #909BAE;
}

.tp-header-top-social a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-text-1);
  margin-left: 20px;
  transition: all 0.3s ease;
}

.tp-header-top-social a:hover {
  color: var(--tp-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-logo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.tp-header-bottom {
  z-index: 5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-right {
    justify-content: end;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-market {
    margin-right: 20px;
  }
}

.tp-header-market a {
  font-size: 28px;
  text-align: center;
  color: var(--tp-theme-primary);
  background: var(--tp-theme-1);
  height: 62px;
  width: 62px;
  line-height: 2.6;
  display: inline-block;
}

.tp-header-market span {
  position: absolute;
  font-weight: 500;
  font-size: 10px;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  height: 19px;
  width: 19px;
  border-radius: 50%;
  display: inline-block;
  top: 10px;
  right: 10px;
  line-height: 19px;
}

.tp-header-color {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0%;
  background-color: transparent;
  bottom: 0px;
  top: 0;
  z-index: -1;
  transform-origin: right center;
}

.header__sticky.tp-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  z-index: 99;
  transition: 0.3s ease;
  background: #fff;
}

.header__sticky.tp-header-sticky .tp-header-shape .shape-1 {
  top: 10px;
}

.header__sticky.tp-header-sticky .tp-header-shape .shape-2 {
  top: 10px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-height {
    height: inherit !important;
  }
}

.tp-side-action {
  transform: translateY(-20%);
}

.tp-side-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: var(--tp-common-white);
  box-shadow: -15px 31px 55px rgba(0, 2, 11, 0.31);
  padding: 40px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  transform: translateX(720px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-side-info {
    width: 400px;
    padding: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-side-info {
    width: 445px;
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .tp-side-info {
    width: 100%;
    padding: 15px;
  }
}

.tp-side-info.tp-side-info-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tp-side-logo {
  margin-bottom: 15px;
  position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-side-logo {
    margin-bottom: 30px;
  }
}

.tp-side-logo img {
  max-width: 160px;
}

.tp-side-close button i {
  position: absolute;
  top: 50px;
  right: 40px;
  font-size: 30px;
  color: #575757;
  display: inline-block;
  transition: 0.3s ease;
}

.tp-side-close button:hover i {
  transform: rotate(90deg);
}

.tp-sidebar__contact-icon a i {
  color: var(--tp-body-2);
  transition: all 0.3s ease-in-out;
}

.tp-sidebar__contact-icon:hover a {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}

.tp-sidebar__contact-icon:hover a i {
  color: var(--tp-common-white);
}

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

.tp-sidebar__contact-text a i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #dedede;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 0;
  margin-bottom: 10px;
  margin-top: 8px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.tp-sidebar__contact-text:hover a {
  color: var(--tp-theme-primary);
}

.tp-sidebar__contact-text:hover a i {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}

.tp-sidebar-title {
  color: var(--tp-text-2);
  font-size: 22px;
  margin-bottom: 20px;
}

.tp-sidebar-icons {
  margin-top: 30px;
}

.tp-sidebar-icons a {
  height: 48px;
  width: 48px;
  background-color: #EEF1FD;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  color: var(--tp-text-2);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.tp-sidebar-icons a i {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .tp-sidebar-icons a {
    margin-left: 5px;
    margin-right: 0;
    display: none;
  }
}

.tp-sidebar-icons a:hover {
  background-color: var(--tp-theme-primary);
}

.tp-sidebar-icons a:hover i {
  color: var(--tp-common-white);
}

.hamburger-btn {
  width: 34px;
  height: 24px;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
  text-align: end;
}

.hamburger-btn span {
  display: inline-block;
  position: absolute;
  left: 0;
  background: #000;
  height: 2px;
  width: 25px;
  opacity: 1;
  z-index: 1;
  border-radius: 10px;
  transition: 0.3s ease;
}

.hamburger-btn span:nth-child(1) {
  top: 0;
}

.hamburger-btn span:nth-child(2) {
  top: 10px;
  width: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hamburger-btn span:nth-child(3) {
  top: 20px;
  right: 0;
  left: auto;
}

.hamburger-btn:hover span:nth-child(1) {
  left: 10px;
}

.hamburger-btn:hover span:nth-child(3) {
  right: 10px;
}

.hamburger-btn-black {
  height: 15px;
  width: 30px;
  top: -4px;
}

.hamburger-btn-black span {
  background-color: var(--tp-common-black);
}

.hamburger-btn-black span:nth-child(1) {
  top: 0;
}

.hamburger-btn-black span:nth-child(2) {
  top: 7px;
}

.hamburger-btn-black span:nth-child(3) {
  top: 14px;
}

.hamburger-btn-black:hover span {
  background-color: var(--tp-theme-secondary);
}

.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--tp-common-black);
  z-index: 110;
  opacity: 0.7;
  top: 0;
  left: 0;
  transition: 0.8s;
  opacity: 0;
  visibility: hidden;
}

.offcanvas-overlay.offcanvas-overlay-open {
  opacity: 0.9;
  visibility: visible;
}

/*----------------------------------------*/
/*  3.2 Header Style 2
/*----------------------------------------*/
.tp-header-2-top-info {
  position: relative;
  z-index: 2;
  background-color: var(--tp-theme-primary);
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.tp-header-2-top-info ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 11px;
}

.tp-header-2-top-info ul li:not(:last-of-type)::after {
  content: "";
  border-right: 1px solid var(--tp-common-white);
  opacity: 0.21;
  position: absolute;
  height: 24px;
  right: -40px;
  top: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2-top-info ul li:not(:last-of-type)::after {
    right: -25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-2-top-info ul li:not(:last-of-type)::after {
    right: -30px;
  }
}

.tp-header-2-top-info ul li a {
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-common-white);
}

.tp-header-2-top-info ul li a span {
  color: var(--tp-theme-secondary);
  display: inline-block;
  margin-right: 10px;
  transform: translateY(2px);
}

.tp-header-2-top-ml-60 {
  margin-left: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2-top-ml-60 {
    margin-left: 42px;
  }
}

.tp-header-2-top-ml-80 {
  margin-left: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2-top-ml-80 {
    margin-left: 42px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-header-2-top-ml-80 {
    margin-left: 48px;
  }
}

.tp-header-2-space {
  padding-left: 299px;
  padding-right: 299px;
}

.tp-header-2-right {
  padding-left: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-2-right {
    padding-left: 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-header-2-bottom {
    background: #f4f6fd;
  }
}

.tp-header-2-area .tp-header-2-bottom.header__sticky.tp-header-sticky {
  background: #f4f6fd;
}

.header-bg-shape::after {
  position: absolute;
  content: "";
  top: -15px;
  left: -60px;
  background: #F4F6FD;
  width: 111%;
  height: 114%;
  z-index: -1;
  clip-path: polygon(40px 0px, 96% 0px, 100% 100%, 0px 100%);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .header-bg-shape::after {
    width: 110%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-bg-shape::after {
    left: -42px;
    width: 108%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-bg-shape::after {
    left: -35px;
    width: 105%;
  }
}

@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) {
  .header-bg-shape::after {
    display: none;
  }
}

/*----------------------------------------*/
/*  3.3 Header Style 3
/*----------------------------------------*/
.tp-header-3-top {
  padding-top: 6px;
  padding-bottom: 5px;
  background-color: var(--tp-theme-primary);
}

.tp-header-3-top-info ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-left: 62px;
}

.tp-header-3-top-info ul li:not(:last-of-type)::after {
  content: "";
  border-right: 1px solid #C9C9C9;
  opacity: 0.21;
  position: absolute;
  height: 24px;
  right: -35px;
  top: 2px;
}

.tp-header-3-top-info ul li a {
  font-weight: 400;
  font-size: 15px;
  color: #CDD2E8;
}

.tp-header-3-top-info ul li a span {
  color: var(--tp-common-white);
  display: inline-block;
  margin-right: 7px;
  transform: translateY(2px);
}

.tp-header-3-top-info-text {
  padding-left: 30px;
}

.tp-header-3-top-info-text p {
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  color: var(--tp-common-white);
}

.tp-header-3-top-info-text p span {
  font-weight: 600;
  margin-left: 5px;
  color: var(--tp-theme-secondary);
}

.tp-header-3-top-info-text p span i {
  margin-left: 5px;
}

.tp-header-3-top-info-text p span a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}

.tp-header-3-bottom {
  background: var(--tp-common-white);
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-3-bottom {
    background: var(--tp-common-white);
  }
}

.tp-header-3-color::before {
  position: absolute;
  top: 0;
  left: 29%;
  content: "";
  background: #E7EAF5;
  height: 100%;
  width: 50%;
  z-index: -1;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-header-3-color::before {
    left: 25%;
    width: 65%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-header-3-color::before {
    left: 24%;
    width: 56%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-header-3-color::before {
    display: none;
  }
}

.tp-header-3-right {
  padding-left: 97px;
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-main-menu {
    margin-left: 50px;
  }
}

.tp-main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  transition: none;
}

.tp-main-menu ul li:not(:last-of-type) {
  margin-right: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li:not(:last-of-type) {
    margin-right: 8px;
  }
}

.tp-main-menu ul li a {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  padding: 40px 0;
}

.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.77);
  z-index: 9999;
  margin: auto 0;
}

.popup-inner {
  max-width: 1000px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px rgb(0 0 0);
  border-radius: 3px;
}

.popup-close {
  width: 30px;
  height: 30px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.8);
  font-family: Arial, Sans-Serif;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu ul li a {
    padding: 25px 0;
  }
}

.tp-main-menu ul li.has-dropdown>a {
  position: relative;
}

.tp-main-menu ul li.has-dropdown>a::after {
  content: "\f107";
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 14px;
  color: #000;
  font-family: FontAwesome;
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
}

.tp-main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 240px;
  background: #fff;
  padding: 10px 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
}

.tp-main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 15px;
}

.tp-main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.tp-main-menu ul li .submenu li:last-child a {
  border-bottom: 0;
}

.tp-main-menu ul li .submenu li a {
  position: relative;
  padding: 6px 0px;
  font-size: 14px;
  color: #000 !important;
  width: 100%;
  z-index: 1;
  line-height: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tp-main-menu ul li .submenu li a span {
  transition: all 0.3s ease-in-out;
}

.tp-main-menu ul li .submenu li a::before {
  position: absolute;
  content: "";
  top: 52%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  height: 2px;
  width: 0;
  background: var(--tp-common-black);
  transition: all 0.3s ease-in-out;
}

.tp-main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.tp-main-menu ul li .submenu li:hover>a {
  color: var(--tp-common-black);
}

.tp-main-menu ul li .submenu li:hover>a span {
  margin-left: 0px;
}

.tp-main-menu ul li .submenu li:hover>a::after {
  color: var(--tp-common-white);
}


.tp-main-menu ul li:hover>a {
  color: #f5a600;
}

.tp-main-menu ul li:hover>a::after {
  color: var(--tp-theme-primary);
}

.tp-main-menu ul li:hover .submenu {
  top: 100%;
  visibility: visible;
  opacity: 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) {
  .tp-main-menu-2-area {
    padding-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-main-menu-3-area {
    justify-content: space-between;
  }
}

.tp-main-menu-3-area .tp-main-menu ul li a {
  padding: 32px 0;
}

/*----------------------------------------*/
/*  4.2 Meanmenu css
/*----------------------------------------*/
.mean-remove {
  display: none !important;
}

.mean-container {
  margin-bottom: 40px;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
}

.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li.dropdown-opened>a,
.mean-container .mean-nav ul li.dropdown-opened>span {
  color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked,
.mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked {
  background: var(--tp-theme-1);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-1);
}

.mean-container .mean-nav ul li.dropdown-opened>a.mean-expand.mean-clicked i,
.mean-container .mean-nav ul li.dropdown-opened>span.mean-expand.mean-clicked i {
  color: var(--tp-common-black);
}

.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  color: #fff;
  border-top: 1px solid #e0e3ed;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  padding: 10px 0;
  color: #4a4a4a;
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

[dir=rtl] .mean-container .mean-nav ul li a {
  float: right;
  text-align: right;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--tp-theme-primary);
}

.mean-container .mean-nav ul li a:hover i {
  color: var(--tp-common-white);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 32px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  border: none !important;
  font-size: 14px;
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #4a4a4a;
  line-height: 30px;
  top: 0;
  font-weight: 400;
}

[dir=rtl] .mean-container .mean-nav ul li a.mean-expand {
  right: auto;
  left: 0;
  text-align: center;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border-color: var(--tp-theme-primary) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover i {
  color: var(--tp-common-black);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover {
  border-color: var(--tp-theme-primary);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i {
  color: var(--tp-common-white);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--tp-common-black);
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 10px 5%;
  text-shadow: none !important;
  visibility: visible;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 10px 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 10px 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 10px 25%;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
  margin-bottom: 50px;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/
/*----------------------------------------*/
/*  5.2 Recent Post css
/*----------------------------------------*/
/*----------------------------------------*/
/*  5.3 Sidebar css
/*----------------------------------------*/
.tp-blog-sidebar__widget {
  background: #f4f6fd;
  padding: 32px 30px 20px 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-sidebar__widget {
    padding: 30px 20px 20px 20px;
  }
}

@media (max-width: 575px) {
  .tp-blog-sidebar__widget {
    padding: 32px 15px 20px 15px;
  }
}

.tp-blog-sidebar__widget-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 30px;
}

.side__tagcloud a {
  background: var(--tp-common-white);
  padding: 2px 22px;
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  color: #6A6D7A;
  transition: all 0.3s ease-in-out;
}

.side__tagcloud a:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.rc__post {
  margin-bottom: 30px;
}

.rc__post-title {
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rc__post-title br {
    display: none;
  }
}

.rc__post-title:hover {
  color: var(--tp-theme-primary);
}

.rc__post span {
  font-weight: 400;
  font-size: 15px;
  color: #6A6D7A;
}

.rc__post span i {
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: var(--tp-theme-primary);
  margin-right: 10px;
}

.rc__post-thumb img {
  margin-right: 25px;
}

.tp-blog-breadcrumb-thumb img {
  max-width: 100%;
}

.tp-blog-breadcrumb-thumb span {
  position: absolute;
  bottom: -22px;
  left: 48px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-breadcrumb-thumb span {
    left: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-breadcrumb-thumb span {
    left: 30px;
  }
}

@media (max-width: 575px) {
  .tp-blog-breadcrumb-thumb span {
    left: 15px;
  }
}

.tp-blog-breadcrumb-inner-content {
  background: linear-gradient(180deg, #F1F4FF 0%, rgba(244, 246, 253, 0) 100%);
  padding: 30px 15px 0px 47px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-breadcrumb-inner-content {
    padding: 30px 15px 0px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-breadcrumb-inner-content {
    padding: 30px 15px 0px 30px;
  }
}

@media (max-width: 575px) {
  .tp-blog-breadcrumb-inner-content {
    padding: 25px 15px 0px 15px;
  }
}

.tp-blog-breadcrumb-inner-content .tp-blog-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 12px;
}

.tp-blog-breadcrumb-inner-content .tp-blog-title:hover {
  color: var(--tp-theme-primary);
}

.tp-blog-breadcrumb-inner-content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  margin-bottom: 32px;
}

.blog-pagination ul li a:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}

.blog-pagination .page-link {
  position: relative;
  background: #F4F6FD;
  height: 49px;
  width: 49px;
  line-height: 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #6A6D7A;
  display: block;
  text-align: center;
  box-shadow: none;
  transition: 0.3s ease;
  z-index: 1;
  border: none;
  border-radius: 0;
  margin: 0 5px;
}

.blog-pagination .page-link.active {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  border: none;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
/* footer design for home 1 */
.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;
  background-size: cover;
}

.tp-footer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
}

.tp-footer-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

.apply-fixd {
  position: fixed;
  right: 0px;
  z-index: 99;
  top: 53%;
}

.enroll-fixd {
  position: fixed;
  right: 0px;
  z-index: 99;
  top: 67%;
}

.apply-fixd img {
  width: 100%;
}
.enroll-fixd img {
  width: 100%;
}

@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: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
}

@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-size: 18px;
  display: block;
  color: #fff;
  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: 4px;
  width: 60px;
  background: #dd1002;
}

.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: 4px;
  width: 10px;
  background: #dd1002;
}

.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: 47%;
  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: 15px;
  color: var(--tp-common-white);
  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: #fff;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  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: 15px;
  color: #fff;
  margin: 0px;
}

.tp-footer-widget-contact .contact-inner a {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  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: #000;
  position: relative;
  padding-top: 18px;
  padding-bottom: 20px;
}

.tp-footer-copyright p {
  font-weight: 400;
  font-size: 15px;
  margin: 0;
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  6.2 Footer Style 2
/*----------------------------------------*/
.tp-footer-2-area {
  overflow: hidden;
}

.tp-footer-2-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.tp-footer-2-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(360deg, rgba(13, 28, 55, 0.83) 0%, #0D1C37 100%);
}

.tp-footer-2-shape .shape-1 {
  position: absolute;
  top: 52px;
  left: 52px;
}

.tp-footer-2-shape .shape-2 {
  position: absolute;
  top: 34%;
  left: 34%;
}

.tp-footer-2-shape .shape-4 {
  position: absolute;
  bottom: 62%;
  right: 12%;
}

@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-footer-2-widget-space {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.tp-footer-2-widget-1 {
  padding-left: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-2-widget-1 {
    padding-left: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-2-widget-1 {
    padding-left: 0px;
  }
}

.tp-footer-2-widget span,
.tp-footer-2-widget-1 span {
  position: relative;
  font-weight: 700;
  font-size: 23px;
  display: block;
  color: var(--tp-common-white);
  padding-bottom: 32px;
}

.tp-footer-2-widget span::before,
.tp-footer-2-widget-1 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 60px;
  background: var(--tp-theme-primary);
}

.tp-footer-2-widget span::after,
.tp-footer-2-widget-1 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 10px;
  background: var(--tp-theme-secondary);
}

.tp-footer-2-widget .tp-footer-list-float li,
.tp-footer-2-widget-1 .tp-footer-list-float li {
  width: 33%;
  float: left;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  .tp-footer-2-widget .tp-footer-list-float li,
  .tp-footer-2-widget-1 .tp-footer-list-float li {
    width: 33%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {

  .tp-footer-2-widget .tp-footer-list-float li,
  .tp-footer-2-widget-1 .tp-footer-list-float li {
    width: 30%;
  }
}

@media (max-width: 575px) {

  .tp-footer-2-widget .tp-footer-list-float li,
  .tp-footer-2-widget-1 .tp-footer-list-float li {
    width: 100%;
  }
}

.tp-footer-2-widget ul,
.tp-footer-2-widget-1 ul {
  padding-left: 24px;
}

.tp-footer-2-widget ul li,
.tp-footer-2-widget-1 ul li {
  list-style: none;
  margin-bottom: 12px;
  position: relative;
}

.tp-footer-2-widget ul li::before,
.tp-footer-2-widget-1 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-2-widget ul li a,
.tp-footer-2-widget-1 ul li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-common-white);
  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: background-size 0.4s linear;
  transition: 0.3s ease;
}

.tp-footer-2-widget ul li a:hover,
.tp-footer-2-widget-1 ul li a:hover {
  color: var(--tp-common-white);
  background-size: 0 1px, 100% 1px;
}

.tp-footer-2-widget-contact .icon {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
  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;
  z-index: 1;
  margin-right: 28px;
  flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-2-widget-contact .icon {
    margin-right: 15px;
  }
}

@media (max-width: 575px) {
  .tp-footer-2-widget-contact .icon {
    margin-right: 10px;
  }
}

.tp-footer-2-widget-contact .contact-inner {
  z-index: 1;
}

.tp-footer-2-widget-contact .contact-inner p {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-common-white);
}

.tp-footer-2-widget-contact .contact-inner a {
  font-weight: 700;
  font-size: 26px;
  color: var(--tp-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-2-widget-contact .contact-inner a {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .tp-footer-2-widget-contact .contact-inner a {
    font-size: 22px;
  }
}

.tp-footer-2-margin {
  margin-top: -80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-2-margin {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-2-margin {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.tp-footer-2-copyright {
  background: #0C1A33;
  position: relative;
  padding-top: 18px;
  padding-bottom: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-2-social {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.tp-footer-2-social span {
  font-weight: 600;
  font-size: 18px;
  color: #8A94A7;
  margin-right: 8px;
}

.tp-footer-2-social a {
  height: 48px;
  width: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  transition: all 0.3s ease-in-out;
  margin-left: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-2-social a {
    margin-left: 5px;
  }
}

.tp-footer-2-social a i {
  color: var(--tp-common-white);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .tp-footer-2-social a {
    margin-left: 10px;
  }
}

.tp-footer-2-social a:hover {
  background: var(--tp-theme-secondary);
}

.tp-footer-2-social a:hover i {
  color: #0D1C37;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-2-logo {
    margin-bottom: 20px;
  }
}

.tp-footer-2-copyright-text p {
  font-weight: 500;
  margin: 0;
  color: #8A94A7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-2-copyright-text p {
    text-align: start !important;
  }
}

.tp-features-item-wrapper-2.tp-footer-2-margin .tp-features-item-title {
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-features-item-wrapper-2.tp-footer-2-margin .tp-features-item-title {
    font-size: 27px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-features-item-wrapper-2.tp-footer-2-margin .tp-features-item-title {
    font-size: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-features-item-wrapper-2.tp-footer-2-margin .tp-features-item-title {
    font-size: 24px;
  }
}

/*----------------------------------------*/
/*  6.3 Footer Style 2
/*----------------------------------------*/
.tp-footer-3-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--tp-theme-primary);
  opacity: 0.9;
}

.tp-footer-3-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
}

.tp-footer-3-widget-contact .icon,
.tp-footer-3-widget-1-contact .icon {
  color: #233049;
  background: var(--tp-theme-secondary);
  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;
  z-index: 1;
  margin-right: 28px;
  flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {

  .tp-footer-3-widget-contact .icon,
  .tp-footer-3-widget-1-contact .icon {
    margin-right: 15px;
  }
}

@media (max-width: 575px) {

  .tp-footer-3-widget-contact .icon,
  .tp-footer-3-widget-1-contact .icon {
    margin-right: 10px;
  }
}

.tp-footer-3-widget-contact .contact-inner,
.tp-footer-3-widget-1-contact .contact-inner {
  z-index: 1;
}

.tp-footer-3-widget-contact .contact-inner p,
.tp-footer-3-widget-1-contact .contact-inner p {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-theme-primary);
}

.tp-footer-3-widget-contact .contact-inner a,
.tp-footer-3-widget-1-contact .contact-inner a {
  font-weight: 700;
  font-size: 26px;
  color: #6A6D7A;
}

.tp-footer-3-widget-contact .contact-inner a:hover,
.tp-footer-3-widget-1-contact .contact-inner a:hover {
  color: var(--tp-theme-secondary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  .tp-footer-3-widget-contact .contact-inner a,
  .tp-footer-3-widget-1-contact .contact-inner a {
    font-size: 21px;
  }
}

@media (max-width: 575px) {

  .tp-footer-3-widget-contact .contact-inner a,
  .tp-footer-3-widget-1-contact .contact-inner a {
    font-size: 22px;
  }
}

.tp-footer-3-widget span,
.tp-footer-3-widget-1 span {
  position: relative;
  font-weight: 700;
  font-size: 23px;
  display: block;
  color: #233049;
  padding-bottom: 32px;
}

.tp-footer-3-widget span::before,
.tp-footer-3-widget-1 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 60px;
  background: var(--tp-theme-primary);
}

.tp-footer-3-widget span::after,
.tp-footer-3-widget-1 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 10px;
  background: var(--tp-theme-secondary);
}

.tp-footer-3-widget-1 .tp-footer-list-float li,
.tp-footer-3-widget-1-1 .tp-footer-list-float li {
  width: 50%;
  float: left;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  .tp-footer-3-widget-1 .tp-footer-list-float li,
  .tp-footer-3-widget-1-1 .tp-footer-list-float li {
    width: 33%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {

  .tp-footer-3-widget-1 .tp-footer-list-float li,
  .tp-footer-3-widget-1-1 .tp-footer-list-float li {
    width: 30%;
  }
}

@media (max-width: 575px) {

  .tp-footer-3-widget-1 .tp-footer-list-float li,
  .tp-footer-3-widget-1-1 .tp-footer-list-float li {
    width: 100%;
  }
}

.tp-footer-3-widget-1 ul,
.tp-footer-3-widget-1-1 ul {
  padding-left: 24px;
}

.tp-footer-3-widget-1 ul li,
.tp-footer-3-widget-1-1 ul li {
  list-style: none;
  margin-bottom: 12px;
  position: relative;
}

.tp-footer-3-widget-1 ul li::before,
.tp-footer-3-widget-1-1 ul li::before {
  position: absolute;
  bottom: 12px;
  left: -24px;
  content: "";
  width: 6px;
  height: 2px;
  margin-right: 3px;
  display: inline-block;
  background-color: #6A6D7A;
}

.tp-footer-3-widget-1 ul li a,
.tp-footer-3-widget-1-1 ul li a {
  font-weight: 400;
  font-size: 15px;
  color: #6A6D7A;
  background-image: linear-gradient(#fcfcff, #d8d8da), linear-gradient(#000, #dbdbe6);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}

.tp-footer-3-widget-1 ul li a:hover,
.tp-footer-3-widget-1-1 ul li a:hover {
  background-size: 0 1px, 100% 1px;
}

.tp-footer-3-widget-2 span,
.tp-footer-3-widget-3 span {
  position: relative;
  font-weight: 700;
  font-size: 23px;
  display: block;
  color: #233049;
  padding-bottom: 32px;
}

.tp-footer-3-widget-2 span::before,
.tp-footer-3-widget-3 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 60px;
  background: var(--tp-theme-primary);
}

.tp-footer-3-widget-2 span::after,
.tp-footer-3-widget-3 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 10px;
  background: var(--tp-theme-secondary);
}

.tp-footer-3-widget-2 ul,
.tp-footer-3-widget-3 ul {
  padding-left: 24px;
}

.tp-footer-3-widget-2 ul li,
.tp-footer-3-widget-3 ul li {
  list-style: none;
  margin-bottom: 12px;
  position: relative;
}

.tp-footer-3-widget-2 ul li::before,
.tp-footer-3-widget-3 ul li::before {
  position: absolute;
  bottom: 12px;
  left: -24px;
  content: "";
  width: 6px;
  height: 2px;
  margin-right: 3px;
  display: inline-block;
  background-color: #6A6D7A;
}

.tp-footer-3-widget-2 ul li a,
.tp-footer-3-widget-3 ul li a {
  font-weight: 400;
  font-size: 15px;
  color: #6A6D7A;
  background-image: linear-gradient(#fcfcff, #d8d8da), linear-gradient(#000, #dbdbe6);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}

.tp-footer-3-widget-2 ul li a:hover,
.tp-footer-3-widget-3 ul li a:hover {
  background-size: 0 1px, 100% 1px;
}

.tp-footer-3-col-1 {
  margin-bottom: 30px;
  padding-left: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-3-col-1 {
    margin-bottom: 50px;
    padding-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-3-col-1 {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .tp-footer-3-col-1 {
    margin-left: 15px;
  }
}

.tp-footer-3-col-2 {
  padding-left: 25px;
}

@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-footer-3-col-2 {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .tp-footer-3-col-2 {
    margin-left: 15px;
  }
}

.tp-footer-3-col-3 {
  margin-left: -30px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-3-col-3 {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-footer-3-col-3 {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .tp-footer-3-col-3 {
    margin-top: 20px;
    margin-left: 15px;
  }
}

.tp-footer-3-col-4 {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-3-col-4 {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-footer-3-col-4 {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .tp-footer-3-col-4 {
    margin-top: 20px;
    margin-left: 15px;
  }
}

.tp-footer-3-copyright {
  position: relative;
  padding-top: 34px;
  padding-bottom: 30px;
}

.tp-footer-3-copyright .tp-footer-2-social {
  padding-left: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-footer-3-copyright .tp-footer-2-social {
    padding-left: 0;
  }
}

.tp-footer-3-copyright .tp-footer-2-social span {
  color: #ECF3FF;
  margin-right: 12px;
}

.tp-footer-3-copyright .tp-footer-2-social a {
  background: var(--tp-common-white);
  margin-right: 12px;
  margin-left: 0;
}

.tp-footer-3-copyright .tp-footer-2-social a i {
  color: var(--tp-text-2);
}

.tp-footer-3-copyright .tp-footer-2-social a:hover {
  background: var(--tp-theme-secondary);
}

.tp-footer-3-copyright .tp-footer-2-copyright-text p {
  color: var(--tp-common-white);
}

.tp-footer-3-logo-content {
  background-color: var(--tp-theme-primary);
  padding: 18px 40px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-3-logo-content {
    padding: 18px 30px;
  }
}

@media (max-width: 575px) {
  .tp-footer-3-logo-content {
    padding: 18px 20px;
  }
}

.tp-footer-3-logo-content .tp-footer-social span {
  color: var(--tp-common-white);
}

.tp-footer-3-bg-overlay {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 0;
  height: 942px;
  width: calc(100% - 320px);
  right: auto;
  margin: 0 auto;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFF 0%, #F4F6FD 35.42%, #F4F6FD 100%);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-footer-3-bg-overlay {
    width: calc(100% - 200px);
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-footer-3-bg-overlay {
    width: calc(100% - 70px);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-3-bg-overlay {
    width: calc(100% - 30px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-footer-3-bg-overlay {
    width: calc(100% - 20px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-footer-3-bg-overlay {
    height: 1200px;
    width: calc(100% - 20px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-footer-3-bg-overlay {
    height: 1350px;
    width: calc(100% - 20px);
  }
}

@media (max-width: 575px) {
  .tp-footer-3-bg-overlay {
    height: 2000px;
    width: calc(100% - 15px);
  }
}

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

/*----------------------------------------*/
/*  7.2 About css
/*----------------------------------------*/
.aboutBanner {
  min-height: 400px;
}

.aboutBanner::before {
  content: '';
  /* background: rgba(0, 0, 0, 0.2); */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.aboutBanner .container {
  position: relative;
}

.aboutBanner__content {
  max-width: 480px;
}

.play-btn .circle.pulse {
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  background-color: var(--bg-green);
  opacity: 0.5;
}

.play-btn .circle {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #505050;
  margin: auto;
  transform: scale(1, 1);
}

.play-btn {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.aboutBanner__content h1,
.aboutBanner__content h2 {
  font-size: 48px;
  line-height: 45px;
  font-weight: bold;
  color: #e3e3e3;
  margin-bottom: 15px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}

.play-btn svg {
  fill: #fff;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 1;
}

.page-heading h1,
.page-heading h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #000;
}

.list-icon-4>li::before {
  font-family: FontAwesome;
  content: "\f178";
  position: absolute;
  left: -23px;
  top: 0;
  color: var(--text-green);
}

@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 {
    flex-wrap: wrap;
  }
}

.tp-about-inner {
  margin-bottom: 23px;
}

@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 {

  height: 54px;
  width: 54px;
  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: 2.5;
}

.tp-about-section-title-wrapper {
  margin-right: -20px;
  margin-top: 45px;
}

.tp-about-inner-wrapper img {
  width: 100%;
}

@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: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.tp-about-inner-text {
  padding: 10px;
}

.tp-about-inner-text p {
  font-size: 15px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-inner-text p {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .tp-about-inner-text p br {
    display: none;
  }
}

.tp-about-btn .tp-btn {
  margin-top: 30px;
  padding: 12px 30px;
}

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

.skill__progress-circle .progress-circular::after {
  position: absolute;
  content: "";
  left: 10px;
  top: 11px;
  width: 86%;
  height: 81%;
  background: #fff;
  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;
  }
}

.tp-about-2-area {
  overflow: hidden;
}

.tp-about-2-bg {
  background-color: #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-about-2-wrapper {
    margin-bottom: 50px;
  }
}

.tp-about-2-wrapper .tp-section__title-pre-2 {
  margin-bottom: 25px;
}

.tp-about-2-wrapper .tp-section__title {
  margin-bottom: 17px;
  line-height: 1.2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-2-wrapper .tp-section__title {
    font-size: 38px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-wrapper .tp-section__title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-2-wrapper .tp-section__title {
    font-size: 36px;
  }
}

@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-about-2-wrapper .tp-section__title br {
    display: none;
  }
}

.tp-about-2-wrapper p {
  margin-bottom: 30px;
  line-height: 2;
}

@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-2-wrapper p br {
    display: none;
  }
}

.tp-about-2-inner .tp-about-inner-thumb {
  background-color: var(--tp-common-white);
  box-shadow: 0px 7px 14px rgba(33, 68, 216, 0.13);
  margin-right: 28px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-inner .tp-about-inner-thumb {
    margin-right: 20px;
  }
}

.tp-about-2-inner .tp-about-inner-text .tp-about-title {
  font-size: 20px;
  margin-bottom: 14px;
}

.tp-about-2-inner .tp-about-inner-text p {
  margin-bottom: 37px;
  line-height: 1.7;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-about-2-inner {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-about-2-inner .tp-about-inner-thumb {
    margin-bottom: 15px;
  }
}

.tp-about-2-btn .tp-btn {
  padding: 18px 35px;
}

.tp-about-2-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}

.tp-about-2-thumb {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  padding: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-thumb {
    padding: 35px;
    margin-top: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-2-thumb {
    padding: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-2-thumb {
    padding: 30px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .tp-about-2-thumb {
    padding: 15px;
    margin-bottom: 0;
  }
}

.tp-about-2-thumb img {
  max-width: 100%;
}

.tp-about-2-thumb-shape .shape-1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-2-thumb-shape .shape-1 {
    top: 26%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-2-thumb-shape .shape-1 {
    top: 20%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-2-thumb-shape .shape-1 {
    top: 28%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-2-thumb-shape .shape-1 {
    top: 26%;
  }
}

.tp-about-2-thumb-shape .shape-3 {
  position: absolute;
  top: -22px;
  left: 80px;
  z-index: 0;
}

.tp-about-2-thumb-1 {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .tp-about-2-thumb-1 {
    margin-bottom: 15px;
  }
}

.tp-about-2-thumb-2 {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .tp-about-2-thumb-2 {
    margin-bottom: 15px;
  }
}

.tp-about-2-thumb-3 {
  position: relative;
  z-index: 0;
}

.tp-about-2-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.tp-about-2-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.tp-about-2-shape .shape-3 {
  position: absolute;
  top: 65px;
  left: 130px;
}

.tp-about-2-shape .shape-4 {
  position: absolute;
  bottom: 262px;
  left: 37%;
}

.tp-about-2-shape .shape-5 {
  position: absolute;
  bottom: 310px;
  right: 23%;
}

.tp-about-3-area {
  overflow: hidden;
}

.tp-about-3-shape .shape-1 {
  position: absolute;
  top: 110px;
  left: 40px;
}

.tp-about-3-shape .shape-2 {
  position: absolute;
  bottom: 36%;
  right: 18%;
}

.tp-about-3-wrapper {
  padding-left: 42px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-3-wrapper {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .tp-about-3-wrapper {
    padding-left: 0px;
  }
}

.tp-about-3-wrapper .tp-section__title {
  text-transform: uppercase;
  margin-bottom: 14px;
}

@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-about-3-wrapper .tp-section__title br {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-3-wrapper .tp-section__title {
    font-size: 38px;
  }
}

.tp-about-3-wrapper p {
  font-weight: 400;
  font-size: 15px;
  line-height: 32px;
  margin-bottom: 22px;
}

@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-about-3-wrapper p br {
    display: none;
  }
}

.tp-about-3-inner .tp-about-inner-thumb {
  background: var(--tp-common-white);
  box-shadow: 0px 7px 14px rgba(33, 68, 216, 0.13);
}

.tp-about-3-inner .tp-about-inner-text p {
  margin-bottom: 32px;
  line-height: 28px;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-about-3-inner {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-about-3-inner .tp-about-inner-thumb {
    margin-bottom: 15px;
  }
}

@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-3-thumb {
    margin-bottom: 50px;
  }
}

.tp-about-3-thumb-1 img {
  max-width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-thumb-1 img {
    min-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-about-3-thumb-2 {
    margin-bottom: 30px;
  }
}

.tp-about-3-thumb-2 .skill__progress-circle h4 {
  font-size: 21px;
  font-weight: 700;
  position: absolute;
  top: 72%;
  left: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-3-thumb-2 .skill__progress-circle h4 {
    top: 75%;
    left: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-thumb-2 .skill__progress-circle h4 {
    top: 70%;
    left: 110px;
  }
}

.tp-about-3-thumb-2 .skill__progress-circle .progress-circular {
  position: absolute;
  top: 50px;
  left: 75px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-3-thumb-2 .skill__progress-circle .progress-circular {
    top: 33px;
    left: 54px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-thumb-2 .skill__progress-circle .progress-circular {
    top: 80px;
    left: 110px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-about-3-thumb-2 .skill__progress-circle .progress-circular {
    top: 45px;
    left: 70px;
  }
}

.tp-about-3-thumb-2 img {
  max-width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-thumb-2 img {
    min-width: 100%;
  }
}

.tp-about-3-thumb-3 img {
  max-width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-3-thumb-3 img {
    min-width: 100%;
  }
}

/*----------------------------------------*/
/*  8.0 hero css
/*----------------------------------------*/
.tp-hero-2-area {
  margin-top: -20px;
}

.tp-hero-overlay {
  position: relative;
}

/* .tp-hero-overlay::before { */
/* position: absolute; */
/* content: ""; */
/* background: linear-gradient(90deg, #811811 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: 52px;
  line-height: 1.1;
  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: 70px;
  }
}

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

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

@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: 15px;
  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: 250px;
}

.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: 15px;
  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: linear-gradient(180deg, #FFF 0%, rgba(33, 68, 216, 0.81) 100%);
}

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

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

/*----------------------------------------*/
/*  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: linear-gradient(180deg, #FFF 0%, #F4F6FD 100%);
}

.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: 41px 48px 50px 48px;
  background: linear-gradient(180deg, rgba(224, 16, 2, 1) 34%, rgba(0, 0, 0, 1) 100%);
  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: 15px;
  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: 15px;
  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: 15px;
  line-height: 29px;
  text-align: center;
}

.tp-features-item-title {
  font-weight: 700;
  font-size: 29px;
  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: 15px;
  padding: 12px 21px;
}

.tp-features-btn .tp-btn-2 i {
  font-weight: 400;
  font-size: 15px;
}

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

/*----------------------------------------*/
/*  8.4 service css
/*----------------------------------------*/
.tp-service-shape .service-1 {
  position: absolute;
  top: 0;
  left: 0;
  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: 40px 37px 40px 41px;
  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: 15px;
  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);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-2-area {
    padding-bottom: 200px;
  }
}

@media (max-width: 575px) {
  .tp-service-2-area {
    padding-bottom: 120px;
  }
}

.tp-service-2-shape .shape-1 {
  position: absolute;
  top: 120px;
  left: 130px;
}

.tp-service-2-shape .shape-2 {
  position: absolute;
  bottom: 110px;
  right: 0;
}

.tp-service-2-wrapper .tp-section__title {
  text-transform: uppercase;
}

.tp-service-2-item {
  background: #F4F6FD;
  padding: 20px 20px 40px 20px;
  transition: all 0.3s ease-in-out;
}

.tp-service-2-item:hover {
  background: var(--tp-theme-primary);
}

.tp-service-2-item:hover h4 {
  color: var(--tp-common-white);
}

.tp-service-2-item:hover p {
  color: var(--tp-common-white);
}

.tp-service-2-item:hover .tp-service-2-icon {
  animation: lara 1s infinite linear;
}

.tp-service-2-item:hover .item-2-shape {
  visibility: visible;
  opacity: 1;
}

.tp-service-2-item .item-2-shape {
  position: absolute;
  right: 30px;
  bottom: 15px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.tp-service-2-item .item-2-shape span {
  color: var(--tp-theme-secondary);
  animation: section_stroke 3s linear forwards infinite;
  display: inline-block;
}

.tp-service-2-thumb img {
  max-width: 100%;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-2-thumb img {
    min-width: 100%;
  }
}

.tp-service-2-icon {
  background: var(--tp-common-white);
  box-shadow: 0px 11px 15px rgba(33, 68, 216, 0.08);
  position: relative;
  width: 90px;
  height: 90px;
  line-height: 2.5;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  margin-top: -45px;
}

.tp-service-2-icon i {
  font-size: 42px;
  color: var(--tp-theme-primary);
}

.tp-service-2-inner {
  padding: 11px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-2-inner {
    padding: 0;
  }
}

.tp-service-2-inner .tp-about-title {
  font-size: 21px;
  margin-top: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}

.tp-service-2-inner p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 18px;
  transition: all 0.3s ease-in-out;
}

.tp-service-2-btn a {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-text-2);
  background: #E3E8FA;
  text-align: center;
  padding: 11px 28px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.tp-service-2-btn a:hover i {
  animation: tfLeftToRight 0.5s forwards;
}

.tp-service-2-btn a i {
  margin-left: 10px;
}

.service-active-2 .splide__arrows .splide__arrow--prev {
  position: absolute;
  left: 44%;
  top: 118%;
  background: #F4F6FD;
  color: var(--tp-text-2);
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 50px;
  opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-active-2 .splide__arrows .splide__arrow--prev {
    left: 42%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-active-2 .splide__arrows .splide__arrow--prev {
    left: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-active-2 .splide__arrows .splide__arrow--prev {
    left: 41%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-active-2 .splide__arrows .splide__arrow--prev {
    left: 36%;
  }
}

.service-active-2 .splide__arrows .splide__arrow--prev.tp-service-btn-border::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 2px;
  background: #E0E5F7;
  right: -23px;
  top: 15px;
}

.service-active-2 .splide__arrows .splide__arrow--prev:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.service-active-2 .splide__arrows .splide__arrow--next {
  position: absolute;
  top: 118%;
  right: 45%;
  background: #F4F6FD;
  color: var(--tp-text-2);
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 50px;
  width: 50px;
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-active-2 .splide__arrows .splide__arrow--next {
    right: 39%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-active-2 .splide__arrows .splide__arrow--next {
    right: 36%;
  }
}

.service-active-2 .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.tp-service-3-area {
  overflow: hidden;
}

.tp-service-3-overlay {
  background-color: #F4F6FD;
}

.tp-service-3-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}

.tp-service-3-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.tp-service-3-shape .shape-3 {
  position: absolute;
  bottom: 42%;
  left: 4%;
}

.tp-service-3-item {
  background: var(--tp-common-white);
  padding: 40px 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-3-item {
    padding: 40px 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-3-item {
    padding: 40px 23px;
  }
}

.tp-service-3-inner .tp-service-title {
  font-size: 21px;
  margin-bottom: 15px;
}

.tp-service-3-inner .tp-service-title a:hover {
  color: var(--tp-theme-primary);
}

.tp-service-3-inner p {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
}

.tp-service-3-inner .tp-service-2-btn a:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.tp-service-3-thumb {
  background-color: #F4F6FD;
  border-radius: 50%;
  display: inline-block;
  height: 200px;
  width: 200px;
  line-height: 200px;
  margin-bottom: 25px;
}

.tp-service-breadcrumb-shape .shape-1 {
  position: absolute;
  top: 85px;
  left: 100px;
}

.tp-service-breadcrumb-shape .shape-2 {
  position: absolute;
  bottom: 120px;
  right: 0;
}

.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: 40px;
  line-height: 40px;
  width: 100%;
  padding: 20px;
  padding-right: 70px;
  background: var(--tp-common-white);
  border: 1px solid #fff;
  margin-bottom: 10px;
}

.tp-service-details__search-box .search-form input::placeholder {
  font-weight: 400;
  font-size: 15px;
  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: 52px;
  width: 120px;
  line-height: 32px;
}

.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: 15px;
  line-height: 30px;
  margin-bottom: 20px;
}

.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: 15px;
  color: #6A6D7A;
  background: var(--tp-common-white);
  padding: 18px 0px 18px 24px;
  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;
}

/*----------------------------------------*/
/* 8.6 team css
/*----------------------------------------*/
.tp-team-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(0deg, rgba(173, 182, 221, 0) 0%, #2144D8 100%);
  opacity: 0.6;
  z-index: -1;
}

.tp-team-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 20%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.tp-team-section-title-wrapper .tp-section__title {
  color: var(--tp-common-white);
}

.tp-team-wrapper {
  margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-team-wrapper {
    margin-bottom: 50px;
  }
}

.tp-team-thumb img {
  max-width: 100%;
  transition: all 0.2s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .tp-team-thumb img {
    min-width: 100%;
  }
}

.tp-team-thumb img:hover {
  transform: translate3d(0px, 0, 0px) scale3d(0.955, 0.975, 1) skew(0deg);
}

.tp-team-social {
  position: absolute;
  top: 20px;
  right: 30px;
}

.tp-team-social ul li {
  list-style: none;
  margin-bottom: 10px;
}

.tp-team-social ul li a {
  height: 48px;
  width: 48px;
  background-color: #EEF1FD;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  color: #0D1C37;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.tp-team-social ul li a:hover {
  background-color: var(--tp-theme-secondary);
}

.tp-team-content p {
  color: var(--tp-theme-primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tp-team-title {
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease-in;
}

.tp-team-title a {
  background-image: linear-gradient(#ffffff, #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-team-title a:hover {
  background-size: 0 2px, 100% 1px;
}

.tp-team-title-1 {
  font-weight: 600;
  font-size: 24px;
  transition: all 0.3s ease-in;
}

.tp-team-title-1 a {
  background-image: linear-gradient(#0d1c37, #0d1c37), linear-gradient(#0d1c37, #0d1c37);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.3s ease;
}

.tp-team-title-1 a:hover {
  background-size: 0 2px, 100% 1px;
}

.tp-team-2-area {
  overflow: hidden;
}

.tp-team-2-bg {
  background: #F4F6FD;
  z-index: 0;
  overflow: hidden;
}

.tp-team-2-shape .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.tp-team-2-shape .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.tp-team-2-shape .shape-3 {
  position: absolute;
  top: 5%;
  right: 20%;
}

.tp-team-2-shape .shape-4 {
  position: absolute;
  top: 90px;
  left: 26%;
}

.tp-team-2-shape .shape-5 {
  position: absolute;
  bottom: 0;
  left: 30%;
}

.tp-team-2-shape .shape-6 {
  position: absolute;
  right: 190px;
  top: -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-team-2-wrapper {
    margin-bottom: 50px;
  }
}

.tp-team-2-wrapper .tp-section__title {
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 18px;
}

.tp-team-2-wrapper p {
  line-height: 32px;
  margin-bottom: 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-team-2-wrapper p br {
    display: none;
  }
}

.tp-team-2-btn .tp-btn {
  padding: 18px 31px;
}

.tp-team-2-btn .tp-btn i {
  margin-left: 15px;
}

.tp-team-2-thumb {
  position: relative;
}

.tp-team-2-thumb img {
  max-width: 100%;
  height: 260px;
  width: 375px;
  object-fit: cover;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-team-2-thumb img {
    min-width: 100%;
  }
}

@media only screen and (min-width: 400px) and (max-width: 576px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-2-thumb img {
    height: auto;
    width: auto;
  }
}

.tp-team-2-thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(33, 68, 216, 0) 0%, #2144D8 100%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.tp-team-2-thumb:hover .tp-team-2-inner .tp-team-title {
  transition-delay: 0.3s;
  opacity: 1;
  bottom: 0px;
}

.tp-team-2-thumb:hover .tp-team-2-inner span {
  transition-delay: 0.4s;
  opacity: 1;
  bottom: 0;
}

.tp-team-2-thumb:hover .tp-team-2-social .tp-e-networks-link {
  opacity: 1;
  transform: translateY(0);
}

.tp-team-2-thumb:hover .tp-team-2-social .tp-e-networks-link:nth-child(1) {
  transition-delay: 0s;
}

.tp-team-2-thumb:hover .tp-team-2-social .tp-e-networks-link:nth-child(2) {
  transition-delay: 0.1s;
}

.tp-team-2-thumb:hover .tp-team-2-social .tp-e-networks-link:nth-child(3) {
  transition-delay: 0.2s;
}

.tp-team-2-thumb:hover::after {
  opacity: 1;
  visibility: visible;
}

.tp-team-2-inner {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 18px;
}

.tp-team-2-inner .tp-team-title {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 24px;
  color: var(--tp-common-white);
  margin-bottom: 3px;
  opacity: 0;
  bottom: -20px;
  background-image: linear-gradient(#fcfcff, #d8d8da), linear-gradient(#000, #dbdbe6);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s ease-in-out;
}

.tp-team-2-inner span {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tp-theme-secondary);
  z-index: 2;
  position: relative;
  opacity: 0;
  bottom: -26px;
  transition: 0.5s ease-in-out;
}

.tp-team-2-social {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-2-social {
    margin-bottom: 10px;
  }
}

.tp-team-2-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: 14px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  flex: 0 0 auto;
}

@media (max-width: 575px) {
  .tp-team-2-social a {
    margin-left: 10px;
  }
}

.tp-team-2-social a:hover {
  color: var(--tp-text-2);
  background-color: var(--tp-theme-secondary);
}

.tp-team-2-social .tp-e-networks-link {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tp-team-3-area {
  overflow: hidden;
}

@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-team-3-wrapper {
    padding-bottom: 30px;
  }
}

.tp-team-3-wrapper .tp-section__title {
  text-transform: uppercase;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-team-3-wrapper .tp-section__title br {
    display: none;
  }
}

@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-team-2-btn.team-3 {
    margin-bottom: 30px;
  }
}

.tp-team-details-social a {
  height: 48px;
  width: 48px;
  background-color: #D1D6E9;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  color: #0D1C37;
  font-size: 14px;
  font-weight: 400;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.tp-team-details-social a:hover {
  background: var(--tp-theme-secondary);
}

.tp-team-details-information {
  position: relative;
  background: #F4F6FD;
  padding: 70px 45px 65px 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-team-details-information {
    padding: 60px 30px 60px 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-team-details-information {
    padding: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-team-details-information {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .tp-team-details-information {
    padding: 20px;
  }
}

.tp-team-details-shape .shape-4 {
  position: absolute;
  top: 5px;
  left: 20px;
}

.tp-team-details-shape .shape-5 {
  position: absolute;
  bottom: 10px;
  left: 270px;
}

.tp-team-details-shape .shape-6 {
  position: absolute;
  top: 50px;
  right: 60px;
}

.tp-team-details-inner {
  margin-left: 15px;
}

@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-team-details-inner {
    margin-left: 0;
  }
}

@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-team-details-thumb {
    margin-bottom: 40px;
  }
}

.tp-team-details-thumb img {
  min-width: 100%;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .tp-team-details-thumb img {
    max-width: 100%;
  }
}

.tp-team-details-thumb .shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.tp-team-details-content .tp-team-details-title {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-team-details-content .tp-team-details-title {
    font-size: 28px;
  }
}

.tp-team-details-content span {
  font-weight: 600;
  color: var(--tp-theme-primary);
  display: block;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.tp-team-details-content p {
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #6A6D7A;
}

.tp-team-details-title h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 15px;
}

.tp-team-details-title p {
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #6A6D7A;
  margin-bottom: 20px;
}

.tp-team-details-progress-bar {
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-team-details-progress-bar {
    margin-bottom: 40px;
  }
}

.tp-team-details-progress-bar h4 {
  font-weight: 600;
  font-size: 17px;
  color: var(--tp-theme-primary);
  margin-bottom: 15px;
}

.tp-team-details-progress-bar .progress {
  overflow: inherit;
  height: 8px;
  margin-bottom: 17px;
  border-radius: 0;
}

.tp-team-details-progress-bar .progress-bar {
  position: relative;
  overflow: inherit;
  background-color: var(--tp-theme-primary);
}

.tp-team-details-progress-bar .progress-bar span {
  text-align: right;
  transform: translateY(-20px);
  color: #6A6D7A;
  font-weight: 400;
  font-size: 17px;
  line-height: 15px;
}

.tp-team-details-btn .tp-btn {
  padding: 18px 30px;
}

.tp-team-details-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}

/*----------------------------------------*/
/*  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%, #000 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: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  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: #fff;
}

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

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

.portfolio-active-2 .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-2 .splide__arrows .splide__arrow--prev {
    left: -20px;
  }
}

.portfolio-active-2 .splide__arrows .splide__arrow--prev:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.portfolio-active-2 .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-2 .splide__arrows .splide__arrow--next {
    right: -20px;
  }
}

.portfolio-active-2 .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.portfolio-active-2 .splide__slide .tp-portfolio-thumb::after {
  opacity: 0;
  visibility: hidden;
}

.portfolio-active-2 .splide__slide .tp-portfolio-content {
  opacity: 0;
  visibility: hidden;
}

.portfolio-active-2 .splide__slide.is-visible.is-active .tp-portfolio-thumb::after {
  opacity: 1;
  visibility: visible;
}

.portfolio-active-2 .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-2 .splide__slide.is-visible.is-active .tp-portfolio-content {
    bottom: 5px;
  }
}

@media (max-width: 575px) {
  .portfolio-active-2 .splide__track {
    padding-top: 0px;
  }
}

.portfolio-active-2 .splide__pagination {
  bottom: -80px;
}

.portfolio-active-2 .splide__pagination .splide__pagination__page {
  background: #E4EAFF;
  margin-left: 10px;
  height: 10px;
  width: 10px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio-active-2 .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;
}

.portfolio-active-2 .splide__pagination .is-active {
  background: var(--tp-theme-primary);
  transform: scale(1);
}

.portfolio-active-2 .splide__pagination .is-active::after {
  border-color: var(--tp-theme-primary);
  transform: translate(-50%, -50%) scale(1);
}

.tp-portfolio-3-wrapper .tp-section__title {
  text-transform: uppercase;
}

.tp-portfolio-3-inner {
  background: #F4F6FD;
}

.tp-portfolio-3-inner:hover .tp-portfolio-3-content-btn a {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.tp-portfolio-3-inner:hover .tp-portfolio-3-content::before {
  width: 100%;
  opacity: 1;
  z-index: 0;
}

.tp-portfolio-3-inner:hover .tp-portfolio-3-text .tp-portfolio-title a {
  color: #0D1C37;
}

.tp-portfolio-3-inner:hover .tp-portfolio-3-text p {
  color: #6A6D7A;
}

.tp-portfolio-3-thumb {
  padding: 60px 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-portfolio-3-thumb {
    padding: 60px 25px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-portfolio-3-thumb {
    padding: 40px 5px;
  }
}

.tp-portfolio-3-thumb img {
  min-height: 322px;
  max-width: 100%;
}

.tp-portfolio-3-content {
  position: relative;
  background: linear-gradient(270deg, #F4F6FD 0%, #2144D8 100%);
  padding: 20px 30px;
  justify-content: space-between;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-portfolio-3-content {
    padding: 20px 18px;
  }
}

.tp-portfolio-3-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(270deg, #F4F6FD 0%, #FFC700 100%);
  height: 100%;
  width: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.tp-portfolio-3-content-btn {
  z-index: 2;
}

.tp-portfolio-3-content-btn a {
  width: 50px;
  height: 50px;
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
  display: inline-block;
  text-align: center;
  line-height: 50px;
  transition: all 0.4s ease-in-out;
}

.tp-portfolio-3-text {
  z-index: 2;
}

.tp-portfolio-3-text .tp-portfolio-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 29px;
  color: var(--tp-common-white);
  transition: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-portfolio-3-text .tp-portfolio-title {
    font-size: 24px;
  }
}

.tp-portfolio-3-text p {
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
  text-align: start;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.tp-portfolio-tab-button {
  margin-top: 20px;
  margin-bottom: 25px;
}

.tp-portfolio-tab-button button {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6A6D7A;
  background: #F4F6FD;
  padding: 6px 22px;
  margin-right: 15px;
}

@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-tab-button button {
    margin-bottom: 20px;
  }

  .tp-portfolio-tab-button button {
    padding: 6px 9px;
    font-size: 11px;
    margin-right: 0px;
  }

}

.tp-portfolio-tab-button button.active {
  color: #0D1C37;
  background: var(--tp-theme-secondary);
}

.fade.active.show {
  transition: 2s;
}

.tp-portfolio-active-3 {
  margin: 0 -17px;
}

.tp-portfolio-active-3 .slick-slide {
  margin: 0 17px;
}

.tp-portfolio-active-3 .slick-next.slick-arrow i {
  position: absolute;
  height: 66px;
  width: 66px;
  line-height: 62px;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -7%;
  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);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-portfolio-active-3 .slick-next.slick-arrow i {
    right: -2%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-portfolio-active-3 .slick-next.slick-arrow i {
    right: -1%;
  }
}

.tp-portfolio-active-3 .slick-next.slick-arrow i:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.tp-portfolio-active-3 .slick-prev.slick-arrow i {
  position: absolute;
  height: 66px;
  width: 66px;
  line-height: 62px;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  left: -7%;
  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);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-portfolio-active-3 .slick-prev.slick-arrow i {
    left: -2%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-portfolio-active-3 .slick-prev.slick-arrow i {
    left: -1%;
  }
}

.tp-portfolio-active-3 .slick-prev.slick-arrow i:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  7.7 About css
/*----------------------------------------*/
.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: #160200;
}

.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, #ed0017 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: #bd0c00;
  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;
  }
}

@media (max-width: 575px) {
  .tp-counter-2-wrapper {
    padding: 57px 20px 8px;
  }
}

.tp-counter-2-wrapper .tp-counter-thumb i {
  background-color: var(--tp-common-white);
  margin-bottom: 15px;
  margin-left: 0;
}

.tp-counter-2-wrapper .shape-1 {
  position: absolute;
  top: 0;
  left: 9%;
}

.tp-counter-2-wrapper .shape-2 {
  position: absolute;
  bottom: 0;
  left: 37%;
}

.tp-counter-2-wrapper .shape-3 {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-counter-2-inner {
    display: grid;
    justify-content: center;
  }
}

.tp-counter-2-inner-1 {
  padding-left: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .tp-counter-2-inner-1 {
    padding-left: 0;
  }
}

@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-counter-2-inner-1 {
    padding-left: 0px;
    display: grid;
    justify-content: center;
  }
}

.tp-counter-2-inner-2 {
  display: grid;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-counter-2-inner-2 {
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .tp-counter-2-inner-2 {
    justify-content: start;
  }
}

@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-counter-2-inner-2 {
    display: grid;
    justify-content: center;
  }
}

.tp-counter-2-inner-3 {
  display: grid;
  justify-content: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-counter-2-inner-3 {
    justify-content: start;
  }
}

@media (max-width: 575px) {
  .tp-counter-2-inner-3 {
    justify-content: start;
  }
}

@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-counter-2-inner-3 {
    display: grid;
    justify-content: center;
  }
}

.tp-counter-2-shape-2 {
  position: absolute;
  top: 40%;
  left: -80px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-counter-2-shape-2 {
    left: -35px;
  }
}

@media (max-width: 575px) {
  .tp-counter-2-shape-2 {
    display: none;
  }
}

@media only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-counter-2-shape-2 {
    display: flex;
    justify-content: center;
  }
}

.tp-counter-2-shape-3 {
  position: absolute;
  top: 40%;
  left: -50px;
}

.tp-counter-2-shape-4 {
  position: absolute;
  top: 40%;
  left: -22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-counter-2-shape-4 {
    left: -80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-counter-2-shape-4 {
    left: -35px;
  }
}

@media (max-width: 575px) {
  .tp-counter-2-shape-4 {
    display: none;
  }
}

.tp-counter-3-area {
  margin-top: -110px;
}

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

.tp-testimonial-2-area {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 575px) {
  .tp-testimonial-2-area {
    padding-bottom: 120px;
  }
}

.tp-testimonial-2-bubble .shape-1 {
  position: absolute;
  top: 70px;
  left: 95px;
}

.tp-testimonial-2-bubble .shape-2 {
  position: absolute;
  bottom: 38%;
  right: 40%;
}

.tp-testimonial-2-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tp-testimonial-2-shapeimg {
  position: absolute;
  bottom: 21%;
  right: 14%;
  z-index: 1;
}

.tp-testimonial-2-shapeimg span {
  display: inline-block;
}

.tp-testimonial-2-shapeimg span svg {
  width: 240px;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: section_stroke 3s linear forwards infinite;
  -webkit-animation: section_stroke 3s linear forwards infinite;
  color: var(--tp-theme-primary);
}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .tp-testimonial-2-shapeimg {
    right: 6%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-testimonial-2-shapeimg {
    right: 1%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-2-shapeimg {
    bottom: 18%;
    right: 0%;
  }
}

.tp-testimonial-2-overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 199, 0, 0.79) 100%);
  z-index: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-testimonial-2-section-title-wrapper .tp-section__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

.tp-testimonial-2-wrapper {
  position: relative;
  background: var(--tp-common-white);
  padding: 35px 50px;
  border-radius: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-2-wrapper {
    padding: 35px 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-testimonial-2-wrapper {
    padding: 35px 20px;
  }
}

@media (max-width: 575px) {
  .tp-testimonial-2-wrapper {
    padding: 35px 10px;
  }
}

.tp-testimonial-2-wrapper p {
  font-weight: 600;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  color: var(--tp-text-2);
  margin-bottom: 25px;
}

.tp-testimonial-2-wrapper .tp-testimonial-title {
  font-weight: 700;
  text-align: center;
  font-size: 25px;
  line-height: 29px;
  margin-bottom: 5px;
}

.tp-testimonial-2-wrapper span {
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  text-align: center;
  display: block;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tp-theme-primary);
}

.testimonial-active-2 .splide__arrows .splide__arrow--prev {
  position: absolute;
  left: 44%;
  top: 130%;
  background: #F4F6FD;
  font-size: 15px;
  color: var(--tp-text-2);
  cursor: pointer;
  display: inline-block;
  height: 62px;
  width: 62px;
  opacity: 1;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--prev {
    left: 43%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--prev {
    left: 42%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--prev {
    left: 39%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--prev {
    left: 35%;
  }
}

.testimonial-active-2 .splide__arrows .splide__arrow--prev::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 2px;
  background: #E0E5F7;
  right: -18px;
  top: 21px;
}

.testimonial-active-2 .splide__arrows .splide__arrow--prev:hover {
  background: var(--tp-text-2);
  color: var(--tp-common-white);
}

.testimonial-active-2 .splide__arrows .splide__arrow--next {
  position: absolute;
  height: 62px;
  top: 130%;
  right: 44%;
  font-size: 15px;
  background: #F4F6FD;
  color: var(--tp-text-2);
  cursor: pointer;
  display: inline-block;
  width: 62px;
  opacity: 1;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--next {
    right: 43%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--next {
    right: 41%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--next {
    right: 38%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-active-2 .splide__arrows .splide__arrow--next {
    right: 34%;
  }
}

.testimonial-active-2 .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-text-2);
  color: var(--tp-common-white);
}

.tp-testimonial-3-area {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.tp-testimonial-3-shape .shape-1 {
  position: absolute;
  bottom: 120px;
  left: 0;
}

.tp-testimonial-3-shape .shape-2 {
  position: absolute;
  top: 130px;
  right: 55px;
}

.tp-testimonial-3-overlay::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #FFF 0%, rgba(244, 246, 253, 0.95) 100%);
  z-index: 0;
}

.tp-testimonial-3-from {
  padding: 72px 60px 72px 62px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  margin-left: 80px;
}

@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-testimonial-3-from {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-3-from {
    margin-top: 130px;
  }
}

@media (max-width: 575px) {
  .tp-testimonial-3-from {
    padding: 50px 20px 50px 20px;
  }
}

.tp-testimonial-3-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-testimonial-3-from .tp-brands-title {
    font-size: 34px;
  }
}

.tp-testimonial-3-from .tp-btn {
  padding: 18px 40px;
  margin-top: 15px;
}

.tp-testimonial-3-from .tp-btn i {
  margin-left: 12px;
  transform: translateY(2px);
}

.testimonial-active-3 .splide__arrows .splide__arrow--prev {
  position: absolute;
  left: 38%;
  top: 120%;
  background: var(--tp-theme-primary);
  font-size: 15px;
  color: var(--tp-common-white);
  cursor: pointer;
  display: inline-block;
  height: 62px;
  width: 62px;
  opacity: 1;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--prev {
    left: 36%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--prev {
    left: 31%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--prev {
    left: 39%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--prev {
    left: 36%;
  }
}

.testimonial-active-3 .splide__arrows .splide__arrow--prev:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-text-2);
}

.testimonial-active-3 .splide__arrows .splide__arrow--next {
  position: absolute;
  height: 62px;
  top: 120%;
  right: 39%;
  font-size: 15px;
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  cursor: pointer;
  display: inline-block;
  width: 62px;
  opacity: 1;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--next {
    right: 38%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--next {
    right: 41%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-active-3 .splide__arrows .splide__arrow--next {
    right: 37%;
  }
}

.testimonial-active-3 .splide__arrows .splide__arrow--next:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-text-2);
}

/*----------------------------------------*/
/*  7.3 blog css
/*----------------------------------------*/
.tp-blog-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.tp-blog-wrapper {
  background: #F4F6FD;
  padding-left: 50px;
  padding-bottom: 55px;
}

.tp-blog-wrapper:hover .tp-blog-thumb::before {
  animation: shine 800ms;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-wrapper {
    padding-left: 35px;
    padding-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .tp-blog-wrapper {
    padding-left: 30px;
  }
}

.tp-blog-start {
  padding: 50px;
  background: #f4f6fd;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .tp-blog-start {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-start {
    padding: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog-start.home-2 {
    margin-bottom: 50px;
  }
}

.tp-blog-inner {
  position: relative;
  padding: 112px 0 106px 46px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-inner {
    padding: 112px 0 76px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-inner {
    padding: 50px 10px 70px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-inner {
    padding: 105px 0 106px 35px;
  }
}

@media (max-width: 575px) {
  .tp-blog-inner {
    padding: 80px 0 70px 25px;
  }
}

.tp-blog-inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2144D8 0%, #FFC700 100%);
  opacity: 0.92;
  z-index: 1;
}

.tp-blog-inner .tp-blog-title {
  font-weight: 800;
  font-size: 33px;
  line-height: 45px;
  color: var(--tp-common-white);
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-inner.home-2 h3 {
    font-size: 47px;
  }
}

@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-blog-inner.home-2 h3 br {
    display: none;
  }
}

.tp-blog-thumb {
  position: relative;
  overflow: hidden;
}

.tp-blog-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-blog-thumb img {
  margin-bottom: 35px;
  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 0.3s ease-out 0s;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog-thumb img {
    min-width: 100%;
  }
}

.tp-blog-thumb span {
  position: absolute;
  bottom: 13px;
  left: 0;
}

.tp-blog-content .tp-blog-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.tp-blog-content .tp-blog-title a:hover {
  color: var(--tp-theme-primary);
}

.tp-blog-content p {
  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-blog-content p br {
    display: none;
  }
}

.tp-blog-start-btn .tp-btn {
  background: var(--tp-common-white);
  padding: 16px 26px;
}

.tp-blog-start-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}

.tp-blog-btn .tp-btn {
  padding: 11px 21px;
}

.tp-blog-btn .tp-btn i {
  margin-left: 10px;
  transform: translateY(2px);
}

.tp-blog-2-area {
  overflow: hidden;
}

.tp-blog-2-shape .shape-1 {
  position: absolute;
  top: 162px;
  left: 115px;
  z-index: -1;
}

.tp-blog-2-shape .shape-2 {
  position: absolute;
  bottom: 29%;
  right: 10%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog-2-section-title-wrapper {
    margin-bottom: 50px;
  }
}

.tp-blog-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-blog-2-section-title-wrapper .tp-section__title {
    font-size: 30px;
  }
}

.tp-blog-2-wrapper {
  background: #F4F6FD;
}

.tp-blog-2-wrapper:hover .tp-blog-2-thumb::before {
  animation: shine 800ms;
}

.tp-blog-2-thumb {
  position: relative;
  overflow: hidden;
}

.tp-blog-2-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  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-blog-2-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 0.3s ease-out 0s;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575px) {
  .tp-blog-2-thumb img {
    min-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-2-thumb.home-3 img {
    min-width: 100%;
  }
}

.tp-blog-2-content {
  text-align: center;
  padding: 50px 40px 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-2-content {
    padding: 50px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-blog-2-content {
    padding: 50px 15px;
  }
}

@media (max-width: 575px) {
  .tp-blog-2-content {
    padding: 42px 25px;
  }
}

.tp-blog-2-content .date {
  position: absolute;
  display: block;
  text-align: center;
  padding: 15px 15px 12px 16px;
  background: var(--tp-theme-primary);
  font-weight: 700;
  font-size: 40px;
  color: var(--tp-common-white);
  top: -73px;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-blog-2-content .date {
    padding: 10px 15px 0px 15px;
  }
}

@media (max-width: 575px) {
  .tp-blog-2-content .date {
    padding: 10px 15px 0px 15px;
    top: -60px;
  }
}

.tp-blog-2-content .date i {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: var(--tp-common-white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.tp-blog-2-content .tp-blog-title {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 23px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-blog-2-content .tp-blog-title {
    font-size: 21px;
  }
}

@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-blog-2-content .tp-blog-title {
    font-size: 20px;
  }
}

.tp-blog-2-content .tp-blog-title a:hover {
  color: var(--tp-theme-primary);
}

@media (max-width: 575px) {
  .tp-blog-2-content.home-3 h3 {
    font-size: 20px;
  }
}

.blog-slider-progress {
  background: #F4F6FD;
}

.blog-slider-progress-bar {
  background: var(--tp-theme-primary);
  opacity: 1;
  height: 5px;
  transition: width 400ms ease;
  width: 20%;
  margin-top: 30px;
}

.tp-blog-3-area {
  overflow: hidden;
}

.tp-blog-3-shape .shape-1 {
  position: absolute;
  top: 127px;
  left: 26%;
}

.tp-blog-3-shape .shape-2 {
  position: absolute;
  bottom: 230px;
  right: 80px;
  z-index: 1;
}

.tp-blog-3-wrapper {
  background: #F4F6FD;
  position: relative;
  z-index: 1;
}

.tp-blog-3-wrapper:hover .tp-blog-2-thumb::before {
  animation: shine 800ms;
}

.tp-blog-details-thumb img {
  max-width: 100%;
}

.tp-blog-details-info {
  margin-top: 33px;
}

.tp-blog-details-name {
  margin-right: 60px;
}

@media (max-width: 575px) {
  .tp-blog-details-name {
    margin-right: 25px;
  }
}

.tp-blog-details-name i {
  height: 14px;
  width: 14px;
  color: var(--tp-theme-primary);
  font-size: 14px;
  margin-right: 5px;
}

.tp-blog-details-name span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}

.tp-blog-details-date {
  margin-right: 60px;
}

@media (max-width: 575px) {
  .tp-blog-details-date {
    margin-right: 25px;
  }
}

.tp-blog-details-date i {
  height: 14px;
  width: 14px;
  color: var(--tp-theme-primary);
  font-size: 14px;
  margin-right: 5px;
}

.tp-blog-details-date span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}

.tp-blog-details-message i {
  height: 14px;
  width: 14px;
  color: var(--tp-theme-primary);
  font-size: 14px;
  margin-right: 5px;
}

.tp-blog-details-message span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}

.tp-blog-details-title {
  margin-top: 30px;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-blog-details-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .tp-blog-details-title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .tp-blog-details-title br {
    display: none;
  }
}

.tp-blog-details-content p {
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: #666666;
  margin-bottom: 24px;
}

.tp-blog-details-content .details-title {
  margin-top: 42px;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.tp-blog-details-no-secret {
  padding-right: 56px;
}

@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-blog-details-no-secret {
    padding-right: 0;
  }
}

.tp-blog-details-no-secret .title {
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.tp-blog-details-no-secret p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 24px;
}

.tp-blog-details-no-secret ul {
  list-style: none;
}

.tp-blog-details-no-secret ul li {
  font-weight: 500;
  font-size: 15px;
  color: #666666;
}

.tp-blog-details-no-secret ul li span {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--tp-theme-primary);
  margin-right: 20px;
}

.no-secret-thumb img {
  max-width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tagcloud {
    margin-bottom: 20px;
  }
}

.tagcloud span {
  color: var(--tp-text-2);
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  margin-right: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tagcloud span {
    margin-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tagcloud span {
    margin-right: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tagcloud span {
    margin-right: 5px;
  }
}

.tagcloud a {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #8A879F;
  margin-right: 8px;
  background: #F6F6F4;
  padding: 4px 25px;
  border-radius: 5px;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tagcloud a {
    padding: 4px 11px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tagcloud a {
    margin-bottom: 15px;
  }
}

.tagcloud a:hover {
  background: var(--tp-theme-primary);
  color: white;
}

.postbox__share span {
  color: var(--tp-text-2);
  font-size: 24px;
  font-weight: 800;
  margin-right: 20px;
}

.postbox__share .linkedin {
  font-weight: 400;
  font-size: 15px;
  color: #0072AC;
  margin-right: 20px;
}

.postbox__share .pinterest {
  font-weight: 400;
  font-size: 15px;
  color: #DA0021;
  margin-right: 20px;
}

.postbox__share .facebook {
  font-weight: 400;
  font-size: 15px;
  color: #0072AC;
  margin-right: 20px;
}

.postbox__share .twitter {
  font-weight: 400;
  font-size: 15px;
  color: #3AC4FF;
}

.postbox__more-navigation {
  margin-top: 50px;
}

.postbox__more-right .postbox__more-content span {
  margin-right: 20px;
}

.postbox__more-icon h4 {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 25px;
}

.postbox__more-icon h4:hover {
  color: var(--tp-theme-primary);
}

.postbox__more-content {
  overflow: hidden;
}

.postbox__more-content span {
  font-weight: 500;
  font-size: 15px;
  margin-left: 20px;
}

.postbox__more-content span:hover {
  color: var(--tp-theme-primary);
}

.tp-blog-details-content-thumb img {
  width: 100%;
  margin-bottom: 75px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-blog-details-content-thumb img {
    margin-bottom: 0;
  }
}

@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-blog-breadcrumb-pagination {
    margin-bottom: 60px;
  }
}

.tag-box {
  position: relative;
  padding-top: 22px;
  margin-bottom: 40px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tag-box {
    margin-top: 40px;
  }
}

.tag-box::before {
  content: "";
  position: absolute;
  background: #ECEEF3;
  height: 1px;
  width: 850px;
  top: -15px;
  left: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tag-box::before {
    width: 740px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tag-box::before {
    width: 615px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tag-box::before {
    width: 695px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tag-box::before {
    width: 515px;
  }
}

@media (max-width: 575px) {
  .tag-box::before {
    width: 320px;
  }
}

.tag-box::after {
  content: "";
  position: absolute;
  background: #ECEEF3;
  height: 1px;
  width: 850px;
  bottom: -40px;
  left: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tag-box::after {
    width: 740px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tag-box::after {
    width: 615px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tag-box::after {
    width: 695px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tag-box::after {
    width: 515px;
  }
}

@media (max-width: 575px) {
  .tag-box::after {
    width: 320px;
  }
}

.postbox__comment {
  margin-bottom: 40px;
  padding-bottom: 46px;
}

.postbox__comment ul li {
  list-style: none;
}

.postbox__comment-title {
  margin-top: 38px;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 40px;
  color: #121212;
  padding-top: 40px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .postbox__comment-title {
    padding-top: 0;
  }
}

.postbox__comment-name {
  margin-left: 30px;
}

.postbox__comment-name h3 {
  font-weight: 500;
  font-size: 15px;
  font-family: "Outfit";
  color: #121212;
  margin-bottom: 2px;
}

.postbox__comment-name .post-meta {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #8A879F;
  line-height: 1.1;
  text-transform: uppercase;
}

.postbox__comment-name p {
  font-weight: 400;
  font-size: 14px;
  color: #8A879F;
  margin-top: 13px;
}

@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) {
  .postbox__comment-name p br {
    display: none;
  }
}

.postbox__comment-avater img {
  width: 80px;
  border-radius: 50%;
}

.postbox__comment-reply a::before {
  content: "\f122";
  font-family: "Font Awesome 5 Pro";
  top: 22px;
  right: 230px;
  position: absolute;
  font-weight: 300;
  font-size: 20px;
  color: #171151;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment-reply a::before {
    right: 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment-reply a::before {
    right: 110px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment-reply a::before {
    right: 60px;
  }
}

@media (max-width: 575px) {
  .postbox__comment-reply a::before {
    right: 20px;
  }
}

.postbox__comment-reply a:hover::before {
  color: var(--tp-theme-primary);
}

.postbox__comment ul.children {
  margin-left: 100px;
  margin-top: 54px;
}

@media (max-width: 575px) {
  .postbox__comment ul.children {
    margin-left: 0;
    margin-top: 0;
  }
}

.postbox__comment ul.children .postbox__comment-reply a::before {
  right: 130px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 30px;
  }
}

@media (max-width: 575px) {
  .postbox__comment ul.children .postbox__comment-reply a::before {
    right: 20px;
  }
}

.postbox__comment-text {
  margin-top: 13px;
}

.postbox__comment::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 848px;
  top: 0;
  background: #eceef3;
}

.card-body {
  flex: inherit;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment::before {
    width: 740px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment::before {
    width: 615px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__comment::before {
    width: 695px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .postbox__comment::before {
    display: none;
  }
}

.postbox__comment::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 848px;
  bottom: 0;
  background: #eceef3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .postbox__comment::after {
    width: 740px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .postbox__comment::after {
    width: 615px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .postbox__comment::after {
    width: 695px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment::after {
    width: 515px;
  }
}

@media (max-width: 575px) {
  .postbox__comment::after {
    width: 320px;
  }
}

.postbox-form-box .post-form .input,
.postbox-form-box .post-form .textarea {
  width: 100%;
  height: 65px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: #F4F6FD;
  outline: none;
  resize: none;
}

.postbox-form-box .post-form .input:focus,
.postbox-form-box .post-form .textarea:focus {
  border-color: var(--tp-theme-primary);
}

.postbox-form-box .post-form .input:focus::placeholder,
.postbox-form-box .post-form .textarea:focus::placeholder {
  opacity: 0;
}

.postbox-form-box .post-form .textarea {
  height: 160px;
  padding: 20px 18px;
}

.postbox-form-box .post-form .contact-input {
  margin-bottom: 18px;
}

.postbox-form-box .post-form-title {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 16px;
  color: #121212;
}

.postbox-form-box .post-form-btn button {
  padding: 14px 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .postbox-form-box .post-form-btn button {
    margin-bottom: 60px;
  }
}

.postbox-form-box .post-form-btn .tp-btn:hover {
  background: #121212;
  color: #fff;
}

.postbox-form-box p {
  font-weight: 400;
  font-size: 15px;
  color: #8A879F;
  margin-bottom: 60px;
}

.tp-blog-details__search-box {
  background: #F6F6F4;
  border: 1px solid #F2F5FA;
  padding: 40px 30px;
  border-radius: 10px;
}

.tp-blog-details__search-box h3 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}

.tp-blog-details__search-box .search-form input {
  height: 61px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #F2F4F6;
  padding: 20px;
  padding-right: 50px;
}

.tp-blog-details__search-box .search-form input:focus {
  border-color: #EB9309;
}

.tp-blog-details__search-box .search-form input::placeholder {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  color: #8A879F;
}

.tp-blog-details__search-box .search-form button {
  position: absolute;
  right: 30px;
  top: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #030A39;
}

/*----------------------------------------*/
/*  8.2 price css
/*----------------------------------------*/
.tp-pricing-area {
  overflow: hidden;
}

.tp-pricing-shape .shape-1 {
  position: absolute;
  top: 66px;
  left: 94px;
}

.tp-pricing-title-wrapper .tp-section__title {
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .tp-pricing-title-wrapper .tp-section__title {
    font-size: 38px;
  }
}

.tp-pricing-item {
  background: #F4F6FD;
  padding: 0 50px 43px 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-pricing-item {
    padding: 0 35px 42px 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-pricing-item {
    padding: 0 30px 35px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-pricing-item {
    padding: 0 30px 40px 30px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-pricing-item {
    padding: 0 20px 40px 20px;
  }
}

.tp-pricing-item.pricing-active {
  background: var(--tp-theme-primary);
}

.tp-pricing-plan span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 12px;
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-text-2);
  background: var(--tp-theme-secondary);
  padding: 10px 49px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-pricing-plan span {
    padding: 10px 25px;
  }
}

.tp-pricing-title-wrapper h3 {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 44px;
  text-transform: capitalize;
  color: var(--tp-text-2);
  margin-bottom: 36px;
}

@media (max-width: 575px) {
  .tp-pricing-title-wrapper h3 {
    font-size: 40px;
  }
}

.tp-pricing-title-wrapper.pricing-active .tp-price-title {
  color: var(--tp-common-white);
}

.tp-pricing-thumb {
  position: relative;
  background: var(--tp-common-white);
  width: 292px;
  min-height: 205px;
  line-height: 205px;
  margin-bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-pricing-thumb {
    margin-left: -8px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-pricing-thumb {
    width: 240px;
    line-height: 200px;
  }
}

.tp-pricing-thumb.pricing-active {
  background: #3255E8;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-pricing-thumb.pricing-active {
    margin-left: -8px;
  }
}

.tp-pricing-border {
  position: absolute;
  top: -2px;
}

.tp-pricing-border svg {
  width: 100%;
}

.tp-pricing-box.pricing-active .box-shape {
  background: var(--tp-common-white);
}

.tp-pricing-box .box-shape {
  position: absolute;
  height: 8px;
  width: 8px;
  background: var(--tp-theme-primary);
}

.tp-pricing-box .box-shape.top-left {
  top: -10px;
  left: -10px;
}

.tp-pricing-box .box-shape.top-right {
  top: -10px;
  right: -10px;
}

.tp-pricing-box .box-shape.bottom-left {
  bottom: -10px;
  left: -10px;
}

.tp-pricing-box .box-shape.bottom-right {
  bottom: -10px;
  right: -10px;
}

.tp-pricing-content-shape .shape-2 {
  position: absolute;
  top: -400px;
  left: -46px;
  z-index: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-pricing-content-shape .shape-2 {
    left: -32px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-pricing-content-shape .shape-2 {
    left: -28px;
  }
}

.tp-pricing-content-shape .shape-3 {
  position: absolute;
  top: -118px;
  left: 0;
}

.tp-pricing-content-shape .shape-4 {
  position: absolute;
  bottom: -42px;
  right: -50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-pricing-content-shape .shape-4 {
    right: -35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-pricing-content-shape .shape-4 {
    bottom: -36px;
    right: -30px;
  }
}

.tp-pricing-content-feature.pricing-active ul li {
  color: var(--tp-common-white);
}

.tp-pricing-content-feature.pricing-active ul li i {
  color: var(--tp-common-white);
}

.tp-pricing-content-feature.pricing-active ul li.has-denied i {
  color: var(--tp-theme-secondary);
}

.tp-pricing-content-feature ul li {
  position: relative;
  font-weight: 500;
  font-size: 17px;
  color: #6A6D7A;
  list-style: none;
  padding-left: 30px;
  margin-bottom: 1px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-pricing-content-feature ul li {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-pricing-content-feature ul li {
    padding-left: 8px;
  }
}

.tp-pricing-content-feature ul li i {
  color: var(--tp-theme-primary);
  font-weight: 400;
  font-size: 17px;
  line-height: 40px;
  margin-right: 20px;
  transform: translateY(2px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-pricing-content-feature ul li i {
    margin-right: 10px;
  }
}

.tp-pricing-content-feature ul li.has-denied i {
  color: #FF4D01;
}

.tp-pricing-content-btn.pricing-active .tp-btn {
  background: var(--tp-theme-secondary);
  color: var(--tp-text-2);
}

.tp-pricing-content-btn .tp-btn {
  padding: 18px 30px;
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
  margin-top: 40px;
}

.tp-pricing-content-btn .tp-btn:hover::before {
  display: none;
}

.tp-pricing-content-btn .tp-btn:hover i {
  animation: tfLeftToRight 0.5s forwards;
}

.tp-pricing-content-btn .tp-btn i {
  margin-left: 10px;
}

.tp-pricing-tab-nav {
  position: relative;
  padding: 10px 10px;
  background-color: #F4F6FD;
  width: 266px;
}

.tp-pricing-tab-nav .nav.background button {
  background: var(--tp-common-white);
  color: var(--tp-text-2);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  display: inline-block;
  margin-left: 10px;
  border-radius: 0;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.tp-pricing-tab-nav .nav.background .active {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.line-dash-path {
  stroke-dasharray: 8;
  stroke-dashoffset: 350;
  -webkit-animation: tp-line-dash 30s linear forwards infinite;
  animation: tp-line-dash 30s linear forwards infinite;
}

/*----------------------------------------*/
/* 8.3 project css
/*----------------------------------------*/
.tp-project-thumb {
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.tp-project-thumb:hover::after {
  opacity: 1;
  visibility: visible;
}

.tp-project-thumb:hover .tp-project-title-wrapper .tp-project-title {
  visibility: visible;
  opacity: 1;
  transform: translateY(5px);
}

.tp-project-thumb:hover .tp-project-title-wrapper p {
  visibility: visible;
  opacity: 1;
  transform: translateY(5px);
}

.tp-project-thumb:hover .tp-project-btn a {
  visibility: visible;
  opacity: 1;
  transform: translateY(5px);
  transition: all 0.3s;
}

.tp-project-thumb:hover .tp-project-btn a i {
  transition: all 0.3s;
}

.tp-project-thumb:hover .tp-project-btn a:hover {
  color: var(--tp-common-white);
}

.tp-project-thumb:hover .tp-project-btn a:hover i {
  transform: rotate(45deg);
}

.tp-project-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;
  opacity: 0;
  visibility: hidden;
}

.tp-project-content {
  position: absolute;
  bottom: 28px;
  left: 30px;
  transition: 0.5s;
  z-index: 2;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-project-content {
    bottom: 100px;
  }
}

.tp-project-title-wrapper .tp-project-title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 4px;
  text-transform: capitalize;
  color: var(--tp-common-white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 0.4s ease-in-out;
}

.tp-project-title-wrapper .tp-project-title a {
  background-image: linear-gradient(#ffffff, #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-project-title-wrapper .tp-project-title a:hover {
  background-size: 0 2px, 100% 1px;
}

.tp-project-title-wrapper p {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 0.5s ease-in-out;
}

.tp-project-btn {
  position: absolute;
  bottom: 28px;
  right: 30px;
  transition: 0.5s;
  z-index: 2;
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-project-btn {
    left: 30px;
  }
}

.tp-project-btn a {
  background: var(--tp-theme-secondary);
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  color: #0D1C37;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: 0.3s;
}

.tp-project-details-thumb-1 img {
  height: 450px;
  object-fit: cover;
}

@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-project-details-thumb-1,
  .tp-project-details-thumb-2,
  .tp-project-details-thumb-3,
  .tp-project-details-thumb-4 {
    margin-bottom: 30px;
  }
}

.tp-project-details-thumb-1 img,
.tp-project-details-thumb-2 img,
.tp-project-details-thumb-3 img,
.tp-project-details-thumb-4 img {
  max-width: 100%;
}

.tp-project-details-list {
  background: #F4F6FD;
  padding: 50px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-details-list {
    padding: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-details-list {
    padding: 25px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-project-details-list {
    padding: 15px;
  }
}

.tp-project-details-list ul li {
  list-style: none;
  background: var(--tp-common-white);
  padding-left: 24px;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 10px;
  color: #6A6D7A;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-details-list ul li {
    padding-left: 15px;
  }
}

.tp-project-details-list ul li span {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 60px;
  color: var(--tp-text-2);
  width: 110px;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-details-list ul li span {
    width: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-project-details-list ul li span {
    width: 80px;
  }
}

.tp-project-details-list ul li span::after {
  position: absolute;
  content: ":";
  top: 0px;
  right: 20px;
  font-weight: 400;
  font-size: 15px;
  color: #6A6D7A;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-project-details-list ul li span::after {
    right: 8px;
  }
}

.tp-project-details-text .tp-project-details-title {
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 22px;
}

.tp-project-details-text p {
  font-weight: 400;
  font-size: 15px;
  color: #6A6D7A;
  line-height: 30px;
  margin-bottom: 20px;
}

/*----------------------------------------*/
/*  8.5 shop css
/*----------------------------------------*/
.tp-shop-listing {
  background: #F4F6FD;
  padding: 30px 30px 30px 40px;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .tp-shop-listing {
    padding: 30px 15px 30px 15px;
  }
}

.tp-shop-listing-number .tp-shop-list-title {
  font-weight: 400;
  font-size: 15px;
  line-height: 32px;
  color: #6A6D7A;
}

.tp-shop-from .nice-select {
  background: var(--tp-common-white);
  width: 400px;
  height: 62px;
  padding: 0 25px;
  border: none;
  line-height: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-shop-from .nice-select {
    width: 300px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-shop-from .nice-select {
    width: 270px;
  }
}

.tp-shop-from .nice-select .option.selected {
  width: 400px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 400px) and (max-width: 576px) {
  .tp-shop-from .nice-select .option.selected {
    width: 300px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 400px) {
  .tp-shop-from .nice-select .option.selected {
    width: 265px;
  }
}

.tp-shop-from .nice-select .list {
  border-radius: 0;
}

.tp-shop-from .nice-select::after {
  content: "\f063";
}

.tp-shop-from .nice-select::before {
  position: absolute;
  content: "";
  background: var(--tp-theme-secondary);
  height: 62px;
  width: 62px;
  text-align: center;
  right: 0;
  top: 0px;
}

.tp-shop-from .nice-select span {
  font-weight: 400;
  font-size: 15px;
}

.tp-shop-item:hover .tp-shop-item-thumb::before {
  visibility: visible;
  opacity: 1;
}

.tp-shop-item:hover .tp-shop-action .product-action-1,
.tp-shop-item:hover .tp-shop-action .product-action-2,
.tp-shop-item:hover .tp-shop-action .product-action-3 {
  visibility: visible;
  opacity: 1;
  transform: translateY(-70px);
}

.tp-shop-item-thumb {
  margin-bottom: 20px;
}

.tp-shop-item-thumb img {
  max-width: 100%;
}

.tp-shop-item-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, rgba(33, 68, 216, 0.37) 0%, #2144D8 100%);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-shop-item-thumb {
    height: auto;
    width: auto;
  }
}

.tp-shop-item-title-wrapper .tp-product-ammount {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-theme-primary);
}

.tp-shop-item-title-wrapper .tp-product-old-ammount {
  font-weight: 400;
  font-size: 14px;
  text-decoration-line: line-through;
  color: var(--tp-text-1);
}

.tp-shop-item-title {
  font-weight: 600;
  font-size: 22px;
}

.tp-shop-item-title a:hover {
  color: var(--tp-theme-secondary);
}

.tp-shop-action {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  bottom: -25px;
}

.tp-shop-action .product-action-1 {
  visibility: hidden;
  opacity: 0;
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}

.tp-shop-action .product-action-2 {
  visibility: hidden;
  opacity: 0;
  transform: translateY(0px);
  transition: all 0.4s ease-in-out;
}

.tp-shop-action .product-action-3 {
  visibility: hidden;
  opacity: 0;
  transform: translateY(0px);
  transition: all 0.5s ease-in-out;
}

.tp-shop-action button {
  border: 1px solid #fff;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  line-height: 40px;
  margin-right: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-common-white);
  transition: all 0.3s ease-in-out;
}

.tp-shop-action button:hover {
  background: var(--tp-theme-secondary);
  border-color: var(--tp-theme-secondary);
}

.tp-shop-action button:hover i {
  color: var(--tp-text-2);
  transition: all 0.3s ease-in-out;
}

[dir=rtl] .product__details-thumb-tab {
  margin-right: 0;
  margin-left: 70px;
}

@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) {
  .product__details-thumb-tab {
    margin-right: 0;
  }
}

.product__details-thumb-tab-content {
  margin-bottom: 14px;
}

.product__details-thumb-tab-nav .nav-link {
  width: 110px;
  height: 110px;
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .product__details-thumb-tab-nav .nav-link {
    margin-right: 12px;
  }
}

.product__details-thumb-tab-nav .nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--tp-theme-1);
  opacity: 0;
  visibility: hidden;
}

.product__details-thumb-tab-nav .nav-link.active::after {
  visibility: visible;
  opacity: 1;
}

.product__details-thumb-stock {
  margin-bottom: 13px;
}

.product__details-thumb-stock span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--tp-theme-1);
  border: 1px solid rgba(245, 9, 99, 0.1);
  padding: 5px 18px;
}

.product__details-thumb-title {
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 5px;
}

.product__details-thumb-rating {
  margin-bottom: 13px;
}

.product__details-thumb-rating-count {
  position: relative;
  margin-bottom: 2px;
  padding-left: 9px;
}

.product__details-thumb-rating-count::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 1px;
  height: 20px;
  background-color: #DADCE0;
}

.product__details-thumb-rating-count span {
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-thumb-wrapper {
    margin-top: 40px;
  }
}

.product__details-thumb-wrapper p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 23px;
}

.product__details-thumb-price {
  margin-bottom: 35px;
}

.product__details-thumb-price span {
  line-height: 1;
}

.product__details-thumb-ammount {
  font-weight: 600;
  font-size: 24px;
  color: var(--tp-common-black);
}

.product__details-thumb-ammount.old-ammount {
  font-weight: 400;
  font-size: 15px;
  text-decoration-line: line-through;
  color: var(--tp-text-1);
}

.product__details-thumb-ammount.new-ammount {
  font-weight: 600;
  font-size: 24px;
  color: var(--tp-common-black);
  margin-left: 1px;
}

[dir=rtl] .product__details-thumb-ammount.new-ammount {
  margin-left: 0;
  margin-right: 1px;
}

.product__details-thumb-offer {
  margin-left: 2px;
  font-weight: 700;
  font-size: 13px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  padding: 3px 9px;
  display: inline-block;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

.product__details-thumb-quantity {
  margin-bottom: 40px;
}

.product__details-thumb-action {
  padding-bottom: 34px;
  border-bottom: 1px solid #DADCE0;
  margin-bottom: 32px;
}

.product__details-thumb-action button {
  margin-bottom: 6px;
}

.product__details-thumb-action button:not(:last-child) {
  margin-right: 6px;
}

[dir=rtl] .product__details-thumb-action button:not(:last-child) {
  margin-right: 0;
  margin-left: 6px;
}

.product__details-thumb-action button.product-action-btn {
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  font-size: 18px;
  color: var(--tp-common-black);
  border: 1px solid #DADCE0;
}

.product__details-thumb-action button.product-action-btn .product-action-tooltip {
  top: auto;
  bottom: 90%;
  left: auto;
  right: auto;
  margin: auto;
  margin-bottom: 10px;
  -webkit-transform: translate(-57%, 0%);
  -moz-transform: translate(-57%, 0%);
  -ms-transform: translate(-57%, 0%);
  -o-transform: translate(-57%, 0%);
  transform: translate(-57%, 0%);
}

[dir=rtl] .product__details-thumb-action button.product-action-btn .product-action-tooltip {
  -webkit-transform: translate(57%, 0%);
  -moz-transform: translate(57%, 0%);
  -ms-transform: translate(57%, 0%);
  -o-transform: translate(57%, 0%);
  transform: translate(57%, 0%);
}

.product__details-thumb-action button.product-action-btn .product-action-tooltip::after {
  top: 100%;
  right: 50%;
  left: auto;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  -moz-transform: translate(50%, -50%) rotate(45deg);
  -ms-transform: translate(50%, -50%) rotate(45deg);
  -o-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}

.product__details-thumb-action button.product-action-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
}

.product__details-thumb-action button.product-action-btn:hover .product-action-tooltip {
  bottom: 100%;
  top: auto;
  right: auto;
}

.product__details-thumb-more p {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--tp-common-black);
}

.product__details-thumb-more span {
  font-size: 15px;
  line-height: 1;
  color: var(--tp-text-1);
}

.product__details-thumb-more span a:hover {
  color: var(--tp-theme-1);
}

.product__details-thumb-categories {
  margin-bottom: 15px;
}

.product__details-thumb-tags {
  margin-bottom: 15px;
}

.product__details-thumb-tags span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--tp-common-black);
  margin-right: 3px;
}

[dir=rtl] .product__details-thumb-tags span {
  margin-right: 0;
  margin-left: 3px;
}

.product__details-thumb-tags a {
  font-size: 14px;
  line-height: 1;
  color: var(--tp-text-1);
  border: 1px solid #DADCE0;
  padding: 4px 12px;
  margin-bottom: 6px;
  display: inline-block;
}

.product__details-thumb-tags a:hover {
  background-color: var(--tp-theme-1);
  border-color: var(--tp-theme-1);
  color: var(--tp-common-white);
}

.product__details-thumb-share span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--tp-common-black);
  margin-right: 9px;
}

[dir=rtl] .product__details-thumb-share span {
  margin-right: 0;
  margin-left: 9px;
}

.product__details-thumb-share a {
  font-size: 14px;
  line-height: 1;
  color: var(--tp-text-1);
  margin-bottom: 6px;
  margin-right: 10px;
}

[dir=rtl] .product__details-thumb-share a {
  margin-right: 0;
  margin-left: 10px;
}

.product__details-thumb-share a:hover {
  color: var(--tp-theme-1);
}

.product__details-thumb-tab-nav {
  border-bottom: 1px solid #DADCE0;
}

.product__details-thumb-tab-nav-inner {
  position: relative;
}

.product__details-thumb-tab-nav .nav-link {
  position: relative;
  padding: 11px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-text-1);
}

.product__details-thumb-tab-nav .nav-link.active,
.product__details-thumb-tab-nav .nav-link:hover {
  color: var(--tp-common-black);
}

.product__details-thumb-tab-nav .nav-link.active::after,
.product__details-thumb-tab-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

[dir=rtl] .product__details-thumb-tab-nav .nav-link.active::after,
[dir=rtl] .product__details-thumb-tab-nav .nav-link:hover::after {
  left: auto;
  right: 0;
}

@media (max-width: 575px) {
  .product__details-thumb-tab-nav .nav-link::after {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: -1px;
    width: 0%;
    height: 2px;
    background-color: var(--tp-theme-3);
    transition: all 0.3s ease-in-out;
  }
}

.product__details-thumb-tab-nav .tp-tab-menu {
  position: relative;
}

.product__details-thumb-tab-nav .tp-tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 38%;
  height: 2px;
  background-color: var(--tp-theme-1);
}

@media (max-width: 575px) {
  .product__details-thumb-description-content {
    padding-right: 0;
  }
}

.product__details-thumb-description-content .product-desc-title {
  font-weight: 500;
  font-size: 34px;
  color: var(--tp-common-black-solid);
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .product__details-thumb-description-content .product-desc-title {
    font-size: 25px;
  }
}

.product__details-thumb-description-content p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--tp-text-1);
  margin-bottom: 25px;
}

.product__details-thumb-description .product-desc-feature-thumb {
  margin-bottom: 30px;
}

[dir=rtl] .product__details-thumb-description .product-desc-feature-thumb {
  margin-right: 0;
  margin-left: 25px;
}

.product__details-thumb-description .product-desc-feature-content p {
  line-height: 1.56;
  padding-right: 75px;
}

@media (max-width: 575px) {
  .product__details-thumb-description .product-desc-feature-content p {
    padding-right: 0;
  }
}

.product__details-thumb-additional {
  margin-top: 67px;
  background-color: var(--tp-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-thumb-additional {
    overflow-x: scroll;
  }
}

.product__details-thumb-additional-inner {
  padding: 45px 70px 45px;
  border: 1px solid #E9E9F0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-thumb-additional-inner {
    padding: 15px 40px 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-thumb-additional-inner {
    width: 768px;
  }
}

.product__details-thumb-additional table {
  width: 100%;
}

.product__details-thumb-additional table tr {
  padding: 16px 0 14px;
  display: block;
}

.product__details-thumb-additional table tr:not(:last-child) {
  border-bottom: 1px solid #E9E9F0;
}

.product__details-thumb-additional table tr th {
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-common-black);
  width: 28%;
  display: inline-block;
}

.product__details-thumb-additional table tr td {
  width: 71%;
  display: inline-block;
  font-size: 15px;
  color: var(--tp-text-1);
}

.product__details-thumb-review-inner {
  padding: 62px 70px 70px;
  border: 1px solid #E9E9F0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-thumb-review-inner {
    padding: 35px 40px 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__details-thumb-review-inner {
    padding: 25px 30px 30px;
  }
}

@media (max-width: 575px) {
  .product__details-thumb-review-inner {
    padding: 15px 20px 20px;
  }
}

.product__details-thumb-review .product-rating-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 22px;
}

.product__details-thumb-review .product-rating-number {
  text-align: center;
  width: 160px;
  height: 125px;
  border: 1px solid #E9E9F0;
  padding-top: 21px;
  padding-bottom: 21px;
}

[dir=rtl] .product__details-thumb-review .product-rating-number {
  margin-right: 0;
  margin-left: 40px;
}

@media (max-width: 575px) {
  .product__details-thumb-review .product-rating-number {
    margin-bottom: 15px;
  }
}

.product__details-thumb-review .product-rating-number-title {
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--tp-common-black-solid);
  margin-bottom: 0;
}

.product__details-thumb-review .product-rating-star {
  line-height: 1;
}

.product__details-thumb-review .product-rating-star span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-common-yellow-5);
  display: inline-block;
}

.product__details-thumb-review .product-rating-star span:not(:last-child) {
  margin-right: 3px;
}

[dir=rtl] .product__details-thumb-review .product-rating-star span:not(:last-child) {
  margin-right: 0;
  margin-left: 3px;
}

.product__details-thumb-review .product-rating-bar {
  width: 100%;
  background-color: #E9E9E9;
  border-radius: 10px;
}

.product__details-thumb-review .product-rating-bar-wrapper {
  width: 71.5%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product__details-thumb-review .product-rating-bar-wrapper {
    width: 70%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-thumb-review .product-rating-bar-wrapper {
    width: 66%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__details-thumb-review .product-rating-bar-wrapper {
    width: 52%;
  }
}

@media (max-width: 575px) {
  .product__details-thumb-review .product-rating-bar-wrapper {
    width: 100%;
  }
}

.product__details-thumb-review .product-rating-bar .single-progress {
  background-color: var(--tp-theme-1);
  height: 8px;
  border-radius: 10px;
}

.product__details-thumb-review .product-rating-bar-text {
  width: 3.5%;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-thumb-review .product-rating-bar-text {
    width: 7.5%;
  }
}

.product__details-thumb-review .product-rating-bar-text span {
  font-size: 14px;
  color: var(--tp-text-1);
}

.product__details-thumb-review .product-rating-bar-item:not(:last-child) {
  margin-bottom: 5px;
}

.product__details-thumb-review .product-review-item {
  margin-bottom: 30px;
}

.product__details-thumb-review .product-review-item:last-child {
  margin-bottom: 0;
}

.product__details-thumb-review .product-review-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tp-text-1);
}

.product__details-thumb-review .product-review-avater {
  margin-bottom: 11px;
}

.product__details-thumb-review .product-review-avater-thumb img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
}

[dir=rtl] .product__details-thumb-review .product-review-avater-thumb img {
  margin-right: 0;
  margin-left: 10px;
}

.product__details-thumb-review .product-review-avater-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
}

.product__details-thumb-review .product-review-rating {
  margin-bottom: 5px;
}

.product__details-thumb-review .product-review-rating-wrapper {
  margin-right: 10px;
}

[dir=rtl] .product__details-thumb-review .product-review-rating-wrapper {
  margin-right: 0;
  margin-left: 10px;
}

.product__details-thumb-review .product-review-rating-wrapper span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-common-yellow-5);
  display: inline-block;
}

.product__details-thumb-review .product-review-rating-wrapper span:not(:last-child) {
  margin-right: 3px;
}

[dir=rtl] .product__details-thumb-review .product-review-rating-wrapper span:not(:last-child) {
  margin-right: 0;
  margin-left: 3px;
}

.product__details-thumb-review .product-review-rating-date span {
  font-weight: 400;
  font-size: 13px;
  color: var(--tp-text-1);
}

.product__details-thumb-review .product-review-form p {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-text-1);
  margin-bottom: 20px;
}

.product__details-thumb-review .product-review-form-title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product__details-thumb-review .product-review-form-rating .rate-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: -0.02em;
  color: var(--tp-text-1);
}

.product__details-thumb-review .product-review-input {
  margin-bottom: 18px;
  line-height: 1;
}

.product__details-thumb-review .product-review-input.is-textarea {
  margin-bottom: 30px;
}

.product__details-thumb-review .product-review-input input,
.product__details-thumb-review .product-review-input textarea {
  height: 60px;
  line-height: 60px;
  background-color: #F7F7F7;
  border: 1.5px solid #F7F7F7;
}

.product__details-thumb-review .product-review-input input:focus,
.product__details-thumb-review .product-review-input textarea:focus {
  border-color: var(--tp-theme-1);
  background-color: var(--tp-common-white);
}

.product__details-thumb-review .product-review-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #B2B2B9;
  border-radius: 4px;
  outline: none;
  flex: 0 0 auto;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  padding: 0;
}

.product__details-thumb-review .product-review-agree input:checked {
  position: relative;
  background-color: var(--tp-theme-1);
  border-color: transparent;
}

.product__details-thumb-review .product-review-agree input:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--tp-ff-fontawesome);
  font-size: 10px;
  color: var(--tp-common-white);
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product__details-thumb-review .product-review-agree input:hover {
  cursor: pointer;
}

.product__details-thumb-review .product-review-agree label {
  padding-left: 8px;
  font-size: 14px;
  line-height: 1.71;
  color: var(--tp-text-1);
}

[dir=rtl] .product__details-thumb-review .product-review-agree label {
  padding-left: 0;
  padding-right: 8px;
}

.product__details-thumb-review .product-review-agree label a {
  color: var(--tp-common-black);
  font-weight: 600;
  padding-left: 4px;
}

.product__details-thumb-review .product-review-agree label a:hover {
  color: var(--tp-theme-1);
}

.product__details-thumb-review .product-review-agree label:hover {
  cursor: pointer;
}

.product__details-thumb-review .product-review-btn .tp-btn {
  font-weight: 600;
  font-size: 15px;
  padding: 12px 37px;
}

.product__details-thumb-review .product-review-btn .tp-btn:hover {
  background-color: var(--tp-common-black);
}

.tp-tab .nav-tabs .nav-link img {
  height: 100%;
  width: 110px;
}

/*----------------------------------------*/
/*  7.5 cart css
/*----------------------------------------*/
.tpcartitem {
  position: relative;
}

.tpcartitem::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: var(--tp-border-1);
  top: 0;
  right: -20px;
}

.tpcartitem__thumb {
  overflow: hidden;
  border-radius: 10px;
  display: inline-block;
}

.tpcartitem__thumb img {
  border-radius: 10px;
  -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 0.3s ease-out 0s;
}

.tpcartitem__thumb img:hover {
  transform: scale(1.1);
}

.tpcartitem__content ul li {
  list-style: none;
  margin-bottom: 2px;
}

.tpcartitem__content ul li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--tp-text-body);
  display: inline-block;
}

.tpcartitem__content ul li a:hover {
  color: var(--tp-heading-secondary);
}

.tpcartitem__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--tp-heading-primary);
}

.tpcartitem__title a:hover {
  color: var(--tp-heading-secondary);
}

.tpcartitem__all {
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-heading-primary);
  display: inline-block;
  margin-top: 10px;
}

.tpcartitem__all i {
  transform: translateY(1px);
  margin-left: -3px;
  display: inline-block;
}

.tpsubscribe__item {
  box-shadow: 0px 0px 50px rgba(31, 46, 168, 0.08);
  border-radius: 10px;
  background-color: var(--tp-common-white);
  padding: 40px 50px;
  margin-bottom: -65px;
}

@media (max-width: 575px) {
  .tpsubscribe__item {
    padding: 40px 15px;
    margin-bottom: 65px;
  }
}

.tpsubscribe__form {
  position: relative;
  margin-left: -20px;
}

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

@media (max-width: 575px) {
  .tpsubscribe__form {
    margin-left: 0px;
  }
}

.tpsubscribe__form input {
  width: 280px;
  height: 50px;
  border: 2px solid var(--tp-border-3);
  border-radius: 50px;
  padding: 5px 50px;
}

@media (max-width: 575px) {
  .tpsubscribe__form input {
    width: 100%;
  }
}

.tpsubscribe__form span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}

@media (max-width: 575px) {
  .tpsubscribe__form span {
    top: 12px;
    transform: translateY(0%);
  }
}

.tpsubscribe__form-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 13px;
  line-height: 19px;
  color: var(--tp-common-white);
  text-transform: uppercase;
  padding: 12px 30px;
  background-color: var(--tp-theme-1);
  border-radius: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpsubscribe__form-btn {
    right: 165px;
  }
}

@media (max-width: 575px) {
  .tpsubscribe__form-btn {
    position: static;
    margin-top: 40px;
  }
}

.tpsubscribe__form-btn:hover {
  background-color: var(--tp-heading-secondary);
}

.tpsubscribe__content p {
  color: var(--tp-theme-1);
  font-size: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tpsubscribe__content p {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .tpsubscribe__content p br {
    display: none;
  }
}

.program-section__thumb h5 {
  font-size: 16px;
}

.br-10 {
  -webkit-border-radius: 10px;
}

.table-content table {
  background: var(--tp-common-white);
  border-color: var(--tp-border-1);
  border-radius: 0;
  border-style: solid;
  border-width: 1px 0 0 1px;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .table-content table {
    width: 150%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .table-content table {
    width: 200%;
  }
}

@media (max-width: 575px) {
  .table-content table {
    width: 300%;
  }
}

.table-content table.table> :not(:first-child) {
  border-top: 0;
}

.table-content .table> :not(:last-child)> :last-child>* {
  border-bottom-color: var(--tp-border-1);
}

.table-content .product-quantity {
  float: none;
}

.table-content table td.product-name {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}

.table-content table td.product-name a:hover {
  color: var(--tp-text-primary);
}

.table-content table td {
  border-top: medium none;
  padding: 15px 10px;
  vertical-align: middle;
  font-size: 15px;
}

.table-content table th,
.table-content table td {
  border-bottom: 1px solid var(--tp-border-1);
  border-right: 1px solid var(--tp-border-1);
}

.product-quantity input {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  border: 1px solid var(--tp-border-1);
}

.table td,
.table th {
  border-top: 1px solid var(--tp-border-1);
}

.product-quantity>input {
  background-color: #fff;
  height: 30px;
  width: 80px;
  border-radius: 3px;
}

.table-content table td.product-subtotal {
  font-size: 15px;
}

.table-content table td .cart-plus-minus {
  float: none;
  margin: 0 auto;
}

.coupon-all {
  margin-top: 50px;
}

.coupon {
  float: left;
}

@media (max-width: 767px) {
  .coupon {
    float: none;
  }
}

#coupon_code {
  height: 52px;
  border: 1px solid var(--tp-border-1);
  padding: 0 15px;
  margin-right: 10px;
  border-radius: 0;
  background: #fff;
  margin-bottom: 15px;
  width: 265px;
}

.tp-btn.tp-color-btn {
  padding: 13px 33px;
}

@media (max-width: 767px) {
  #coupon_code {
    margin-bottom: 15px;
  }
}

.coupon2 {
  float: right;
}

@media (max-width: 767px) {
  .coupon2 {
    float: none;
    margin-top: 15px;
  }
}

.cart-page-total {
  padding-top: 50px;
}

.cart-page-total>h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.cart-page-total>ul {
  border: 1px solid var(--tp-border-1);
}

.cart-page-total>ul>li {
  list-style: none;
  font-size: 15px;
  color: #6f7172;
  padding: 10px 30px;
  border-bottom: 1px solid var(--tp-border-1);
  font-weight: 400;
}

.cart-page-total ul>li>span {
  float: right;
}

.cart-page-total li:last-child {
  border-bottom: 0;
}

td.product-thumbnail img {
  width: 125px;
}

.tp-product-quantity .cart-input {
  height: 30px;
  background-color: #FFF;
}

.product-quantity .cart-plus,
.product-quantity .cart-minus {
  width: 25px;
  height: 30px;
  border: 1px solid var(--tp-border-1);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  transition: 0.3s;
}

.product-quantity .cart-plus:hover,
.product-quantity .cart-minus:hover {
  cursor: pointer;
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
}

.cart-input {
  height: 30px;
  width: 32px;
  text-align: center;
  font-size: 14px;
  border: none;
  border-top: 2px solid var(--tp-border-1);
  border-bottom: 2px solid var(--tp-border-1);
  display: inline-block;
  vertical-align: middle;
  margin: 0 -3px;
  padding-bottom: 0px;
}

.tp-wish-cart {
  min-width: 150px;
}

/* Checkout */
.coupon-accordion h3 {
  background-color: #f6f6f6;
  border-top: 2px solid rgb(234, 187, 0);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 25px;
  padding: 1em 2em 1em 3.5em;
  position: relative;
  width: auto;
}

.coupon-accordion h3::before {
  content: "\f07b";
  left: 15px;
  top: 13px;
  position: absolute;
  color: #6f7172;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.coupon-accordion span {
  color: #6f7172;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.coupon-accordion span:hover,
p.lost-password a:hover {
  color: var(--tp-theme-primary);
}

.coupon-content {
  border: 1px solid #eaedff;
  display: none;
  margin-bottom: 20px;
  padding: 30px;
}

.coupon-info p.coupon-text {
  margin-bottom: 15px;
}

.coupon-info p {
  margin-bottom: 0;
}

.coupon-info p.form-row-first label,
.coupon-info p.form-row-last label {
  display: block;
  color: #6f7172;
}

.coupon-info p.form-row-first label span.required,
.coupon-info p.form-row-last label span.required {
  color: red;
  font-weight: 700;
}

.coupon-info p.form-row-first input,
.coupon-info p.form-row-last input {
  border: 1px solid #eaedff;
  height: 45px;
  margin: 0 0 14px;
  max-width: 100%;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  box-shadow: none;
}

.coupon-info p.form-row-first input:focus,
.coupon-info p.form-row-last input:focus {
  border-color: var(--tp-text-primary);
}

.coupon-info p.form-row input[type=submit]:hover,
p.checkout-coupon input[type=submit]:hover {
  background: #3e976c none repeat scroll 0 0;
}

.coupon-info p.form-row input[type=checkbox] {
  position: relative;
  top: 4px;
  transform: translateY(-4px);
}

.form-row>label {
  margin-top: 15px;
  margin-left: 15px;
  color: #6f7172;
}

.buttons-cart input,
.coupon input[type=submit],
.buttons-cart a,
.coupon-info p.form-row input[type=submit] {
  background: #252525 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

p.lost-password {
  margin-top: 15px;
}

p.lost-password a {
  color: #6f6f6f;
}

p.checkout-coupon input[type=text] {
  height: 45px;
  padding: 0 15px;
  width: 100%;
  border: 1px solid #eaedff;
  margin-bottom: 15px;
  outline: none;
  box-shadow: none;
}

p.checkout-coupon input[type=text]:focus {
  border-color: var(--tp-text-primary);
}

.coupon-checkout-content {
  display: none;
}

.checkbox-form h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 24px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.country-select {
  margin-bottom: 30px;
  position: relative;
}

.country-select select {
  width: 100%;
  font-size: 15px;
  background-color: transparent;
  border: 1px solid #eaedff;
  padding: 0 10px;
  height: 50px;
}

.country-select label,
.checkout-form-list label {
  color: #6f7172;
  display: block;
  margin: 0 0 5px;
}

.country-select label span.required,
.checkout-form-list label span.required {
  color: red;
}

.country-select .nice-select {
  border: 1px solid #eaedff;
  height: 52px;
  padding-left: 10px;
  width: 100%;
  color: var(--tp-text-body);
  margin-bottom: 20px;
  line-height: 50px;
}

.country-select .nice-select::after {
  right: 20px;
  top: 25px;
}

.country-select .nice-select .list {
  width: 100%;
}

.checkout-form-list {
  margin-bottom: 30px;
}

.checkout-form-list label {
  color: var(--tp-text-body);
}

.checkout-form-list input[type=text],
.checkout-form-list input[type=password],
.checkout-form-list input[type=email] {
  background: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  height: 52px;
  padding: 0 0 0 10px;
  width: 100%;
  outline: none;
  box-shadow: none;
}

.checkout-form-list input[type=text]:focus,
.checkout-form-list input[type=password]:focus,
.checkout-form-list input[type=email]:focus {
  border-color: var(--tp-text-primary);
}

.checkout-form-list input[type=text]::-moz-placeholder,
.checkout-form-list input[type=password]::-moz-placeholder,
.checkout-form-list input[type=email]::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=text]::placeholder,
.checkout-form-list input[type=password]::placeholder,
.checkout-form-list input[type=email]::placeholder {
  color: #6f7172;
  opacity: 1;
}

.checkout-form-list input[type=checkbox] {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 4px;
  transform: translateY(-3px);
}

.create-acc label {
  color: var(--tp-text-body);
  display: inline-block;
}

.checkout-form-list #cbox {
  transform: translateY(-5px);
}

.create-account {
  display: none;
}

.ship-different-title h3 label {
  display: inline-block;
  margin-right: 20px;
  color: var(--tp-text-body);
}

.ship-different-title h3 #ship-box {
  transform: translateY(-2px);
}

.order-notes textarea {
  border: 1px solid #eaedff;
  height: 120px;
  padding: 15px;
  width: 100%;
  outline: 0;
  resize: none;
}

.order-notes textarea:focus {
  border-color: var(--tp-text-primary);
}

.order-notes textarea::-moz-placeholder {
  color: #6f7172;
  opacity: 1;
}

.order-notes textarea::placeholder {
  color: #6f7172;
  opacity: 1;
}

#ship-box-info {
  display: none;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-default>.panel-heading {
  border-radius: 0;
}

.your-order {
  padding: 30px 40px 45px;
  border: 1px solid rgb(234, 187, 0);
}

@media (max-width: 767px) {
  .your-order {
    padding: 15px;
  }
}

.your-order h3 {
  border-bottom: 1px solid #eaedff;
  font-size: 30px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  width: 100%;
}

.your-order-table table {
  background: none;
  border: 0;
  width: 100%;
}

.your-order-table table th,
.your-order-table table td {
  border-bottom: 1px solid #eaedff;
  border-right: medium none;
  color: #6f7172;
  font-size: 14px;
  padding: 15px 0;
  text-align: left;
}

@media (max-width: 767px) {

  .your-order-table table th,
  .your-order-table table td {
    padding-right: 10px;
  }
}

.your-order-table table th {
  border-top: medium none;
  color: #6f7172;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 250px;
}

.panel-body>p {
  color: #222;
}

.your-order-table table .shipping ul li {
  list-style: none;
}

.your-order-table table .shipping ul li input {
  position: relative;
  top: 0px;
}

.your-order-table table .shipping ul li label {
  color: #6f7172;
}

.your-order-table table .shipping th {
  vertical-align: top;
}

.your-order-table table .order-total th {
  border-bottom: 0;
  font-size: 14px;
}

.your-order-table table .order-total td {
  border-bottom: medium none;
}

.your-order-table table tr.cart_item:hover {
  background: #F9F9F9;
}

.your-order-table table tr.order-total td span {
  color: var(--tp-theme-primary);
  font-size: 18px;
  font-weight: 500;
}

.payment-method {
  margin-top: 40px;
}

.payment-method .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.payment-method .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1490196078);
}

.payment-method .accordion-button {
  font-size: 15px;
  font-weight: 500;
  color: var(--tp-theme-primary);
  padding: 23px 0;
  border: none;
}

.payment-method .accordion-button:focus {
  box-shadow: none;
}

.payment-method .accordion-button::after {
  position: absolute;
  content: "\f067";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-size: 15px;
  font-weight: 400;
  margin-left: 0;
  background-image: none;
}

.payment-method .accordion-button:not(.collapsed) {
  color: var(--tp-theme-primary);
  background-color: var(--tp-common-white);
  box-shadow: none;
}

.payment-method .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.payment-method .accordion-body {
  font-size: 15px;
  padding: 8px 0;
  padding-bottom: 40px;
  color: var(--tp-text-body);
}

.payment-method .accordion-collapse {
  border: none;
}

.panel-title>a {
  display: block;
}

.order-button-payment input {
  background: #232323 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  height: 40px;
  margin: 0px 0 0;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.order-button-payment input:hover {
  background: #3e976c none repeat scroll 0 0;
}

.payment-method .btn-link {
  background: no-repeat;
  border: medium none;
  border-radius: 0;
  color: #444;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding: 3px 10px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}

.payment-method .card {
  background-color: #ffffff;
  border: 1px solid #eaedff;
  border-radius: 0;
  margin-bottom: 10px;
}

.payment-method .accordion .card:first-of-type {
  border: 1px solid #eaedff;
}

.card-header:first-child {
  border-radius: 0;
}

.payment-method .card-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaedff;
}

/*----------------------------------------*/
/*  7.8 error css
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-error-page-area {
    padding-top: 150px;
  }
}

@media (max-width: 575px) {
  .tp-error-page-area {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.tp-error-page-shape .shape-1 {
  position: absolute;
  top: 105px;
  left: 185px;
}

.tp-error-page-shape .shape-2 {
  position: absolute;
  top: 57%;
  left: 36%;
}

.tp-error-page-shape .shape-3 {
  position: absolute;
  top: 30%;
  right: 70px;
}

.tp-error-page-wrapper {
  margin-left: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-error-page-wrapper {
    margin-left: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-error-page-wrapper {
    margin-left: 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-error-page-wrapper {
    margin-bottom: 50px;
  }
}

.tp-error-page-wrapper p {
  font-weight: 400;
  font-size: 15px;
  line-height: 32px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-error-page-wrapper p {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .tp-error-page-wrapper p br {
    display: none;
  }
}

.tp-error-page-title {
  font-weight: 700;
  font-size: 46px;
  text-transform: uppercase;
  color: var(--tp-text-2);
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-error-page-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .tp-error-page-title {
    font-size: 38px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-error-page-title {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tp-error-page-title br {
    display: none;
  }
}

.tp-error-page-title span {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.tp-error-page-thumb img {
  max-width: 100%;
}

/*----------------------------------------*/
/*  7.6 contact css
/*----------------------------------------*/
.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: 15px;
  margin-bottom: 12px;
}

.tp-contact-phone .contact-inner a,
.tp-contact-mail .contact-inner a,
.tp-contact-location .contact-inner a {
  font-weight: 700;
  font-size: 26px;
  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: 23px;
  }
}

.tp-contact-from {
  padding: 25px 113px 100px 113px;
  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;
  }
}

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

/*----------------------------------------*/
/*  ECOMMERCE CSS START
/*----------------------------------------*/
.tp-product-quantity {
  width: 148px;
  position: relative;
}

.tp-cart-plus,
.tp-cart-minus {
  width: 45px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: var(--tp-common-black);
  position: absolute;
  top: 50%;
  left: 0;
  -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;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tp-cart-plus::after,
.tp-cart-minus::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  top: 50%;
  right: 0;
  background-color: #DADCE0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.tp-cart-plus svg,
.tp-cart-minus svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.tp-cart-plus:hover,
.tp-cart-minus:hover {
  cursor: pointer;
  color: var(--tp-theme-primary);
}

.tp-cart-plus.tp-cart-plus,
.tp-cart-minus.tp-cart-plus {
  left: auto;
  right: 0;
}

.tp-cart-plus.tp-cart-plus::after,
.tp-cart-minus.tp-cart-plus::after {
  left: 0;
  right: auto;
}

.tp-cart-input[type=text] {
  width: 100%;
  height: 44px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #DADCE0;
  background-color: var(--tp-common-white);
  padding: 0 45px;
}

[dir=rtl] .tp-cart-input[type=text] {
  text-align: center;
}

.tp-cart-input[type=text]:focus {
  outline: none;
}

.product-action-btn {
  position: relative;
}

.product-action-btn .product-action-tooltip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 90%;
  font-weight: 500;
  font-size: 12px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  z-index: 1;
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 8px;
  margin-right: 8px;
  visibility: hidden;
  opacity: 0;
  -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;
}

.product-action-btn .product-action-tooltip::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  -moz-transform: translate(50%, -50%) rotate(45deg);
  -ms-transform: translate(50%, -50%) rotate(45deg);
  -o-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
  height: 8px;
  width: 8px;
  background-color: var(--tp-common-black);
}

.product-action-btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.product-action-btn:hover .product-action-tooltip {
  visibility: visible;
  opacity: 1;
  right: 100%;
}

.product-add-cart-btn {
  font-weight: 600;
  font-size: 15px;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  display: inline-block;
  padding: 7px 25px;
  text-align: center;
}

.product-add-cart-btn svg,
.product-add-cart-btn i {
  margin-right: 7px;
}

.product-add-cart-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.product-add-cart-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
}

.product-add-cart-btn-2 {
  border: 1px solid #DADCE0;
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 33px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-add-cart-btn-2 {
    padding: 6px 21px;
  }
}

@media (max-width: 575px) {
  .product-add-cart-btn-2 {
    width: 100%;
  }
}

.product-add-cart-btn-2:hover {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.product-add-cart-btn-3 {
  background-color: var(--tp-text-2);
  color: var(--tp-common-white);
  padding: 12px 45px;
}

.product-add-cart-btn-3:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
}

@media (max-width: 575px) {
  .product-add-cart-btn-3 {
    width: 100%;
  }
}

.product__item:hover .product__thumb img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.product__item:hover .product__add {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.product__item:hover .product__action a,
.product__item:hover .product__action button {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.product__item:hover .product__action a:nth-child(1),
.product__item:hover .product__action button:nth-child(1) {
  transition-delay: 0s;
}

.product__item:hover .product__action a:nth-child(2),
.product__item:hover .product__action button:nth-child(2) {
  transition-delay: 0.1s;
}

.product__item:hover .product__action a:nth-child(3),
.product__item:hover .product__action button:nth-child(3) {
  transition-delay: 0.12s;
}

.product__item:hover .product__action a:nth-child(4),
.product__item:hover .product__action button:nth-child(4) {
  transition-delay: 0.14s;
}

.product__content {
  padding-top: 14px;
}

.product__rating span {
  font-size: 11px;
  color: var(--tp-common-yellow-5);
  display: inline-block;
}

.product__rating span:not(:last-child) {
  margin-right: 3px;
}

.product__rating-2 {
  margin-bottom: 2px;
}

.product__rating-2 span {
  font-size: 12px;
}

.product__rating-2 span i {
  color: var(--tp-theme-secondary);
}

.product__title {
  font-family: var(--tp-ff-inter);
  font-weight: 400;
  font-size: 14px;
}

.product__title a:hover {
  color: var(--tp-theme-primary);
}

.product__ammount {
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-text-1);
}

.product__badge {
  position: absolute;
  left: 0;
  top: 20px;
}

.product__badge-item {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  color: var(--tp-common-white);
  background-color: var(--tp-common-black);
  padding: 4px 10px 4px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.product__badge-item.has-new {
  background-color: var(--tp-theme-primary);
}

.product__action {
  position: absolute;
  top: 40px;
  right: 10px;
}

.product__action a,
.product__action button {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.12);
  text-align: center;
  position: relative;
  margin-bottom: 6px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.3s 0.1s ease-out, opacity 0.3s 0.15s ease-out, transform 0.3s 0.1s ease-out;
  -moz-transition: visibility 0.3s 0.1s ease-out, opacity 0.3s 0.15s ease-out, transform 0.3s 0.1s ease-out;
  -ms-transition: visibility 0.3s 0.1s ease-out, opacity 0.3s 0.15s ease-out, transform 0.3s 0.1s ease-out;
  -o-transition: visibility 0.3s 0.1s ease-out, opacity 0.3s 0.15s ease-out, transform 0.3s 0.1s ease-out;
  transition: visibility 0.3s 0.1s ease-out, opacity 0.3s 0.15s ease-out, transform 0.3s 0.1s ease-out;
}

.product__action a svg,
.product__action button svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.product__action a:nth-child(1),
.product__action button:nth-child(1) {
  transition-delay: 0.14s;
}

.product__action a:nth-child(2),
.product__action button:nth-child(2) {
  transition-delay: 0.12s;
}

.product__action a:nth-child(3),
.product__action button:nth-child(3) {
  transition-delay: 0.1s;
}

.product__action a:nth-child(4),
.product__action button:nth-child(4) {
  transition-delay: 0s;
}

.product__action a:hover,
.product__action button:hover {
  background-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.product__add {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-thumb-tab {
    margin-right: 0;
  }
}

.product__details-thumb-content {
  margin-bottom: 14px;
}

.product__details-thumb-nav .nav-link {
  width: 110px;
  height: 110px;
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .product__details-thumb-nav .nav-link {
    margin-right: 12px;
  }
}

.product__details-thumb-nav .nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--tp-theme-primary);
  opacity: 0;
  visibility: hidden;
}

.product__details-thumb-nav .nav-link.active::after {
  visibility: visible;
  opacity: 1;
}

.product__details-stock {
  margin-bottom: 13px;
}

.product__details-stock span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: var(--tp-theme-primary);
  border: 1px solid rgba(33, 68, 216, 0.1);
  padding: 5px 18px;
}

.product__details-title {
  font-family: var(--tp-ff-roboto);
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 5px;
}

.product__details-rating {
  margin-bottom: 13px;
}

.product__details-rating .product__rating {
  margin-right: 10px;
}

.product__details-rating-count {
  position: relative;
  margin-bottom: 2px;
  padding-left: 9px;
}

.product__details-rating-count::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  width: 1px;
  height: 20px;
  background-color: #DADCE0;
}

.product__details-rating-count span {
  font-family: var(--tp-ff-roboto);
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-wrapper {
    margin-top: 40px;
  }
}

.product__details-wrapper p {
  font-family: var(--tp-ff-roboto);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 23px;
}

.product__details-price {
  margin-bottom: 35px;
}

.product__details-price span {
  font-family: var(--tp-ff-roboto);
  line-height: 1;
}

.product__details-ammount {
  font-weight: 600;
  font-size: 24px;
  color: var(--tp-common-black);
}

.product__details-ammount.old-ammount {
  font-weight: 400;
  font-size: 15px;
  text-decoration-line: line-through;
  color: var(--tp-text-1);
}

.product__details-ammount.new-ammount {
  font-weight: 600;
  font-size: 24px;
  color: var(--tp-common-black);
  margin-left: 1px;
}

.product__details-offer {
  margin-left: 2px;
  font-weight: 700;
  font-size: 13px;
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  padding: 3px 9px;
  display: inline-block;
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

.product__details-quantity {
  margin-bottom: 40px;
}

.product__details-action {
  padding-bottom: 34px;
  border-bottom: 1px solid #DADCE0;
  margin-bottom: 32px;
}

.product__details-action button {
  margin-bottom: 6px;
}

.product__details-action button:not(:last-child) {
  margin-right: 6px;
}

.product__details-action button.product-action-btn {
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  font-size: 18px;
  color: var(--tp-common-black);
  border: 1px solid #DADCE0;
}

.product__details-action button.product-action-btn .product-action-tooltip {
  top: auto;
  bottom: 90%;
  left: auto;
  right: auto;
  margin: auto;
  margin-bottom: 10px;
  -webkit-transform: translate(-57%, 0%);
  -moz-transform: translate(-57%, 0%);
  -ms-transform: translate(-57%, 0%);
  -o-transform: translate(-57%, 0%);
  transform: translate(-57%, 0%);
}

.product__details-action button.product-action-btn .product-action-tooltip::after {
  top: 100%;
  right: 50%;
  left: auto;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  -moz-transform: translate(50%, -50%) rotate(45deg);
  -ms-transform: translate(50%, -50%) rotate(45deg);
  -o-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}

.product__details-action button.product-action-btn:hover {
  color: var(--tp-common-white);
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
}

.product__details-action button.product-action-btn:hover .product-action-tooltip {
  bottom: 100%;
  top: auto;
  right: auto;
}

.product__details-more p {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--tp-common-black);
}

.product__details-more span {
  font-size: 15px;
  line-height: 1;
  color: var(--tp-text-1);
}

.product__details-more span a:hover {
  color: var(--tp-theme-primary);
}

.product__details-categories {
  margin-bottom: 15px;
}

.product__details-tags {
  margin-bottom: 15px;
}

.product__details-tags span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--tp-common-black);
  margin-right: 3px;
}

.product__details-tags a {
  font-size: 14px;
  line-height: 1;
  color: var(--tp-text-1);
  border: 1px solid #DADCE0;
  padding: 4px 12px;
  margin-bottom: 6px;
  display: inline-block;
}

.product__details-tags a:hover {
  background-color: var(--tp-theme-primary);
  border-color: var(--tp-theme-primary);
  color: var(--tp-common-white);
}

.product__details-share span {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--tp-common-black);
  margin-right: 9px;
}

.product__details-share a {
  font-size: 14px;
  line-height: 1;
  color: var(--tp-text-1);
  margin-bottom: 6px;
  margin-right: 10px;
}

.product__details-share a:hover {
  color: var(--tp-theme-primary);
}

.product__details-tab-nav {
  border-bottom: 1px solid #DADCE0;
}

.product__details-tab-nav-inner {
  position: relative;
}

.product__details-tab-nav .nav-link {
  position: relative;
  padding: 11px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-text-1);
}

.product__details-tab-nav .nav-link.active,
.product__details-tab-nav .nav-link:hover {
  color: var(--tp-common-black);
}

.product__details-tab-nav .nav-link.active::after,
.product__details-tab-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

@media (max-width: 575px) {
  .product__details-tab-nav .nav-link::after {
    position: absolute;
    content: "";
    left: auto;
    right: 0;
    bottom: -1px;
    width: 0%;
    height: 2px;
    background-color: var(--tp-theme-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;
  }
}

.product__details-tab-nav .tp-tab-menu {
  position: relative;
}

.product__details-tab-nav .tp-tab-line {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 38%;
  height: 2px;
  background-color: var(--tp-theme-primary);
}

@media (max-width: 575px) {
  .product__details-description-content {
    padding-right: 0;
  }
}

.product__details-description-content .product-desc-title {
  font-weight: 500;
  font-size: 34px;
  color: var(--tp-text-2);
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .product__details-description-content .product-desc-title {
    font-size: 25px;
  }
}

.product__details-description-content p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--tp-text-1);
  margin-bottom: 25px;
}

.product__details-description .product-desc-feature-thumb {
  margin-bottom: 30px;
}

.product__details-description .product-desc-feature-content p {
  line-height: 1.56;
  padding-right: 75px;
}

@media (max-width: 575px) {
  .product__details-description .product-desc-feature-content p {
    padding-right: 0;
  }
}

.product__details-additional {
  margin-top: 67px;
  background-color: var(--tp-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-additional {
    overflow-x: scroll;
  }
}

.product__details-additional-inner {
  padding: 45px 70px 45px;
  border: 1px solid #E9E9F0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-additional-inner {
    padding: 15px 40px 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-additional-inner {
    width: 768px;
  }
}

.product__details-additional table {
  width: 100%;
}

.product__details-additional table tr {
  padding: 16px 0 14px;
  display: block;
}

.product__details-additional table tr:not(:last-child) {
  border-bottom: 1px solid #E9E9F0;
}

.product__details-additional table tr th {
  font-family: var(--tp-ff-roboto);
  font-weight: 500;
  font-size: 15px;
  color: var(--tp-common-black);
  width: 28%;
  display: inline-block;
}

.product__details-additional table tr td {
  width: 71%;
  display: inline-block;
  font-family: var(--tp-ff-roboto);
  font-size: 15px;
  color: var(--tp-text-1);
}

.product__details-review-inner {
  padding: 62px 70px 70px;
  border: 1px solid #E9E9F0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-review-inner {
    padding: 35px 40px 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__details-review-inner {
    padding: 25px 30px 30px;
  }
}

@media (max-width: 575px) {
  .product__details-review-inner {
    padding: 15px 20px 20px;
  }
}

.product__details-review .product-rating-title {
  font-family: var(--tp-ff-roboto);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 22px;
}

.product__details-review .product-rating-number {
  text-align: center;
  width: 160px;
  height: 125px;
  border: 1px solid #E9E9F0;
  padding-top: 21px;
  padding-bottom: 21px;
}

@media (max-width: 575px) {
  .product__details-review .product-rating-number {
    margin-bottom: 15px;
  }
}

.product__details-review .product-rating-number-title {
  font-family: var(--tp-ff-roboto);
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
  color: var(--tp-common-black-solid);
  margin-bottom: 0;
}

.product__details-review .product-rating-star {
  line-height: 1;
}

.product__details-review .product-rating-star span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-common-yellow-5);
  display: inline-block;
}

.product__details-review .product-rating-star span:not(:last-child) {
  margin-right: 3px;
}

.product__details-review .product-rating-bar {
  width: 100%;
  background-color: #E9E9E9;
  border-radius: 10px;
}

.product__details-review .product-rating-bar-wrapper {
  width: 71.5%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 70%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 66%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 52%;
  }
}

@media (max-width: 575px) {
  .product__details-review .product-rating-bar-wrapper {
    width: 100%;
  }
}

.product__details-review .product-rating-bar .single-progress {
  background-color: var(--tp-theme-primary);
  height: 8px;
  border-radius: 10px;
}

.product__details-review .product-rating-bar-text {
  width: 3.5%;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .product__details-review .product-rating-bar-text {
    width: 7.5%;
  }
}

.product__details-review .product-rating-bar-text span {
  font-family: var(--tp-ff-roboto);
  font-size: 14px;
  color: var(--tp-text-1);
}

.product__details-review .product-rating-bar-item:not(:last-child) {
  margin-bottom: 5px;
}

.product__details-review .product-review-item {
  margin-bottom: 30px;
}

.product__details-review .product-review-item:last-child {
  margin-bottom: 0;
}

.product__details-review .product-review-item p {
  font-family: var(--tp-ff-roboto);
  font-size: 15px;
  line-height: 1.6;
  color: var(--tp-text-1);
}

.product__details-review .product-review-avater {
  margin-bottom: 11px;
}

.product__details-review .product-review-avater-thumb img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 10px;
}

.product__details-review .product-review-avater-title {
  font-family: var(--tp-ff-roboto);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 0;
}

.product__details-review .product-review-rating {
  margin-bottom: 5px;
}

.product__details-review .product-review-rating-wrapper {
  margin-right: 10px;
}

.product__details-review .product-review-rating-wrapper span {
  line-height: 1;
  font-size: 12px;
  color: var(--tp-common-yellow-5);
  display: inline-block;
}

.product__details-review .product-review-rating-wrapper span:not(:last-child) {
  margin-right: 3px;
}

.product__details-review .product-review-rating-wrapper span i {
  color: var(--tp-theme-secondary);
}

.product__details-review .product-review-rating-date span {
  font-family: var(--tp-ff-roboto);
  font-weight: 400;
  font-size: 13px;
  color: var(--tp-text-1);
}

.product__details-review .product-review-rating span i {
  color: var(--tp-theme-secondary);
}

.product__details-review .product-review-form p {
  font-family: var(--tp-ff-roboto);
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-text-1);
  margin-bottom: 20px;
}

.product__details-review .product-review-form-title {
  font-family: var(--tp-ff-roboto);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product__details-review .product-review-form-rating .rate-title {
  font-family: var(--tp-ff-roboto);
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: -0.02em;
  color: var(--tp-text-1);
}

.product__details-review .product-review-input {
  margin-bottom: 18px;
  line-height: 1;
}

.product__details-review .product-review-input.is-textarea {
  margin-bottom: 30px;
}

.product__details-review .product-review-input input,
.product__details-review .product-review-input textarea {
  height: 60px;
  line-height: 60px;
  background-color: #F7F7F7;
  border: 1.5px solid #F7F7F7;
}

.product__details-review .product-review-input input:focus,
.product__details-review .product-review-input textarea:focus {
  border-color: var(--tp-theme-primary);
  background-color: var(--tp-common-white);
}

.product__details-review .product-review-input textarea {
  height: 180px;
  padding-bottom: 20px;
  resize: none;
}

.product__details-review .product-review-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 2px solid #B2B2B9;
  border-radius: 4px;
  outline: none;
  flex: 0 0 auto;
  -webkit-transform: translateY(3px);
  -moz-transform: translateY(3px);
  -ms-transform: translateY(3px);
  -o-transform: translateY(3px);
  transform: translateY(3px);
  padding: 0;
}

.product__details-review .product-review-agree input:checked {
  position: relative;
  background-color: var(--tp-theme-primary);
  border-color: transparent;
}

.product__details-review .product-review-agree input:checked::after {
  box-sizing: border-box;
  position: absolute;
  content: "\f00c";
  font-weight: 700;
  font-family: var(--tp-ff-fontawesome);
  font-size: 10px;
  color: var(--tp-common-white);
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product__details-review .product-review-agree input:hover {
  cursor: pointer;
}

.product__details-review .product-review-agree label {
  padding-left: 8px;
  font-size: 14px;
  line-height: 1.71;
  color: var(--tp-text-1);
}

.product__details-review .product-review-agree label a {
  color: var(--tp-common-black);
  font-weight: 600;
  padding-left: 4px;
}

.product__details-review .product-review-agree label a:hover {
  color: var(--tp-theme-primary);
}

.product__details-review .product-review-agree label:hover {
  cursor: pointer;
}

.product__details-review .product-review-btn .tp-btn {
  font-family: var(--tp-ff-roboto);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 37px;
}

.product__details-review .product-review-btn .tp-btn:hover {
  background-color: var(--tp-common-black);
}

.product__modal .modal-dialog {
  max-width: 1200px;
  border-radius: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .product__modal .modal-dialog {
    max-width: 1100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .product__modal .modal-dialog {
    max-width: 900px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product__modal .modal-dialog {
    max-width: 700px;
  }
}

.product__modal .modal-content {
  padding: 40px;
  border-radius: 0;
}

@media (max-width: 575px) {
  .breadcrumb__list-translate {
    bottom: -86px;
  }

  .product__modal .modal-content {
    padding: 20px;
  }
}

.product__modal .product__details-thumb-nav .nav-link {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
}

.product__modal .product__details-thumb-nav .nav-link img {
  width: 100%;
}

@media (max-width: 575px) {
  .product__modal .product__details-thumb-nav .nav-link {
    width: 70px;
    height: 70px;
  }
}

.product__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.product__modal-close-btn {
  display: inline-block;
  font-size: 15px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  background-color: transparent;
  color: var(--tp-text-1);
  border-radius: 50%;
}

.product__modal-close-btn:hover {
  color: var(--tp-theme-primary);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.product__modal-close-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/*# sourceMappingURL=main.css.map */
#accordion .panel {
  border: 1px solid #bf6026;
  border-radius: 0;
  box-shadow: none;
  margin-left: 50px;
  margin-bottom: 12px;
}

#accordion .panel-heading {
  padding: 0;
  background: #fff;
  position: relative;
}

#accordion .panel-heading:before,
#accordion .panel-heading:after {
  content: "";
  border-right: 8px solid #bf6026;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  position: absolute;
  top: 12px;
  left: -9px;
}

#accordion .panel-heading:after {
  border-right: 7px solid #fff;
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  position: absolute;
  top: 13px;
  left: -6px;
}

#accordion .panel-title a {
  display: block;
  padding: 10px 20px;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #bf6026;
  position: relative;
}

#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  color: #bf6026;
  text-align: center;
  border: 1px solid #bf6026;
  position: absolute;
  top: 0;
  left: -50px;
  transition: all 0.5s ease 0s;
}

#accordion .panel-title a.collapsed:before {
  content: "\f067";
}

#accordion .panel-body {
  padding: 0 15px 15px;
  border: none;
  font-size: 14px;
  color: #807e7e;
  line-height: 28px;
}

#accordion .panel-body p {
  margin-bottom: 0;
}

.bgSet {
  background: #f2f2f2;
  height: 100%;
}

#contact-inner-m i.fa {
  font-size: 30px;
  padding: 14px 15px;
  margin: 16px 0 20px 0;
  color: #fff;
  background: #000;
  border: 9px solid #ae1215;
}

.f21 {
  font-size: 21px;
}

.blue-gradient-2::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;

}

.blue-gradient-2 p {
  color: #000;
  font-size: 16px;
}

.pb-8 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mt-4 {
  margin-top: 1.2rem !important;
}

.Programs__SubjectSection .table-heading h3 {
  margin-bottom: 0;
  font-size: 15px;
  cursor: pointer;
  padding: 12px;
  position: relative;
  color: #fff;
}

#customers th {
  color: #fff;
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  font-size: 14px;
  font-weight: 400;
  background: #505050;
}

#customers td {
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  font-size: 14px;
  font-weight: 300;
}

#customers td p {
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}

.Programs__SubjectSection .table-heading {
  text-align: left;
  background: #302f30;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 0px;
  cursor: pointer;
}

.main-heading span {
  color: #000000;
}

.cta-btn {
  background: #972523;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 13px 30px !important;
  border-radius: 8px !important;
}

.about-seciton {
  top: 0px;
  position: relative;
}

.about-seciton .about-seciton__content-right {
  margin-top: -90px;
}


.cta-btn:hover {
  background: #cc4e00 !important;
  color: #fff !important;
}

.c-n {
  font-size: 40px;
  font-weight: bold;
  color: rgb(235 235 235 / 50%);
  line-height: 50px;
}

.border-0 {
  border: 0 !important;
  border-radius: 0px;
}

.adv-thumb {
  -webkit-border-radius: 20px;
  min-height: 350px;
  position: relative;
}

.adv-thumb__content h3 {
  color: #fff;
  font-weight: bold;
  font-size: 31px;
  margin-bottom: 15px;
}

.adv-thumb__content {
  background: rgb(86 13 68);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  width: 270px;
  padding: 30px;
  border-bottom-left-radius: 0;
  margin-top: 28%;

}

table tr th {
  font-size: 15px;
  background: transparent
}

table tr td {
  font-size: 15px;
}


#about-us .about-process-content {
  padding-bottom: 30px
}

#about-us .about-process-content h6 {
  font: 700 14px var(--common-font-o);
  letter-spacing: 1px;
  color: var(--globalgrey);
  padding-top: 0
}

#about-us .about-process-content p {
  font-size: 16px;
  line-height: 18px;
  color: var(--color1);
  margin-bottom: 5px
}

#about-us .about-process-content a {
  font: 700 13px var(--common-font-o);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--globalorange);
  float: right
}

.about-process-content .card-body {
  padding: 1em 0
}

.about-us-image img {
  box-shadow: #ad1215 0 0 0 2px inset, rgb(255 255 255) 20px -20px 0 -3px, #ad1215 20px -20px
}

.table>:not(caption)>*>* {
  padding: 0.4rem 0.3rem;
}

/***********/
.content__block h4 {
  font-size: 22px;
  color: #b03540;
}

.list-style-1 li {
  padding-left: 20px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  margin-bottom: 15px;
  line-height: 24px;
  color: #000;
  text-align: left;
}

.list-style-1 li:after {
  content: "\f105";
  position: absolute;
  font-family: 'FontAwesome';
  left: 0;
  top: 1px;
  color: #720557;
}

.cta-btn.cta-btn-fill {
  background: #b13240 !important;
  color: #fff !important;
}

.et_pb_text_inner p {
  color: #fff !important;
  font-size: 16px;
  margin-bottom: 10px;
}

.et_pb_text_inner span {
  margin-right: 10px;
}

.et_pb_text_1 h2 {
  color: #fff !important;
}

.et_pb_text_inner span i {
  font-size: 32px;
  padding: 10px;
  color: #d3322e;
  border: 1px dashed #d3322e;
  margin-right: 10px;
}

.et_pb_text_inner ul li {
  color: #e5e5e5;
  display: flex;
  line-height: 25px;
  font-size: 19px;
  width: 47%;
  float: left;
  margin-bottom: 20px;
  padding: 10px 0;
}

.et_pb_section1 {
  background-color: #03135e !important;
  background: url(../img/unversity.jpg) no-repeat top;
  background-size: cover;
  padding: 54px 0;
}

.et_pb_section.et_pb_section_2 {
  background-color: #efefef !important;
  background-position: center top;
}

.et_pb_image_1 {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0) 70%, #972523 70%);
  padding-right: 30px;
  padding-bottom: 30px;
  text-align: left;
  margin-left: 0;
}

.et_pb_image_1 img {
  max-width: 100%;
  height: auto;
}

ul li {
  display: flex;
}

ul.Int {
  width: 90%;
}

ul.Int li {
  margin-bottom: 10px;
  float: left;
  width: 50%;
  font-size: 17px;
}

ul.Int li i {
  padding: 10px;
}

.et_pb_column_7 {
  padding-right: 8%;
  padding-left: 8%;
}

.my-5 {
  margin-top: 1rem !important;
}

.reason-section {
  background: #f6f6f6;
}

.vertical-text {
  writing-mode: vertical-rl;
}

.schol-box {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 25px;
  border-radius: 10px;
  min-height: 150px;
}

.schol-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background: rgb(66 66 66 / 80%);
}

.schol-headline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schol-headline h5,
.schol-headline h2 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
  color: var(--bs-white);
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
}

.schol-headline h5 span {
  color: var(--bs-mid-yellow);
  display: block;
}

.schol-figure h2 span {
  font-size: 84px;
  display: block;
  color: var(--bs-mid-yellow);
}

.schol-figure h2 span sup {
  font-size: 37px;
  top: -48px;
  left: 8px;
}

.schol-figure {
  text-align: center;
  margin-top: 28px;
}

.schol-figure h2 {
  display: block;
}

.schol-figure h5 {
  margin-top: 22px;
}

.schol-content h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: var(--bs-mid-dark);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.schol-content p {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}

.table-info th {
  background-color: #a5160c;
}

.messageCard .messageCard__image {
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
  padding-bottom: 100%;
  border-radius: 0;
}

.messageCard .messageCard__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.messageCard .messageCard__image .designation-bx {
  position: absolute;
  bottom: -30px;
  left: 20px;
  padding: 10px 15px;
  background: #fff;
  right: 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-height: 56px;
}

.messageCard .messageCard__image .designation-bx h3 {
  font-size: 17px;
  font-weight: bold;
  color: #000;
}

.messageCard .messageCard__image .designation-bx p {
  text-align: center;
  margin-bottom: 0px;
  font-size: 13px;
}

.messageCard .messageCard__image:after {
  content: "";
  background: #700808;
  position: absolute;
  top: -24px;
  width: 100px;
  height: 12px;
  left: -24px;
}

.messageCard .messageCard__image:before {
  position: absolute;
  top: -20px;
  width: 12px;
  left: -24px;
  content: "";
  height: 100px;
  background: #700808;
}

.call-btn {
  background-color: #db8e08;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 0;
  padding: 6px 40px;
  border-radius: 50px 0 0 50px;
  animation: slideIn 1s forwards 3s;
  z-index: 9999;
}

.mbnnr {
  display: none;
}

.deskbnnr {
  display: block;
}

a.address-card {
  background: #ffff;
  display: block;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-bg {
    height: 375px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-bg {
    height: 345px;
    background-position: 0% center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-hero-bg {
    background-position: 60% center;
  }
}

@media (max-width: 575px) {
  .mbnnr {
    display: block;
  }

  .deskbnnr {
    display: none;
  }

  h1 {
    font-size: 29px;
  }

  .schol-headline h5,
  .schol-headline h2 {
    font-size: 21px;
  }

  .et_pb_text_inner ul li {
    width: 100%;
  }

  main {
    margin-top: 0px;
  }

  .tp-hero-bg {
    height: 420px;
  }
}

@media (max-width:320px) {
  .tp-hero-bg {
    height: 330px;
  }

}

#topBar {
  position: fixed;
  width: 100%;
  padding: 0 15px;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #d63932;
  height: 3.6rem;
  font-size: 1.2rem;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .25);
}

#topBar ul li {
  position: relative;
  display: inline-block;
}

#topBar>ul>li {
  float: left;
}

#topBar a {
  display: inline-block;
  padding: 1.2rem 1.8rem;
  line-height: 1.2rem;
  color: #FFF;
  transition: .2s ease-out;
}

#topBar a:hover,
li.active {
  background: #c6302d;
}

ul.subMenu {
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 0;
  width: 170%;
}

ul.subMenu li {
  width: 100%;
  background: #3d3d3b;
}

#topBar ul.subMenu li a {
  width: 100%;
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

#topBar ul.subMenu li a:hover,
#topBar ul.subMenu li.active>a {
  background: #2f2f2d;
  padding-left: 1.1rem;
}

ul.subMenu ul.subMenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
}

.bg-black,
.black-bg {
  background: #560d44 !important;
  color: #fff !important;
}

.ag-format-container {
  width: 100%;
  margin: 0 auto;
}


.ag-offer-block {
  padding: 50px 0 90px
}

.ag-offer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.ag-offer_item {
  width: 50%;
  border-right: 1px dashed #c1c1c1;
  border-bottom: 1px dashed #c1c1c1;
  overflow: hidden;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  position: relative;
}

.ag-offer_item:nth-child(1) .ag-offer_hidden-item {
  background-color: #972523;
}

.ag-offer_item:nth-child(2) .ag-offer_hidden-item {
  background-color: #7e7e7d;
}

.ag-offer_item:nth-child(3) .ag-offer_hidden-item {
  background-color: #7e7e7d;
}

.ag-offer_item:nth-child(4) .ag-offer_hidden-item {
  background-color: #972523;
}

.ag-offer_item:hover .ag-offer_visible-item {
  opacity: 0;

  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);

  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.ag-offer_visible-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  height: 100%;
  width: 100%;
  padding: 35px 40px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: .4s .3s;
  -moz-transition: .4s .3s;
  -o-transition: .4s .3s;
  transition: .4s .3s;
}

.ag-offer_img {
  height: 64px;
  width: 64px;
  margin: 0 15px 0 0;
}

.ag-offer_title {
  font-size: 18px;
  color: #323232;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 500;
}

.ag-offer_hidden-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  padding: 30px;

  opacity: 0;

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  -webkit-transform: rotate(180deg) scale(0);
  -moz-transform: rotate(180deg) scale(0);
  -ms-transform: rotate(180deg) scale(0);
  -o-transform: rotate(180deg) scale(0);
  transform: rotate(180deg) scale(0);

  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.ag-offer_item:hover .ag-offer_hidden-item {
  opacity: 1;

  -webkit-transform: rotate(0deg) scale(1);
  -moz-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  -o-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);

  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s;
}

.ag-offer_text {
  max-width: 100%;
  opacity: 0;
  font-size: 18px;
  text-align: left;
  color: #FFF;
  -webkit-transition: .3s .5s;
  -moz-transition: .3s .5s;
  -o-transition: .3s .5s;
  transition: .3s .5s;
}

.ag-offer_item:hover .ag-offer_text {
  opacity: 1;
}

.ag-offer_btn {
  display: block;
  padding: 10px 20px;
  border: 2px solid #FFF;

  position: absolute;
  top: 50%;
  left: 50%;

  white-space: nowrap;
  font-size: 25px;
  color: #FFF;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ag-offer_btn:hover {
  border: 2px solid #0000d1;
  background-color: #FFF;

  text-decoration: none;
  color: #0000d1;
}

.hidden-xs {
  display: block;
}

.hidden-lg {
  display: none;
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

  .ag-offer_item {
    width: 100%;
    margin: 0 0 30px;
    border: 0 none !important;
    border-bottom: 1px solid #c1c1c1 !important;
    display: block;
  }

  .ag-offer_hidden-item {
    display: none;
  }

  .ag-offer_visible-item {
    padding: 0 20px 30px;

    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .ag-offer_item:hover .ag-offer_visible-item {
    opacity: 1;

    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .ag-offer_hidden-item {
    padding: 0 20px 20px;

    opacity: 1;

    position: static;

    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .ag-offer_item:nth-child(1) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(2) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(3) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(4) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(5) .ag-offer_hidden-item,
  .ag-offer_item:nth-child(6) .ag-offer_hidden-item {
    background-color: transparent;
  }

  .ag-offer_item:hover .ag-offer_text {
    opacity: 1;
  }

  .ag-offer_title {
    font-weight: bold;
    font-size: 16px;

  }

  .cta-btn {
    padding: 6px 12px !important;
  }

  .apply-fixd {
    right: 0px;
    top: 38%;
  }
  .enroll-fixd {
    right: 0px;
    top: 38%;
  }
  .apply-fixd img {
    width: 100%;
  }

  .et_pb_text_inner h2 {
    text-align: center;
    font-size: 22px;
  }

  .ag-offer_text {
    opacity: 1;

    font-size: 18px;
    color: #000;
  }

  .ag-offer_btn {
    border: 2px solid #0000d1;
    background-color: #000080;

    position: static;

    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}

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

@media only screen and (max-width: 479px) {
  .hidden-xs {
    display: none;
  }

  .hidden-lg {
    display: block;
  }

  .breadcrumb-style {
    padding: 36px 0px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 750px;
  }

}

@media (min-width: 980px) and (max-width: 1161px) {
  /* .ag-format-container {
    width: 960px;
  } */

}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    --bs-gutter-x: 36px;

  }

  .tp-hero-bg {
    height: 580px
  }

  main {
    margin-top: -101px;
  }
}

.act {
  background: #560d44 !important;
  color: #fff !important;
}

@media only screen and (max-width: 414px) {
  .adv-thumb__content {
    margin-top: 45%;
  }

  .hidden-xs {
    display: none;
  }

  .hidden-lg {
    display: block;
  }

  .breadcrumb-style {
    padding: 36px 0px;
  }

  .apply-fixd img {
    width: 100%;
  }
}

.requestForm .form-group {
  margin-bottom: 10px;
}

.requestForm .form-group select {
  color: #7f8183;
}



.topbar-area {
  padding: 10px;
  background-color: #972524;
}

.topbar-contact {
  display: flex;
  color: white;
  font-size: 16px;
  font-weight:600;
}

@media (max-width:768px) {
  .topbar-contact {
    font-size: 12px;
  }
}

@media (max-width:320px) {
  .topbar-contact {
    font-size: 10px;
  }
}

/* Whatsapp css */
.whatsapp-icon {
  position: fixed;
  right: 0;
  top: 43%;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 35px;
  text-decoration: none;
  z-index: 99;
}

.whatsapp-icon:hover {
  color: white !important;
}

@media (max-width:700px) {
  .whatsapp-icon {
    top: 52%;
  }
}

.enqui-fixd {
  position: fixed;
  right: 0px;
  z-index: 99;
  top: 25%;
}

.address-card {
  text-align: center;
  background: #ffff;
  display: block;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
}

.circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.outer-circle {
  width: 80px;
  height: 80px;
  border: 6px solid #db8e08;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;

}

.inner-circle {
  width: 60px;
  height: 60px;
  background-color: #db8e08;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 14px;
  line-height: 1.3;
  font-family: montsserat, sans-serif;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: all 0.3s ease;
}

.inner-circle:hover {
  background: #df910a;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-shadow: 1px 1px 1px #333;
}

.x-btn {
  position: absolute;
  right: 0;
  top: -35px;
}

.an-auth {
  position: absolute;
  bottom: 2px;
  left: 1%;

  p {
     font-size: 14px;
     font-weight: 600;

     a {
        text-decoration: underline;
     }
  }
}

@media (max-width: 450px) {
  .an-auth {
    position: absolute;
    bottom: 2px;
    left: 6%;
  
    p {
       font-size: 12px;
       font-weight: 600;
  
       a {
          text-decoration: underline;
       }
    }
  }
}