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

    Template Name: Shofy - Multipurpose eCommerce HTML Template
    Author: Theme_Pure
    Support: basictheme400@gmail.com
    Description: Shofy - Multipurpose eCommerce HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ 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
		2.16 Search
		2.17 Hotspot
		2.18 Ragne Slider
	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style 1


    ---------------------------------
	04. MENU CSS
	---------------------------------
		4.1 Main menu css
		4.2 Meanmenu css
		4.3 Mobile 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


	---------------------------------
	07. PAGES CSS
	---------------------------------
		7.1 Hero css



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

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

/* transform */
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Outfit', sans-serif;
  --tp-ff-heading: 'Outfit', sans-serif;
  --tp-ff-p: 'Outfit', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #000;
  --tp-common-gray: #F4F5FA;
  --tp-theme-primary: #FFC700;
  --tp-theme-secondary: #2144D8;
  --tp-gradient-primary: linear-gradient(90deg, #004D6E 0%, #00ACCC 100%);
  --tp-heading-primary: #1b1f2e;
  --tp-text-body: #333F4D;
  --tp-border-primary: #EAEBED;
  --tp-border-secondary: #F0F2F4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
}

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

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

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

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

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: #fff;
  height: 56px;
  width: 100%;
  line-height: 56px;
  font-size: 14px;
  color: var(--tp-common-black);
  padding-left: 26px;
  padding-right: 26px;
  border: 1px solid #E0E2E3;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=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: #95999D;
}
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: #95999D;
}
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: #95999D;
}
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: #95999D;
}
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: #95999D;
}
[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]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--tp-common-black);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=url]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

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

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tp-common-black);
  color: var(--tp-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--tp-common-black);
  font-size: 14px;
  opacity: 1;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.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;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background-color: #172B4D;
  border-radius: 50%;
  pointer-events: none;
}

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

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

/* gutter for x axis */
.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: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-20 {
    --bs-gutter-x: 15px;
  }
}
@media (max-width: 575px) {
  .tp-gx-20 {
    --bs-gutter-x: 10px;
  }
}
.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);
}

/* gutter for x axis */
.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: 30px;
  }
}
@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);
}

/* gutter for x axis */
.tp-gx-40 {
  --bs-gutter-x: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-gx-40 {
    --bs-gutter-x: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-gx-40 {
    --bs-gutter-x: 30px;
  }
}
@media (max-width: 575px) {
  .tp-gx-40 {
    --bs-gutter-x: 15px;
  }
}
.tp-gx-40 [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);
}

@media (min-width: 1400px) {
  .container-large {
    max-width: 1325px;
  }
}
/*---------------------------------
    1.3 Default Spacing
---------------------------------*/
.pt-280 {
  padding-top: 280px;
}

.pt-350 {
  padding-top: 350px;
}

.pb-210 {
  padding-bottom: 210px;
}

/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
.tp-section-title-pre {
  font-family: var(--tp-ff-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-theme-secondary);
  display: inline-block;
  margin-bottom: 10px;
}
.tp-section-title {
  font-weight: 600;
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--tp-heading-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-section-title {
    font-size: 45px;
  }
}

