 
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
 /* --txt-clr-01: 28 28 28; */
 /* background-color: rgba(var(--blue-rgb), 0.5); */
 /* font-family: "IBM Plex Sans", sans-serif; */
:root {
  --clr-black: 28, 28, 28;  /* #1C1C1CE5 */
  --clr-black-02: 51, 51, 51;  /* #333333 */
  --clr-black-03: 0, 0, 0;  /* #000000CC */
  --clr-yellow: 255, 162, 0;  /* #FFA200 */
  --clr-white: 255, 255, 255;  /* #FFFFFF */
  --clr-blue: 33 43 92;  /* #212B5C */
  --f-popn: "Poppins", sans-serif;  /* Poppnins font */
  --header-height: 110px;  
}

html {
  scroll-behavior: smooth;
}
.text-white-08 {
    color: rgba(var(--clr-white), 0.8) !important;
}
.f-popn {
    font-family: var(--f-popn);
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.grey-border {border: 1px solid #F0F0F0;}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
}
.bg-white-v1 {
    background: #ffffff;
}
.bg-white-v2 {
    background: #FAFAFA;
}
.container {
    max-width: 1584px;
}
.py-100 {
    padding: 100px 0;
}
.py-120 {
    padding: 120px 0;
}
.py-140 {
    padding: 140px 0;
}
.py-150 {
    padding: 150px 0;
}
.py-160 {
    padding: 160px 0;
}
.py-170 {
    padding: 170px 0;
}
.pt-150-pb-80 {
    padding: 150px 0 80px;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 25px 0;
    background-color: #fff;
    box-shadow: 0px 0px 20px #0000001c;
}
.navbar {
    padding: 0px 0;
}
.navbar-nav {
    width: auto;
    align-items: center;
    margin: 0 0 0 15%;
    flex: 1;
}
.navbar .navbar-nav li:last-child {
    margin: 0 0 0 auto;
}
.navbar .navbar-nav .nav-link {
    position: relative;
    font-family: "IBM Plex Sans", sans-serif;
    color: rgba(var(--clr-black), 0.8);
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    padding: 8px 1px;
    margin: 0 14px;
    transition: color 0.3s ease-in-out;
}
.dropdown-toggle::after {
    display: none;
}
.navbar .navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: rgba(var(--clr-yellow));
    opacity: 0;
    transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out;
}
.navbar .navbar-nav .nav-link.active::before {
    opacity: 1;
    width: 100%;
}
.navbar .navbar-brand {
    padding: 0;
    margin: 0;
}
.contact-us-btn {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-transform: uppercase;
    color: rgba(var(--clr-white), 0.9);
    border: 1px solid rgba(var(--clr-black-02));
    border-radius: 50px;
    padding: 20px 35px;
    background-color: rgba(var(--clr-black-02));
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.contact-us-btn img {
    margin-left: 10px;
    opacity: 0.9;
}
.navbar .dropdown-menu {
    padding: 0 0 10px;
    border: 0;
    box-shadow: 0px 1px 15px #0000001a;
    border-radius: 6px;
    min-width: 350px;
    overflow: hidden;
}
.navbar .dropdown-menu.small {
    min-width: 140px;
}
.navbar .dropdown-item {
    background: transparent;
    font-family: "IBM Plex Sans", sans-serif;
    color: rgba(var(--clr-black), 0.8);
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    line-height: 19px;
    padding: 10px;
    transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.dropdown-item.sub-active,
.dropdown-item.dropdown-item-active {
    background: #212b5c;
    color: #fff;
}

/* banner css  */
.banner {
    padding: 218px 0 0 0;
}
.banner-title {
    font-family: var(--f-popn);
    font-size: 110px;
    line-height: 120px;
    font-weight: 500;
    color: rgba(var(--clr-black));
    margin: 0 0 54px;
}
.banner-title .text-gradient {
    background: linear-gradient(90deg, #212B5C 0%, #F99F3E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-video-wrap {
    position: relative;
    max-width: 100%;
    height: auto;
}
.banner-video-wrap video {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.card-list-01 li:nth-child(2) {
    margin-top: 75px;
}
.card-list-01 li:nth-child(4), .card-list-01 li:nth-child(6) {
    margin-top: -75px;
}
.card-list-01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 26px;
    margin: 0;
    padding: 0;
}
.card-type-1 {
    position: relative;
    width: 100%;
    height: 390px;
        position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.card-type-1 .card-view-holder {
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.card-type-1 .card-front-view, .card-type-1 .card-back-view {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
      display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.card-type-1 .card-back-view {
    transform: rotateY( 180deg );
}
.card-back-view {
    height: 100%;
    width: 100%;
    padding: 30px 40px;
    background: linear-gradient(0deg, rgba(218, 218, 218, 0.46), rgba(218, 218, 218, 0.46)),
linear-gradient(0deg, #F2F2F2, #F2F2F2);
}
.card-type-1 .card-type-1-text {
    font-size: 16px;
    list-style: 22px;
    color: rgba(var(--clr-black-02));
    margin: 0;
}
.card-back-view .link-arrow {
    margin: auto 0 0;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50px;
}


.card-front-view .card-bg-holder {
    background-image: url('../images/bg-pattern.webp');
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 20px;
        overflow: hidden;
}
.card-front-view .card-bg-holder.bg-img-v2 {
    background-image: url('../images/bg-pattern-v2.webp');
    filter: grayscale(1);
}
.card-front-view .card-bg-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.gold::before {
   background: #B86307B8;  
}
.blue::before {
   background: #00000099;  
}
.silver::before {
   background: #DADADA75;
}
.silver::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
   background: #00000033;
}
.card-front-view .overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 40px 40px 35px;
    z-index: 1;
}
.card-type-1 .card-type-1-title {
    font-family: var(--f-popn);
    font-size: 38px;
    line-height: 40px;
    font-weight: 500;
    color: rgba(var(--clr-white), 0.7);
    margin: 0 0 24px;
}
.card-type-1 .card-back-view .card-type-1-title {
    color: rgba(var(--clr-black-03));
}
footer {
    position: relative;
    overflow: hidden;
    background: #00000005;
    padding: 160px 0 0;
}
.top-footer {
    padding: 0 0 50px;
}
footer .footer-title {
    font-family: var(--f-popn);
    font-size: 72px;
    line-height: 80px;
    font-weight: 500;
    color: rgba(var(--clr-black-02));
    margin: 0 0 40px;
}
footer .footer-title span {
    color: rgba(var(--clr-black), 0.4);
}
footer .title-v2 {
    font-family: var(--f-popn);
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin: 0 0 17px;
}
.bottom-footer {
    padding: 50px 0;
    background: #fff;
}
footer .footer-links {
    padding: 0;
    margin: 0;
}
.footer-links li a,
.bottom-footer p,
.bottom-footer p > a {
    display: block;
    text-decoration: none;
    color: rgba(var(--clr-black-03), 0.8);
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}
.bottom-footer p {
    margin: 0;
}
.bottom-footer .first-column {
    width: 28%;
}
.footer-logo-small {
    display: inline-block;
    margin: 5px 0 0;
    width: auto;
    height: 40px;
}
.footer-logo {
    position: absolute;
    top: -100%;
    right: -100px;
}
.about-banner {
    background: rgba(var(--clr-white));
    padding: 184px 0 70px;
    position: relative;
}
.about-title {
    display: block;
    text-transform: uppercase;
    color: rgba(var(--clr-black));
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 2px;
}
.about-banner-title {
    font-family: var(--f-popn);
    font-size: 72px;
    line-height: 80px;
    font-weight: 500;
    color: rgba(var(--clr-black-02));
    margin: 0px;
}
.about-banner-title span {
    background: linear-gradient(174deg, #F99F3E 0%, #212B5C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.p-text-v1 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: rgba(var(--clr-black), 0.8);
    margin: 0 0 30px;
}
.p-text-v1 a {
    color: rgba(var(--clr-blue));
}
.p-text-v2 {
    color: rgba(var(--clr-black-02));
    font-size: 46px;
    line-height: 60px;
    font-weight: 400;
    margin: 0 0 0;
}
.about-title {
    flex: 1 0 auto;
    margin: 0 64px 10px 0;
}

.slider-holder {
    padding: 50px 0 80px;
}
.img-card-holder {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
}
.img-card-holder .overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: end;
    padding: 45px;
}
.img-card-holder .img-card-title {
    color: rgba(var(--clr-white));
    font-family: var(--f-popn);
    font-size: 40px;
    line-height: 40px;
    margin: 0;
    position: relative;
}
.img-card-holder .overlay-box.blue-overlay {
    background: linear-gradient(180deg, rgba(33, 43, 92, 0) 0%, rgba(33, 43, 92, 0.78) 60.58%, #212B5C 100%);
}
.img-card-holder .overlay-box.gold-overlay {
    background: linear-gradient(180deg, rgba(33, 43, 92, 0) 0%, rgba(145, 85, 20, 0.605769) 60.58%, #DE9545 100%);
}
.img-card-holder .overlay-box.green-overlay {
    background: linear-gradient(180deg, rgba(100, 154, 149, 0) 0%, rgba(100, 154, 149, 0.78) 60.58%, rgba(100, 154, 149, 0.46) 100%);
}
.list-type-01 {
    margin: 0;
    padding: 0;
}
.list-type-01 li {
    color: rgba(var(--clr-black), 09);
    border-bottom: 1px solid rgba(var(--clr-black), 0.08);
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    padding: 8px 0 12px;
    min-height: 60px;
}
.list-type-01 li:last-child {
    border-bottom: 0;
}
.title-v3 {
    color: rgba(var(--clr-black));
    font-family: var(--f-popn);
    font-size: 72px;
    line-height: 80px;
    margin: 0 0 20px;
    font-weight: 500;
}
.p-text-v3 {
    color: rgba(var(--clr-black));
    font-size: 26px;
    line-height: 32px;
}

.small-banner {
    margin-top: 110px;
    height: 550px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.small-banner::before {
    content: '';
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(33, 43, 92, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
}
.small-banner .title {
    font-family: var(--f-popn);
    color: rgba(var(--clr-white), 0.9);
    font-size: 84px;
    line-height: 90px;
    margin: 0 0 70px;
    z-index: 1;
}
.push-to-left {
    position: relative;
    left: -65px;
    margin: 0 -12px 0 0;
}
.vectre-design-section {
    padding: 60px 0 150px;
    position: relative;
} 
.back-img {
    background: url('../images/bg-pattern-3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.blue-img-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101842E5;
}
.vectre-design-section h2 {
    font-family: var(--f-popn);
    color: rgba(var(--clr-white));
    font-size: 84px;
    line-height: 86px;
    margin: 0 0 52px;
}
.card-list-type-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 26px;
    position: relative;
}
.card-list-type-1 li {
    background: rgba(var(--clr-white), 0.1);
    border-radius: 22px;
    padding: 40px 40px 35px;
}
.card-list-type-1 li .icon-holder {
    display: block;
    margin: 0 0 50px;
}
.card-list-type-1 li h3 {
    font-family: var(--f-popn);
    color: rgba(var(--clr-white), 0.7);
    font-size: 38px;
    line-height: 38px;
    font-weight: 400;
    margin: 0px;
}
.number-list {
    padding: 0;
    margin: 0;
}
.number-list li {
    list-style: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgba(var(--clr-black-02), 0.9);
    display: inline-flex;
    align-items: center;
    /* flex-wrap: wrap; */
    border-bottom: 1px solid rgba(var(--clr-black), 0.08);
    padding: 8px 20px 12px 0;
}
.number-list li:last-child {
    border-bottom: 0 !important;
}
.number-list li .number {
    font-weight: 300;
    background: linear-gradient(180deg, #F99F3E 0%, #212B5C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 10px 0 0;
}
.number-list.white-list li {
   color: rgba(var(--clr-white), 0.9); 
}
.number-list.white-list li .number {
    color: #FF8400;
    background: transparent;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}
.number-list.white-list li span {
    flex: 1;
}
.number-list.white-list li span.number {
    flex: 0 0 auto;
    align-self: flex-start;
}
.number-list.white-list li {
    border-bottom:1px solid rgba(var(--clr-white), 0.08);
}
.blue-bg-section {
    background: rgba(var(--clr-black-03), 0.05);
    padding: 80px 0;
}
.img-holder {
    border-radius: 20px;
    overflow: hidden;
}
.title-v4 {
    font-family: var(--f-popn);
    color: rgba(var(--clr-black));
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    margin: 0;
    padding: 100px 0 15px;
}
.title-v5 {
    font-family: var(--f-popn);
    color: rgba(var(--clr-blue));
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    margin: 0 0 10px;
}
.row-holder {
    padding: 35px 0;
    border-bottom: 1px solid rgba(var(--clr-black), 0.1);
}
.row-holder:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}
.row-holder .col-lg-8 {
    padding-left: 35px;
}
.products-systems .card-holder {
    background-color: #FAFAFA;
    border-radius: 20px;
    padding: 33px 33px 32px 40px;
    margin-bottom: 26px;
}
.products-systems .card-header-custom {
    display: flex;
    align-items: baseline;
    margin: 0 0 20px;
}
.products-systems .card-header-custom span {
    font-weight: 300;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 28px;
    line-height: 36px;
    color: #F99F3E;
    padding: 0 10px 0 0;
}
.title-v6 {
    font-family: var(--f-popn);
    color: rgba(var(--clr-blue));
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    margin: 0;
}
.bullet-list {
    padding-left: 20px;
    margin: 0;
}
.bullet-list-v2 {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto auto auto;
}
.bullet-list-v3 {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: auto auto auto;
}

.bullet-list li.bullet-item::marker {
    color: #1C1C1CCC;
}
.bullet-list .bullet-item {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #1C1C1CCC;
    margin: 0 0 16px;
}
.bullet-list-v2 .bullet-item:nth-child(3), .bullet-list-v3 .bullet-item:nth-child(3) {
    margin: 0;
}
.bullet-list .bullet-item:last-child {
    margin: 0;
}
.horizontal-line {
    width: 100%;
    height: 1px;
    background: #0000001A;
    margin: 13px 0 28px;
    display: inline-block;
}

.contact-list {

}
.contact-list .list-item {
    padding: 40px 0;
    border-bottom: 1px solid #ffffff33;
}
.contact-list .list-item:last-child {
    border: 0;
    padding-bottom: 0;
}
.contact-list .list-item:nth-child(2) .info-holder:first-child {
        border-right: 1px solid #ffffff33;
    padding: 0 25px 0 0;
    margin: 0 25px 0 0;
}
.contact-list .icon-holder {
    display: block;
    margin: 0 40px 0 0;
}
.contact-list .head-text {
    color: rgba(var(--clr-white));
    font-family: var(--f-popn);
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    margin: 0 0 2px;
}
.contact-list .p-text-v4 {
    color: rgba(var(--clr-white));
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin: 0 0 0px;
    text-decoration: none;
}

.banner-type-1 .flex-div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 125px 0 120px 0;
}
.banner-type-1 .left-div {
    margin: 0 100px 0 0;
}
.banner-type-1 h1 {
    font-size: 90px;
    line-height: 90px;
    margin: 0 0 10px;
    font-weight: 700;
    color: #ffffff;
}
.banner-type-1 h3 {
    font-size: 43px;
    line-height: 43px;
    margin: 0 0 5px;
    font-weight: 400;
    color: #ffffff;
}
.banner-type-1 p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.6);
}
.back-to-home-btn {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 50px;
    padding: 20px 28px;
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.back-to-home-btn img {
    margin-right: 10px;
}
.back-to-home-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.gallery-card {
    margin: 0 0 27px;
}
.gallery-card .img-holder {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 20px !important; 
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 0 !important; 
    border-bottom-right-radius: 0 !important;

}
.gallery-card .img-holder .image-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0000000d;
    }
.gallery-card .img-holder img {
    object-fit: cover;
    aspect-ratio: 502 / 350;
}
.pswp__bg {
    background: #090909 !important;
    backdrop-filter: blur(50px) !important;
}
.pswp__button--close, .pswp__button--close:hover {
    box-sizing: border-box;
    border: 3px solid #FFFFFF;
    width: 35px;
    height: 35px;
    opacity: 0.5;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: opacity 0.2s ease-in-out !important; 
}
.pswp__button--close:hover {
    opacity: 0.8;
}
.pswp__button--close svg {
    position: relative;
    top: 0;
    left: 0;
}
.pswp__button--arrow {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease-in-out !important;
    box-shadow: 0px 1px 25px #00000054 !important;
}
.pswp__button--arrow:hover {
    opacity: 0.8;
}
.pswp__button--arrow svg .pswp__icn-shadow, .pswp__button--arrow svg path, .pswp__button--arrow svg use {
    display: none;
}
.pswp__button--arrow svg {
    width: 17px !important;
    height: 14px !important;
    top: 0 !important;
    margin: 0 !important;
    left: 0 !important;
    position: relative !important;
}
.pswp__button--arrow.pswp__button--arrow--prev svg {
    background: url('../images/gallery/left-arrow.svg');
    background-size: cover;
    background-position: center;
}
.pswp__button--arrow.pswp__button--arrow--next svg {
    background: url('../images/gallery/right-arrow.svg');
    background-size: cover;
    background-position: center;
    transform: scale(1);
}
.pswp__button--arrow--prev {
    left: 5%;
}
.pswp__button--arrow--next {
    right: 5%;
}
.image-container {
    position: relative;
    height: auto;
    display: inline-block;
    max-width: 100%;
}
.gallery-info {
    background-color: #FAFAFA;
    border-bottom-left-radius: 20px; 
    border-bottom-right-radius: 20px;
    padding: 18px 20px;
    position: relative;
    flex-grow: 1;
}
.gallery-title {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
    color: #212B5C;
    min-height: 48px;
    display: flex;
    align-items: center;

}
.pswp__dynamic-caption {
    transform: translateY(-100%) !important;
    font-size: 32px;
    line-height: 38px;
    font-family: var(--f-popn);
    font-weight: 500;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000a6 50.48%, #000000c4 100%);
}
.pswp__dynamic-caption--below {
    max-width: 100%;
    padding: 15px 0 15px 30px;
    opacity: 0 !important;
    transition: opacity 3s ease-in-out;
}

@media (min-width: 1024.98px) {
    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-item.dropdown:hover .nav-link::before {
        opacity: 1;
        width: 100%;
    }
    .contact-us-btn:hover  {
        background-color: rgba(var(--clr-black-02), 0.9);
        color: rgba(var(--clr-white), 0.9);
    }
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
    .dropdown-item:focus, .dropdown-item:hover{
        background: #212b5ccc;
        color: #fff;
    }
    .card-type-1 .card-view-holder:hover {
        transform: rotateY(180deg) ;
        transition: transform 0.8s;
    }
    
}
@media (max-width: 1600px) {
    .container {
        max-width: 1400px;
    }
    .py-140 {
        padding: 120px 0;
    }
    .pt-150-pb-80 {
        padding: 120px 0 70px;
    }
    .banner-title {
        font-size: 90px;
        line-height: 100px;
    }
    .navbar-nav {
        margin: 0 0 0 13%;
    }
    .card-type-1 {
        height: 350px;
    }
    .card-front-view .overlay-box {
        padding: 30px 30px 25px;
    }
    .card-type-1 .card-type-1-title {
        font-size: 32px;
        line-height: 34px;
    }
    footer {
        padding: 120px 0 0;
    }
    .footer-logo {
    right: 0;
    }
    footer .footer-title {
        font-size: 62px;
        line-height: 72px;
        margin: 0 0 30px;
    }
    .about-banner-title {
        font-size: 62px;
        line-height: 70px;
    }
    .p-text-v1 {
    margin: 0 0 20px;
    }
    .py-150 {
        padding: 120px 0;
    }
    .p-text-v2 {
        font-size: 36px;
        line-height: 50px;
    }
    .py-170 {
        padding: 130px 0;
    }
    .footer-logo {
        width: 500px;
    }
    .push-to-left {
        left: 0;
        margin: 0 0px 0 0;
    }
    .small-banner .title {
        font-size: 70px;
        line-height: 76px;
        margin: 0 0 50px;
    }
    .vectre-design-section {
    padding: 60px 0 110px;
    }
    .vectre-design-section h2 {
        font-size: 64px;
        line-height: 76px;
        margin: 0 0 45px;  
    }
    .small-banner {
        height: 500px;
    }
    .card-list-type-1 li .icon-holder {
    margin: 0 0 35px;
    }
    .card-list-type-1 li h3 {
        font-size: 34px;
        line-height: 36px;
    }
    .banner-type-1 .left-div {
        margin: 0 35px 0 0;
    }
    .pswp--zoom-allowed .pswp__button--zoom {
        display: none !important;
    }
   .pswp--touch .pswp__button--arrow {
        visibility: visible !important;
    }
    .pswp__button--arrow--prev {
        left: 2%;
    }
    .pswp__button--arrow--next {
        right: 2%;
    }


}
@media (max-width: 1499.98px) { 
    .container {
        max-width: 1250px;
    }
     header {
        padding: 20px 0;
    }
    .navbar-nav {
        margin: 0 0 0 10%;
    }
    .navbar .navbar-brand {
        width: 225px;
    }
    .py-140 {
        padding: 90px 0;
    }
        .pt-150-pb-80 {
        padding: 100px 0 50px;
    }
    .py-100 {
    padding: 80px 0;
    }
    .banner {
    padding: 200px 0 0 0;
    }
    .banner-title {
        font-size: 80px;
        line-height: 90px;
        margin: 0 0 40px;
    }
        .card-type-1 {
        height: 310px;
    }
    .card-front-view .overlay-box {
        padding: 20px 20px 15px;
    }
    .card-front-view .overlay-box img {
        width: 50px;
        height: auto;
    }
    .card-type-1 .card-type-1-title {
        font-size: 26px;
        line-height: 30px;
    }
    .card-list-01 {
        gap: 15px;
    }
    .card-list-01 li:nth-child(2) {
        margin-top: 45px;
    }
    .card-list-01 li:nth-child(4), .card-list-01 li:nth-child(6) {
        margin-top: -45px;
    }
    footer {
        padding: 90px 0 0;
    }
    footer .footer-title {
        font-size: 52px;
        line-height: 60px;
        margin: 0 0 20px;
    }
    .footer-logo {
        width: 440px;
    }
    .contact-us-btn {
        font-size: 13px;
        line-height: 18px;
        padding: 13px 25px;
    }
    .about-banner {
    padding: 160px 0 55px;
    }
        .about-banner-title {
        font-size: 56px;
        line-height: 66px;
    }
    .img-card-holder {
    border-radius: 25px;
    }
    .img-card-holder .overlay-box { 
        padding: 35px;
    }
    .img-card-holder .img-card-title {
    font-size: 30px;
    line-height: 38px;
    }
    .small-banner {
        height: 400px;
        margin-top: 86px;
    }
    .small-banner .title {
        font-size: 60px;
        line-height: 64px;
        margin: 0 0 40px;
    }
    .py-150 {
        padding: 100px 0;
    }
    .title-v4 {
        font-size: 36px;
        line-height: 44px;
        padding: 80px 0 10px;
    }
    .title-v5 {
    font-size: 28px;
    line-height: 34px;
}
.products-systems .card-header-custom span {
    font-size: 26px;
    line-height: 34px;
}
.title-v6 {
    font-size: 28px;
    line-height: 34px;
}
.contact-list .list-item {
    padding: 35px 0;
}
.banner-type-1 h1 {
    font-size: 70px;
    line-height: 90px;
}
.banner-type-1 h3 {
    font-size: 33px;
    line-height: 42px;
}
.banner-type-1 .right-div {
    width: 530px;
}
.pswp__dynamic-caption {
    font-size: 26px;
    line-height: 32px;
}

}

@media (max-width: 1399.98px) {
    
    header {
        padding: 15px 0;
    }
    .navbar .navbar-brand {
        width: 200px;
    }
    .banner {
        padding: 150px 0 0 0;
    }
    .contact-us-btn {
        font-size: 12px;
        line-height: 16px;
        padding: 11px 20px;
    }
    .banner-title {
        font-size: 70px;
        line-height: 80px;
    }
    .py-140 {
        padding: 70px 0;
    }
        .pt-150-pb-80 {
        padding: 80px 0 50px;
    }
        .card-type-1 {
        height: 290px;
    }
    .contact-us-btn img {
        margin-left: 5px;
        opacity: 0.9;
        width: 10px;
    }
    .about-banner {
        padding: 130px 0 40px;
    }
    .about-title { 
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 1px;
        margin: 0 50px 10px 0;
    }
        .about-banner-title {
        font-size: 50px;
        line-height: 60px;
    }
    .number-list li {
        font-size: 16px;
        line-height: 26px;
    }
        .p-text-v1 {
        margin: 0 0 10px;
        font-size: 16px;
    line-height: 28px;
    }
    .bullet-list .bullet-item {
            font-size: 16px;
            line-height: 28px;
            margin: 0 0 10px;
    }
        .p-text-v2 {
        font-size: 30px;
        line-height: 44px;
    }
        .img-card-holder .img-card-title {
        font-size: 28px;
        line-height: 36px;
    }
    .img-card-holder .overlay-box {
        padding: 30px;
    }
        footer .footer-title {
        font-size: 46px;
        line-height: 56px;
        margin: 0 0 15px;
    }
        .py-170 {
        padding: 100px 0;
    }
        footer {
        padding: 80px 0 0;
    }
        .footer-logo {
        width: 400px;
    }
        .small-banner {
        height: 360px;
        margin-top: 70px;
    }
        .small-banner .title {
        font-size: 50px;
        line-height: 54px;
        margin: 0 0 30px;
    }
        .py-150, .py-120 {
        padding: 70px 0;
    }
        .vectre-design-section h2 {
        font-size: 50px;
        line-height: 60px;
        margin: 0 0 35px;
    }
    .card-list-type-1 {
        gap: 20px;
    }
    .card-list-type-1 li {
        border-radius: 20px;
        padding: 25px 25px 20px;
    }
    .card-list-type-1 li .icon-holder {
        margin: 0 0 25px;
        width: 50px;
    }
    .card-list-type-1 li h3 {
        font-size: 26px;
        line-height: 30px;

    }
    .title-v4 {
        font-size: 32px;
        line-height: 40px;
        padding: 60px 0 10px;
    }
        .title-v5 {
        font-size: 24px;
        line-height: 30px;
    }
.products-systems .card-header-custom span {
    font-size: 22px;
    line-height: 28px;
}
.title-v6 {
    font-size: 24px;
    line-height: 30px;
}
.products-systems .card-holder {
    padding: 25px;
}
.products-systems .card-header-custom {
    margin: 0 0 15px;
}
.horizontal-line {
    margin: 5px 0 20px;
}
.contact-list .list-item {
    padding: 25px 0;
}
.contact-list .icon-holder {
    margin: 0 25px 0 0;
    width: 25px;
}
 .contact-list .head-text {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 0px;
}
.contact-list .p-text-v4 {
    font-size: 16px;
    line-height: 28px;
}
.contact-us-page .footer-logo {
    top: -80%;
}
.banner-type-1 .right-div {
    width: 450px;
}   
.banner-type-1 h1 {
    font-size: 60px;
    line-height: 70px;
}
.banner-type-1 h3 {
    font-size: 30px;
    line-height: 36px;
}
.banner-type-1 p {
    margin: 0 0 20px;
}
.back-to-home-btn {
    font-size: 13px;
    padding: 15px;
    border-radius: 25px;
}
.banner-type-1 .flex-div {
    padding: 75px 0 120px;
}
.pswp__button--arrow {
    width: 50px;
    height: 50px;
}
.pswp__dynamic-caption {
    font-size: 22px;
    line-height: 28px;
}
.pswp__dynamic-caption--below {
    padding: 10px 0 10px 20px;
}



}
@media (max-width: 1199.98px) {
    .py-140 {
        padding: 80px 0;
    }
    .pt-150-pb-80 {
        padding: 90px 0 50px;
    } 
    .container {
        max-width: 950px;
    }
        .navbar-nav {
        margin: 0 0 0 5%;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 13px;
        line-height: 18px;
        padding: 8px 1px;
        margin: 0 10px;
    }
    .contact-us-btn { 
        font-size: 13px;
        line-height: 18px;
        padding: 13px 25px;
    }
    .navbar .navbar-brand {
        width: 160px;
    }
    .contact-us-btn {
        font-size: 13px;
        line-height: 16px;
        padding: 11px 20px;
    }
    .contact-us-btn img {
        margin-left: 5px;
    }
    .banner {
        padding: 150px 0 0 0;
    }
        .banner-title {
        font-size: 60px;
        line-height: 66px;
    }
        .card-type-1 {
        height: 265px;
    }
        .card-list-01 li:nth-child(2) {
        margin-top: 35px;
    }
        .card-list-01 li:nth-child(4), .card-list-01 li:nth-child(6) {
        margin-top: -35px;
    }
    .card-type-1 .card-type-1-title {
        font-size: 22px;
        line-height: 26px;
    }
    footer {
        padding: 80px 0 0;
    }
    footer .footer-title {
        font-size: 42px;
        line-height: 50px;
        margin: 0 0 20px;
    }
    .footer-logo {
        width: 350px;
        top: -80%;
    }
    .bottom-footer {
        padding: 40px 0;
    }
    footer .title-v2 {
        font-size: 18px;
        line-height: 18px;
        margin: 0 0 15px;
    }
    .footer-links li a, .bottom-footer p, .bottom-footer p > a {
        font-size: 16px;
    }
    .footer-logo-small {
        margin: 10px 0 0;
        height: 30px;
    }
    .about-banner-title {
        font-size: 42px;
        line-height: 50px;
    }
    .p-text-v1 {
        margin: 0 0 15px;
    }
    .about-banner {
        padding: 150px 0 60px;
    }
    .py-150, .py-120 {
        padding: 90px 0;
    }
    .about-title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 1px;
        margin: 0 40px 10px 0;
    }
        .p-text-v2 {
        font-size: 26px;
        line-height: 40px;
    }
    .img-card-holder {
        border-radius: 15px;
    }
    .img-card-holder .overlay-box {
        padding: 20px;
    }
    .img-card-holder .img-card-title {
        font-size: 22px;
        line-height: 28px;
    }
    .slider-holder {
        padding: 40px 0 60px;
    }
    .py-170 {
        padding: 90px 0;
    }
    footer .footer-title {
        font-size: 40px;
        line-height: 50px;
        margin: 0 0 15px;
    }
        .contact-us-btn {
        font-size: 11px;
        line-height: 14px;
        padding: 11px 20px;
    }
        .contact-us-btn img {
        margin-left: 5px;
        width: 10px;
        position: relative;
        bottom: 1px;
    }
        .small-banner {
        height: 300px;
        margin-top: 68px;
    }
        .vectre-design-section h2 {
        font-size: 44px;
        line-height: 54px;
        margin: 0 0 30px;
    }
        .vectre-design-section {
        padding: 60px 0 70px;
    }
        .card-list-type-1 {
        gap: 15px;
    }
        .card-list-type-1 li {
        border-radius: 15px;
        padding: 20px 20px 15px;
    }
    .card-list-type-1 li .icon-holder {
        margin: 0 0 20px;
        width: 45px;
    }
        .card-list-type-1 li h3 {
        font-size: 24px;
        line-height: 30px;
    }
        .title-v4 {
        font-size: 30px;
        line-height: 38px;
    }
    .row-holder .col-lg-8 {
    padding-left: 12px;
    }
    .title-v4 {
        font-size: 28px;
        line-height: 36px;
        padding: 30px 0 10px;
    }
    .row-holder {
        padding: 20px 0;
    }
    .img-holder {
        border-radius: 15px;
    }
    .title-v5 {
        font-size: 22px;
        line-height: 30px;
    }
    .products-systems .card-header-custom span {
        font-size: 20px;
        line-height: 26px;
    }
    .title-v6 {
        font-size: 22px;
        line-height: 30px;
    }
    .bullet-list-v2, .bullet-list-v3 {
        grid-auto-flow: row;
        grid-template-columns: auto;
        grid-template-rows: auto;
    }
    .bullet-list-v2 .bullet-item:nth-child(3), .bullet-list-v3 .bullet-item:nth-child(3) {
        margin: 0 0 10px;
    }
    .banner-type-1 .right-div {
        width: 400px;
    }
    .banner-type-1 h1 {
        font-size: 50px;
        line-height: 60px;
        margin: 0 0 5px;
    }
    .banner-type-1 h3 {
        font-size: 28px;
        line-height: 34px;
    }
    .banner-type-1 p {
        margin: 0 0 15px;
    }
    .banner-type-1 .flex-div {
        padding: 55px 0 120px;
    }
    .gallery-card .img-holder {
        /* border-radius: 10px; */
            /* margin: 0 0 20px; */
        border-top-left-radius: 10px !important; 
        border-top-right-radius: 10px !important;
        border-bottom-left-radius: 0 !important; 
        border-bottom-right-radius: 0 !important;

    }
    .gallery-info {
        border-bottom-left-radius: 10px; 
        border-bottom-right-radius: 10px;
        padding: 10px 15px;
    }
    .gallery-title {
        font-size: 16px;
        line-height: 22px;
    }

    .gallery-card {
        margin: 0 0 20px;
    }

    .pswp__button--close {
        top: 10px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .pswp__dynamic-caption {
        font-size: 18px;
        line-height: 26px;
    }


}

@media (max-width: 991.98px) { 
    :root {
        --header-height: 67px;  
    }
    html {
    scroll-padding-top: var(--header-height);
    }
    .container {
        max-width: 700px;
    }
        .pt-150-pb-80 {
        padding: 60px 0 40px;
    }
        .py-100 {
        padding: 60px 0;
    }
    .contact-us-btn {
        font-size: 13px;
        line-height: 16px;
        padding: 12px 25px;
    }

    .navbar-toggler {
        padding: 0;
        margin: 0;
       border: 0;
        box-shadow: none !important;
        position: relative;
        z-index: 1;
    }
    .navbar-toggler .icon-bar {
        background-color: #212b5c;
        display: block;
        height: 2px;
        width: 20px;
        border-radius: 50px;
        position: relative;
        transition: transform 0.2s ease-in-out;
    }
    .navbar-toggler .icon-bar.two{
        margin: 5px 0;
    }
    .navbar-toggler[aria-expanded="true"] .icon-bar.one {
        transform: translateY(7px) rotate(-225deg);
    }
    .navbar-toggler[aria-expanded="true"] .icon-bar.two {
        opacity: 0;
    }
    .navbar-toggler[aria-expanded="true"] .icon-bar.three {
        transform: translateY(-7px) rotate(225deg);
    }
    .navbar-collapse {
        display: block !important;
        position: fixed;
        right: 0%;
        top: 0;
        width: 50%;
        height: 100vh;
        visibility: hidden;
        opacity: 0;
        background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0.49) 50%);
        transition: all 0.2s ease-in-out;
    }
    .navbar-collapse.show {
        width: 100%;
        opacity: 2;
        visibility: visible;
    }
    ul.navbar-nav {
        display: block;
        width: 50%;
        height: 100%;
        margin: 0 0 0 auto !important;
        padding-top: 60px;
        position: relative;
        z-index: 11;
    }
        .navbar .navbar-brand {
        width: 180px;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        line-height: 18px;
        padding: 10px 0px;
        margin: 2px 30px;
    }
    .navbar .dropdown-menu {
        margin: 0 auto;
        min-width: auto;
        box-shadow: none;
        padding: 0 30px;
    }
    .navbar .dropdown-menu.small {
        min-width: auto;
    }


    .navbar .dropdown-item, .dropdown-item.active, .dropdown-item:active {
       font-size: 15px;
        line-height: 20px;
        padding: 10px 0;
        margin: 0;
        white-space: normal;
        border-bottom: 1px solid #0000000d;
    }
    .navbar .contact-us-btn {
        margin: 20px 0 0 30px;
    }
    .banner {
        padding: 115px 0 0 0;
    }
    .banner-title {
        font-size: 48px;
        line-height: 60px;
                margin: 0 0 30px;
    }
        .py-140 {
        padding: 65px 0;
    }
    .card-list-01 {
        gap: 10px;
    }
    .card-type-1 {
        height: 200px;
            border-radius: 15px;
    }
    .card-front-view .card-bg-holder {
        border-radius: 15px;
    }
    .card-front-view .overlay-box {
        padding: 15px 14px 15px;
    }
        .card-front-view .overlay-box img {
        width: 35px;
    }
        .card-type-1 .card-type-1-title {
        font-size: 18px;
        line-height: 22px;
    }
    footer {
        padding: 60px 0 0;
    }
        footer .footer-title {
        font-size: 36px;
        line-height: 46px;
        margin: 0 0 15px;
    }
        .footer-logo {
        width: 220px;
        top: -65%;
    }
    .bottom-footer .first-column {
    width: 40%;
    }
        .bottom-footer {
        padding: 40px 0 20px;
    }

    .about-banner {
        padding: 100px 0 40px;
    }
    .about-banner-title {
        font-size: 42px;
        line-height: 50px;
        margin: 0 0 15px;
    }
        .py-150, .py-120 {
        padding: 60px 0;
    }
        .p-text-v2 {
        font-size: 24px;
        line-height: 36px;
    }
        .about-title {
        margin: 0 30px 10px 0;
    }
        .img-card-holder {
        border-radius: 10px;
    }
    .img-card-holder .overlay-box {
        padding: 15px;
    }
        .img-card-holder .img-card-title {
        font-size: 18px;
        line-height: 22px;
    }
        .py-170 {
        padding: 60px 0;
    }
    .list-type-01 li {
    font-size: 16px;
    line-height: 22px;
    padding: 11px 0;
    min-height: 45px;
}
    .small-banner {
        height: 250px;
        margin-top: 66px;
    }
        .small-banner .title {
        font-size: 40px;
        line-height: 42px;
        margin: 0 0 25px;
    }
        .vectre-design-section {
        padding: 50px 0 60px;
    }
        .vectre-design-section h2 {
        font-size: 32px;
        line-height: 40px;
        margin: 0 0 20px;
    }
        .card-list-type-1 li {
        border-radius: 12px;
        padding: 15px 15px 10px;
    }
        .card-list-type-1 li .icon-holder {
        margin: 0 0 20px;
        width: 35px;
    }
        .card-list-type-1 li h3 {
        font-size: 20px;
        line-height: 26px;
    }
    .row-holder {
        padding: 25px 0 20px;
    }
    .products-systems .card-holder {
        padding: 20px;
        margin-bottom: 20px;
    }
        .contact-list .list-item {
        padding: 20px 0;
    }
        .contact-list .icon-holder {
        margin: 0 15px 0 0;
        width: 20px;
    }
        .contact-list .head-text {
        font-size: 18px;
        line-height: 20px;
        margin: 0 0 0px;
    }
    .contact-list .list-item:nth-child(2) .info-holder:first-child {
        padding: 0 15px 0 0;
        margin: 0 15px 0 0;
    }
    .contact-us-page .footer-logo {
        top: -55%;
    }
    .banner-type-1 h1 {
        font-size: 40px;
        line-height: 50px;
        margin: 0 0 0px;
    }
    .banner-type-1 h3 {
        font-size: 24px;
        line-height: 34px;
    }
    .banner-type-1 .right-div {
        width: 300px;
    }
    .banner-type-1 .left-div {
        margin: 0 20px 0 0;
    }
    .banner-type-1 p {
        font-size: 14px;
        line-height: 20px;
    }
    .back-to-home-btn {
        font-size: 13px;
        padding: 12px;
        border-radius: 20px;
    }
    .banner-type-1 .flex-div {
        padding: 55px 0 80px;
    }
   .horizontal-line {
        display: block;
        margin: 15px 0;
    }
    .row-update-v1 .col-lg-6:last-child .card-holder {
        margin: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding-bottom: 0;
    }
    .row-update-v2 .col-lg-6:first-child .card-holder {
        margin: 0;
       border-radius: 0;
        padding-bottom: 0;
    }
    .row-update-v2 .col-lg-6:last-child .card-holder {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

}

@media (max-width: 767.98px) { 

    .container {
        max-width: 550px;
    }
    .py-140, .py-150, .py-170, .pt-150-pb-80, .py-100, .py-120 {
        padding: 50px 0;
    }
    ul.navbar-nav { 
        width: 100%;
    }
    .navbar-collapse {
        background: #fff;
    }
    .banner {   
        padding: 100px 0 0 0;
    }
        .banner-title {
        font-size: 40px;
        line-height: 50px;
        margin: 0 0 25px;
    }
    .card-list-01 {
        gap: 10px;
    }
    .card-front-view .overlay-box {
        padding: 15px 10px 10px;
    }
        .card-front-view .overlay-box img {
        width: 30px;
    }
    .card-type-1 .card-type-1-title {
        font-size: 14px;
        line-height: 18px;
    }
        footer {
        padding: 50px 0 0;
    }
        footer .footer-title {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 15px;
    }
        .footer-links li a, .bottom-footer p, .bottom-footer p > a {
        font-size: 14px;
    }
        .footer-logo {
        width: 200px;
        top: -50%;
    }
        footer .title-v2 {
        font-size: 16px;
        line-height: 16px;
        margin: 0 0 10px;
    }
    .footer-logo-small {
        margin: 10px 0 0;
        height: 25px;
    }
    .about-banner-title {
        font-size: 36px;
        line-height: 46px;
        margin: 0 0 15px;
    }
    .about-title {
        font-size: 14px;
        line-height: 14px;
        margin: 0 0px 10px 0;
    }
        .p-text-v2 {
        font-size: 22px;
        line-height: 32px;
    }
        .slider-holder {
        padding: 40px 0 30px;
    }
        .small-banner {
        height: 200px;
        margin-top: 66px;
    }
        .small-banner .title {
        font-size: 30px;
        line-height: 32px;
        margin: 0 0 25px;
    }
    .vectre-design-section h2 {
        font-size: 28px;
        line-height: 36px;
        margin: 0 0 20px;
    }
        .card-type-1 {
        height: 160px;
        border-radius: 12px;
    }
        .card-front-view .card-bg-holder {
        border-radius: 10px;
    }
        .card-list-type-1 {
        gap: 10px;
    }
        .card-list-type-1 li {
        border-radius: 10px;
        padding: 15px 10px 10px;
    }
        .card-list-type-1 li .icon-holder {
        margin: 0 0 20px;
        width: 30px;
    }
        .card-list-type-1 li h3 {
        font-size: 16px;
        line-height: 22px;
    }
    .number-list li {
        font-size: 16px;
        line-height: 26px;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    .number-list li {
    padding: 8px 10px 12px 0;
    }
    .img-holder {
        border-radius: 10px;
    }
    .products-systems .card-holder {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    .products-systems .card-header-custom {
        margin: 0px 0 10px;
    }
    .horizontal-line {
        margin: 5px 0 15px;
    }
    .list-type-01 {
        border-bottom: 1px solid rgba(var(--clr-black), 0.08);
    }

    .banner-type-1 .right-div {
        width: 220px;
    }
    .banner-type-1 h1 {
        font-size: 36px;
        line-height: 40px;
    }
    .banner-type-1 h3 {
        font-size: 22px;
        line-height: 32px;
    }
    .banner-type-1 .flex-div {
        padding: 55px 0 60px;
    }
    .back-to-home-btn img {
        margin-right: 5px;
    }
    .gallery-title {
        font-size: 14px;
        line-height: 20px;
    }


}

@media (max-width: 575.98px) { 
    :root {
        --header-height: 57px;  
    }

    .container {
        max-width: 100%;
    }
    .py-140, .py-150, .py-170, .pt-150-pb-80, .py-100, .py-120 {
        padding: 40px 0;
    }
    .p-text-v1 {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 10px;
    }
    .bullet-list .bullet-item {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 8px;
    }
    header {
        padding: 10px 0;
    }
    .navbar-collapse {
        width: 100%;
    }
    ul.navbar-nav {
        padding-top: 50px;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
        line-height: 18px;
    }
    .navbar .contact-us-btn {
        margin: 15px 0 0 20px;
    }
        .banner-title {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 20px;
    }
    .card-list-01 {
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    .card-list-01 li:nth-child(2), .card-list-01 li:nth-child(4), .card-list-01 li:nth-child(6) {
        margin-top: 0;
    }
    footer {
        padding: 40px 0 0;
    }
        footer .footer-title {
        font-size: 28px;
        line-height: 36px;
        margin: 0 0 15px;
    }
        .footer-logo {
        width: 150px;
        top: -45%;
    }
    .bottom-footer .first-column {
        width: 55%;
    }
        .bottom-footer .second-column {
        width: 45%;
    }
        .footer-links li a, .bottom-footer p, .bottom-footer p > a {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 10px;
    }
        .about-banner-title {
        font-size: 32px;
        line-height: 40px;
        margin: 0 0 15px;
    }
    .about-title {
        font-size: 13px;
        line-height: 13px;
        margin: 0 0px 10px 0;
    }
        .p-text-v2 {
        font-size: 20px;
        line-height: 30px;
    }
        .slider-holder {
        padding: 30px 0;
    }
        .list-type-01 li {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 0;
        min-height: 45px;
    }
        .small-banner {
        height: 115px;
        margin-top: 56px;
    }
        .small-banner .title {
        font-size: 26px;
        line-height: 28px;
        margin: 0 0 10px;
    }
        .vectre-design-section {
        padding: 40px 0 50px;
    }
        .vectre-design-section h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .card-list-type-1 {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
    .number-list li .number {
        margin: 0 7px 0 0;
    }
    .card-list-01 li:nth-child(4) {
       order: 1;
    } 
    .title-v4 {
        font-size: 26px;
        line-height: 34px;
        padding: 25px 0 10px;
    }
        .title-v5 {
        margin: 0 0 5px;
    } 
    .banner-type-1 .left-div {
        width: 100%;
        order: 1;
        text-align: center;
        margin-right: 0;
    }
    .banner-type-1 .right-div {
        width: 180px;
        margin: 0 0 20px;
    }
    .banner-type-1 .flex-div {
        justify-content: center;
    }
    .back-to-home-btn img {
        width: 10px;
        height: auto;
    }
    .back-to-home-btn {
        font-size: 12px;
        padding: 10px;
        border-radius: 10px;
    }
    .banner-type-1 h1 {
        font-size: 34px;
        line-height: 36px;
    }
    .contact-us-page .footer-logo {
        top: -40%;
    }
    .pswp__button--arrow {
        width: 40px;
        height: 40px;
        margin-top: -25px;
    }
    .gallery-card .img-holder {
        position: relative;
        pointer-events: none;
            /* margin: 0 0 13px; */
    }
    .gallery-card {
        margin: 0 0 13px;
    }

    .gallery-card .img-holder img {
        object-fit: unset;
        aspect-ratio: unset;
    }

}

@media (max-width: 399.98px) { 
        .py-140, .py-150, .py-170, .py-120 {
        padding: 35px 0;
    }
        ul.navbar-nav {
        padding-top: 40px;
    }
        .navbar .navbar-nav .nav-link {
        padding: 10px 0px;
        margin: 5px 12px;
    }
        .navbar .contact-us-btn {
        margin: 15px 0 0 12px;
    }
    .contact-us-btn {
        font-size: 13px;
        line-height: 15px;
        padding: 10px 20px;
    }
        .banner-title {
        font-size: 22px;
        line-height: 30px;
        margin: 0 0 20px;
    }
    .card-front-view .card-bg-holder {
        border-radius: 10px;
    }
        .card-front-view .overlay-box {
        padding: 10px 10px 10px;
    }
        .card-front-view .overlay-box img {
        width: 25px;
    }
    .bottom-footer .first-column, .bottom-footer .second-column{
        width: 100%;
    }
        .footer-logo {
        width: 135px;
        top: -35%;
        right: 5px;
    }
        footer .footer-title {
        font-size: 24px;
        line-height: 32px;
        margin: 0 0 15px;
    }
        footer {
        padding: 30px 0 0;
    }
        .about-banner-title {
        font-size: 26px;
        line-height: 34px;
        margin: 0 0 15px;
    }
        .footer-logo {
        width: 135px;
        top: -25%;
        right: 10px;
    }
        .img-card-holder .img-card-title {
        font-size: 16px;
        line-height: 20px;
    }
    .title-v4 {
        font-size: 24px;
        line-height: 32px;
        padding: 20px 0 0px;
    }
    .title-v5 {
        font-size: 20px;
        line-height: 26px;
    }
    .products-systems .card-header-custom span {
        font-size: 18px;
        line-height: 24px;
    }
    .title-v6 {
        font-size: 20px;
        line-height: 26px;
    }
    .card-type-1 {
        height: 140px;
        border-radius: 10px;
    }
    .card-type-1 .card-type-1-title br {
        display: none;
    }
    .contact-list .p-text-v4 {
        font-size: 14px;
        line-height: 26px;
    }
        .contact-us-page .footer-logo {
        top: -25%;
    }
    .contact-list .icon-holder {
        margin: 0 10px 0 0;
        width: 20px;
    }
    .contact-list .list-item:nth-child(2) .info-holder:first-child {
        padding: 0 15px 0 0;
        margin: 0 15px 0 0;
    }

    
}

/* @media */