html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style-type: none;
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, html {
    margin: 0;
    padding: 0;
    outline: none;
    list-style: none;
}

body {
    font-family: 'Google Sans', sans-serif;
    background: #F9F9F9;
    color: #101012;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    line-height: 1.6;
}

body.index {
    background: #FFF;
}

ul, ol, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    letter-spacing: -1px;
}

iframe {
    border: none;
    outline: none;
    margin-bottom: 10px;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    resize: none;
}

a {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    outline: 0;
    text-decoration: none;
    cursor: pointer;
}

figure {
    margin: 0;
}

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
}

small {
    font-size: 85%;
}

b, strong {
    font-weight: bold;
}

svg:not(:root) {
    overflow: hidden;
}

p {
    color: #646464;
}

button {
    overflow: visible;
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto;
}

label {
    display: inline-block;
    max-width: 100%;
}

input[type=file] {
    display: block;
}

select[multiple], select[size] {
    height: auto;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 700;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td, th {
    padding: 0;
}

/* ===== 02. Layout Helpers ===== */

.container {
    margin-right: auto;
    margin-left: auto;
}

/* ===== 03. Forms, Buttons, Breadcrumbs ===== */

.form-group {
    margin-bottom: 20px;
}

.form-group > label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-control {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #515151;
    background-color: #f3f3f3;
    background-clip: padding-box;
    border: 1px solid #dedede;
    -webkit-transition: all .3s;
    transition: all .3s;
    min-height: 52px;
}

.form-control:focus {
    border-color: #ed1c24;
    box-shadow: 0 0 0 3px rgba(183, 242, 26, .15);
}

.form-control::-moz-placeholder {
    color: #707070;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #707070;
}

.form-control::-webkit-input-placeholder {
    color: #707070;
}

.form-control[disabled], .form-control[readonly] {
    background-color: #eee;
    opacity: 1;
}

.form-control[disabled] {
    cursor: not-allowed;
}

textarea.form-control {
    height: auto;
}

.hide { display:none !important; }

[class*=btn-] {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-transform: capitalize;
    box-shadow: none;
    color: #fff;
    transition: all 0.2s ease-in-out;
    letter-spacing: .02em;
    text-align: center;
    gap: 15px;
    padding: 5px 7px 5px 25px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
}

[class*=btn-] i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0d232d;
    color: #fff;
}

[class*=btn-]:hover {
    transform: translateY(-2px);
}

.btn-default, .input-outline {
    background: #FFFFFF;
    color: #1a191a;
}

.btn-primary {
    background: #ed1c24;
}

.btn-secondary {
    background: #019CA9;
    color: #FFFFFF;
}

.btn-success {
    background: #2ecc71;
}

.btn-info {
    background: #3af;
}

.btn-warning {
    background: #f08923;
}

.btn-danger {
    background: #f71735;
}

.btn-dark {
    background: #2c2c2c;
    color: #FFF;
}

.btn-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

.breadcrumb, .breadcrumb li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #646464;
    font-size: 14px;
}

.breadcrumb > li + li:before {
    content: "\f054";
    font-family: Font Awesome\ 5 Pro;
    font-size: 13px;
}

.breadcrumb > li > a {
    color: #646464;
}

.page404 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.page404 strong {
    font-size: 170px;
    line-height: .9;
}

.page404 p {
    font-size: 30px;
    line-height: 30px;
    max-width: 400px;
    letter-spacing: 1px;
}

/* ===== 04. Header, Navigation, Dropdowns ===== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0px 50px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(7, 11, 14, .42);
    backdrop-filter: blur(16px);
}

.header .logo {
    display: block;
}

.header .logo img {
    width: 100%;
}

.header .socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 100%;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.socials a {
    display: inline-block;
    text-align: center;
}

.socials a .fal, .socials a .fab {
    display: block;
    position: relative;
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #ffffff;
    border-radius: 3px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.socials a:hover .fab:before {
    transform: rotate(360deg);
}

/* ===== 05. Main Hero And Page Hero ===== */

.main {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
}

.main .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 728px;
    height: 90vh;
    z-index: 5;
}

.main:before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
}

.main .core-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d5dedd;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main .core-eyebrow > span {
    width: 26px;
    height: 1px;
    background: #ed1c24;
}

.main h1 {
    position: relative;
    color: #fff;
    font-weight: bold;
    max-width: 650px;
    font-size: 48px;
    margin-bottom: 15px;
}

.main h1 em {
    color: #ed1c24;
    font-style: normal;
}

.main p {
    position: relative;
    max-width: 550px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.75;
}

.hero {
    padding-top: 230px;
    padding-bottom: 100px;
    color: #fff;
    overflow: hidden;
    position: relative;
    margin-bottom: 70px;
    text-align: center;
}

.hero:before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
}

.hero > .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.hero span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9c9cc;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero span i {
    width: 26px;
    height: 1px;
    background: #ed1c24;
}

.hero h1 {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 55px;
}