/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.tp-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  background-color: var(--tp-theme-primary);
  color: var(--tp-heading-primary);
  padding: 17px 52px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-btn svg {
  margin-right: 5px;
}
.tp-btn i {
  transform: translateY(0px);
  margin-left: 8px;
  font-weight: 900;
}
.tp-btn:hover {
  color: var(--tp-heading-primary);
  background: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
/* pulse effect animation */
/* 04. ========= btn-arrow-animation ========== */
@keyframes tfLeftToRight {
  49% {
    transform: translateX(30%);
  }
  50% {
    opacity: 0;
    transform: translateX(-30%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes sunMove {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  75% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/*----------------------------------------*/
/*  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);
  }
}
/*----------------------------------------*/
/*  7.4 demo css
/*----------------------------------------*/
.tp-demo-header {
  padding-top: 48px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .tp-demo-header-logo {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .tp-demo-header-btn {
    text-align: start !important;
  }
}
.tp-demo-transparent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  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) {
  .tp-demo-hero-area {
    padding-top: 220px;
  }
}
@media (max-width: 575px) {
  .tp-demo-hero-area {
    padding-top: 260px;
  }
}
.tp-demo-hero-shape .shape-1 {
  position: absolute;
  bottom: 25%;
  left: 34%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-demo-hero-shape .shape-1 {
    left: 32%;
    bottom: 22%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-demo-hero-shape .shape-1 {
    left: 39%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-demo-hero-shape .shape-1 {
    bottom: 30%;
    left: 48%;
  }
}
@media (max-width: 575px) {
  .tp-demo-hero-shape .shape-1 {
    bottom: 12%;
    left: 67%;
  }
}
.tp-demo-hero-shape .shape-2 {
  position: absolute;
  top: 20%;
  left: 45%;
  animation: sunMove 10s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-demo-hero-shape .shape-2 {
    left: 70%;
    top: 30%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-demo-hero-shape .shape-2 {
    top: 70%;
    left: 70%;
  }
}
@media (max-width: 575px) {
  .tp-demo-hero-shape .shape-2 {
    display: none;
  }
}
.tp-demo-hero-height {
  height: 880px;
  width: 100%;
}
@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) {
  .tp-demo-hero-height {
    height: 650px;
  }
}
@media (max-width: 575px) {
  .tp-demo-hero-height {
    height: 700px;
  }
}
.tp-demo-hero-title {
  font-size: 60px;
  font-weight: 400;
  color: var(--tp-common-white);
  margin-bottom: 65px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-demo-hero-title {
    font-size: 52px;
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .tp-demo-hero-title {
    font-size: 45px;
    margin-bottom: 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-demo-hero-img {
    display: none;
  }
}
.tp-demo-hero-img .shape-1 {
  position: absolute;
  bottom: 0;
  right: 20%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-demo-hero-img .shape-1 {
    bottom: -16%;
  }
}
.tp-demo-hero-img .shape-2 {
  position: absolute;
  bottom: 0;
  right: 11%;
}
.tp-demo-hero-img .shape-3 {
  position: absolute;
  bottom: 39%;
  right: 1%;
}
.tp-demo-hero-img .shape-4 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.tp-demo-thumb {
  position: relative;
  box-shadow: 0px 12px 60px 0px rgba(35, 35, 49, 0.16);
  margin-bottom: 30px;
}
.tp-demo-thumb::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  background-color: rgb(27, 31, 46);
  transition: all 0.3s ease-in-out;
}
.tp-demo-thumb.coming-soon::after {
  opacity: 0.6;
}
.tp-demo-thumb:hover .tp-demo-thumb-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
}
.tp-demo-thumb:hover::after {
  opacity: 0.6;
  visibility: visible;
}
.tp-demo-thumb img {
  width: 100%;
}
.tp-demo-thumb-btn {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transition: all 0.3s linear;
}
.tp-demo-thumb-btn .tp-btn {
  padding: 17px 43px;
}
.tp-demo-thumb-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--tp-heading-primary);
}
.tp-demo-thumb-title:hover {
  color: var(--tp-theme-primary);
}
.tp-demo-thumb-coming-soon {
  position: absolute;
  top: 40%;
  left: 20%;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-demo-thumb-coming-soon {
    left: 10%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-demo-thumb-coming-soon {
    left: 30%;
  }
}
@media (max-width: 575px) {
  .tp-demo-thumb-coming-soon {
    left: 16%;
  }
}
.tp-demo-features-wrapper {
  padding: 37px;
  background: var(--tp-common-white);
  box-shadow: 0px 4px 34px 0px rgba(35, 35, 49, 0.04);
  transition: all 0.3s ease-in-out;
}
.tp-demo-features-wrapper:hover {
  transform: translateY(-5px);
}
.tp-demo-features-thumb img {
  margin-bottom: 20px;
}
.tp-demo-features-thumb p {
  font-size: 16px;
  font-weight: 600;
}
.tp-demo-footer-overlay {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgb(27, 31, 46);
  opacity: 0.961;
  z-index: 0;
}
.tp-demo-footer-main {
  position: relative;
  border-bottom: 1px solid rgb(82, 87, 104);
}
.tp-demo-footer-main p {
  font-size: 16px;
  font-weight: 400;
  color: #aab1cc;
  margin-bottom: 50px;
}
.tp-demo-footer-title {
  font-size: 60px;
  font-weight: 600;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-demo-footer-title {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .tp-demo-footer-title {
    font-size: 45px;
  }
}
.tp-demo-copyright-area {
  position: relative;
  z-index: 1;
}
.tp-demo-copyright-content p {
  color: #8d91a2;
}
.tp-demo-copyright-content p a {
  color: var(--tp-theme-primary);
}

/*# sourceMappingURL=main.css.map */
