* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

:root {
    --red: #d5262c;
    --dark: #151a22;
    --panel: #1c222c;
    --muted: #9fa6af;
    --transition: all 0.3s ease;
}

body {
    margin: 0;
    background: #151a22;
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden
}

.container {
    width: min(1580px, 92%);
    margin: auto
}

.slider01 {
    min-height: 680px;
    position: relative;
    isolation: isolate;
    background: linear-gradient(90deg, rgba(12, 16, 22, .98) 0%, rgba(14, 18, 24, .91) 34%, rgba(14, 18, 24, .45) 66%, rgba(14, 18, 24, .18) 100%), url("../images/slider/slider01.jpg") center/cover;
}
.slider02 {
    min-height: 680px;
    position: relative;
    isolation: isolate;
    background: linear-gradient(90deg, rgba(12, 16, 22, .98) 0%, rgba(14, 18, 24, .91) 34%, rgba(14, 18, 24, .45) 66%, rgba(14, 18, 24, .18) 100%), url("../images/slider/slider02.jpg") center/cover;
}
.slider03 {
    min-height: 680px;
    position: relative;
    isolation: isolate;
    background: linear-gradient(90deg, rgba(12, 16, 22, .98) 0%, rgba(14, 18, 24, .91) 34%, rgba(14, 18, 24, .45) 66%, rgba(14, 18, 24, .18) 100%), url("../images/slider/slider03.jpg") center/cover;
}

.slider01:after, 
.slider02:after, 
.slider03:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 70% 30%, transparent, rgba(0, 0, 0, .25) 72%)
}


.site-header {
    padding: 16px;
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 0;
}

.nav-shell {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 16px 0 22px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 10px;
    background: linear-gradient(100deg, rgba(16, 20, 27, .96), rgba(255, 255, 255, .12));
    box-shadow: 0 7px 20px rgba(0, 0, 0, .22)
}

.brand {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px
}
.brand img{
    width: auto;
    height: 40px;
}

.brand-mark {
    width: 50px;
    height: 42px;
    display: inline-block;
    position: relative
}

.brand-mark i {
    position: absolute;
    width: 9px;
    height: 30px;
    background: #fff;
    left: 4px;
    bottom: 1px
}

.brand-mark b {
    position: absolute;
    left: 18px;
    bottom: 1px;
    width: 29px;
    height: 28px;
    border-left: 8px solid #fff;
    border-bottom: 7px solid #d41d23;
    transform: skewX(-24deg)
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex: 1
}

.main-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #f3f3f3;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active{
    border-bottom: 2px solid #df1f27;
    padding-bottom: 10px;
}



.phone {
    background: #bf1e24;
    color: #fff;
    text-decoration: none;
    padding: 9px 14px;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(212, 29, 35, .3);
    border-radius: 7px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero-content {
    min-height: 600px;
    align-items: center
}

.hero-copy {
    max-width: 100%;
    padding: 13% 4%;
    position: relative;
    z-index: 1;
}
.sr-only{
    display: none;
}
.eyebrow,
.section-kicker {
    font-size: 18px;
    color: #d94a4f;
    font-weight: 800;
    margin: 0 0 10px
}

.hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(50px, 6vw, 70px);
    line-height: .92;
    letter-spacing: 1px;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.hero h1 span {
    color: #d72128
}

.hero-text {
    font-size: 14px;
    line-height: 1.8;
    max-width: 620px;
    color: #d6d6d7;
    margin: 0 0 23px;
    text-transform: uppercase;
}

.button-row,
.cta-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap
}

.btn {
    min-height: 43px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1px;
    border: 1px solid transparent;
    transition: .2s transform, .2s filter
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1)
}

.btn-primary {
    background: #cf2228;
    color: #fff
}

.btn-outline {
    border-color: #a8acb2;
    color: #fff;
    background: rgba(20, 25, 33, .72)
}

.btn.compact {
    font-size: 10px;
    padding: 0 18px
}

