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

    Template Name: heiko - Personal Portfolio HTML Template
    Author: Theme_Pure
    Support: https://help.themepure.net/support/
    Description: heiko - Personal Portfolio HTML Template
    Version: 1.0

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

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

	-----------------
    01. THEME CSS
	-----------------
		1.1 Common Classes
		1.2 init scss

	-----------------
    02. COMPONENTS css
	-----------------
		2.1 Animetion
		2.2 button
		2.3 ofcanvas
		2.4 preloader
		2.5 spacing

	-----------------
    03. HEADER CSS
	-----------------
		3.1 Header Style 1

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

	---------------------------------
	05. BLOG CSS
	---------------------------------
		5.1 Postbox css


	---------------------------------
	06. PAGES CSS
	---------------------------------
		6.1 about start
		6.2 contact start 
		6.3 home start
		6.4 portfolio start
		6.5 service start

**********************************************/
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet');
.tp-offcanvas-area, .tp-offcanvas-social ul li a, 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;
}

/* transform */
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Poppins', serif;
  --tp-ff-heading: 'Poppins', serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #d2d2d2;
  --tp-grey-1: rgba(210, 210, 210, 0.65);
  --tp-theme-primary: #0f0f0f;
  --tp-theme-secondary: #1d4bc9;
  /* --tp-theme-secondary: #6de767; */
  --tp-border-1: rgba(31, 49, 48, 0.1);
}

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

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--tp-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--tp-common-white);
  line-height: 26px;
  background: var(--tp-theme-primary);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-body);
  color: var(--tp-theme-primary);
  margin-top: 0px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  -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: 70px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  color: var(--tp-grey-1);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
}

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: 52px;
  width: 100%;
  line-height: 52px;
  font-size: 16px;
  color: var(--tp-theme-primary);
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 4px;
  border: 1px solid var(--tp-common-white);
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--tp-grey-1);
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--tp-grey-1);
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 4-18 */
  color: var(--tp-grey-1);
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: var(--tp-grey-1);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
  /* MODERN BROWSER */
  color: var(--tp-grey-1);
}
[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-theme-primary);
}
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-theme-primary);
  color: var(--tp-common-white);
  text-shadow: none;
}

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

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

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

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

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

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

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

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

.lh-1 {
  line-height: 1;
}

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

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