.hero h1 em {
    color: #ed1c24;
    font-style: normal;
}

.hero p {
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.75;
    max-width: 500px;
}

.hero .btn-primary {
    margin-top: 15px;
}

.page .hero {
    padding: 150px 0 50px;
    text-align: left;
}

.page .hero span {
    margin-bottom: 10px;
}

.page .hero span::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #ed1c24;
}

.page .hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr);
    gap: 58px;
    align-items: center;
}

.page .hero p {
    color: rgba(255,255,255,.72);
    font-size: 18px;
}

.page .hero-actions {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
}

.page .hero figure {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #18181b;
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

.page .hero figure img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    display: block;
    object-fit: cover;
}

.page .hero figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 15px 0px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    text-align: center;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.page .hero dl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    color: rgba(255,255,255,.74);
}

.page .hero dl dd + dd {
    border-left: 1px solid rgba(255,255,255,.3);
    padding-left: 10px;
}

/* ===== 06. Homepage Overview Blocks ===== */

.headline {
    position: absolute;
    z-index: 3;
    height: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color:rgba(255, 255, 255, .82);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.headline i {
    width: 3px;
    height: 3px;
    background: #ed1c24;
    border-radius: 50%;
}

        .solutions .swiper::before {
        content: "";
        position: absolute;
        top: -2px;
        inset-inline-start: 0;
        width: 100%;
        height: 48px;
        background-color: #FFF;
        -webkit-mask-image: url(/uploads/top-curved.svg);
        mask-image: url(/uploads/top-curved.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center top;
        mask-position: center top;
        -webkit-mask-size: cover;
        mask-size: cover;
        z-index: 2;
}

@media (min-width: 1921px) and (max-width: 2500px) {
        .solutions .swiper::before {
                height: 60px;
        }
}

@media (min-width: 2501px) and (max-width: 3200px) {
        .solutions .swiper::before {
                height: 70px;
        }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
        .solutions .swiper::before {
                height: 38px;
        }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
        .solutions .swiper::before {
                height: 30px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
        .solutions .swiper::before {
                height: 24px;
        }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
        .solutions .swiper::before {
                height: 20px;
        }
}

.solutions .swiper::after {
        content: "";
        position: absolute;
        bottom: -1px;
        inset-inline-start: 0;
        width: 100%;
        height: 48px;
        background-color: #FFF;
        -webkit-mask-image: url(/uploads/bottom-curved.svg);
        mask-image:url(/uploads/bottom-curved.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center bottom;
        mask-position: center bottom;
        -webkit-mask-size: cover;
        mask-size: cover;
        z-index: 2;
}

@media (min-width: 1921px) and (max-width: 2500px) {
        .solutions .swiper::after {
                height: 60px;
        }
}

@media (min-width: 2501px) and (max-width: 3200px) {
        .solutions .swiper::after {
                height: 70px;
        }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
        .solutions .swiper::after {
                height: 38px;
        }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
        .solutions .swiper::after {
                height: 30px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
        .solutions .swiper::after {
                height: 24px;
        }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
        .solutions .swiper::after {
                height: 20px;
        }
}

.solution-item {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
}

.solution-item .slider-img {
        max-width: 442px;
        width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
        .solution-item .slider-img {
                max-width: 360px;
        }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
        .solution-item .slider-img {
                max-width: 320px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
        .solution-item .slider-img {
                max-width: 280px;
        }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
        .solution-item .slider-img {
                max-width: 200px;
        }
}

.solution-item img {
        object-fit: cover;
        height: 500px;
}




.stats {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    align-items: center;
    padding: 42px 7vw;
    background: #fff;
    border-bottom: 1px solid #d8d8d8;
}

.stats > p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.stats div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 25px;
    border-left: 1px solid #d8d8d8;
}

.stats strong {
    font-size: 31px;
}

.stats span {
    color: #6b6b70;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 70px;
    gap: 15px;
}

.section-header h2 {
    max-width: 650px;
    font-size: 50px;
}

.section-header h2 em {
    color: #ed1c24;
    font-style: normal;
}

.section-header > p {
    position: relative;
    max-width: 550px;
    color: #6b6b70;
}

/* ===== 07. Who We Are And About Blocks ===== */


.who {
    position: relative;
    display: grid;
    grid-template-columns: minmax(78px, 80px) minmax(430px, 1.35fr) minmax(430px, 1.65fr);
    gap: 72px;
    align-items: center;
    padding: 62px 70px;
     margin: 25px 7vw 50px 7vw;
    overflow: visible;
    background: #F9F9F9;
}

.who .fa-award {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 7px solid #ed1c24;
    border-radius: 50%;
    color: #ed1c24;
    font-size: 58px;
    background: #FFF;
    box-shadow: 0 0 0 8px rgba(237, 28, 36 , .16);
}

.who h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.who ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.who ul li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.who ul li i {
    flex: 0 0 auto;
    width: 30px;
    font-size: 24px;
    color: #ed1c24;
}

.about {
    position: relative;
    padding: 50px 0;
    margin-bottom: 50px;
    background: #fff;
    overflow: hidden;
}



.about .section-header { text-align:left;align-items:flex-start;margin-bottom:15px; }

.about .section-header h2 { font-size:40px; }

.about-left {
    height: 620px;
    align-self: center;
}

.about-left-one,
.about-left-two {
    height: 100%;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.about::before, .about::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 260px;
    opacity: .32;
    background-image: repeating-linear-gradient(105deg, transparent 0 10px, rgba(34, 93, 99, .14) 11px 13px);
    pointer-events: none;
}

.about::before {
    left: -120px;
}

.about::after {
    right: -120px;
}

.about .container {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(460px, .92fr);
    gap: 90px;
    align-items: center;
}

.about-left {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.about-left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-left-one {
    overflow: hidden;
    border-radius: 48px 0 48px 0;
}

.about-left-two {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    overflow: hidden;
    border-radius: 48px 0 48px 0;
}

.about-left-year {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 50px;
    border-radius: 48px 0 48px 0;
    background: #ed1c24;
    color: #fff;
    font-size: 23px;
    line-height: 23px;
    font-weight: 300;
}

.about-left-year strong {
    font-size: 55px;
    line-height: 55px;
    font-weight: 900;
}

.about-left-small {
    overflow: hidden;
    border-radius: 48px 0 48px 0;
}

.about-right {
    text-align: left;
}



.about-right span {
    text-transform: uppercase;
    color: #91a3ac;
    font-size: 11px;
    letter-spacing: 2.2px;
    font-weight: bold;
}

.about-right p + p {
    margin-top: 15px;
}

.step-by-step {
    text-transform: uppercase;
    color: #91a3ac;
    font-size: 11px;
    letter-spacing: 2.2px;
    font-weight: bold;
}
.features {
        padding: 100px 0;
        background:#F9F9F9;
        overflow: hidden;
}



.features .container {
        position: relative;
        display: grid;
        background: #FFF;
        grid-template-columns: 340px minmax(340px, 1fr);
        align-items: stretch;
        border-radius: 4px;
        overflow: hidden;
}

.features nav {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%),
    #101418;

}

.features nav a {
        position: relative;
        display: flex;
        align-items: center;
        padding:20px 30px;
        gap:15px;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        line-height: 1.1;
}

.features nav a:first-child {   border-top:1px solid rgba(255,255,255,.1); }
.features nav a:last-child {   border-bottom:1px solid rgba(255,255,255,.1); }

.features nav a .fa-arrow-right { display:none; }
.features nav a + a { border-top:1px solid rgba(255,255,255,.1); }
.features nav a.active { border-left:10px solid #ed1c24; background: rgba(237, 28, 36, .41); padding-left:20px; }
.features nav a i{ font-size:24px; }
.features nav a.active .fa-arrow-right {
        position: absolute;
        right: -24px;
        top: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #fff;
        color:#ed1c24;
        font-size: 18px;
        transform: translateY(-50%);
        border:1px solid #ed1c24;
}

.feature-item { display:none; padding: 90px 365px 90px 50px;}

.feature-item.active { display:block; }

.feature-item span {
        display: block;
        color: #ed1c24;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 1.4px;
        margin-bottom:10px;
        text-transform: uppercase;
}
.feature-item h2,
.feature-item h3 {
        font-size: 24px;
        margin-bottom: 15px;
}



.feature-item ul {
        display: grid;
        margin-top: 15px;
        gap:5px;
}

.feature-item ul li {
        display: flex;
        align-items: center;
        gap:10px;
            color: #646464;
}

.feature-item ul li i {
        color:#ed1c24;
}

.feature-item figure {
        position: absolute;
        right:0px;
        top:0;bottom:0px;
        width:340px;
        margin: 0;
        overflow: hidden;
}


.feature-item figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
}




.process {
        position: relative;
        overflow: visible;
        padding-top:50px;
}


.process .section-header {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) auto;
        gap: 42px;
        align-items: center;
        margin-bottom: 50px;
        text-align: left;
        z-index: 2;
}





.process dl {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
}

.process dl dt {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 35px;
        background: #F9F9F9;
        color:#646464;
        font-size:15px;
}

.process dl dt:not(:last-child)::after {
        content: "\f061";
        font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome";
        font-weight: 300;
        position: absolute;
        top: 50%;
        right: -34px;
        z-index: 3;
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6px solid #FFF;
        border-radius: 50%;
        background:#F9F9F9;
        color: #c8151c;
        font-size: 20px;
        transform: translateY(-50%);
        z-index: 10;
}

.process dl dt i {
        display: block;
        margin-bottom: 30px;
        font-size:40px;
        line-height: 1;
        color: #c8151c;
}

.process dl dt strong {
        margin: 0 0 10px;
        color: #10232d;
        font-size:18px;
}



.solutions {
    position: relative;
    padding: 50px 0px;
    background: #fff;
}

.solution-item {
    position: relative;
    display: block;
    min-height: 430px;
    background: #fff;
    overflow: hidden;
    transition: all 0.35s ease;
}

.solution-item img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: all 0.55s ease;
}

.solution-item h3 {
    font-size: 20px;
    color: #fff;
}

.solution-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    gap:5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    transition: all 0.35s ease;
    text-align: center;
    padding-bottom: 70px;
    z-index: 3;
}

.solution-caption span {
    position: relative;
    color: rgba(255, 255, 255, .82);
    text-shadow: none;
}




.latest {
    padding-top: 100px;
    padding-bottom: 50px;
}







.showcase-item {
    min-height: 570px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    box-shadow: 0 24px 70px rgba(11, 11, 13, .06);
}

.showcase-item.reverse .showcase-left {
    order: 2;
}

.showcase-item.reverse .showcase-right {
    order: 1;
}

.showcase-left {
    min-height: 570px;
    position: relative;
    overflow: hidden;
    background: #17171a;
}


.showcase-left:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(10, 10, 12, .55));
}