.btn-dark {
    background: rgba(20, 25, 31, .82);
    color: #fff;
    border-color: rgba(255, 255, 255, .14)
}

.btn-outline-light {
    border-color: #d0d5dc;
    color: #fff
}

.hero-overlay-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .3;
    background-image: linear-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px);
    background-size: 100px 100px
}

.hero-lines {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(216, 36, 43, .55);
    width: 170px;
    height: 120px;
    transform: rotate(45deg);
    opacity: .55
}

.line-a {
    left: 28%;
    bottom: 22%
}

.line-b {
    left: 39%;
    bottom: 27%;
    border-color: rgba(54, 160, 214, .45)
}

.about-expertise {
    display: grid;
    grid-template-columns: 1.2fr 1.42fr;
    min-height: 460px;
    background: #1b2028;
    position: relative;
}

.about-panel {
    position: relative;
    min-height: 460px;
    background: #e9eaeb;
    color: #272c34;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.about-copy {
    position: relative;
    z-index: 2;
    padding: 80px 0 30px max(4vw, 19px);
    width: 100%;
}

.about-copy h2 {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 14px;
    font-weight: 600
}

.about-copy>p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.8;
    color: #5d636c;
    max-width: 330px;
    margin: 0 0 18px;
}

.about-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%)
}

.expertise-panel {
    overflow: hidden;
    padding: 36px 20px;

}

.section-heading {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px
}

.expertise-wheel {
    position: absolute;
    width: min(580px, 94%);
    aspect-ratio: 1;
    margin: 18px auto;
    right: 10%;
}

.orbit {
    position: absolute;
    inset: 5%;
    border: 3px solid rgba(222, 42, 49, .76);
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(218, 31, 38, .2);
}

.center-machine {
    position: absolute;
    inset: 25%;
    border-radius: 50%;
    border: 1px solid rgba(218, 37, 44, .65);
    background: radial-gradient(circle, #5c626c 0, #2b3038 58%, #242933 100%);
    display: grid;
    place-items: center;
    box-shadow: 0 0 35px rgba(222, 32, 39, .18)
}

.machine-image {
    width: 98%;
    height: 98%;
    background: url(../images/pro_img/p1_1.png) center / cover;
    border-radius: 100%;
    filter: saturate(.8) contrast(1.05);
}

.expert-node {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #202630;
    border: 2px solid rgba(222, 42, 49, .75);
    box-shadow: 0 0 20px rgba(215, 29, 36, .28);
    font-size: 9px;
}
.expert-node strong{
    font-size: 12px;
}

.node-icon {
    font-size: 48px;
    color: #d9dde2;
    margin-bottom: -10px;
}

.node-top {
    left: 50%;
    top: 0%;
    transform: translateX(-50%);
}

.node-right-top {
    right: 1%;
    top: 30%;
}

.node-right-bottom {
    right: 9%;
    bottom: 12%;
}

.node-left-bottom {
    left: 9%;
    bottom: 12%;
}

.node-left-top {
    left: 0%;
    top: 30%;
}

.why-section {
    background: #1b2028;
    padding: 70px 0;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px
}

.why-card {
    min-height: 145px;
    background: linear-gradient(135deg, #fff, #eef0f2);
    color: #262a31;
    border-radius: 10px;
    padding: 0 23px 17px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .22);
    align-content: end;
    transition: var(--transition);
}
.why-card:hover{
    transform: translateY(-5px);
    border-color: var(--red);
}

.mrgT120{
    margin-top: 130px;
}
.why-icon {
    display: block;
    color: #d5262c;
    font-size: 60px;
    margin-bottom: 12px;
        font-weight: 700;
    margin-top: 12px;
}

.why-card h3 {
    font-size: 16px;
    margin: 0 0 8px
}

.why-card p {
font-size: 13px;
    line-height: 1.6;
    color: #40444b;
    margin: 0;
}

.products-section {
    padding: 60px 0 70px;
    /* background: #1b2028; */
}

.carousel {
    position: relative
}

.carousel-viewport {
    overflow: hidden
}

.carousel-track {
    display: flex;
    transition: transform .45s ease
}

.product-card {
    min-width: 25%;
    height: 210px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.product-card  img{
    width: 100%;
}
.product-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 65%)
}

