@charset "UTF-8";

/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Staatliches&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    transition: all 0.3s 0s ease-out;
}


:root {
    /**
  @font family declaration
  */
    --tp-ff-body: "Poppins", sans-serif;
    --tp-ff-heading: "Barlow", sans-serif;
    --tp-ff-p: "Poppins", sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    /**
  @color declaration
  */
    --tp-common-white: #fff;
    --tp-common-black: #16171a;
    --tp-theme: #ff8b36;
    --tp-theme1: #1e5aaa;
}


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

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

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--tp-ff-heading);
    color: var(--tp-common-black);
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.1;
    transition: color 0.3s 0s ease-out;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

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

.mb-50 {
    margin-bottom: 50px;
}


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

img {
    max-width: 100%;
}

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

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

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

a{
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}
.container-1580 {
    max-width: 1580px;
}

.section-space {

    padding: 50px 0;
}

.title-heading h2 {
    margin-bottom: 0;
}


.button-transperent:hover.text-them {
    color:#fff;
}
.button-transperent:hover span::before{

    background-color:#fff !important;
}

.button-transperent:hover span::after{
    border: 2px solid #fff;
}


.button-transperent.text-them {
    color: var(--tp-theme);
}

.button:hover {
    cursor: pointer;
    background-color: var(--tp-theme1) !important;
    color: #fff;
    border-color: #fff;
}

button:hover span::before {

    background-color: #fff;
}

button:hover span::after {

    border-color: #fff;
    background-color: transparent;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}


.p-relative{

    position: relative;
}

.mb-30 {
    margin-bottom: 30px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    outline: none;
    background-color: #f5f5f8;
    height:35px;
    width: 100%;
    line-height:35px;
    font-size: 16px;
    color: var(--tp-common-black);
    padding-left: 25px;
    padding-right: 25px;
    resize: none;
    border: 1px solid transparent;
}

/*------------header-------------------*/

.header.tp-header-height.fixed-header {
    position: fixed;
    top: 00;
    z-index: 11;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 111;
 
     animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0px);
	}
}


.title-heading {
    position: relative;
    margin-bottom: 40px;
}

.banner-box {
    display: grid;
    grid-template-columns: 255px auto 240px;
    justify-content: space-between;
    gap: 35px;
    padding: 35px 0px 70px;
}

.button-transperent {
    background-color: transparent !important;
    color: #000;
}



.button {

    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 2px solid #cdcdcd;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--tp-theme);
    letter-spacing: 0.5px;
}

.button span {
    position: relative;
    padding-left: 17px;
}

.button span::before {
    content: "";
    position: absolute;
    background-color: var(--tp-theme);
    height: 7px;
    width: 7px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.button span::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: transparent;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #ff6d40;
    border-radius: 50%;
}


.banner-title h1 {
    font-weight: 800;
}

.banner-heading {
    text-align: center;
    overflow: hidden;
    position: relative;
}





.banner-heading button {
    margin-bottom: 20px;
}

.corner-box {
    width: 100%;
    overflow: hidden;
}


.banner .banner-text {
    background: linear-gradient(90deg, rgb(151 151 151 / 78%) 18%, rgba(189, 189, 189, 1) 50%);
    text-align: left;
    padding: 15px 15px;
    border-top: 2px solid #cbcbcb;
}

.box-content {
    margin-bottom: 0px;
}




.box-content {
    display: grid;
    gap: 5px;
    grid-template-columns: 70px auto;
    align-items: center;
    background-color: #FFF;
    padding: 20px;
}

.banner-text h3,
.banner-text p {
    color: #fff;
}

.box-content .box-icon {
    width: 54px;
    height: 54px;
    border: 1px solid #fbfbfb;
    background-color: #edededa1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0px 4px 4px #b7afaf;
}

.box-vertical {
    position: relative;
    border: 1px solid #e3e3e3;
    height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.box-vertical h3 {
    line-height: 20px;
    font-weight: 700;
}


.slider .owl-dots {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background-color: gray;
    width: 122px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 21px;
}

.slider .owl-dots>button {
    border: 0;
    margin: 0 3px;
    width: 10px;
    height: 10px;
    background-color: #f3f3f3;
    border-radius: 50%;
}


.slider .owl-dots>button.owl-dot.active {
    width: 22px;
    height: 5px;
    background-color: #ff8b36;
    border-radius: 2px;
}



.slider .owl-dots>button:hover {
    background-color: transparent;
    padding: 0;
}

.slider .owl-dots>button>span {
    background-color: #cdc9c9;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
}

.slider .owl-dots>button>span::before {
    display: none;
}

.slider .owl-dots>button>span::after {
    display: none;
}

.slider button.owl-dot.active>span {
    background-color: #ff8b36;
    width: 23px;
    height: 4px;
    border-radius: 0;
    outline: 0;
}

.client-slider {
    background-color: #e3e3e3;
    position: relative;
    padding: 35px 0px;
}

.team3-box .image-area .image {
    position: relative;
    overflow: hidden;
}

.team3-box .image-area .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0;
    transform: scale(0.6);
    transition: 0.4s;
}