.showcase-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s;
}

.showcase-item:hover img {
    transform: scale(1.025);
}

.showcase-left span {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 20px;
    color: #fff;
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    opacity: .75;
}
.showcase-right {position:relative; display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding: 50px;gap:15px;}


.showcase-right span {
        display: block;
        color: var(--core-lime);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
}
.showcase-right h2,
.showcase-right h3 {
        font-size: 34px;
}



.showcase-right ul {
        display: grid;
        gap:5px;
}

.showcase-right ul li {
        display: flex;
        align-items: center;
        gap:10px;
            color: #646464;
}

.showcase-right ul li i {
        color:#ed1c24;
        line-height: 1;
}



.masonry {
  position: relative;
  display: grid;
  height: 500px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(0, 1fr));
  background: #fff;
  padding: 15px 15px 100px 15px;
  gap: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 40px rgb(31 41 51 / 12%);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.masonry > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease, filter 250ms ease;
}

.masonry > img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.masonry > img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.masonry > img:nth-child(3) {
  grid-column: 2;
  grid-row: 3 / span 3;
}

.masonry > img:nth-child(4) {
  grid-column: 1;
  grid-row: 4 / span 2;
}

.masonry-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2;

  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    rgba(16, 16, 16, .9),
    rgba(16, 16, 16, .62)
  );
  backdrop-filter: blur(12px);
}