.product-card span {
    position: absolute;
    z-index: 1;
    left: 15px;
    bottom: 13px;
    font-size: 15px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(5px);
    transition: .25s
}

.product-card:hover span {
    opacity: 1;
    transform: none
}


.carousel-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    /* border: 0; */
    background: rgb(58 64 75);
    color: #fff;
    font-size: 35px;
    width: 34px;
    height: 75px;
    border: solid 1px #636363;
}

.prev {
    left: -18px
}

.next {
    right: -18px
}

.slider-progress {
    height: 3px;
    background: #3a404b;
    margin: 8px auto 0;
    width: 100%;
    overflow: hidden
}

.slider-progress span {
    display: block;
    width: 25%;
    height: 100%;
    background: #9da2a9
}

.stats-strip {
    background: linear-gradient(90deg, #bd171d, #dc252b);
    padding: 9px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, .22)
}

.stat:last-child {
    border: 0
}

.stat-icon {
    font-size: 46px;
    font-weight: 400
}

.stat strong {
    font-size: 36px;
    line-height: 1
}

.stat span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.cta-section {
    background: linear-gradient(rgba(18, 76, 125, .84), rgba(14, 58, 103, .88)), url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1800&q=80") center/cover;
    padding: 70px 0
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.cta-copy {
    display: flex;
    align-items: center;
    gap: 15px
}

.cta-symbol {
    font-size: 45px
}

.cta-copy h2 {
    font-size: 30px;
    margin: 0 0 6px;
}

.cta-copy p {
    font-size: 15px;
    color: #d5dce4;
    margin: 0
}

.site-footer {
    background: #12161d;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr 1.2fr;
    gap: 35px
}

.footer-brand {
    font-size: 16px;
    margin-bottom: 12px
}
.footer-brand img{
    height: 90px;
}

.footer-about p {
    font-size: 13px;
    color: #a8adb5;
    line-height: 1.7;
    max-width: 350px;
}

.socials {
    display: flex;
    gap: 7px;
    margin-top: 13px
}

.socials a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #69707a;
    border-radius: 100%;
    color: #d5d7da;
    text-decoration: none;
    font-size: 24px;
}

.footer-grid h3 {
    font-size: 15px;
    margin: 6px 0 12px;
    font-weight: 100;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin: 5px 2px;
    display: inline-block;
    background: #cf2329;
    padding: 7px 11px;
    border-radius: 0px;
}

.footer-links a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    background: #181d25;
    border: 1px solid #505762;
    color: #fff;
    padding: 7px 9px;
    margin-bottom: 6px;
    font: 13px Inter;
}

.contact-form textarea {
    height: 48px;
    resize: vertical
}

.submit-btn {
    width: 100%;
    border: 0;
    min-height: 36px;
    font-size: 13px;
}

