/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_28pt-ExtraLight.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_28pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter_28pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/Outfit-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}


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

a,
button,
p,
input,
select,
textarea,
li {
  -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-outfit: 'Outfit', sans-serif;
  --tp-ff-inter: 'Inter', sans-serif;
  /* --tp-ff-grotesk: 'Space Grotesk', sans-serif; */
  --tp-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black: #242e45;
  --tp-common-blue: #1F3062;
  --tp-grey-1: #EAEBF0;
  --tp-grey-2: #878898;
  --tp-grey-3: #f2f2f2;
  --tp-grey-4: #565764;
  --tp-grey-5: #EFF4E0;
  --tp-grey-6: #555555;
  --tp-border-1: #efeff5;
  --tp-theme-primary: #031a50;
  --tp-theme-secondary: #edbf2b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
}

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

body, html{
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tp-ff-outfit);
  color: var(--tp-common-blue);
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 22px;
}

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

p {
  margin-bottom: 15px;
  line-height: 1.62;
  color: #55585b;
}

a:focus {
  text-decoration: none;
  outline: none;
}

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

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

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

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  outline: none;
  background-color: #fff;
  height: 52px;
  width: 100%;
  line-height: 52px;
  font-size: 14px;
  color: var(--tp-heading-1);
  padding-left: 20px;
  padding-right: 20px;
  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;
}

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

*::-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-grey-1);
  font-size: 14px;
  opacity: 1;
}

/*---------------------------------
1.2 Common Classes
---------------------------------*/

.fix {
  overflow: hidden;
}

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

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

.p-relative {
  position: relative;
}
/*----------------------------------------*/
/*  2.3 Buttons
/*----------------------------------------*/
.tp-btn-white {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  border: 2px solid transparent;
  color: var(--tp-theme-primary) !important;
  font-family: var(--tp-ff-grotesk);
  background: #fff;
}
.tp-btn-white:hover {
  background-color: transparent;
  color: #fff !important;
  border-color: var(--tp-common-white);
}
.tp-btn-green {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid transparent;
  color: #fff;
  font-family: var(--tp-ff-grotesk);
  background: #64b161;
}
.tp-btn-green:hover {
  /* background-color: transparent; */
  opacity: .9;
}
.tp-btn-gradient {
  background-size: 200% auto;
  background: linear-gradient(90deg, #1F3062 0%, #edbf2b 100%);
  border-radius: 10px;
  font-family: var(--tp-ff-grotesk);
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-common-white);
  padding: 19px 36px;
  display: inline-block;
  transition: background 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}