.masonry-caption i {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  transition: transform 250ms ease;
}

.masonry:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgb(31 41 51 / 18%);
}



@media (max-width: 768px) {
  .masonry {
        padding-bottom:80px;
  }

  .masonry-caption {
        padding: 20px;
  }
}



/* ===== 09. Content Pages, Tables, Aside ===== */

.content {
    position: relative;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(11,11,13,.06);
    padding: 30px;
}

.content > * + * {
    margin-top: 15px;
}

.content p, .content li {
    color: #4A4A4A;
}

.content > :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
    margin-top: 30px;
}

.content ul:not(.checklist), .content ol:not(.checklist) {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 30px;
}

.content > *:not(figure) {
    margin-top: 0;
}

.content > *:not(figure) + *:not(figure) {
    margin-top: 15px;
}

.content ul.checklist, .content ol.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.content ul.checklist > li, .content ol.checklist > li {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 15px;
    font-size: 15px;
}

.content ul.checklist > li i, .content ol.checklist > li i {
    width: 25px;
    height: 25px;
    font-size: 14px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #ed1c24;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 15px;
    align-items: start;
}

.table_of_contents {
    display: inline-block;
    background: #F9F9F9;
    border-radius: 4px;
    padding: 30px;
    border-bottom: 1px solid #F9F9F9;
}

.table_of_contents::before {
    content: "İçindekiler";
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.table_of_contents ol {
    margin: 0px !important;
    padding: 0px !important;
}

.table_of_contents > ol {
    padding-left: 15px;
}

.table_of_contents ol ol {
    margin-top: 5px !important;
    padding-left: 30px;
}

.table_of_contents a {
    text-decoration: none;
    font-size: 14px;
}

.content h2 {
    color: #18181b;
    font-size: 24px;
}

.content h3 {
    margin-top: 34px;
    color: #18181b;
    font-size: 24px;
    letter-spacing: 0;
}

.content p, .content li, .content td {
    color: #4a4a4f;
}

.content strong {
    color: #18181b;
}

.content :is(ul, ol):not(.checklist) {
    display: grid;
    gap: 0;
    margin: 18px 0;
    padding: 0;
}

.content :is(ul, ol):not(.checklist) > li {
    position: relative;
    padding: 12px 0 12px 30px;
    border: 0;
    border-bottom: 1px solid #ededed;
    border-radius: 0;
    background: transparent;
    color: #2a2a2f;
    font-size: 15px;
}

.content :is(ul, ol):not(.checklist) > li:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
}

.content ul:not(.checklist) > li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--core-lime, #ed1c24);
    box-shadow: 0 0 0 4px rgba(237, 28, 36, .08);
}