.hover-text-white:hover {
  color: var(--tp-common-white);
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-inherit {
  position: inherit !important;
}

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

.tp-transfrom {
  transform: translateY(-1px) !important;
}

.tp-round-10 {
  border-radius: 10px;
}

.tp-round-4 {
  border-radius: 4px;
}

.lh-0 {
  line-height: 0;
}

.lh-22 {
  line-height: 22px;
}

.lh-110-per {
  line-height: 1.1;
}

.ls-0 {
  letter-spacing: 0;
}

.ls-m-1 {
  letter-spacing: -0.01em;
}

.border-full {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tp-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.underline-black {
  background-image: linear-gradient(#0f0f0f, #0f0f0f), linear-gradient(#0f0f0f, #0f0f0f);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-black:hover {
  background-image: linear-gradient(#0f0f0f, #0f0f0f), linear-gradient(#0f0f0f, #0f0f0f);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-white {
  background-image: linear-gradient(#d2d2d2, #d2d2d2), linear-gradient(#d2d2d2, #d2d2d2);
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-white:hover {
  background-image: linear-gradient(#d2d2d2, #d2d2d2), linear-gradient(#d2d2d2, #d2d2d2);
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}

.underline-green {
  background-image: linear-gradient(#1d4bc9, #1d4bc9), linear-gradient(#1d4bc9, #1d4bc9);
  /* background-image: linear-gradient(#6de767, #6de767), linear-gradient(#6de767, #6de767); */
  background-size: 0 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}
.underline-green:hover {
  background-image: linear-gradient(#1d4bc9, #1d4bc9), linear-gradient(#1d4bc9, #1d4bc9);
  /* background-image: linear-gradient(#6de767, #6de767), linear-gradient(#6de767, #6de767); */
  background-size: 0 1px, 100% 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s linear;
  -webkit-transition: all 0.4s ease 0.3s 0s ease-out;
  -moz-transition: all 0.4s ease 0.3s 0s ease-out;
  -ms-transition: all 0.4s ease 0.3s 0s ease-out;
  -o-transition: all 0.4s ease 0.3s 0s ease-out;
  transition: all 0.4s ease 0.3s 0s ease-out;
}

/*---------------------------------
  1.2 init style
---------------------------------*/
@media (min-width: 1400px) {
  .container-1690 {
    max-width: 1690px;
  }
}
@media (min-width: 1400px) {
  .container-1570 {
    max-width: 1570px;
  }
}
.tp-text-common-white {
  color: var(--tp-common-white);
}

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

.tp-text-grey-1 {
  color: var(--tp-grey-1);
}

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

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

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

.tp-text-theme-secondary {
  color: var(--tp-theme-secondary);
}

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

.tp-text-border-1 {
  color: var(--tp-border-1);
}

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

.tp-ff-body {
  font-family: var(--tp-ff-body);
}

.tp-ff-heading {
  font-family: var(--tp-ff-heading);
}

.tp-ff-fontawesome {
  font-family: var(--tp-ff-fontawesome);
}

/* Font weight */
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/*----------------------------------------*/
/*  2.1 Animations
/*----------------------------------------*/
@keyframes right {
  0% {
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-right {
  animation: right 10s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0px;
    stroke-dasharray: 3000;
  }
}
/*----------------------------------------*/
/*  2.2 Buttons
/*----------------------------------------*/
.tp-btn {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  color: var(--tp-common-white);
  backdrop-filter: blur(40px);
  background-image: linear-gradient(to right, #ffffff1c, #00000061, #ffffff1c);
  background-size: 200% auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 8px 20px;
}
.tp-btn:hover {
  background-position: right center;
}
.tp-btn-2 {
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 3px 20px;
}
.tp-btn-2:hover {
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
}

/*----------------------------------------*/
/*  2.4 Preloader
/*----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-theme-primary);
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #1d4bc9 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #1d4bc9);
  /* background: radial-gradient(farthest-side, #6de767 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #6de767); */
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
/*----------------------------------------*/
/*  2.3 Offcanvas
/*----------------------------------------*/
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
  background: rgba(24, 24, 24, 0.4);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}
.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

/*---------------------------------
    1.5 spacing Spacing
---------------------------------*/
@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: 767px) {
  .pt-170 {
    padding-top: 115px;
  }
}

@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: 767px) {
  .pt-165 {
    padding-top: 110px;
  }
}

@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: 767px) {
  .pt-160 {
    padding-top: 100px;
  }
}

@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: 767px) {
  .pt-155 {
    padding-top: 100px;
  }
}

@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: 767px) {
  .pt-150 {
    padding-top: 100px;
  }
}

@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: 767px) {
  .pt-145 {
    padding-top: 100px;
  }
}

@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: 767px) {
  .pt-140 {
    padding-top: 100px;
  }
}

@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: 767px) {
  .pt-135 {
    padding-top: 95px;
  }
}

@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: 767px) {
  .pt-130 {
    padding-top: 90px;
  }
}

@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: 767px) {
  .pt-125 {
    padding-top: 85px;
  }
}

@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: 767px) {
  .pt-120 {
    padding-top: 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: 767px) {
  .pt-115 {
    padding-top: 75px;
  }
}

@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: 767px) {
  .pt-110 {
    padding-top: 70px;
  }
}

@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: 767px) {
  .pt-105 {
    padding-top: 65px;
  }
}

@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: 767px) {
  .pt-100 {
    padding-top: 60px;
  }
}

@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: 767px) {
  .pb-170 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pt-180 {
    padding-top: 100px;
  }
}

@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: 767px) {
  .pt-190 {
    padding-top: 110px;
  }
}

@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: 767px) {
  .pb-165 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pb-160 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pb-155 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pb-145 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pb-140 {
    padding-bottom: 100px;
  }
}

@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: 767px) {
  .pb-135 {
    padding-bottom: 95px;
  }
}

@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: 767px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

@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: 767px) {
  .pb-125 {
    padding-bottom: 85px;
  }
}

@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: 767px) {
  .pb-120 {
    padding-bottom: 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: 767px) {
  .pb-115 {
    padding-bottom: 75px;
  }
}

@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: 767px) {
  .pb-110 {
    padding-bottom: 70px;
  }
}

@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: 767px) {
  .pb-105 {
    padding-bottom: 65px;
  }
}

@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: 767px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

@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: 767px) {
  .pb-95 {
    padding-bottom: 55px;
  }
}