.world-map {
    position: relative;
    min-height: 170px;
    opacity: .7;
    background: radial-gradient(ellipse at 15% 38%, #777 0 13%, transparent 14%), radial-gradient(ellipse at 38% 28%, #777 0 17%, transparent 18%), radial-gradient(ellipse at 58% 48%, #777 0 18%, transparent 19%), radial-gradient(ellipse at 82% 35%, #777 0 16%, transparent 17%)
}

.continent {
    position: absolute;
    background: #7e8083;
    filter: blur(1px)
}

.c1 {
    width: 45px;
    height: 20px;
    left: 20%;
    top: 25%;
    transform: rotate(-14deg)
}

.c2 {
    width: 50px;
    height: 23px;
    left: 42%;
    top: 30%;
    transform: rotate(16deg)
}

.c3 {
    width: 38px;
    height: 55px;
    left: 59%;
    top: 39%;
    transform: rotate(8deg)
}

.c4 {
    width: 50px;
    height: 28px;
    right: 7%;
    top: 34%;
    transform: rotate(-10deg)
}

.pin {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #d5292e;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(213, 41, 46, .2)
}

.p1 {
    left: 29%;
    top: 34%
}

.p2 {
    left: 48%;
    top: 42%
}

.p3 {
    left: 68%;
    top: 51%
}

.p4 {
    right: 14%;
    top: 38%
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 26px;
    font-size: 14px;
    color: #9ba0a8;
    margin-top: 40px;
}


/***************************** INNER PAGES ************************************/


.hero-inner-content {
    min-height: 300px;
    display: flex;
    align-items: center
}
.hero-inner-content h1{
    font-size: 50px;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
}
.inner-hero {
    min-height: 300px;
    position: relative;
    isolation: isolate;
    background: linear-gradient(90deg, rgba(12, 16, 22, .98) 0%, rgba(14, 18, 24, .91) 34%, rgba(14, 18, 24, .45) 66%, rgba(14, 18, 24, .18) 100%), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=90") center/cover
}

.inner-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 70% 30%, transparent, rgba(0, 0, 0, .25) 72%)
}

.kicker {
    color: #bf1d24;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.section {
    padding: 68px 0;
}
.about-grid .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.about-grid .stat {
    background: #202733;
    padding: 20px 20px 90px;
    border-left: 3px solid #bf1d24 !important;
    border-right: 1px solid rgb(0 0 0 / 0%);
    display: block;
}
.about-grid .stat strong {
    display: block;
    font-size: 24px;
}
.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border: 1px solid #343b47;
}
.lead {
    color: #b9bec5;
}
.split {
    background: #1a2029;
}
.section h2 {
    font: 700 36px / 1.15 'Barlow Condensed';
    margin: 0 0 16px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


.card {
    background: #202733;
    border: 1px solid #303845;
    padding: 22px;
    transition: var(--transition);
}
.card:hover{
    transform: translateY(-5px);
    border-color: var(--red);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: -22px -22px 18px;
    width: calc(100% + 44px);
}
.card h3 {
    margin: 0 0 9px;
    font-size: 16px;
}
.card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}
.list {
    padding: 0;
    list-style: none;
}
.list li {
    padding: 12px 0;
    border-bottom: 1px solid #303742;
    color: #cbd0d6;
}
.note {
    padding: 15px;
    border-left: 3px solid var(--red);
    background: #202733;
    color: #cbd0d5;
    font-size: 12px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    background: #1c222c;
}
.table th {
    background: #242c37;
}
.table th, .table td {
    padding: 12px;
    border: 1px solid #363e49;
    text-align: left;
    font-size: 12px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #222;
    border: 1px solid #303742;
}


.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px
}

.contact-box {
    background: #202733;
    padding: 25px
}

.contact-box h3 {
    margin-top: 0
}

.contact-info {
    list-style: none;
    padding: 0
}

.contact-info li {
    padding: 11px 0;
    border-bottom: 1px solid #333b47
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form input,
.form textarea {
    width: 100%;
    padding: 13px;
    background: #151a22;
    color: #fff;
    border: 1px solid #3d4653
}

.form textarea {
    grid-column: 1/-1;
    height: 130px
}

.btn {
    display: inline-block;
    background: var(--red);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 12px;
    border: 0;
    color: #fff
}

.mapbox {
    height: 260px;
    background: linear-gradient(135deg, #22354a, #15202d);
    display: grid;
    place-items: center;
    color: #b9c2cc
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0px;
}
.filters button {
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--line);
    background: rgb(255, 255, 255);
    padding: 11px 46px;
    font-size: 16px;

}
.filters button.active {
    color: rgb(255, 255, 255);
    background: var(--red);
    border-color: var(--red);
}

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.gallery-item {
    height: 230px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ddd
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s
}

.gallery-item:hover img {
    transform: scale(1.07)
}

.gallery-item span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    color: #fff;
    background: linear-gradient(#151a22, #000a);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #303845;
}

.main-nav-gallery {
    display: flex;
    gap: 25px
}

.main-nav-gallery a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px
}