.content ol:not(.checklist) {
    counter-reset: service2-ordered;
}

.content ol:not(.checklist) > li {
    counter-increment: service2-ordered;
}

.content ol:not(.checklist) > li::before {
    content: counter(service2-ordered);
    position: absolute;
    top: 11px;
    left: 0;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(237, 28, 36, .08);
    color: var(--core-lime, #ed1c24);
    font-size: 12px;
    font-weight: 800;
}

.content :is(ul, ol).checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 0;
}

.content :is(ul, ol).checklist > li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
    color: #202024;
    font-size: 14px;
    box-shadow: none;
}

.content :is(ul, ol).checklist > li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(237, 28, 36, .06);
    color: #ed1c24;
    font-size: 11px;
    font-weight: 700;
}

.content table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.content table th, .content table td {
    border: 0;
    padding: 17px 0;
    vertical-align: top;
    text-align: left;
}

.content table thead th {
    background: transparent;
    color: #18181b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    border-bottom: 1px solid #dcdcdc;
}

.content table thead th + th, .content table tbody td + td {
    border-left: 0;
    padding-left: 28px;
}

.content table tbody tr:nth-child(even) {
    background: transparent;
}

.content table tbody tr:hover {
    background: transparent;
}

.content table tbody td {
    border-top: 0;
    border-bottom: 1px solid #ececec;
    font-size: 14px;
}

.content table tbody td:first-child {
    color: #202024;
    font-weight: 750;
}

.content table tbody tr:last-child td {
    border-bottom: 0;
}

.aside {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 18px;
}

.aside-widget {
    padding: 24px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(11,11,13,.05);
}

.aside-widget span {
    display: block;
    margin-bottom: 16px;
    color: #ed1c24;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.aside-widget h3 {
    margin: 0 0 15px;
    font-size: 24px;
}

.aside-widget p {
    margin: 0 0 15px;
}

.aside-widget > a {
    padding: 10px 15px;
    border-radius: 6px;
    background: #ed1c24;
    color: #fff;
    font-weight: 900;
}

.aside-widget ul li + li a {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
}

.aside-widget ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #303033;
    font-weight: bold;
    font-size: 15px;
}

.aside-widget ul li a:hover {
    color: #ed1c24;
}

/* ===== 10. Blog And Gallery ===== */

.blog {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-item {
    position: relative;
    height: 285px;
    border-radius: 6px;
    text-decoration: none;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d8d8d8;
    transition: .3s;
    min-height: 145px;
    padding: 24px;
}

.blog-item:hover {
    transform: translateY(-6px);
    border-color: #ed1c24;
}

.blog-item dl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #888;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin: auto 0 20px;
}

.blog-item dl dt {
    display: inline-flex;
    align-items: center;
    font-weight: bold;
}

.blog-item dd + dt {
    margin-left: 5px;
}

.blog-item .fal {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #0b3b26;
    font-size: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.blog-item h2, .blog-item h3 {
    margin-top: 15px;
    color: #101012;
    font-size: 20px;
}

.blog-item small {
    color: #c8151c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.blog-item > div {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #d8d8d8;
    color: #555;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.blog-item div b {
    color: #ed1c24;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 0 7vw;
}

.gallery-item {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-7px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.55s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    gap: 10px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1.4px;
    font-size: 10px;
    text-transform: uppercase;
    transition: .3s;
    z-index: 2;
}

.gallery-caption i {
    color: #ed1c24;
    font-style: normal;
    font-size: 14px;
}

.solution-next, .solution-prev, .latest-prev, .latest-next, .gallery-prev, .gallery-next, .service-next, .service-prev {
    color: #101012;
    background: #ed1c24;
}


.blog-caption span {
    color: #FFF;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== 11. Contact Page ===== */

.contact {
    border: 1px solid #d8d8d8;
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    background: #fff;
}

.contact-left, .contact-right {
    padding: 55px;
}

.contact-right {
    border-left: 1px solid #d8d8d8;
}

.contact .section-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    align-items: flex-start;
    text-align: left;
}

.contact-left h2 {
    position: relative;
    font-size: 24px;
}

.contact-left p {
    position: relative;
}

.contact-left ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.contact-left ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-left ul li i {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    color: #fff;
}

.contact-left ul li span {
    display: block;
    font-weight: 600;
    color: #91a3ac;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-left ul li p, .contact-left ul li a {
    color: #fff;
    word-break: break-word;
}

.contact-social {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: #101012;
    background: #ed1c24;
    border-radius: 0;
}

.contact-social a:hover {
    background: #fff;
    color: #021d50;
    transform: translateY(-3px);
    text-decoration: none;
}

.contact-right h2 {
    font-size: 24px;
}

.contact iframe {
    height: 430px;
    width: 100%;
    margin: 0;
    border-radius: 6px;
    display: block;
    border: 0;
    filter: grayscale(20%);
}

.contact-left h2, .contact-right h2 {
    font-size: 30px;
}

.contact-left ul li > i {
    color: #ed1c24;
    background: rgba(255, 255, 255, .08);
    border-radius: 0;
}

.contact-right > p {
    color: #6b6b70;
}

.contact-right label {
    color: #6b6b70;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.contact-left-title {
    display: block;
    margin-bottom: 35px;
    color: #999;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 15px;
}

.contact-detail-item + .contact-detail-item {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 25px;
    margin-top: 25px;
}

.contact-detail-item > i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: #ed1c24;
    color: rgba(255, 255, 255, 1);
}

