/*****  Global Settings  *****/
:root {
    --dark-color:#000000;
    --grey: #5f5f5f;
    --dark-grey:#3a3a3a;
    --light-grey:#ffffff4d;
    --white-color:#ffffff;
}
body{
    color: var(--white-color);
    font-family: "Urbanist", sans-serif;
    background:  var(--dark-color);
}
.tp-page-wrapper{
    margin: auto;
}
.spacing-padding {
  padding: 50px 0;
}
.spacing-margin {
  margin: 0 0 50px;
}
.bg-overlay:after{
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--black);
    opacity: .5;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-overlay{
    z-index: 1;
}
a{
    text-decoration: none;
    color: var(--white-color);
    transition: all .25s ease-in-out;
}
a:hover{
    color: rgba(255, 255, 255, .7);
}
h1,h2,h3,h4{
    color: var(--white-color);
    font-weight: 700;
}
h1{
    font-size: 64px;
}
h2{
    font-size: 48px;
}
h3{
    font-size: 26px;
}

.form-control{
    height: 52px;
    border-radius: 15px;
    font-size: 14px;
    border-color: rgba(255,255,255,.4);
    background-color: rgba(255,255,255,.2);
    color: var(--white-color);
}
.form-control::placeholder{
    color: rgba(255, 255, 255, .5);
}
.form-control:focus{
    border-color: var(--primary-color);
    box-shadow: none;
}
.form-select.form-control{
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
textarea.form-control{
    height: 110px;
    resize: none;
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 8px 22px;
    font-weight: 500;
    transition: all .25s ease-in-out;
}
.btn-light{
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--dark-color);
}
.btn-light:hover{
    background: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
}
.tp-main-head{
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 25px;
}
.tm-title-caption{
    font-size: 18px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--light-grey);
    display: inline-block;
}
.tp-header-nav-holder{
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    padding: 12px 20px;
}
.tp-page-header{
    left: 0;
    right: 0;
    z-index: 999;
    top: 31px;
}
.tp-page-nav .tp-navbar {
    gap: 25px;
}
.tp-page-nav .tp-navbar .nav-link{
    color: var(--white-color);
    transition: all .25s ease-in-out;
}
.tp-page-nav .tp-navbar .nav-link:hover{
    color: rgba(255, 255, 255, .7);
}
/****  TP Hero Section  *****/
.tp-hero-sec{
    padding: 200px 0 80px;
    background-repeat: no-repeat;
    background-size: cover;
}
.tp-hero-main-wrapper{
    gap: 60px;
}
.tp-hero-main-wrapper .tp-hero-caption{
    font-size: 24px;
    margin-bottom: 79px;
    font-weight: 500;
}
.tp-hero-main-wrapper .tp-hero-list li{
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 20px;
    padding: 12px 0;
}
.tp-hero-main-wrapper .tp-hero-list .tp-list-counter{
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}
.tp-hero-main-wrapper .tp-hero-list{
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
.tp-shape-1{
    position: absolute;
    left: 0px;
    bottom: -11%;
    pointer-events: none;
}
.tp-shape-1 img{
    width: 330px;
    height: 330px;
}
.tp-shape-2{
    position: absolute;
    right: 0;
    bottom: -11%;
    pointer-events: none;
}
.tp-shape-2 img{
    width: 500px;
    height: 500px;
}
/****  TP About Section  *****/
.tp-about-sec{
    margin-bottom: 60px;
}
.tp-about-col{
    gap: 30px;
}
.tp-about-col p{
    margin-bottom: 0;
}
.tp-about-col ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.tp-about-col li{
    display: inline-flex;
    align-items: start;
    gap: 8px;
}
.tp-about-col li:before {
    content: '\f058';
    font-family: "Font Awesome 7 Free"; 
    font-weight: 400;
}
/****  TP Service Section  *****/
.tp-service-widget{
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 30px;
}
.tp-service-sec .tp-main-head {
    padding: 30px 0;
}
.tp-service-sec .tp-main-head p:last-child{
    margin-bottom: 0;
}
.tp-service-detail-wrapper{
    grid-template-columns:  30% 70%;
}
.tp-service-detail-wrapper .tp-service-content-list{
    grid-template-columns: repeat(3, 1fr);
}
.tp-service-content-list .tp-list{
    border-right: 1px solid rgba(255,255,255,.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, .3);
}
.tp-service-content-list .tp-list ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 15px;
}
.tp-service-content-list .tp-list li{
    position: relative;
        padding: 0 0 0 26px;
}
.tp-service-content-list .tp-list li:after{
    position: absolute;
    content: '';
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white-color);
    top: 5px;
}
.tp-service-detail-wrapper .tp-service-content-list .tp-list:last-child{
    border-right: none;
}
.tp-impact-list-wrap{
    grid-template-columns:  20% 80%;
}
.tp-impact-list-wrap h4{
    border-right: 1px solid rgba(255,255,255,.3);
    text-align: center;
    padding: 20px 10px;
    font-size: 18px;
}
.tp-impact-list-wrap ul{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center
}
.tp-impact-list-wrap ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 5px;
}
.tp-service-img{
    border-bottom: 1px solid rgba(255,255,255,.3);
    border-right: 1px solid rgba(255,255,255,.3);
    padding: 34px;
    border-top: 1px solid rgba(255, 255, 255, .3);
}
/****  TP Partner section  *****/
.tp-partner-sec{
    margin-bottom: 60px;
}
.tp-partner-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    overflow:hidden;
}
.tp-partner-cell{
    padding:45px 35px;
}
.tp-partner-cell p{
    margin-bottom: 0;
}

