/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/

@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Bold.woff2') format('woff2'),
  url('../fonts/Dubai-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Light.woff2') format('woff2'),
  url('../fonts/Dubai-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Regular.woff2') format('woff2'),
  url('../fonts/Dubai-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Dubai';
  src: url('../fonts/Dubai-Medium.woff2') format('woff2'),
  url('../fonts/Dubai-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

a, button, p, input, select, textarea {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* transform */

@font-face {
  font-family: "gallery_modernregular";
  src: url("../fonts/gallerymodern-webfont.woff2") format("woff2"), url("../fonts/gallerymodern-webfont.woff") format("woff"), url("../fonts/gallerymodern-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  /**
  @font family declaration
  */
  --tp-ff-body: 'Dubai', sans-serif;
  --tp-ff-heading: 'Dubai', sans-serif;
  --tp-ff-p: 'Dubai', sans-serif;
  --tp-ff-syne: 'Dubai', sans-serif;
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-theme-1: #1EBCBE;
  --tp-common-white: #F5F7F5;
  --tp-common-white-solid: #fff;
  --tp-common-black: #1E1E1E;
  --tp-common-black-2: #1E1E1E;
  --tp-common-black-3: #141414;
  --tp-common-dark: #121212;
  --tp-common-orange: #EB5939;
  --tp-grey-1: #262626;
  --tp-grey-2: #F4F4F4;
  --tp-grey-3: #5D5D63;
  --tp-grey-4: #F7F7F7;
  --tp-text-body: #5D5D63;
  --tp-border-1: #EAEAEB;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  .container-1630 {
    max-width: 1630px;
  }
  .container-1480 {
    max-width: 1480px;
  }
  .container-1330 {
    max-width: 1330px;
  }
  .container-1800 {
    max-width: 1800px;
  }
  .container-1480 {
    max-width: 1480px;
  }
  .container-1530 {
    max-width: 1530px;
  }
}

* {
  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;
}

h2,
h4 {
  font-family: var(--tp-ff-heading);
  color: var(--tp-common-black);
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

h2 {
  font-size: 36px;
}

h4 {
  font-size: 24px;
}

p {
  font-family: var(--tp-ff-p);
  color: var(--tp-text-body);
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

img {
  max-width: 100%;
}

a: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;
}

input[type=text],
input[type=email],
input[type=tel],
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,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #95999D;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: #95999D;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-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,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #95999D;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: var(--tp-common-black);
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
}
textarea:focus {
  border-color: var(--tp-common-black);
}

*::-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;
}

.z-index {
  position: relative;
  z-index: 1;
}

.z-index-2 {
  position: relative;
  z-index: 2;
}

.z-index-5 {
  position: relative;
  z-index: 5;
}

/*---------------------------------
1.2 Common Classes
---------------------------------*/

.fix {
  overflow: hidden;
}

.p-relative {
  position: relative;
}
/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.tp-btn-circle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  width: 149px;
  height: 149px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-btn-circle.style-2 {
  border-color: var(--tp-theme-1);
  color: var(--tp-common-black);
}
.tp-btn-circle-icon {
  transform: translateY(10px);
  margin-left: 8px;
}
.tp-btn-circle .tp-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  /* background-color: var(--tp-common-white); */
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.tp-btn-circle:hover {
  background: radial-gradient(301.25% 255.48% at -35.34% 1.27%, #21c0c2 0%, #1fbcbe 33.33%, #ae81b8 66.67%, #159cbe 100%);
  color: #fff;
}
.tp-btn-circle:hover .tp-btn-circle-dot {
  width: 420px;
  height: 420px;
}
.tp-btn-circle:hover span {
  color: #fff;
}
.tp-btn-circle-2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--tp-common-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-block;
  width: 149px;
  height: 149px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.tp-btn-circle-2 span {
  text-align: center;
}
.tp-btn-circle-2 .tp-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -ms-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--tp-common-white);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.tp-btn-circle-2:hover {
  border: 1px solid transparent;
}
.tp-btn-circle-2:hover .tp-btn-circle-dot {
  width: 420px;
  height: 420px;
}
.tp-btn-circle-2:hover span {
  color: var(--tp-common-black);
}

.tp-btn-border {
  height: 50px;
  line-height: 50px;
  border-radius: 40px;
  padding: 0 30px;
  font-weight: 500;
  font-size: 18px;
  /* letter-spacing: 0.03em; */
  z-index: 9;
  overflow: hidden;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s;
  color: #fff;
  background: radial-gradient(301.25% 255.48% at -35.34% 1.27%, #21c0c2 0%, #1fbcbe 33.33%, #ae81b8 66.67%, #159cbe 100%);
  border: 1px solid var(--tp-border-1);
  transition-duration: 800ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-btn-border {
    height: 60px;
    line-height: 60px;
    border-radius: 40px;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .tp-btn-border {
    height: 52px;
    line-height: 52px;
    padding: 0px 30px;
    display: block;
    text-align: center;
  }
}
.tp-btn-border:hover {
  border-color: var(--tp-theme-1);
  background: #fff !important;
  color: var(--tp-theme-1);
}

.tp-btn-border-sm {
  height: 44px;
  line-height: 42px;
  border-radius: 100px;
  padding: 0 20px;
  z-index: 9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--tp-common-white);
  border: 1px solid var(--tp-common-white);
}
.tp-btn-border-sm:hover {
  color: var(--tp-common-black);
  background-color: var(--tp-common-white);
  border-color: var(--tp-common-white);
}

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/
/* pulse effect animation */
/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/

.dark-bg {
  background-color: var(--tp-common-dark);
}

/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
.container {
  transition: all 1s;
}

.tp-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.tp-header-logo img {
  width: 85px;
  height: 100%;
}
.tp-header-2-ptb {
  padding: 15px 0;
}

@media (min-width: 1199px) and (max-width: 1600px) {
  .tp-header-2-ptb{
    padding-left: 100px;
    padding-right: 100px;
  }
}
/*----------------------------------------*/
/*  3.4 Header Style 4
/*----------------------------------------*/
.tp-header-4-btn {
  line-height: 0;
}
.tp-postbox-details-input input::focus {
  border-color: var(--tp-common-black);
}
.tp-postbox-details-input textarea::focus {
  border-color: var(--tp-common-black);
}

.tp-copyright-2-left p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-copyright-2-left p {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .tp-copyright-2-left p {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.tp-copyright-2-bdr-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}
/* .tp-hero-2-pt {
  padding-top: 75px;
} */
.tp-hero-2-wrapper {
  padding-left: 120px;
  height: 820px;
  border-radius: 12px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-2-wrapper {
    height: 660px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-wrapper {
    height: 660px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-wrapper {
    padding-left: 15px;
    height: 430px;
    padding-top: 100px !important;
  }
}
.tp-hero-2-bg {
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-hero-2-bg img {
  /* border-radius: 12px; */
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.tp-hero-2-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff, #31b7bc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hero-2-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .tp-hero-2-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tp-hero-2-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .tp-hero-2-content p {
    font-size: 18px !important;
    font-weight: 400 !important;
  }
  .tp-btn-border-sm {
    padding: 0 15px !important;
  }
  .xs-mb-20{
    margin-bottom: 20px !important;
  }
}
.mb-12{
  margin-bottom: 12px !important;
}
.tp-hero-2-content p {
  /* max-width: 520px; */
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 35px;
  margin-top: 10px;
}

.tp-studio-plr {
  padding-left: 50px;
  padding-right: 50px;
  /* border-radius: 40px; */
}
@media (max-width: 767px) {
  .tp-studio-plr {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*----------------------------------------*/
/*  7.3 brand css start
/*----------------------------------------*/
.brand-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

/* .tp-brand-area {
  padding-top: 600px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-brand-area {
    padding-top: 450px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-brand-area {
    padding-top: 640px;
  }
}
@media (max-width: 767px) {
  .tp-brand-area {
    padding-top: 0;
  }
} */
.tp-brand-ptb {
  padding-top: 85px;
  padding-bottom: 85px;
}
.tp-brand-brd-top {
  border-top: 1px solid var(--tp-border-1);
}
.tp-brand-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tp-common-black);
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-brand-title {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-brand-title {
    margin-bottom: 40px;
  }
}
.tp-brand-item {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-brand-item {
    text-align: center;
  }
}
.tp-brand-slider-active .swiper-wrapper {
  display: flex;
  align-items: center;
}

/*----------------------------------------*/
/*  7.19 service css start
/*----------------------------------------*/

@media (max-width: 767px) {
  .tp-service-4-area {
    padding-bottom: 60px;
    padding-top: 60px !important;
  }
}

/* @media (min-width: 1499px) {
  .tp-service-4-area {
    padding-top: 250px;
  }
} */
.tp-service-4-item {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 1px 4px 0 #00000029;
  position: relative;
  border-radius: 8px;
}
@media (min-width: 1200px) {
  .tp-service-4-item{
    height: 230px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-service-4-item {
    margin-right: 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), (max-width: 767px) {
  .tp-service-4-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.tp-service-4-title-sm {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--tp-common-black);
  font-family: var(--tp-ff-marcellus);
  margin-bottom: 0;
}
.tp-service-4-icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 99;
}
.tp-service-4-icon img {
  width: 65px;
}

/*----------------------------------------*/
/*  7.18 project css start
/*----------------------------------------*/

.capabilities .tp_img_reveal {
  /* visibility: hidden;
  overflow: hidden; */
  width: 100%;
  align-items: center; 
  flex-direction: column;
  display: flex;
  display: -webkit-flex;
  transition: 0.4s;
  z-index: 1;
  position: relative;
  bottom: -75px;
}

.tp_img_reveal .last {
  position: absolute;
  /* top: 0;
  left: 0; */
  opacity: 0;
  transition: 0.4s;
  z-index: 9;
}

.capabilities .tp-project-5-2-thumb:before {
  content: "";
  background: radial-gradient(77.54% 77.54% at 47.05% 100%, #2aa9ae 0%, #acdee0 45.83%, rgba(255, 255, 255, 0) 98.96%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  opacity: 0;
}
.tp-project-5-2-thumb {
  z-index: 99;
  position: relative;
  /* background-color: #fff;
  box-shadow: 0 1px 4px 0 #00000029;
  padding-top: 25px; */
}

.tp-project-5-2-thumb img{
  border-radius: 8px;
}
.tp-project-5-2-thumb:hover:before {
  opacity: 1;
}

.tp-project-5-2-thumb:hover .last {
  opacity: 9;
}

.tp_img_reveal img {
  transform-origin: left;
  overflow: hidden;
}

@media (max-width: 575px) {
  .tp-project-5-2-title{
    font-size: 20px !important;
  }
  .capabilities .swiper-custom-pagination{
    margin-top: 60px !important;
  }
  .tp-cta-area,
  .tp-brand-ptb,
  .pd-visual-slider-wrap{
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .tp-project-5-2-area{
    padding-top: 0 !important
  }
  .contact-block{
    padding: 15px !important;
  }
}

/* .tp-project-5-2-title {
  font-size: 190px;
  font-weight: 600;
  letter-spacing: -5.6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-project-5-2-title {
    font-size: 210px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-5-2-title {
    font-size: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-5-2-title {
    font-size: 140px;
  }
}
@media (max-width: 767px) {
  .tp-project-5-2-title {
    font-size: 85px;
  }
} */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-5-2-thumb {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .tp-project-5-2-thumb {
    margin-bottom: 30px;
  }
}
.capabilities .tp-project-5-2-thumb img {
  width: 100%;
  width: 220px;
  /* background-color: #fff; */
}
/* .tp-project-5-2-category {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 40px;
}
.tp-project-5-2-category span {
  font-size: 18px;
  font-weight: 400;
  line-height: 13px;
  color: var(--tp-common-white);
} */
.projects .tp-project-5-2-content {
  position: relative;
  /* bottom: 0px;
  left: 0;
  right: 0; */
  padding: 10px 6px;
  z-index: 2;
  margin-bottom: 15px;
}
.capabilities .tp-project-5-2-content {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  padding: 22px 35px;
  z-index: 2;
}
.tp-project-5-2-meta {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
  /* color: var(--tp-common-white); */
  z-index: 2;
}
.capabilities .tp-project-5-2-title-sm {
  font-size: 20px !important;
  font-weight: 500;
  line-height: 1;
  /* color: var(--tp-common-black) !important; */
  margin-bottom: 0;
}

.tp-project-5-2-title {
  font-size: 22px !important;
  font-weight: 500;
  line-height: 1;
  /* letter-spacing: -0.8px; */
  /* color: var(--tp-common-white) !important; */
  margin-bottom: 5px;
}

/* .pd-visual-slider-active {
  margin: 0px -250px;
} */
/* @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .pd-visual-slider-active {
    margin: 0;
  }
} */
.pd-visual-slider-thumb img {
  width: 100%;
  transition: 0.9s;
}
.pd-visual-slider-thumb:hover img {
  transform: scale(1.1);
}
/* .tm-testimonial-height {
  height: 370px;
} */
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tm-testimonial-height {
    height: 100%;
  }
}
/*----------------------------------------*/
/*  7.23 testimonial css start
/*----------------------------------------*/

@media (max-width: 767px) {
  .tp-studio-testimonial-xs-space {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-studio-testimonial-wrap {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-studio-testimonial-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.tp-studio-testimonial-top-title h2 {
  font-weight: 400;
  margin-right: 100px;
  text-transform: uppercase;
  font-size: 32px;
  display: inline-block;
  transform: translateY(6px);
  color: var(--tp-common-white);
}
@media (max-width: 767px) {
  .tp-studio-testimonial-top-title h2{
    font-size: 26px;
    margin: 0 0 25px 0 !important;
  }
}
.tp-studio-testimonial-title-box {
  position: absolute;
  bottom: -13%;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-studio-testimonial-title-box {
    bottom: -2%;
  }
}
.tp-studio-testimonial-title {
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--tp-ff-shoulders);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-studio-testimonial-title {
    font-size: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-studio-testimonial-title {
    font-size: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-studio-testimonial-title {
    font-size: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-studio-testimonial-title {
    font-size: 120px;
  }
}
.tp-studio-testimonial-text {
  margin-bottom: 50px;
}
.tp-studio-testimonial-text p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--tp-common-white);
  font-family: var(--tp-ff-shoulders);
}
@media (max-width: 1399px) {
  .tp-studio-testimonial-text p {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .tp-studio-testimonial-text p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .tp-studio-testimonial-text p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tp-studio-testimonial-user-info-box {
    flex-wrap: wrap;
  }
}
.tp-studio-testimonial-item {
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-studio-testimonial-item {
    padding-right: 0;
  }
}
.tp-studio-testimonial-arrow {
  position: absolute;
  bottom: 30%;
  left: -29%;
}
@media (max-width: 767px) {
  .tp-studio-testimonial-arrow {
    bottom: -25%;
    left: 0;
  }
}

.tp-studio-prev {
  margin-right: 30px;
}

.tp-studio-prev, .tp-studio-next {
  position: relative;
  width: 30px;
  height: 40px;
  font-size: 0;
}

/*----------------------------------------*/
/*  7.1 about css start
/*----------------------------------------*/
.tp-about-2-section-title {
  color: var(--tp-common-black);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .tp-about-2-section-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .tp-about-2-section-title,
  .tp-studio-testimonial-top-title h2 {
    font-size: 24px;
  }
  p{
    font-size: 16px;
  }
}

.tp-about-2-thumb-box {
  margin-right: 35px;
}
@media (max-width: 767px) {
  .tp-about-2-thumb-box {
    margin-right: 0;
  }
}
.tp-about-2-thumb-main img {
  transform-origin: top left;
  border-radius: 12px;
  /* width: 400px; */
}
@media (max-width: 767px) {
  .tp-about-2-thumb-main img {
    width: 100%;
    transform: rotate(0);
    margin-bottom: 20px;
  }
}
.tp-about-2-thumb-inner {
  position: absolute;
  bottom: -40px;
  left: 153px;
  transform-origin: left bottom;
}
@media (max-width: 767px) {
  .tp-about-2-thumb-inner {
    transform: rotate(0);
    position: static;
    margin-bottom: 20px;
  }
}
.tp-about-2-thumb-inner img {
  border-radius: 12px;
  width: 100%;
  /* width: 300px; */
  margin-bottom: 10px;
}
.tp-about-2-content {
  /* padding-left: 40px; */
  padding-right: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-2-content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-2-content {
    padding-left: 0;
    padding-right: 0;
    /* margin-bottom: 80px; */
  }
}
.tp-about-2-content p {
  color: #3E3E44;
}
.tp-about-2-right-thumb {
  overflow: hidden;
  position: relative;
  width: 200px;
  height: 230px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-about-2-right-thumb {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tp-about-2-area {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

/*----------------------------------------*/
/*  7.25 video css start
/*----------------------------------------*/
/* @media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-video-wrap {
    margin-bottom: 100px;
    height: 600px;
  }
} */

.tp-video-3-wrap {
  line-height: 0;
  overflow: hidden;
}
.tp-video-3-wrap video {
  height: 850px;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-video-3-wrap video {
    height: 700px;
  }
}
@media (max-width: 992px) {
  .tp-video-3-wrap video {
    height: 100%;
    /* margin: 0 15px; */
  }
}
/*----------------------------------------*/
/*  7.7 cta css start
/*----------------------------------------*/
.tp-cta-title-box {
  padding-left: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-cta-title-box {
    padding-left: 0;
  }
}
.tp-cta-title-box p {
  max-width: 465px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-title-box p {
    margin: 0;
    margin-bottom: 30px;
    display: inline-block;
  }
}
.tp-cta-title {
  font-size: 85px;
  font-weight: 400;
  line-height: 1;
  /* letter-spacing: -4px; */
  color: var(--tp-common-white);
  font-family: var(--tp-ff-marcellus);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .tp-cta-title {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .tp-cta-title {
    font-size: 32px;
  }
}
.tp-cta-title span {
  padding-left: 315px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-cta-title span {
    padding-left: 0;
  }
}
.tp-cta-btn-box {
  position: absolute;
  bottom: 5%;
  left: 12%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-cta-btn-box {
    bottom: 16%;
    left: 25%;
    transform: scale(0.7);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-cta-btn-box {
    position: static;
  }
}
@media (max-width: 767px) {
  .tp-cta-btn-box {
    position: static;
    margin-top: 20px;
  }
}

/*----------------------------------------*/
/*  7.6 contact css start
/*----------------------------------------*/
.cn-contactform-input label {
  color: #414144;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}
.cn-contactform-input input, .cn-contactform-input textarea {
  border: none;
  background-color: transparent;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
  height: 45px;
  border-bottom: 1px solid rgba(25, 25, 26, 0.24);
}
.cn-contactform-input input::-webkit-input-placeholder, .cn-contactform-input textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #B2B2B2;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cn-contactform-input input::-webkit-input-placeholder, .cn-contactform-input textarea::-webkit-input-placeholder {
    font-size: 18px;
  }
}
.cn-contactform-input input::-moz-placeholder, .cn-contactform-input textarea::-moz-placeholder { /* Firefox 19+ */
  color: #B2B2B2;
  font-size: 16px;
  font-weight: 400;
}
.cn-contactform-input input:-moz-placeholder, .cn-contactform-input textarea:-moz-placeholder { /* Firefox 4-18 */
  color: #B2B2B2;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cn-contactform-input input:-moz-placeholder, .cn-contactform-input textarea:-moz-placeholder {
    font-size: 18px;
  }
}
.cn-contactform-input input:-ms-input-placeholder, .cn-contactform-input textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #B2B2B2;
  font-size: 16px;
  font-weight: 400;
}
.cn-contactform-input textarea {
  resize: none;
  height: 75px;
}
.cn-contactform-input textarea:focus {
  border-color: var(--tp-common-black);
}
/*----------------------------------------*/
/*  7.9 funfact css start
/*----------------------------------------*/
.slide-funfact-overlay {
  position: relative;
}
.slide-funfact-overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(30, 30, 30, 0.6) 0.12%, rgba(30, 30, 30, 0.86) 51.83%, rgba(30, 30, 30, 0.6) 99.87%);
  content: "";
}

.slide-funfact-height {
  position: relative;
  overflow: hidden;
  height: 545px;
  background-color: var(--tp-common-black);
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-funfact-height {
    height: 400px;
  }
}

.slide-funfact:after {
  content: "";
  z-index: 1;
  width: 100%;
  height: 1px;
  max-width: 80rem;
  background: linear-gradient(64deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 51.22%, rgba(255, 255, 255, 0) 100%);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-funfact:before {
  content: "";
  z-index: 1;
  width: 100%;
  height: 1px;
  max-width: 80rem;
  background: linear-gradient(64deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 51.22%, rgba(255, 255, 255, 0) 100%);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: auto;
  top: 0%;
  left: 0%;
  right: 0%;
}

.slide-funfact .img-marq {
  z-index: -1;
  opacity: 0.7;
  -webkit-perspective: 1412px;
  perspective: 1412px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.slide-funfact .img-marq .slide-img-right {
  z-index: -1;
  -webkit-transform-origin: 100%;
  -ms-transform-origin: 100%;
  transform-origin: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: -10%;
  -webkit-transform: rotateX(0) rotateY(-80deg) rotate(0);
  transform: rotateX(0) rotateY(-80deg) rotate(0);
}

.slide-funfact .img-marq .slide-img-right .box {
  -webkit-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  transform: translate(0%, 0px);
  -webkit-animation-name: bgshotsright;
  animation-name: bgshotsright;
  -webkit-animation-duration: 45s;
  animation-duration: 45s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.slide-funfact .img-marq .slide-img-left {
  z-index: -1;
  -webkit-transform-origin: 0%;
  -ms-transform-origin: 0%;
  transform-origin: 0%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -10%;
  right: auto;
  -webkit-transform: rotate3d(0, 1, 0.00009, 80deg);
  transform: rotate3d(0, 1, 0.00009, 80deg);
}

.slide-funfact .img-marq .slide-img-left .box {
  -webkit-transform: translate(0%, 0px);
  -ms-transform: translate(0%, 0px);
  transform: translate(0%, 0px);
  -webkit-animation-name: bgshots;
  animation-name: bgshots;
  -webkit-animation-duration: 45s;
  animation-duration: 45s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.slide-funfact .img-marq img {
  width: 50vw;
  -webkit-perspective: 100px;
  perspective: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-transform: perspective(100px);
  transform: perspective(100px);
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.slide-funfact .img-marq .box {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.middle-shadow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.middle-shadow span {
  height: 230px;
  width: 350px;
  display: inline-block;
  background: linear-gradient(90deg, rgba(25, 25, 26, 0) 0%, #19191A 14.76%, #19191A 84.25%, rgba(25, 25, 26, 0) 100%);
}

.slide-funfact-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.slide-funfact-item h4 {
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
  color: var(--tp-common-white);
  font-family: var;
}
@media (max-width: 575px) {
  .slide-funfact-item h4 {
    font-size: 46px !important;
  }
  .slide-funfact-height{
    height: 430px !important;
  }
}
.slide-funfact-item h4 i {
  font-family: var(--tp-ff-body);
  font-style: normal;
}
.slide-funfact-item span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--tp-common-white);
}

@-webkit-keyframes bgshots {
  from {
    -webkit-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }
  to {
    -webkit-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }
}
@keyframes bgshots {
  from {
    -webkit-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }
  to {
    -webkit-transform: translate(-100%, 0px);
    transform: translate(-100%, 0px);
  }
}
@-webkit-keyframes bgshotsright {
  from {
    -webkit-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }
  to {
    -webkit-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
  }
}
@keyframes bgshotsright {
  from {
    -webkit-transform: translate(0%, 0px);
    transform: translate(0%, 0px);
  }
  to {
    -webkit-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
  }
}
/*----------------------------------------*/
/*  7.24 update-css css
/*----------------------------------------*/
.tp-about-2-right-thumb {
  border-radius: 10px;
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background: radial-gradient(301.25% 255.48% at -35.34% 1.27%, #21c0c2 0%, #1fbcbe 33.33%, #ae81b8 66.67%, #159cbe 100%);
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 56px;
  margin-bottom: 10px;
  text-align: center;
  padding: 7px 12px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.call-us svg{
  width: 30px;
  margin-right: 15px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  color: #fff;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: scroll; */
  background-color: rgb(0 0 0 / .6)
}

.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}

@media(min-width:1200px) {
  .popup-content {
    width: 50%;
  }
}

@media(max-width:547px) {
  .popup-content {
    width: 95%;
  }
  .popup-content {
    top: 85% !important;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #555;
  z-index: 99;
  float: right;
  font-size: 35px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 15px;
  right: 18px;
}
.close:hover{
  color: #000;
}

.mb-40{
  margin-bottom: 40px;
}
.pb-60{
  padding-bottom: 60px;
}
.pb-80{
  padding-bottom: 80px;
}

.tp-service-4-item:before{
  content: "";
  background: radial-gradient(77% 77.54% at 50% 100%, #2aa9ae 0%, #acdee0 40.83%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  opacity: 0;
  border-radius: 8px;
}

.tp-service-4-item:hover:before {
  opacity: 1;
}
.tp-service-4-content{
  position: relative;
  z-index: 9;
}
.tp-hero-2-area{
  position: relative;
}

/* .tp-hero-2-area:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
} */
.tp-hero-2-title-box,
.tp-hero-2-content{
  position: relative;
  z-index: 9;
}
.tp-project-5-2-area{
  position: relative;
  /* background-color: #F5F5F5 */
}

.tp-header-4-right img {
  margin-right: 5px;
}
.w-20px {
  width: 20px;
}
.me-20 {
  margin-right: 20px;
}
.tp-studio-testimonial-logo img {
  width: 80px;
}
.tp-header-4-right .call {
  filter: brightness(0) invert(1);
}

.tp-btn-border-sm:hover .call{
  filter: brightness(0) invert(0);
}
.tp-header-4-btn a{
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.bg-grad {
  background: radial-gradient(301.25% 255.48% at -35.34% 1.27%, #21c0c2 0%, #1fbcbe 33.33%, #ae81b8 66.67%, #159cbe 100%);
}

select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border-radius: 0;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 45px;
  width: 100% !important;
  line-height: 40px;
  outline: none;
  background-color: transparent;
  border: 0;
  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: auto;
  border-bottom: 1px solid rgba(25, 25, 26, 0.24);
}

/* Map with contact details */
.h-450px {
  height: 450px !important;
}
@media (max-width: 767px) {
  .sm-w-100 {
    width: 100% !important;
  }
  /* Height */
  .sm-h-350px {
    height: 350px !important;
  }
  .sm-h-auto {
    height: auto !important;
  }
}

/* ===================================
07. Width
====================================== */
.w-400px {
  width: 400px;
}
.w-100 {
  width: 100% !important;
}
.fs-18 {
  font-size: 18px;
}
.fw-500 {
  font-weight: 500 !important;
}
.text-decoration-line-bottom {
  border-bottom: 1px solid;
}
.mb-10px {
  margin-bottom: 10px !important;
}
.d-block {
  display: block;
}
.border-radius-6px {
  border-radius: 6px !important;
}

.box-shadow-quadruple-large {
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}

.contact-label{
  display: inline-block;
  width: 75px;
  font-size: 16px;
}

.cn-contactform-wrap{
  background: #fff;
  padding: 20px 35px 10px 35px;
  padding-bottom: 25px;
  border-radius: 12px;
}

.cn-contactform-wrap p{
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .sm-position-relative {
    position: relative !important;
  }
}


/* Style for Swiper Pagination Dots */

.tp-studio-testimonial-logo img{
  filter: brightness(0) invert(1);
}

.swiper-container.tp-choose-slider-active{
  padding: 10px;
}
.swiper-custom-pagination span:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/resources/slide-right-dark.svg) no-repeat;
    position: relative;
    display: block;
    background-size: cover !important;
    transition: .4s;
  }
  .swiper-custom-pagination .swiper-pagination-bullet-active:before {
    color: var(--tp-theme-1);
    background: url(../img/resources/slide-right-color.svg) no-repeat !important;
    background-size: cover !important;
  }
  
  .swiper-custom-pagination span {
    width: 25px;
    height: 25px;
  }
  
  .swiper-custom-pagination span {
    position: relative;
    background: transparent;
    opacity: 1;
    transform: scaleX(-1);
    transition: 0.4s;
  }
  .swiper-custom-pagination .swiper-pagination-bullet-active {
    transform: scaleX(1) !important;
  }
  
  .swiper-container.tp-choose-slider-active{
    padding: 10px;
  }
  
  .capabilities .swiper-custom-pagination{
    margin-top: 100px;
  }
  .shadow-2 {
    box-shadow: 0 1px 4px 0 #00000029;
  }
@media (max-width: 768px) {
  .tp-header-4-btn span{
    display: none !important;
  }  
}
.contact-block{
  padding: 40px;
}
.projects .tp-project-5-2-thumb {
  overflow: hidden;
  display: inline-block;
  border-radius: 8px;
}
.projects .tp-project-5-2-thumb img {
  transition: transform 0.6s ease;
  transform: scale(1);
}
.projects .tp-project-5-2-thumb:hover img {
  transform: scale(1.1);
}

/* Animate.css */
@-webkit-keyframes fadeIn {
	0% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 1;
	}
  }
  
  @keyframes fadeIn {
	0% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 1;
	}
  }
  
  .fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
  }
  
  @-webkit-keyframes fadeInDown {
	0% {
	  opacity: 0;
	  -webkit-transform: translateY(-20px);
	  transform: translateY(-20px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  }
  
  @keyframes fadeInDown {
	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);
	}
  }
  
  .fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
  }


  
@-webkit-keyframes fadeInLeft {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-20px);
	  transform: translateX(-20px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  
  @keyframes fadeInLeft {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-20px);
	  -ms-transform: translateX(-20px);
	  transform: translateX(-20px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  
  .fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
  }
  
@-webkit-keyframes fadeInRight {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(20px);
	  transform: translateX(20px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  
  @keyframes fadeInRight {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(20px);
	  -ms-transform: translateX(20px);
	  transform: translateX(20px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  
  .fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
  }
  @-webkit-keyframes fadeInUp {
	0% {
	  opacity: 0;
	  -webkit-transform: translateY(20px);
	  transform: translateY(20px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  }
  
  @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);
	}
  }
  
  .fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
  }



  @keyframes tp-title-right {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(-100px);
	  -ms-transform: translateX(-100px);
	  transform: translateX(-100px);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0);
	  -ms-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  
  .fadeInUp {
	-webkit-animation-name: tp-title-right;
	animation-name: tp-title-right;
  }