.contact-detail-item small {
    display: block;
    margin-bottom: 5px;
    color: #888;
    font-weight: bold;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-detail-item p {
    margin: 0;
}

.contact-socials {
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .12);
}

.contact-socials > span {
    display: block;
    margin-bottom: 15px;
    color: #888;
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-socials > div {
    display: flex;
    gap: 7px;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, .18);
    transition: .2s;
}

.contact-socials a:hover {
    color: #fff;
    background: #ed1c24;
    border-color: #ed1c24;
}

.contact-title {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d8d8d8;
}

.contact-title > span {
    color: #c8151c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-title h3 {
    margin: 10px 0;
    color: #101012;
    font-size: 32px;
    letter-spacing: -1px;
}

.contact-title p {
    margin: 0;
    color: #6b6b70;
    font-size: 14px;
}

.contact-left .contact-title {
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.contact-map {
    margin-top: 30px;
    background: #FFF;
    border: 1px solid #d8d8d8;
}

.contact-map iframe {
    display: block;
    width: 100% !important;
    height: 430px !important;
    vertical-align: middle;
    padding: 30px;
    margin: 0;
}

/* ===== 12. Floating Contact And Small Components ===== */

.telephone {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 6%);
    border-radius: 9999px;
    overflow: hidden;
    z-index: 9999;
}

.telephone a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0px;
}

.telephone .phone {
    background: #2196f3;
    color: #ffffff;
}

.telephone .whatsapp {
    background: #1fc652;
    color: #ffffff;
}

.product-caption h3 {
    color: #101012;
}

.product-caption p {
    color: #6b6b70;
}

/* ===== 13. Footer And Copyright ===== */

.footer {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 74px 7vw;
    display: grid;
    grid-template-columns: 1.35fr 1fr .75fr 1.25fr;
    gap: 54px;
    color: #fff;
    background: #080b0f;
    background-size: 44px 44px;
    border-top: 0;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(237, 28, 36, .12), transparent 34%, rgba(255, 255, 255, .04));
    pointer-events: none;
}

.footer .widget {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 0;
    border: 0;
}

.footer p {
    max-width: 410px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    line-height: 1.75;
}

.footer .widget-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}

.footer .widget-title::before {
    content: "";
    position: static;
    width: 3px;
    height: 17px;
    flex: 0 0 auto;
    border-radius: 99px;
    background: #ed1c24;
}

.footer .widget-title span {
    margin: 0;
    color: #ed1c24;
    font-family: inherit;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer .widget-title > i {
    display: none;
}

.footer .widget ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
}

.footer .widget ul li {
    display: block;
    color: rgba(255, 255, 255, .68);
}

.footer .widget ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}

.footer .widget ul li a:hover {
    color: #fff;
}

.footer .widget ul li .fal, .footer .widget ul li .fab {
    display: inline-block;
    color: #6b6b70;
}

.footer .socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.footer .socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    transition: all .2s ease;
}

.footer .socials a:hover {
    color: #fff;
    background: #ed1c24;
    border-color: rgba(237, 28, 36, .85);
}

.footer .socials a .fal, .footer .socials a .fab {
    display: block;
    color: inherit;
}

.footer-contact-widget {
    padding-left: 0;
    border-left: 0;
}

.footer-contact-widget .widget-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 0;
    color: rgba(255, 255, 255, .82);
}

.footer-contact-item + .footer-contact-item {
    border-top: 0;
}

.footer-contact-item > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: #ed1c24;
    font-size: 15px;
}

.footer-contact-item span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-contact-item small {
    color: #6b6b70;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
}

.copyright {
    padding: 20px 7vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .55);
    background: #080b0f;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
}

.copyright > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright > div i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ed1c24;
}

.copyright a {
    color: rgba(255, 255, 255, .58);
}

.copyright a:hover {
    color: #fff;
}

/* ===== Animation Keyframes ===== */

@keyframes core-rotate {
    to {
                transform: rotate(360deg);
            }
}

/* ===== Responsive Rules ===== */