.tp-partner-cell:not(:nth-child(3n)){
    border-right:1px solid var(--light-grey);
}
.tp-partner-cell:nth-child(1), .tp-partner-cell:nth-child(2), .tp-partner-cell:nth-child(3){
    border-bottom:1px solid var(--light-grey);
}
.tp-partner-cell:nth-child(4), .tp-partner-cell:nth-child(5), .tp-partner-cell:nth-child(6){
    border-bottom:1px solid var(--light-grey);
}
.tp-partner-wrapper .icon{
    width:70px;
    height:70px;
    display: grid;
    place-items:center;
    border-radius:14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 6px 18px rgba(0,0,0,0.6);
    margin-bottom:18px;
    border:1px solid rgba(255,255,255,0.03);
}
/****  TP Project Section  *****/
.tp-project-sec{
    margin-bottom: 60px;
}
.tp-project-img{
    overflow: hidden;
        border-radius: 20px;
}
.tp-project-img.bg-overlay:after{
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.59) 100%);
    opacity: 1;
    z-index: 1;
}
.tp-project-img img{
    height: 470px;
    object-fit: cover;
    border-radius: 20px;
}
.tp-project-img .tp-project-content{
    bottom: 20px;
    left: 20px;
    z-index: 9;
    color: var(--white-color);
    gap: 15px;
}
.tp-project-img .tp-icon{
    width: 35px;
    font-size: 14px;
    height: 35px;
    border: 2px solid var(--white-color);
}
.tp-project-img .tp-icon i{
    transform: rotate(-35deg);
    transition: transform .25s ease-in-out;
}
.tp-project-img .tp-project-content:hover .tp-icon i{
    transform: rotate(0deg)
}
/****  TP Testimonial Section  *****/
.tp-stars-list{
    gap: 4px;
}
.tp-stars-list svg{
    width: 14px;
    height: 14px;
}
.tp-testimonial-sec{
    padding-bottom: 70px;
}
.tp-testimonial-slider-caption p{
    font-size: 38px;
    line-height: 49px;
    margin-bottom: 0;
    margin-top: 25px;
}
.tp-testimonialSwiper .swiper-button-prev,
.tp-testimonialSwiper .swiper-button-next{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    transition: all .25s ease-in-out;
}
.tp-testimonialSwiper .swiper-button-prev:hover,
.tp-testimonialSwiper .swiper-button-next:hover{
    background: var(--white-color);
    color: var(--dark-color);
}
.tp-testimonialSwiper .swiper-button-next:after, 
.tp-testimonialSwiper .swiper-button-prev:after{
    content: none;
}
.tp-testimonialSwiper .swiper-button-next svg, 
.tp-testimonialSwiper .swiper-button-prev svg{
    width: 18px;
    height:18px;
}
.tp-testimonialSwiper .swiper-button-prev{
    left: 30px;
}
.tp-testimonialSwiper .swiper-button-next{
    right: 30px;
}
.tp-shape-3{
    position: absolute;
    left: 0px;
    bottom: -11%;
    pointer-events: none;
}
.tp-shape-3 img{
    width: 600px;
    height: 600px;
}
.tp-award-list{
    max-width: 660px;
}
.tp-award-list li{
    width: calc(100% / 3 - 20px);
}
.tp-award-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  margin: 50px 0 0;
  max-width: 660px;
  width: 100%;
}
.tp-award-list li {
  list-style: none;
}
.tp-award-list li span {
  display: inline-block;
  position: relative;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 40px;
}
.tp-award-list li span::before,
.tp-award-list li span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
}
.tp-award-list li span::before {
  left: 0;
  background-image: url('images/shap-left.png');
}
.tp-award-list li span::after {
  right: 0;
  background-image: url('images/shap-right.png');
}