.tp-btn-gradient span {
  margin-left: 3px;
  display: inline-block;
}
.tp-btn-gradient:hover {
  color: var(--tp-common-white);
  background: linear-gradient(90deg, #edbf2b 0%, #1F3062 100%);
}

/*----------------------------------------*/
/*  2.4 Animations
/*----------------------------------------*/

.box-hover {
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
}
.box-hover:hover {
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
@keyframes tpleftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
/*----------------------------------------*/
/*  2.6 Background
/*----------------------------------------*/

.bg-cover{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-cover-2{
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/*----------------------------------------*/
/*  2.15 Section Title
/*----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .tp-section-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .tp-section-title {
    font-size: 24px;
  }
}
.tp-section-title.pure-blue {
  color: var(--tp-common-blue);
}
.tp-section-subtitle {
  line-height: 1.11;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  color: var(--tp-theme-primary);
  font-family: var(--tp-ff-grotesk);
}
.tp-section-subtitle.color-gray {
  color: #69696e;
}
.tp-section-para {
  font-size: 17px;
}
.tp-section-para.pure-blue-2 {
  font-size: 16px;
  line-height: 1.87;
}
/* HEADER CSS */
/*----------------------------------------*/
/*  3.1 Header Style 1
/*----------------------------------------*/
@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-header-hight {
    padding: 15px 0;
  }
}
.tp-header-icon img{
  width: 26px;
}
.tp-header-right{
  gap: 20px;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.tp-copyright-area{
  background-color: #000E3B;
}
.tp-copyright-text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 0.7;
  margin-bottom: 0;
  text-align: center;
  padding: 23px 30px;
  color: var(--tp-grey-1);
}

/*----------------------------------------*/
/*  8.1 Hero css
/*----------------------------------------*/
.tp-hero-title {
  font-weight: 500;
  font-size: 52px;
  line-height: 1.2;
  color: var(--tp-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-hero-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 575px) and (max-width: 991px) {
  .tp-hero-title {
    font-size: 36px;
  }
  .tp-hero-area{
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .tp-hero-content{
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .tp-hero-title {
    font-size: 24px;
    line-height: 1.4;
  }
  .tp-hero-spacing{
    margin-top: 100px;
    margin-bottom: 30px;
  }
}
.tp-hero-spacing {
  /* padding-top: 80px; */
  /* padding-bottom: 60px; */
}
.tp-hero-text {
  color: var(--tp-theme-primary);
  font-size: 22px;
}
.tp-hero-left-border {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-hero-right {
    position: static;
  }
}
.tp-hero-2-shape-two {
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 12px 17px;
  margin-left: 40px;
  left: 0;
  z-index: 1;
  animation: tpleftright 1s infinite alternate;
  box-shadow: 0 20px 50px 0 rgba(1, 15, 28, 0.1);
  background: #fff;
}
/* @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-hero-2-shape-two {
    display: none;
  }
} */
.tp-hero-2-shape-two img {
  flex: 0 0 auto;
  margin-right: 10px;
  width: 40px;
}
/*----------------------------------------*/
/*  7.1 about css
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-3-content {
    margin-bottom: 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-3-thumb-wrap {
    margin-right: 0;
  }
}
.tp-about-3-thumb img {
  border-radius: 20px;
  width: 100%;
}
@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-3-thumb img {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  8.6 service css
/*----------------------------------------*/
.tp-service-item {
  border-radius: 10px;
  height: 275px;
  /* border: 1px solid #efdae0; */
  padding: 40px;
  border-radius: 15px;
  padding: 45px 25px 45px 35px;
  -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;
  /* background: linear-gradient(237deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.09) 100%); */
  background-color: #fff;
  
}
.tp-service-item:hover {
  box-shadow: 0 20px 30px 0 rgba(1, 6, 20, 0.1);
  /* background: var(--tp-common-white); */
  /* border: 1px solid #e8eaf1; */
}
.tp-service-item img{
  width: 50px;
}
.tp-service-item:hover span {
  animation: icon-bounce 0.8s 1;
}
.tp-service-title {
  color: var(--tp-common-blue);
}
.tp-service-content {
  overflow: hidden;
}
.tp-service-content p {
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 0;
}
/* .tp-service-top-para {
  margin-left: 85px;
} */
/* @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-service-top-para {
    margin-left: 0;
  }
} */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-ptb {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-ptb {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-3-ptb {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.tp-service-3-thumb {
  position: relative;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-service-3-thumb::before {
  background: linear-gradient(180deg, rgba(36, 46, 69, 0) 19.62%, rgba(0, 12, 96, 0.65) 100%);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-service-3-thumb::after {
  background: linear-gradient(180deg, rgba(36, 46, 69, 0) 19.62%, #000E3B 100%);
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-service-3-thumb img {
  border-radius: 15px;
}
.tp-service-3-content-box {
  /* display: flex; */
  justify-content: space-between;
  position: absolute;
  left: 40px;
  bottom: 20px;
  right: 40px;
  width: 80%;
}
.tp-service-3-item:hover .tp-service-3-thumb::after {
  height: 100%;
}
.tp-service-3-title {
  font-size: 22px;
  color: var(--tp-common-white);
  margin-bottom: 0;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(#ffffff, #ffffff);
  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.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tp-service-3-slide-active,
.tp-feature-slide-active {
  margin-right: -380px;
}
@media (max-width: 767px) {
  .tp-service-3-slide-active,
  .tp-feature-slide-active {
    margin-right: 0;
  }
}
.tp-service-5-content:hover .tp-service-5-icon {
  animation: icon-bounce 0.8s 1;
}
.tp-service-5-icon img{
  width: 45px;
}
.tp-service-5-left-content {
  position: sticky;
  top: 100px;
}
.tp-service-5-title {
  font-size: 18px;
  line-height: 1.2;
  color: var(--tp-common-blue);
}

/*----------------------------------------*/
/*  7.7 counter css
/*----------------------------------------*/
@media (max-width: 767px) {
  .tp-counter-3-ptb {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.tp-counter-3-item {
  position: relative;
  padding: 0 20px 0 20px;
}
.tp-counter-3-item .icon {
  transition: transform 0.4s ease;
}

.tp-counter-3-item:hover .icon {
  transform: translateY(-5px);
}
.tp-counter-3-ptb .col{
  padding: 0
}
.tp-counter-3-icon {
  display: inline-block;
  margin-bottom: 25px;
}
.tp-counter-3-icon img:nth-child(2){
  width: 65px;
}
.tp-counter-3-icon-shape {
  position: absolute;
  top: -15px;
  left: -30px;
}
.tp-counter-3-wrapper {
  position: relative;
}
.tp-counter-3-subtitle {
  color: var(--tp-common-blue);
  font-size: 14px;
  line-height: 1.4;
}
.tp-counter-3-count {
  font-weight: 600;
  font-size: 30px;
  color: var(--tp-common-blue);
  margin-bottom: 10px;
  -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;
}
@media (max-width: 575px) {
  .tp-counter-3-count{
    font-size: 28px !important;
  }
}

/*----------------------------------------*/
/*  8.9 testimonial css
/*----------------------------------------*/
.tp-testimonial-2-review-star i {
  color: #ffa84b;
  font-size: 12px;
}
.tp-testimonial-2-rating-title {
  font-family: var(--tp-ff-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
  margin-bottom: 0;
  color: var(--tp-common-black);
}
@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-testimonial-5-ptb {
    padding-bottom: 80px;
  }
}
.tp-testimonial-5-bg {
  border-radius: 10px;
  background: #e6e9ee;
}
.tp-testimonial-5-ratting {
  font-size: 60px;
  color: var(--tp-common-blue);
  margin-bottom: 0;
  line-height: 1;
}
.tp-testimonial-5-ratting-wrap {
  padding: 70px 0px 50px 0px;
  border-right: 1px solid #d5e0e0;
}
@media (max-width: 767px) {
  .tp-testimonial-5-ratting-wrap {
    border: 0;
  }
}
.tp-testimonial-5-ratting-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--tp-common-blue);
}
.tp-testimonial-5-ratting-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  text-decoration-skip-ink: none;
  color: var(--tp-common-black);
}
.tp-testimonial-5-ratting-star i {
  font-size: 11px;
  color: #ffa84b;
}
.tp-testimonial-5-slide-wrapper {
  /* padding: 80px 0px; */
  padding-top: 80px;
  padding-left: 10px;
}
@media (max-width: 767px) {
  .tp-testimonial-5-slide-wrapper {
    padding: 0;
    padding: 0px 15px;
    padding-bottom: 40px;
  }
}
.tp-testimonial-5-content {
  margin-right: -1px;
  padding: 0px 70px 0px 0px;
  border-right: 1px solid #d5e0e0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-testimonial-5-content {
    padding: 0px 30px 0px 0px;
  }
}
@media (max-width: 767px) {
  .tp-testimonial-5-content {
    margin-right: 0;
    padding: 0;
    border-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-testimonial-5-content {
    padding: 30px;
  }
}
.tp-testimonial-5-content p {
  line-height: 1.5;
  color: var(--tp-common-black);
}
.tp-testimonial-5-author-title {
  font-size: 18px;
  color: var(--tp-common-blue);
  margin-bottom: 0;
}
.tp-testimonial-5-navigation .tp-testimonial-5-prev {
  margin-right: 4px;
}
.tp-testimonial-5-navigation span {
  height: 44px;
  width: 44px;
  border: 1px solid #d5e0e0;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--tp-common-black);
  line-height: 44px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.tp-testimonial-5-navigation span:hover {
  background: var(--tp-common-white);
  border-color: var(--tp-common-white);
  box-shadow: 0 0 20px -6px rgba(23, 36, 36, 0.08);
}

/*----------------------------------------*/
/*  7.5 testimonial css
/*----------------------------------------*/
.tp-chose-style-1.tp-chose-5-fea-bg {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-chose-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-chose-wrapper {
    padding-top: 50px;
  }
} */
.tp-chose-item {
  border: 1px solid rgba(12, 19, 56, 0.08);
  border-radius: 10px;
  padding: 20px;
  -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;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-chose-item {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-chose-item {
    margin-bottom: 20px;
  }
}
.tp-chose-item:hover {
  box-shadow: 0 20px 40px 0 rgba(8, 10, 55, 0.12);
  background: var(--tp-common-white);
}
.tp-chose-icon {
  margin-bottom: 15px;
  display: inline-block;
}
.tp-chose-icon img{
  width: 40px;
}
.tp-chose-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--tp-common-blue);
  margin-bottom: 15px;
}
.tp-chose-2-list ul li {
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--tp-common-black);
  display: flex;
}
.tp-chose-2-list ul li:not(:last-child) {
  margin-bottom: 15px;
}
.tp-chose-2-list ul li i {
  font-size: 16px;
  transform: translateY(1px);
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-chose-5-title-box {
    margin-bottom: 30px;
  }
}
.tp-chose-5-fea-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 50px);
  width: calc(50% - 80px);
  padding: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-chose-5-fea-bg {
    width: calc(50% - 45px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-chose-5-fea-bg {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-chose-5-fea-bg {
    width: 100%;
    position: static;
    margin-bottom: 40px;
  }
}
/*----------------------------------------*/
/*  7.6 contact css
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-wrap {
    margin-bottom: 60px;
  }
}
.tp-contact-2-style {
  border-radius: 10px;
  padding: 25px;
  background-color: var(--tp-common-white);
  box-shadow: 0 20px 40px 0 rgba(36, 7, 66, 0.13);
}
@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-contact-from {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .tp-contact-from {
    padding: 30px 20px;
    /* margin-bottom: 40px; */
  }
}
.tp-contact-input .tp-input, .tp-contact-input .tp-textarea {
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  height: 54px;
  background-color: #f4f4f4;
  border: 1.5px solid #f4f4f4;
  color: var(--tp-common-black);
  letter-spacing: 0.02em;
}
.tp-contact-input .tp-input::-webkit-input-placeholder, .tp-contact-input .tp-textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-weight: 400;
  font-size: 16px;
  color: #878898;
  letter-spacing: 0.02em;
}
.tp-contact-input .tp-input::-moz-placeholder, .tp-contact-input .tp-textarea::-moz-placeholder { /* Firefox 19+ */
  font-weight: 400;
  font-size: 16px;
  color: #878898;
  letter-spacing: 0.02em;
}
.tp-contact-input .tp-input:-moz-placeholder, .tp-contact-input .tp-textarea:-moz-placeholder { /* Firefox 4-18 */
  font-weight: 400;
  font-size: 16px;
  color: #878898;
  letter-spacing: 0.02em;
}
.tp-contact-input .tp-input:-ms-input-placeholder, .tp-contact-input .tp-textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  font-weight: 400;
  font-size: 16px;
  color: #878898;
  letter-spacing: 0.02em;
}
.tp-contact-input .tp-input:focus, .tp-contact-input .tp-textarea:focus {
  background-color: var(--tp-common-white);
  border-color: var(--tp-theme-primary);
}
.tp-contact-input .tp-textarea {
  resize: none;
  height: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-2-ptb {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.tp-contact-2-info p{
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-2-info-wrap {
    margin-bottom: 40px;
  }
}
.tp-contact-2-info-item {
  padding: 14.5px 30px;
  border-radius: 15px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* @media (max-width: 767px) {
  .tp-contact-2-info-item {
    padding: 30px 20px;
  }
} */
.tp-contact-2-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}
.tp-contact-2-info span {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #fff;
}
.tp-contact-2-info a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;
}
.tp-contact-2-info-icon {
  margin-right: 30px;
}
.tp-contact-2-info-icon img{
  width: 50px;
}
@media (max-width: 767px) {
  .tp-contact-2-info-icon {
    margin-right: 15px;
  }
}
.tp-contact-2-info-icon span {
  color: rgba(22, 22, 25, 0.2);
}
.tp-contact-2-style .tp-contact-input .tp-input, .tp-contact-2-style .tp-contact-input .tp-textarea, .tp-contact-2-style .tp-contact-input select {
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  height: 50px;
  background-color: transparent;
  border: 1.5px solid rgba(195, 199, 184, 0.4784313725);
  color: var(--tp-common-black);
  width: 100%;
}
.tp-contact-2-style .tp-contact-input .tp-input::-webkit-input-placeholder, .tp-contact-2-style .tp-contact-input .tp-textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #69696e;
}
.tp-contact-2-style .tp-contact-input .tp-input::-moz-placeholder, .tp-contact-2-style .tp-contact-input .tp-textarea::-moz-placeholder { /* Firefox 19+ */
  color: #69696e;
}
.tp-contact-2-style .tp-contact-input .tp-input:-moz-placeholder, .tp-contact-2-style .tp-contact-input .tp-textarea:-moz-placeholder { /* Firefox 4-18 */
  color: #69696e;
}
.tp-contact-2-style .tp-contact-input .tp-input:-ms-input-placeholder, .tp-contact-2-style .tp-contact-input .tp-textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #69696e;
}
.tp-contact-2-style .tp-contact-input .tp-input:focus, .tp-contact-2-style .tp-contact-input .tp-textarea:focus {
  background-color: transparent;
  border-color: #2C544C;
}
.tp-contact-2-style .tp-contact-input .tp-textarea {
  resize: none;
  height: 110px;
}
.tp-contact-2-style h6 {
  font-size: 20px;
  line-height: 1.4;
}
/*----------------------------------------*/
/*  8.0 feature css
/*----------------------------------------*/
.tp-feature-thumb {
  position: absolute;
  width: calc(50% - 95px);
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 20px 0 0;
  border: 6px solid var(--tp-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-feature-thumb {
    position: static;
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    border-radius: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-feature-content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-feature-inner-wrap {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-feature-inner-wrap {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .tp-feature-inner-bg {
    padding-bottom: 30px;
  }
}

.tp-header-area{
  position: absolute;
  z-index: 9;
  width: 100%;
  padding: 12px 0;
}

.tp-hero-area{
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 992px) {
  .tp-hero-area{
    height: 100vh;
  }
}
.tp-hero-area:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f5f5f5 0%, #fff0 100%);
  /* background: #000E3B;
  opacity: .55; */
  pointer-events: none;
}

@media (max-width: 768px) {
  .tp-hero-area:before{
    background: #fff !important;
    opacity: .6;
  }
  .map iframe{
    margin-top: 25px;
  }
}

/* Multi Step From */
:root {
  --marineBlue: hsl(213, 96%, 18%);
  --base-color: #861926;
  --purplishBlue: hsl(243, 100%, 62%);
  --pastelBlue: hsl(228, 100%, 84%);
  --lightBlue: hsl(206, 94%, 87%);
  --strawberryRed: hsl(354, 84%, 57%);
  --coolGray: hsl(231, 11%, 70%);
  --lightGray: hsl(229, 24%, 87%);
  --magnolia: hsl(217, 100%, 97%);
  --alabaster: hsl(231, 100%, 99%);
  --white: hsl(0, 0%, 100%);
}

button:active {
  transform: translateY(2px);
}

.error {
  display: none;
  color: red;
  font-weight: 500;
  font-size: 14px;
}

.tp-contact-2-title-box .tp-section-subtitle{
  color: rgba(255, 255, 255, 0.8);
}

.tp-contact-2-title-box .tp-section-title{
  color: #fff;
}
.map iframe{
  border-radius: 10px;
}

@media (min-width: 767px) {
  .map iframe{
    height: 460px;
  }
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 50px;
  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-color: #f2f2f2;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 60px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.call-us svg {
  width: 45px !important;
  margin-right: 15px;
}

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

@media(max-width: 547px) {
  .popup-content {
    width: 95%;
  }
}

.form-trigger {
  cursor: pointer
}
.close {
  color: #333;
  z-index: 99;
  float: right;
  font-size: 30px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  top: 8px;
  right: 12px;
}
.close:hover{
  color: #000;
}

/* @media (min-width: 992px) {
  .tp-contact-from-wrap.header {
    margin-left: 40px;
  } 
} */
.tp-contact-from{
  position: relative;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
@media (max-width: 575px) {
  .tp-about-area{
    padding-top: 60px !important;
  }
  .tp-hero-2-shape-two{
    margin-top: 32px;
  }
}

@media (min-width: 575px) {
  .btn-box{
    display: flex;
  }
}

@media (min-width: 992px) {
  .tp-counter-3-item {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
}
.tp-header-logo img{
  width: 190px;
}
@media (max-width: 575px) {
  .tp-header-logo img{
    width: 150px !important;
  } 
  .tp-hero-title{
    margin-bottom: 15px !important;
  }
  .tp-contact-2-style h6{
    font-size: 18px !important;
  }
  .tp-hero-area{
    padding-bottom: 25px;
  }
  .bg-cover-2{
    background-size: contain;
  }
  .tp-hero-text {
    font-size: 18px !important;
  }
  .xs-mt-2{
    margin-top: 20px;
  }
}

.tp-service-5-content{
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid rgba(12, 19, 56, 0.08);
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.tp-service-5-content:hover {
  box-shadow: 0 20px 40px 0 rgba(8, 10, 55, 0.12);
  /* background: var(--tp-common-white); */
}

.bg-gray{
  background-color: #e6e9ee;
}

.tp-header-right .tp-header-icon a{
  padding: 12px 15px !important;
}

.tp-service-top-para p {
  font-size: 17px;
  line-height: 1.53;
  color: #55585b;
}
.tp-service-top-btn a {
  border: 1px solid #35415c;
}
.tp-service-pagenation span,
.tp-feature-pagenation span{
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.4s ease;
  margin: 0 3px;
}
.tp-service-pagenation span.swiper-pagination-bullet-active,
.tp-feature-pagenation span.swiper-pagination-bullet-active{
  background: var(--tp-common-white);
}

.tp-project-data-pagenation span{
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: all 0.4s ease;
  margin: 0 3px;
}
.tp-project-data-pagenation span.swiper-pagination-bullet-active {
  background: var(--tp-theme-primary);
}

.error-field {
  border: 1px solid #ff0000 !important;
  /* box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1) !important; */
}