@media (min-width: 767px) {
    /* 04. Header, Navigation, Dropdowns */
    .header .toggle {
        display: none;
    }

    .header nav > ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 30px;
    }

    .header nav > ul > li, .header nav > ul > li > a {
        position: relative;
        display: flex;
        align-items: center;
        transition: all 0s ease-in-out;
    }

    .header nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: rgba(255, 255, 255, .88);
        font-size: 15px;
        font-weight: 800;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: calc((100% / 2) - 130px);
        z-index: 1000;
        display: none;
        float: left;
        max-width: 260px;
        min-width: 260px;
        padding: 10px;
        margin-top: 10px;
        list-style: none;
        text-align: left;
        background-color: #17171a;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 6px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
        background-clip: padding-box;
        animation: all .18s ease;
    }

    .dropdown-menu:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -12px;
        height: 12px;
    }

    .dropdown-menu > li > a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        padding: 10px 15px;
        color: #c4cdd1;
        text-decoration: none;
        border-radius: 6px;
        font-size: 15px;
        transition: background .2s ease,
            color .2s ease,
            transform .2s ease;
    }

    .dropdown-menu > li:hover > a, .dropdown-menu > li:focus > a {
        background: #ed1c24;
        color: #FFF;
        transform: translateX(4px);
        text-decoration: none;
    }

    .dropdown-menu > li > a > i {
        margin-left: auto;
    }

    .open > .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: 0;
        margin-left: 0px;
        display: none;
    }

    .dropdown-menu .dropdown:hover > .dropdown-menu {
        display: block;
    }

    /* 13. Footer And Copyright */
    .footer .widget {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right:50px;
    }

    .footer .widget:first-child {
        padding-left: 0px;
    }

    .footer .widget:last-child {
        border-right: 0px;
        padding-right: 0px;
    }

    .footer .widget-title i {
        display: none;
    }
}

@media (min-width:768px) {
    /* 02. Layout Helpers */
    .container {
        width: 750px;
    }
}

@media (min-width:992px) {
    /* 02. Layout Helpers */
    .container {
        width: 970px;
    }
}

@media (min-width:1200px) {
    /* 02. Layout Helpers */
    .container {
        width: 1170px;
    }
}