/****  TP Head Widget Section  *****/
.tp-head-widget-sec{
    padding: 70px 0;
}
.tp-head-widget-sec h2{
    padding: 100px 0;
}
.tp-head-widget-sec h2 span{
    transform: rotate(10.4deg);
    transform-origin: center center;
    font-size: 22px;
    margin: 0 0 0 15px;
}
.tp-head-widget-wrapper img{
    position: absolute;
    left: 36px;
}
.tp-left-shape-4{
    position: absolute;
    left: 0px;
    top: 0;
    pointer-events: none;
}
.tp-left-shape-4 img{
    width: 600px;
    height: 600px;
    object-fit: cover;
    pointer-events: none;
}
.tp-right-shape-5{
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 0;
}
.tp-right-shape-5 img{
    width: 600px;
    object-fit: cover;
    height: 600px;
}
/****  TP Features Section  *****/
.tp-features-sec{
    margin-bottom: 60px;
}
.tp-features-list{
    gap: 15px;
}
/* .tp-features-list li{
    padding: 7px 15px;
    border-radius: 50px;
    border: 1px solid var(--light-grey);
} */
.tp-features-list li a{

}
.draw-border {
  position: relative;
  display: inline-block;
}
.draw-border:hover{
    color:var(--white-color);
}
.draw-border span{
    display: inline-block;
    position: relative;
    z-index: 9;
    padding: 10px 14px;
    background: var(--dark-color);
    border-radius: 50px;
}
.draw-border::after {
    content: "";
    position: absolute;
    left: -3px;
    top: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50px;
    background-image: linear-gradient(to right, #242424 0, #434343 51%, #242424 100%);
    background-size: 200% auto;
    transition: 0.5s;
}
.draw-border:hover:after{
    background-position: right center;
}
/****  TP Form Content Section  *****/
.tp-form-content-sec{
    margin-bottom: 60px;
}
.tp-form-block{
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 18px;
    padding: 30px;
}
.tp-form-block h2{
    font-size: 32px
}
#datepicker.form-control{
    border: none;
}
.gj-datepicker{ 
    border: 1px solid rgba(255,255,255,.4); 
    border-radius: 15px; 
    margin-bottom: 0 !important;
}
.tp-form-block label{
    font-weight: 500;
    display: block
    margin-bottom: 5px;
}
.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div{
        background-color: var(--dark-color);
    border-color: var(--dark-color);
        border-radius: 50px;
}
.gj-picker-bootstrap table tr td.focused div, .gj-picker-bootstrap table tr td.gj-cursor-pointer div:hover{
    border-radius: 50px !important;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color);
}
.gj-picker-bootstrap table tr td div{
    background: #eee;
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 14px;
}
.datepicker td,
.datepicker th{
    padding: 4px;
}
.gj-picker-bootstrap{
    padding: 12px;
}
.gj-icon.chevron-left,
.gj-icon.chevron-right{
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: 50px;
    width: 25px;
    display: inline-block;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.btn-outline-secondary .gj-icon{
    color: var(--white-color);
    top: 50% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-50%);
}
.gj-unselectable .btn-outline-secondary{
    border: none;
    background: rgba(255,255,255,.2);
    margin: 0 !important;
}
.gj-picker-bootstrap table tr td.today div{
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color) !important;
}
.gj-picker-bootstrap table tr td div, 
.gj-picker-bootstrap table tr th div,
.gj-picker div[role=navigator] div{
    color: var(--dark-color);
}
.divider {
    border: none;
    height: 1px;
    width: 250px;
    background: var(--white-color);
    border-radius: 2px;
    margin: 25px 0;
}
/****  TP Footer Section  *****/
.tp-footer-widget p{
    font-size: 20px;
    margin-bottom: 0;
}
.tp-footer-widget h5{
    font-size: 18px;
    font-weight: 600;
}
.tp-footer-widget ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tp-footer-widget ul li a{
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
}
.tp-footer-widget ul li a:hover {
    transform: translateX(7px);
}
.tp-footer-widget ul li a svg{
    margin-top: 5px;
    color: rgba(255, 255, 255, .7);
}
.tp-page-footer .tp-main-head{
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.copyright{
    margin-top: 35px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.tp-social-icons{
    gap: 15px;
}
.tp-stronk-heading{
    padding: 70px 0;
}
.tp-stronk-heading h2{
    text-stroke: 1px var(--white-color);
    -webkit-text-stroke: 1px var(--white-color);
    color: var(--dark-color);
    font-size: 105px;
    white-space: nowrap;
}
/****   Mobile Menu   ****/
.tp-offcanvas-close, 
.tp-offcanvas-opener {
    border: none;
    background: transparent;
    color: var(--white-color);
}
.tp-offcanvas-close{
    color: var(--dark-color);
}
.tp-mobile-menu.offcanvas {
    background: var(--white-color);
    max-width: 330px;
}

.tp-mobile-navbar li a {
    padding: 10px 50px 10px 15px;
    color: var(--dark-grey);
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    position: relative;
    font-size: 16px;
}