@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: 767px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.tp-header-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@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: 767px) {
  .tp-header-spacing {
    padding: 15px 0px;
  }
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Main menu css
/*----------------------------------------*/
.tp-main-menu nav ul li {
  margin: 0 17px;
  list-style: none;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}
.tp-main-menu nav ul li a {
  font-size: 14px;
  color: var(--tp-common-white);
  padding: 23px 0px;
  display: inline-block;
}
.tp-main-menu nav ul li > .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 22px 0 12px;
  background: #2c2c2c;
  transition: all 0.4s ease;
  display: block;
  z-index: 6;
  transform: scaleY(0);
  transform-origin: top center;
  box-shadow: 0px 10px 20px 10px rgba(26, 25, 26, 0.3);
  visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
}
.tp-main-menu nav ul li > .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: translateY(-10px);
}
.tp-main-menu nav ul li > .submenu li .submenu {
  right: -100%;
  left: auto;
  top: 0;
}
.tp-main-menu nav ul li > .submenu li:hover > a {
  color: var(--tp-theme-secondary);
}
.tp-main-menu nav ul li > .submenu li:hover > .submenu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.tp-main-menu nav ul li > .submenu li a {
  position: relative;
  z-index: 11;
  color: var(--tp-common-white);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 28px;
  padding-bottom: 1px;
  width: 100%;
  text-transform: capitalize;
}
.tp-main-menu nav ul li:hover > a {
  color: var(--tp-theme-secondary);
}
.tp-main-menu nav ul li:hover > .submenu {
  transform: scaleY(1);
  visibility: visible;
}

/*----------------------------------------*/
/*  4.2 Mobilemenu css
/*----------------------------------------*/
.tp-offcanvas-menu {
  margin-bottom: 40px;
}
.tp-offcanvas-menu ul {
  list-style: none;
}
.tp-offcanvas-menu ul li {
  position: relative;
}
.tp-offcanvas-menu ul li > a {
  padding: 8px 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
}
.tp-offcanvas-menu ul li:not(:last-child) > a {
  border-bottom: 1px solid #555;
}
.tp-offcanvas-menu ul li.active > a {
  color: var(--tp-common-black);
}
.tp-offcanvas-menu ul li.active > .tp-menu-close {
  color: var(--tp-common-white);
  background: var(--tp-common-black);
  border-color: var(--tp-common-black);
}
.tp-offcanvas-menu ul li.active > .tp-menu-close i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tp-offcanvas-menu ul li .tp-submenu {
  display: none;
}
.tp-offcanvas-menu ul li .tp-submenu.submenu {
  padding-left: 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: 767px) {
  .tp-offcanvas-menu .tp-main-mega-menu {
    padding-left: 0 !important;
  }
}
.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--tp-common-black);
}
.tp-offcanvas-menu .tp-main-mega-menu .homemenu-title a {
  padding: 0;
  font-family: var(--tp-ff-open);
  color: var(--tp-common-black);
}
.tp-offcanvas-menu .tp-main-mega-menu .homemenu {
  margin-bottom: 30px;
}

.tp-menu-close {
  position: absolute;
  right: 0;
  top: 6px;
  height: 30px;
  width: 30px;
  font-size: 12px;
  line-height: 29px;
  text-align: center;
  border: 1px solid #555;
}
.tp-menu-close i {
  transition: all 0.3s;
}