@media (max-width: 991px) {
    /* 01. Tokens, Reset, Base Elements */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 17px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 15px;
    }

    body.open {
        overflow: hidden;
    }

 

    /* 02. Layout Helpers */
    .container {
        padding: 0 15px;
    }

    /* 04. Header, Navigation, Dropdowns */
    .header {
        min-height: 90px;
        height: 90px;
        padding: 0px 15px;
    }

    .header .toggle {
        display: block;
        margin-left: auto;
        color: #fff;
        font-size: 30px;
    }

    .header .right {
        position: fixed;
        top: 90px;
        right: 0;
        width: 0;
        max-width: 0;
        height: 100vh;
        background: #fff;
        z-index: 9990;
        transition: width 0.35s ease, max-width 0.35s ease, visibility 0.35s ease;
        box-shadow: none;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
    }

    body.open .header .right {
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        box-shadow: -20px 0 50px rgba(2, 29, 80, 0.22);
        visibility: visible;
    }

    .header .right > ul {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin: 0;
        padding: 0;
    }

    .header .right ul li a {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

    .header .right .socials {
        justify-content: flex-start;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .header .right .socials a {
        color: #fff;
        border-color: rgba(255, 255, 255, .18);
    }

    .header .right .dropdown-menu {
        position: static;
        min-width: 0;
        max-width: none;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .header .logo {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
    }

    body.open .header .toggle .fal:before {
        content: "\f00d";
    }

    .header .right .nav {
        display: none;
    }

    .header ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .dropdown-menu {
        display: none;
        background: rgba(237, 244, 251, .5);
    }

    .dropdown-menu .dropdown-menu {
        background: rgba(237, 244, 251, .7);
    }

    .dropdown-menu .dropdown-menu ul li a {
        padding-left: 60px;
    }

    .open > .dropdown-menu {
        display: block;
    }

    .open > .dropdown-toggle .fa-caret-right:before {
        content: "\f0d7";
    }

    /* 05. Main Hero And Page Hero */
    .page .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
 
  
    .main h1, .hero h1 {
        font-size: 30px;
    }
  
    .main p, .hero p, .page .hero p {
        font-size: 14px;
    }



    .headline { gap:5px;font-weight:normal; }

    .hero h1 { margin-bottom:5px; }

    
    .hero, .page .hero {
       
        padding-top: 160px;
        padding-bottom: 60px;
        margin-bottom: 50px;
        text-align: center;
    }


    .page .hero-actions { display:none; }

    .page .hero figure {  display:none; }
    

    .page .hero .container > div { display:flex;align-items:center;justify-content:center;flex-direction:column; }

    /* 06. Homepage Overview Blocks */
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        padding: 28px 20px;
        background: #F9F9F9;
        border:none;
        text-align: center;
    }

    .stats > p {
       display: none;
    }

    .stats div {
        align-items: center;
        flex-direction: column;
        gap: 6px;
        padding: 20px;
        border-left: 0;
        background: #fff;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 30px;
        line-height: 1.12;
    }

 
    /* 07. Who We Are And About Blocks */


    .who {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 22px;
          margin: 20px 15px 40px;
        overflow: hidden;
    }

    .who ul {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .who ul li {
        align-items: center;
        white-space: normal;
        font-size: 14px;
    }

    .index .about { display:none; }

    .about .container {
        gap: 30px;
    }


        .about-left {
                height: auto;
        }

        .showcase-item {
                grid-template-columns: 1fr;
        }

        .showcase-item.reverse .showcase-left {
                order: 1;
        }

        .showcase-item.reverse .showcase-right {
                order: 2;
        }

      

        .showcase-item h2,
        .showcase-item h3 {
                font-size: 25px;
        }

        .showcase-left { height: 300px; min-height: 300px;}
          .showcase-right {
                padding: 30px;
        }

    .who .fa-award {
        width: 72px;
        height: 72px;
        border-width: 5px;
        font-size: 38px;
    }

    .about {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .about-left {
        height: auto;
        grid-template-columns: 1fr;
    }

    .about-left-one, .about-left-two, .about-left-small {
        height: auto;
        border-radius: 24px 0 24px 0;
    }

    .about-left-one img, .about-left-small img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .about-left-two {
        grid-template-rows: auto;
    }

    .about-left-year {
        padding: 28px;
    }

    .about-left-year strong {
        font-size: 42px;
        line-height: 42px;
    }

    .about-right h2 {
        font-size: 32px;
    }

    /* 08. Services, Solutions, Latest Items */
    .solutions {
        overflow: hidden;
    }

    .solution-item {
        min-height: 300px;
        max-height: 300px;
    }
    .solution-item img {
        max-height: 300px;
    }

    .solution-item h3 { font-size:16px;letter-spacing:0px; }

    .solution-item span {
         font-size:14px;

    }

    .solution-caption { padding:15px 15px 40px 15px; }

    .service-feature.reverse .service-feature-image {
        order: 1;
    }

    .service-feature.reverse .service-feature-copy {
        order: 2;
    }

    .service-feature, .service-feature-image {
        min-height: auto;
    }

    .service-feature-image {
        min-height: 260px;
    }

    .service-feature-image span {
        font-size: 54px;
    }

    /* 09. Content Pages, Tables, Aside */
    .content {
        padding: 30px;
        border:none;
    }

    .table_of_contents {
        width: 100%;
        padding: 0px 0px 0px 0px;
        background: #FFF;
    }

    .aside {
        position: static;
    }

    .aside-widget{ border:none; }

    .content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }

    /* 10. Blog And Gallery */
    .services .wrapper, .blog,  .content :is(ul, ol).checklist {
        grid-template-columns: 1fr;
    }


        .features {
                padding: 50px 0;
        }




  .features .container {
                grid-template-columns: 1fr;
        }

        .features nav {
                flex-direction: row;
                justify-content: flex-start;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
        }

        .features nav a {
                min-width: 210px;
                padding: 16px 20px;
                font-size: 15px;
        }

        .features nav a.active {
                border-left: 0;
                border-bottom: 4px solid #ed1c24;
                padding-left: 20px;
        }

        .features nav a.active .fa-arrow-right {
                display: none;
        }

        .feature-item {
                padding: 28px 22px;
        }

        .feature-item figure {
                position: static;
                width: 100%;
                height: 220px;
                margin-bottom: 22px;
        }


        .process .section-header{
                display: flex;
                flex-direction: column;
                grid-template-columns: 1fr;
                text-align: center;
        }
        

        .process dl {
                grid-template-columns: 1fr 1fr;
        }

          .process dl dt:not(:last-child)::after {
                display: none;
        }



        .process .section-header .btn-primary {
             display: none;
        }

        .process dl dt  {
                padding:30px  15px;
                font-size:14px;
        }

        .process dl dt:not(:last-child)::after {
                display: none;
        }
        .process dl dt i { font-size:30px;margin-bottom:20px; }
        .process dl dt strong {
                font-size: 16px;
        }

    .gallery {
        gap: 15px;
        padding: 0 15px;
         grid-template-columns: 1fr 1fr; 
    }

    .blog {
        gap: 15px;
    }

    .gallery-item {
        height: 245px;
    }

    /* 11. Contact Page */
    .about .container, .content-layout, .contact, .service-feature {
        grid-template-columns: 1fr;
    }

    .contact {
        border: none;
    }

    .contact-left, .contact-right {
        padding: 28px 22px;
    }

    .contact-right {
        border-left: 0;
        border-top: 1px solid #d8d8d8;
    }

    .contact-map iframe {
        height: 320px !important;
        padding: 12px;
    }

    .contact-title h3, .contact-left h2, .contact-right h2 {
        font-size: 26px;
    }

    .contact-detail-item {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .contact-detail-item + .contact-detail-item{ padding-top:0;border-top:0; }

    .contact-map{ border:none; }
    .telephone {
        right: 15px;
        left: 15px;
        bottom: 15px;
        width: auto;
    }

    .copyright > div {
        flex-wrap: wrap;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top:50px;
    }

    .copyright {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    /* 14. Animations */
    .wow {
        animation: none !important;
        visibility: visible !important;
    }
}