.team3-box .image-area .icons {
    margin-top: 0;
    width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.4s;
    align-items: center;
}

ul.inner-ul {
    transform: translate(-50%, -50%);
    width: 100%;
    align-items: center;
    top: 50%;
    justify-content: center;
    left: 50%;
    display: flex;
    position: absolute;
}

.team3-box .image-area .icons ul li a {
    display: inline-block;
    text-align: center;
    background-color: #fff;
    color: #000;
    margin: 0 3px;
    transition: 0.4s;
}

a.theme-btn4.view-button {
    width: 100% !important;
}

.team3-box:hover .image-area .image::after {
    opacity: 0.6;
    transform: scale(1);
    transition: 0.4s;
}

.team3-box .image-area .icons ul li a:hover {
    color: var(--vtc-bg-bg-white);
    background-color: var(--vtc-bg-main-bg-3);
    transition: 0.4s;
    transform: translateY(-3px);
}

.team3-box {
    position: relative;
    margin-bottom: 20px;
}

.team3-box .image-area .icons,
ul.inner-ul {
    top: 50%;
    justify-content: center;
    left: 50%;
    display: flex;
    position: absolute;
}

.team3-box .image-area .icons ul li a:hover {
    color: var(--vtc-bg-bg-white);
    background-color: #fff !important;
    transition: 0.4s;
    transform: translateY(-3px);
    color: #000;
    border: 0;
}

.team3-box:hover .image-area .icons {
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 0.4s;
}

.team3-box .heading3 {
    padding: 16px 3px;
    text-align: center;
    background-color: #dbdbdb;
}

.ctaSec {
    padding: 48px 0px;
    background: #e3e3e3;
    background-repeat: no-repeat;
}

.ctaContentLeft ul {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    width: fit-content;
    border: 1px solid #000;
    border-radius: 10px;
}

.ctaContentLeft ul li:first-child {
    padding-right: 20px;
    border-right: 1px solid #000000db;
}

.ctaContentLeft ul li a {
    color: #000000;
    font-size: 16px;
    display: flex;
    gap: 10px;
    opacity: 0.8;
    align-items: center;
}

.ctaContentLeft ul li a i {
    font-size: 20px;
}