/*----------------------------------------*/
/*  5.1 Postbox css
/*----------------------------------------*/
.tp-postbox-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.tp-postbox-avatar span {
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-common-white);
}
.tp-postbox-title {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-postbox-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .tp-postbox-title {
    font-size: 35px;
  }
}
.tp-postbox-title-2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 147%;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-postbox-banner img {
  border-radius: 4px;
}
.tp-postbox-date {
  border-radius: 4px 0;
  width: 126px;
  height: 118px;
  background: var(--tp-theme-primary);
  display: inline-block;
  padding: 38px 10px 10px 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.tp-postbox-date h6 {
  font-weight: 500;
  font-size: 40px;
  line-height: 50%;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-postbox-date span {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-postbox-content p {
  line-height: 26px;
  color: var(--tp-common-white);
}
.tp-postbox-blockquote {
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 50px 65px 30px 50px;
}
@media (max-width: 767px) {
  .tp-postbox-blockquote {
    padding: 30px 25px 20px 20px;
  }
}
.tp-postbox-paragraph p {
  font-weight: 500;
  font-size: 30px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
@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: 767px) {
  .tp-postbox-paragraph p {
    font-size: 21px;
    line-height: 31px;
  }
}
.tp-postbox-link-author span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
}
.tp-postbox-link-author span::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-radius: 50px;
  background: var(--tp-common-white);
}
.tp-postbox-link-author p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(210, 210, 210, 0.65);
  display: inline-block;
  line-height: 1;
  margin-bottom: 0;
}
.tp-postbox-thumb img {
  border-radius: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-postbox-social {
    display: flex;
    margin-bottom: 20px;
  }
  .tp-postbox-social a {
    margin-right: 10px;
  }
}
.tp-postbox-social a {
  backdrop-filter: blur(40px);
  border-radius: 30px;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background-image: linear-gradient(to right, #00000061, #ffffff1c, #00000061);
  background-size: 200% auto;
}
.tp-postbox-social a:hover {
  background-position: right center;
}

/*----------------------------------------*/
/*  6.3 home start
/*----------------------------------------*/
.tp-home-svg-wrap {
  overflow: hidden;
}
.tp-home-svg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.tp-home-svg-shape svg path.line-1 {
  stroke: var(--tp-common-white);
  stroke-dasharray: 2300;
  stroke-dashoffset: 3500;
  animation: dash 5s linear forwards infinite;
}
.tp-home-spacing {
  padding-top: 35px;
  padding-bottom: 20px;
  margin-left: 24px;
  margin-right: 24px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px), only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-spacing {
    margin-right: 0;
    margin-left: 0;
    padding-top: 15px;
    padding-bottom: 0;
  }
}
.tp-home-author-shadow {
  overflow: hidden;
  border-radius: 4px;
}
.tp-home-author-shadow::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background: #1d4bc9;
  /* background: #6de767; */
  filter: blur(30px);
  bottom: -50px;
  left: -50px;
  border-radius: 4px;
}
.tp-home-title {
  font-size: 24px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-home-title {
    font-size: 21px;
  }
}
@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: 767px) {
  .tp-home-title {
    font-size: 19px;
  }
  .tp-home-title br {
    display: none;
  }
}
.tp-home-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--tp-theme-secondary);
}
.tp-home-btn:hover {
  color: var(--tp-theme-secondary);
}
.tp-home-subtitle {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--tp-theme-secondary);
  display: inline-block;
}
.tp-home-author-title {
  font-size: 40px;
}
@media (max-width: 767px) {
  .tp-home-author-title {
    font-size: 36px;
  }
}
.tp-home-author-name {
  padding: 80px 50px 64px 58px;
  margin-right: 49px;
  margin-left: 19px;
}
@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: 767px) {
  .tp-home-author-name {
    margin-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-author-name {
    padding: 40px 30px 34px 28px;
  }
}
@media (max-width: 767px) {
  .tp-home-author-name {
    margin-left: 0;
  }
}
@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: 767px) {
  .tp-home-author-name p {
    font-size: 15px;
  }
  .tp-home-author-name p br {
    display: none;
  }
}
.tp-home-author-thumb {
  margin-right: -22px;
}
.tp-home-author-thumb::before {
  width: 200px;
  height: 200px;
  bottom: -90px;
  left: -90px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .tp-home-author-thumb {
    margin-right: 0;
  }
}
.tp-home-author-thumb img {
  height: 100%;
  object-fit: cover;
}
.tp-home-project-icon {
  border-radius: 80px;
  width: 40px;
  height: 40px;
  backdrop-filter: blur(40px);
  background-image: linear-gradient(to right, #65525257, #ffffff54, #65525257);
  background-size: 200% auto;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  color: var(--tp-common-white);
  transition: all 0.4s ease;
}
.tp-home-project-icon:hover {
  background-position: right center;
}
.tp-home-project-contect {
  padding: 170px 30px 16px 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: 767px) {
  .tp-home-project-contect {
    padding: 166px 30px 16px 30px;
  }
}
.tp-home-project-wrap {
  margin-left: -51px;
  margin-right: 50px;
}
@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-home-project-wrap {
    margin-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-project-wrap {
    margin-right: 0;
    margin-left: 0;
  }
}
.tp-home-resorces-wrap {
  margin-left: -50px;
  padding: 40px 40px 40px 40px;
}
@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: 767px) {
  .tp-home-resorces-wrap {
    padding: 40px 25px 40px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-resorces-wrap {
    margin-left: 0;
  }
}
.tp-home-about-wrap {
  padding: 22px 30px 82px 60px;
  margin-right: 68px;
}
@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: 767px) {
  .tp-home-about-wrap {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .tp-home-about-wrap {
    padding: 22px 30px 42px 30px;
  }
}
.tp-home-blog-wrap {
  padding: 40px 30px 17px 30px;
  margin-left: -68px;
  margin-right: 48px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-home-blog-wrap {
    padding: 40px 18px 17px 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: 767px) {
  .tp-home-blog-wrap {
    padding: 40px 18px 17px 14px;
  }
}
@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: 767px) {
  .tp-home-blog-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.tp-home-social-wrap {
  margin-left: -48px;
  column-count: 3;
  gap: 16px;
  margin-right: 61px;
}
@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: 767px) {
  .tp-home-social-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}
.tp-home-social-item {
  height: 130px;
  text-align: center;
  line-height: 130px;
  margin-bottom: 16px;
}
@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: 767px) {
  .tp-home-social-item {
    height: 126px;
    line-height: 126px;
  }
}
.tp-home-social-item:hover .tp-home-social-content {
  opacity: 1;
  visibility: visible;
}
.tp-home-social-item:hover .tp-home-social-icon {
  opacity: 0;
  visibility: hidden;
}
.tp-home-social-item:hover .tp-home-social-hover-shadow img {
  opacity: 1;
  visibility: visible;
}
.tp-home-social-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.tp-home-social-content span {
  font-weight: 400;
  font-size: 16px;
  color: var(--tp-common-white);
  line-height: 1;
}
.tp-home-social-icon {
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.3) 100%);
  border-radius: 30px;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  transition: all 0.4s ease;
}
.tp-home-social-icon-wrap {
  display: block;
  overflow: hidden;
}
.tp-home-social-hover-shadow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.tp-home-banner-thumb {
  margin-left: -61px;
}
@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: 767px) {
  .tp-home-banner-thumb {
    margin-left: 0;
  }
}
.tp-home-banner-thumb img {
  height: 100%;
  object-fit: cover;
}
.tp-home-banner-2-wrap {
  margin-left: -79px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-banner-2-wrap {
    margin-left: 0;
  }
}
.tp-home-banner-2-wrap img {
  height: 100%;
  object-fit: cover;
}
.tp-home-software-shape {
  position: absolute;
  background: linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0) 100%);
  left: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  width: 170px;
  height: 100%;
}
.tp-home-software-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  width: 170px;
  height: 100%;
  transform: rotate(-180deg);
  background: linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0) 100%);
}
.tp-home-software-item {
  margin-right: 15px;
}
.tp-home-software-wrap {
  padding: 55px 0px 60px 0px;
  margin-right: 79px;
}
.tp-home-software-wrap:hover .animate-right {
  animation-play-state: paused;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-software-wrap {
    margin-right: 0;
  }
}
.tp-home-software-icon {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.2) 100%);
  display: inline-block;
}
.tp-home-software-icon img {
  filter: saturate(0);
}
.tp-home-service-wrap {
  padding: 40px 40px 20px 42px;
  margin-right: -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: 767px) {
  .tp-home-service-wrap {
    padding: 40px 30px 20px 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-service-wrap {
    margin-right: 0;
  }
}
.tp-home-service-pagination span {
  border-radius: 30px;
  width: 13px;
  opacity: 1;
  height: 13px;
  display: inline-block;
  backdrop-filter: blur(40px);
  margin-right: 6px;
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.2) 100%);
}
.tp-home-service-pagination .swiper-pagination-bullet-active {
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}
.tp-home-contact-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-home-contact-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: 767px) {
  .tp-home-contact-title {
    font-size: 28px;
  }
}
.tp-home-contact-title span {
  color: var(--tp-theme-secondary);
}
.tp-home-contact-slide p {
  flex: 0 0 auto;
}
.tp-home-contact-wrap {
  padding: 56px 20px 20px 40px;
  margin-left: 36px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-contact-wrap {
    margin-left: 0;
  }
}
.tp-home-contact-shape {
  background: linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0) 100%);
  left: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  width: 206px;
  height: 100%;
}
.tp-home-contact-shape-2 {
  background: linear-gradient(90deg, #1c1c1c 0%, rgba(28, 28, 28, 0) 100%);
  transform: rotate(-180deg);
  right: 0;
  top: 0;
  display: inline-block;
  z-index: 1;
  width: 206px;
  height: 100%;
}
.tp-home-2-border {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.tp-home-2-spacing {
  padding-top: 35px;
}
.tp-home-2-para {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: var(--tp-common-white);
}
@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: 767px) {
  .tp-home-2-para {
    font-size: 13px;
  }
}
.tp-home-2-author {
  margin-right: -10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-2-author {
    margin-right: 0;
  }
}
.tp-home-2-author img {
  height: 100%;
  object-fit: cover;
}
.tp-home-2-about-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-common-white);
  display: block;
}
.tp-home-2-about-wrap {
  backdrop-filter: blur(40px);
  background: linear-gradient(308deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 10px 20px 15px 20px;
  margin-left: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-2-about-wrap {
    margin-left: 0;
  }
}
.tp-home-2-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--tp-common-white);
}
@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: 767px) {
  .tp-home-2-title {
    font-size: 15px;
  }
}
.tp-home-2-expreance-wrap {
  backdrop-filter: blur(40px);
  background: linear-gradient(136deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 26px 20px 16px 30px;
  background-image: linear-gradient(to right, #ffffff00, #ffffff21, #ffffff00);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-home-2-expreance-wrap:hover {
  background-position: right center;
}
.tp-home-2-expreance-icon {
  backdrop-filter: blur(40px);
  background: linear-gradient(209deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.14) 100%);
  border-radius: 30px;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  flex: 0 0 auto;
}
.tp-home-2-expreance-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: rgba(210, 210, 210, 0.65);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-home-2-expreance-item .tp-home-expreance-2-year {
    margin-right: 15px;
  }
}
.tp-home-2-big-years {
  font-weight: 500;
  font-size: 120px;
  letter-spacing: -0.04em;
  color: var(--tp-common-white);
}
.tp-home-2-big-years-wrap {
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 20px 0px 20px;
  border-radius: 4px;
  background-image: linear-gradient(to right, #ffffff0d, #ffffff12, #ffffff0d);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-home-2-big-years-wrap:hover {
  background-position: right center;
}
.tp-home-2-big-years-wrap-2 {
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 15px 15px 15px;
  border-radius: 4px;
  background-image: linear-gradient(to right, #ffffff0d, #ffffff12, #ffffff0d);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-home-2-big-years-wrap-2:hover {
  background-position: right center;
}
.tp-home-2-project-wrap {
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 26px 30px 20px 30px;
  background-image: linear-gradient(to right, #ffffff0d, #ffffff12, #ffffff0d);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-home-2-project-wrap:hover {
  background-position: right center;
}
.tp-home-2-project-icon {
  background: var(--tp-theme-primary);
  border-radius: 40px;
  width: 40px;
  color: var(--tp-common-white);
  height: 40px;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
}
.tp-home-2-project-icon:hover {
  background: var(--tp-common-white);
  color: var(--tp-theme-primary);
}
.tp-home-2-project-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
  color: var(--tp-common-white);
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20px;
}
.tp-home-2-service-social-icon {
  backdrop-filter: blur(40px);
  background: linear-gradient(82deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 30px;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  text-align: center;
}
.tp-home-2-service-social-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  height: 122px;
  backdrop-filter: blur(40px);
  padding: 18px 10px 5px 10px;
  color: var(--tp-common-white);
  transition: all 0.4s ease;
  display: block;
  background-image: linear-gradient(to right, #4a4a4a00, #ffffff1c, #4a4a4a00);
  background-size: 200% auto;
}
.tp-home-2-service-social-item:hover {
  background-position: right center;
}
.tp-home-2-service-social-item:hover .tp-home-2-service-social-icon {
  color: var(--tp-theme-secondary);
}
.tp-home-2-service-social-wrap {
  column-count: 3;
  gap: 8px;
}
@media (max-width: 767px) {
  .tp-home-2-service-social-wrap {
    column-count: 2;
  }
}
.tp-home-2-service-link {
  font-weight: 500;
  font-size: 12px;
  color: rgba(210, 210, 210, 0.65);
}
.tp-home-2-social-wrap {
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 26px 30px 25px 30px;
  background-image: linear-gradient(to right, #ffffff0d, #ffffff12, #ffffff0d);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-home-2-social-wrap:hover {
  background-position: right center;
}
.tp-home-2-social-inner a {
  text-align: center;
  background-image: linear-gradient(to right, #00000061, #ffffff1c, #00000061);
  background-size: 200% auto;
  margin-bottom: 5px;
}
.tp-home-2-social-inner a:hover {
  background-position: right center;
}
@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: 767px) {
  .tp-home-2-social-inner a {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}
.tp-home-2-blog-wrap {
  padding: 26px 30px 32px 30px;
}
.tp-home-2-blog-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 144%;
  color: var(--tp-common-white);
}
.tp-home-2-contact-wrap {
  backdrop-filter: blur(40px);
  background: linear-gradient(136deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.07) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 26px 30px 25px 30px;
}
.tp-home-2-copyright {
  border-top: 1px solid rgba(210, 210, 210, 0.2);
  margin-top: 15px;
}
.tp-home-2-copyright p {
  font-weight: 400;
  font-size: 14px;
  color: rgba(210, 210, 210, 0.65);
  margin-bottom: 0;
  padding: 8px 0px;
}
.tp-home-2-copyright p a {
  font-weight: 500;
  color: var(--tp-common-white);
}
.tp-home-2-copyright p a:hover {
  color: var(--tp-theme-secondary);
}

/*----------------------------------------*/
/*  6.4 portfolio start
/*----------------------------------------*/
.tp-portfolio-spacing {
  padding-top: 65px;
}
.tp-portfolio-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: rgba(210, 210, 210, 0.65);
}
.tp-portfolio-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 79%;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-portfolio-text {
  font-size: 14px;
  line-height: 24px;
  color: var(--tp-common-white);
}
.tp-portfolio-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--tp-theme-secondary);
  border-bottom: 1px solid #d2d2d2;
  padding: 3px 15px;
}
@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: 767px) {
  .tp-portfolio-content {
    margin-right: 0;
  }
}
.tp-portfolio-thumb-wrap {
  margin-right: -1020px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-portfolio-thumb-wrap {
    margin-right: -800px;
  }
}
@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: 767px) {
  .tp-portfolio-thumb-wrap {
    margin-left: 0;
    margin-right: -500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-portfolio-thumb-wrap {
    margin-right: 0;
  }
}

/*----------------------------------------*/
/*  6.1 about start
/*----------------------------------------*/
.tp-about-spacing {
  padding-top: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-about-spacing {
    padding-top: 60px;
  }
}
.tp-about-wrap .tp-home-author-shadow {
  margin-right: 0;
}
.tp-about-wrap .tp-home-author-shadow::before {
  width: 200px;
  height: 200px;
  bottom: -90px;
  left: -90px;
}
.tp-about-heiko {
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  padding: 43px 70px 35px 54px;
  background-image: linear-gradient(to right, #ffffff00, #ffffff21, #ffffff00);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-about-heiko:hover {
  background-position: right center;
}
@media (max-width: 767px) {
  .tp-about-heiko {
    padding: 23px 20px 25px 20px;
  }
}
.tp-about-heiko p {
  color: rgba(210, 210, 210, 0.65);
}
.tp-about-heiko p span {
  color: var(--tp-common-white);
}
.tp-about-testimonial-wrap {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 4px;
  backdrop-filter: blur(40px);
  background: linear-gradient(136deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.07) 100%);
}
@media (max-width: 767px) {
  .tp-about-testimonial-wrap {
    padding: 15px;
  }
}
.tp-about-testimonial-ratings-icon i {
  color: var(--tp-theme-secondary);
}
.tp-about-testimonial-item {
  padding: 33px 45px 36px 40px;
  backdrop-filter: blur(40px);
  background: linear-gradient(313deg, rgba(4, 2, 2, 0.48) 0%, rgba(255, 255, 255, 0.04) 100%);
}
@media (max-width: 767px) {
  .tp-about-testimonial-item {
    padding: 20px 20px 20px 20px;
  }
}
.tp-about-testimonial-item p {
  font-size: 14px;
  line-height: 24px;
}
.tp-about-testimonial-name {
  font-weight: 500;
  font-size: 16px;
  color: #d2d2d2;
  margin-bottom: 0;
}
.tp-about-testimonial-name span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(210, 210, 210, 0.65);
}
.tp-about-contact-wrap {
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  padding: 35px 30px;
  background-image: linear-gradient(to right, #ffffff0d, #ffffff12, #ffffff0d);
  background-size: 200% auto;
  transition: all 0.3s ease;
}
.tp-about-contact-wrap:hover {
  background-position: right center;
}
.tp-about-contact-title {
  font-size: 36px;
}
.tp-about-contact-copyright {
  border: none;
}

/*----------------------------------------*/
/*  6.5 service start
/*----------------------------------------*/
.tp-service-link {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-common-white);
}
.tp-service-icon {
  background-image: linear-gradient(to right, #ffffff1c, #00000061, #ffffff1c);
  background-size: 200% auto;
}
.tp-service-completed {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-common-white);
}
.tp-service-count {
  font-weight: 500;
  font-size: 16px;
  color: var(--tp-theme-secondary);
}
.tp-service-wrap {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(40px);
  background-image: linear-gradient(to right, #ffffff0d, #ffffff12, #ffffff0d);
  background-size: 200% auto;
  transition: all 0.3s ease;
  padding: 25px 30px 30px 30px;
}
.tp-service-wrap:hover {
  background-position: right center;
}
.tp-service-wrap:hover .tp-service-icon {
  color: var(--tp-theme-secondary);
  background-position: right center;
}
@media (max-width: 767px) {
  .tp-service-wrap {
    padding: 15px 20px 20px 20px;
  }
}
.tp-service-body {
  border-radius: 4px;
  backdrop-filter: blur(40px);
  background: -moz-linear-gradient(90deg, rgba(18, 17, 17, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(18, 17, 17, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(18, 17, 17, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 25px 30px 30px 30px;
}
.tp-service-body p {
  font-size: 14px;
  color: rgba(210, 210, 210, 0.65);
  line-height: 24px;
}
.tp-service-border {
  background: #161616;
  width: 100%;
  height: 1px;
  display: block;
}
.tp-service-left {
  position: sticky;
  top: 100px;
}

/*----------------------------------------*/
/*  6.2 contact start
/*----------------------------------------*/
.tp-contact-form-wrap {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(40px);
  background: linear-gradient(119deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.11) 100%);
  padding: 67px 78px 78px 78px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-contact-form-wrap {
    padding: 40px 20px 20px 20px;
  }
}
.tp-contact-form-title {
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
  text-align: center;
}
.tp-contact-form-title span {
  color: #1d4bc9;
  /* color: #6de767; */
}
@media (max-width: 767px) {
  .tp-contact-form-title {
    font-size: 30px;
  }
}
.tp-contact-form-main-title {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--tp-common-white);
}
.tp-contact-form-main-title span {
  color: #1d4bc9;
  /* color: #6de767; */
}
.tp-contact-form-input .input {
  font-weight: 400;
  font-size: 14px;
  color: var(--tp-common-white);
  backdrop-filter: blur(40px);
  background: linear-gradient(329deg, rgba(0, 0, 0, 0.75) 0%, rgba(78, 78, 78, 0.81) 100%);
  border: none;
  height: 52px;
  padding: 25px 30px;
}
.tp-contact-form-input .input::placeholder {
  color: var(--tp-common-white);
}
.tp-contact-form-input .textarea {
  height: 160px;
}
.tp-contact-form-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--tp-theme-primary);
  padding: 13px 20px;
  background: var(--tp-common-white);
  width: 100%;
  border-radius: 4px;
}
.tp-contact-form-btn:hover {
  background: var(--tp-theme-primary);
  color: var(--tp-common-white);
}
.tp-contact-form-main-wrap {
  padding: 52px 60px 60px 60px;
  backdrop-filter: blur(10px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 767px) {
  .tp-contact-form-main-wrap {
    padding: 40px 20px 20px 20px;
  }
}
.tp-contact-form-location-item {
  display: flex;
  align-items: center;
}
.tp-contact-form-location-item span {
  backdrop-filter: blur(40px);
  background: linear-gradient(28deg, rgba(0, 0, 0, 0.38) 0%, rgba(255, 255, 255, 0.11) 100%);
  border-radius: 30px;
  width: 60px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  transition: all 0.4s ease;
  text-align: center;
  flex: 0 0 auto;
  margin-right: 20px;
}
.tp-contact-form-location-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--tp-common-white);
  margin-bottom: 0;
}
.tp-contact-form-location-item a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--tp-common-white);
  display: block;
}
.tp-contact-form-location-item a:hover {
  color: var(--tp-theme-secondary);
}

.text-justify {
  text-align: justify;
}

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