.main-nav-gallery a:hover {
    color: var(--red)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ink);
    margin: 5px
}


.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 50;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px
}

.lightbox.open {
    display: flex
}

.lightbox img {
    max-height: 78vh;
    max-width: 90vw
}

.lightbox p {
    font-size: 12px
}

.lightbox button {
    position: absolute;
    right: 25px;
    top: 15px;
    background: none;
    border: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer
}


.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-next,
  .active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}

@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
  .active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  z-index: 1;
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

/***************************** MEDIA QUERY ************************************/

@media(max-width:1100px) {
    .main-nav {
        gap: 13px
    }

    .phone {
        font-size: 8px
    }

    .about-expertise {
        grid-template-columns: 1fr 1.1fr
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

@media(max-width:800px) {
        .galleryGrid{
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid, .split-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-shell {
        position: relative
    }

    .nav-toggle {
        display: block;
        margin-left: auto
    }

    .phone {
        display: none
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 63px;
        left: -1px;
        right: -1px;
        padding: 18px;
        background: #151a22;
        border: 1px solid rgba(255, 255, 255, .15);
        flex-direction: column;
        align-items: flex-start
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a.active:after {
        bottom: -5px
    }

    .about-expertise {
        grid-template-columns: 1fr
    }

    .about-panel {
        min-height: 450px
    }

    .expertise-panel {
        min-height: 540px
    }

    .product-card {
        min-width: 50%
    }

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

    .stat:nth-child(2) {
        border: 0
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding: 2px;
        border-width: 0 0 1px 0;
        padding-bottom: 11px;
    }

    .cta-content {
        align-items: flex-start;
        flex-direction: column
    }

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

@media(max-width:520px) {

    .brand img {
    width: auto;
    height: 30px;
}

    .form {
        grid-template-columns: 1fr;
    }
    .copyright {
    text-align: left;
        margin-top: 20px;
}
     .cta-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
     }
        .section {
        padding: 45px 0;
    }
        .cards, .gallery, .about-grid .stats {
        grid-template-columns: 1fr;
    }
    .about-grid .stat{
        padding: 20px;
    }
    
    .btn{
        width: 100%;
    }
    
    .cta-section {
    padding: 40px 0;
    }
    .main-nav a {
        width: 100%;
    }
    .hero {
        min-height: 610px
    }

    .hero h1 {
        font-size: 52px
    }

    .hero-copy {
       padding-top: 34%;
    }

    .button-row .btn {
        width: 100%
    }

    .about-copy {
        width: 75%;
        padding-left: 24px
    }
    .about-copy .btn.compact{
        font-size: 14px;
        display: flex;
        padding: 0 24px;
        align-items: center;
        justify-content: left;

}
.node-icon {
    font-size: 30px;
    color: #d9dde2;
    margin-bottom: -10px;
    margin-top: -7px;

}
.expert-node strong {
    font-size: 10px;
}
    .about-photo {
        width: 76%;
        opacity: 0.2;
    }

    .expertise-wheel {
        transform: scale(1.1);
        position: relative;
        right: 0;
        margin-top: 40px;
    }

    .why-section {
    padding: 30px 0;
    }
    .expertise-panel {
        min-height: auto;
    }
.mrgT120 {
    margin-top: auto;
}
    .expert-node {
        width: 66px;
        height: 66px;
        font-size: 8px
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .why-card {
        min-height: 125px
    }

    .product-card {
        min-width: 100%
    }

    .prev {
        left: 0
    }

    .next {
        right: 0
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .stat,
    .stat:nth-child(2) {
        border-right: 0;
        border-width: 0 0 1px 0;
        padding-bottom: 11px;
    }

    .stat:last-child {
        border-bottom: 0
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .world-map {
        min-height: 140px
    }

    .cta-copy h2 {
        font-size: 17px
    }
}