.ctaContentLeft .smallText {
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.ctaContentLeft {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ctaContentWrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 45px;
}

.ctaContentRight .cta {
    padding: 15px 30px;
    color: #000;
    font-weight: 600;
    background: #f4f4f4;
    box-shadow: 10px 10px #00000029;
    font-size:16px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.grey-bg {
    background-color: #f2edeb;
}

.tp-testimonial-3-shape-3 {
    position: absolute;
    top: 0;
    right: 0;
    animation: tptranslateX2 4s infinite alternate;
}

@keyframes tptranslateX2 {
    0% {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -ms-transform: translateX(40px);
        -o-transform: translateX(40px);
        transform: translateX(40px);
    }
}

.tp-testimonial-3-area {
    position: relative;
    overflow: hidden;
    background-color: #fff;
}


.tp-testimonial-3-area.tp-testimonial-3-area .item {
    display: flex;
    height: 100%;
    min-height: 320px;
}




.tp-testimonial-3-item {
    padding: 32px;
    background-color:#f7f7f7;
    box-shadow: 16px 0px 20px rgba(152, 193, 217, 0.493);

    position: relative;
    z-index: 3;
}



.tp-testimonial-3-author-info {
    position: relative;
    z-index: 5;
}

.tp-testimonial-3-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tp-testimonial-3-text p {
    line-height: 24px;
}

.tp-testimonial-3-avata img {
    height: 50px;
    width: 104px !important;
    object-fit: contain;
    margin: 0 auto;
}

.testimonial_box-icon i {
    font-size: 24px;
}

.testimonial_box-icon {
    padding: 10px 0px;
}

.testimonial-nav {
    position: relative;
    z-index: 11;
}

.testimonial-nav .owl-prev,
.testimonial-nav .owl-next {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 13px;
    transition: 0.3s;
    line-height: 60px;
    background-color:var(--tp-theme);
    box-shadow: 2px 3.464px 40px 0px rgba(30, 22, 22, 0.06);
    border: 0;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-nav button.owl-prev {
    margin-right: 8px;
}

button.owl-prev:hover i,
button.owl-next:hover i {
    color: #fff;
}

.footer-area {
    background-color: #efefef;
    position: relative;
    overflow: hidden;
}

.footer-area-inner .shape-1 {
    position: absolute;
    top: 0;
    inset-inline-start: calc(100% - 235px);
    width: 550px;
    z-index: -1;
}

.footer-area-inner {
    position: relative;
    padding-top: 50px;
    z-index: 1;
}

.footer-cta {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 60px;
    display: grid;
    gap: 30px;
    grid-template-columns: 277px 190px 1fr;
}

.footer-cta .title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

.footer-cta .footer-nav-list {
    margin-top: 11px;
}

.footer-area-inner .footer-nav-list {
    display: grid;
    gap: 5px;
}

.footer-cta .footer-nav-list li {
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 27px;
}

.footer-cta .footer-nav-list li i {
    color: #000;
    position: absolute;
    left: 0;
}

.footer-nav-list font {
    font-size: 16px;
    color: #000;
    font-family: var(--font_teko);
}

.nav-list li {
    padding-left: 0 !important;
}



.nav-adddress li:not(:last-child) {
    margin-bottom: 8px;
}

.contact-formwrap {
    display: grid;
    gap: 30px 30px;
    grid-template-columns: repeat(2, 1fr);
}

.footer-cta .newsletter input {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000;
    font-size: 16px;
    transition: all .5s;
    font-weight: 500;
}

.footer-widget-wrapper form .contact-formfield input,
.footer-widget-wrapper form textarea {
    border-bottom: 1px solid #161111 !important;
}

.footer-cta .newsletter input::placeholder {
    color: #000;
}

.footer-cta .newsletter textarea::placeholder {
    color: #000;
}

.footer-widget-wrapper form .contact-formfield input,
.footer-widget-wrapper form textarea {
    border-bottom: 1px solid #161111 !important;
}

.footer-cta input,
.cstm-contact-formwrap textarea {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

footer .cstm-contact-formwrap {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 30px 30px;
}

.footer-area .copyright-area-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 60px;
    justify-content: center;
    padding: 22px 0 22px;
}

.footer-widget-wrapper.left-side {
    margin-left: 42px;
}

.copyright-area {
    border-top: 1px solid #ddddddf0;
}

.grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
}



.bg-pattern {
    background-image: url(../img/dotted.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.6;
    z-index: -1;
    position: absolute;
    height: 300px;
    top: -60px;
    left: -30%;
}


.about-section .box-text .experience {
    position: relative;
    width:100%;
    
}
.about-section .box-text .experience  {
    position: relative;
    padding: 15px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #e9e9e9;
    gap: 15px;
}

.owl-carousel.slider.owl-loaded.owl-drag {
    overflow: hidden;
    width: 100%;
}

.item {
    width: 100%;
    overflow: hidden;
}
.about-section .corner-box .corner__lb {
    position: absolute;
    background-color:#fff;
    color: currentColor;
    left: -1px;
    bottom: -1px;
    min-height: 152px;
    width: 155px;
    border-radius: 0px 15px 0px 0px;
    z-index: 1;
}
.about-section .container-fluid {
    padding: 8px 275px;
    overflow: hidden;
}
.item-banner img {
    width: 100%;
}
.box-img.banner {
    position: relative;
}
.dsn-btn.dsn-btn-shape {
    margin-bottom: 18px;
}
.title span {
    display: block;
    color: #ff8a35;
}

.tp-header-main-menu nav ul li {
    list-style-type: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.header {
    background-color: #e9e9e9;
    padding: 7px 0px;
    overflow: hidden;
    transition: position 10s;
}
.header .navbar-nav li a {
    color: #000;
    font-size: 17px;
    font-weight: 500;
}
.about-section {
    position: relative;
    overflow: hidden;
}
.navbar-toggler:focus {
   
    box-shadow:none;
}

.footer-area-inner {
    
    padding-top: 35px;
    z-index: 1;
}
.team3-box .heading3 a {
    font-weight: 600;
    font-size: 18px;
}

.inner-ul {
    list-style: none;
}

.modal-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--tp-theme) !important;
    border-radius: 50%;
    padding: 10px 14px 10px 10px;
    border: 2px solid #ddd;
    font-size: 18px;
    color: #ffffff;
    z-index: 10;
    line-height: 10px;
    opacity: 1;
}

.modal-close-btn:hover {
    background: #f3f3f3 !important;
}
.modal-close-btn i {
    pointer-events: none;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
    background: #c95d0f !important;
    opacity: 1;
    color: #fff;
    padding: 10px 14px 10px 10px;
}

.supermach-spec-section, .cstm-modal-content {
  padding: 2px !important;
  background: #f6f8fb;
}

.supermach-title {
  font-size: 25px;
  font-weight: 700;
  color: #0b2c4d;
  margin-bottom: 25px;
  text-transform: uppercase;
  margin-top: 25px;
}

.supermach-spec-table {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.supermach-spec-table th {
  width: 35%;
  background: #0b2c4d;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 18px;
  border: none;
  font-size: 15px;
}

.supermach-spec-table td {
  padding: 8px 18px;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #e6e9ef;
}

.supermach-spec-table tr:nth-child(even) td {
  background: #f9fbfe;
}

@media (max-width: 768px) {
  .supermach-spec-table th,
  .supermach-spec-table td {
    font-size: 13px;
    padding: 8px;
  }
}