* {
    margin: 0;
    padding: 0;
}

/* ELEMENTS */
html {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #08021e;
    background: #fafafa;
}

h1,
h2,
h3,
h4,
h5 {
    color: #0d3b66;
    font-weight: 700;
    margin-bottom: 25px;
}
h1 {
    font-size: 50px;
    line-height: 150%;
}
h2 {
    font-size: 50px;
    color: #0d3b66;
}
h3 {
    font-size: 36px;
}
img {
    border: none;
    max-width: 100%;
}

p {
    line-height: 150%;
    margin-bottom: 10px;
    font-size: 19px;
    color: #08021e;
}

a {
    text-decoration: none;
}
ul {
    list-style-image: url('square.gif');
    list-style-position: inside;
}

/* OBJECTS */
.transform {
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.greybg {
    background: #eff3f8;
}
.gradientbg {
    background: url('/images/bg-gradient.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.gradientbg h3 {
    font-weight: 500;
}
.buldingbg {
    background: url('/images/about/reasons-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #0d3b66;
}
.shadow {
    box-shadow: 0px 1px 10px #00000029;
}
.font-bold {
    font-weight: bold;
}
.font-italic {
    font-style: italic;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.font-blue {
    color: #0d3b66;
}
.font-medium {
    font-weight: 500;
}
.wrapper {
    padding: 0% 5%;
    margin: 0 auto;
    max-width: 90%;
}
.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex-start {
    align-items: flex-start;
}
.flex-center {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    flex-flow: column;
}
.mobile {
    display: none;
}
.block-l,
.block-r {
    width: 49%;
    display: inline-block;
    position: relative;
}

.block-l-30 {
    width: 30%;
    display: inline-block;
    position: relative;
}
.block-r-70 {
    width: 68%;
    display: inline-block;
    position: relative;
}
.txt-col {
    column-count: 2;
    column-gap: 3.6%;
}
.clear {
    clear: both;
}

.clear::after {
    content: '';
    display: block;
    clear: both;
}
.content {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}
.content-block {
    padding: 80px 0;
}
.inner-block {
    padding: 50px 0;
}
.padding-top {
    padding-top: 50px;
}
.with-sep {
    border-bottom: 1px solid #b9d6f2;
}
.content-white .with-sep {
    border-bottom: 1px solid #fff;
}
.content-white p,
.content-white h2,
.content-white h3,
.content-white h4 {
    color: #fff;
}
/* COMPONENTS*/

/* Buttons - BEGIN */
.home-btn {
    padding-top: 30px;
    width: 210px;
}
.button {
    display: inline-block;
    height: 35px;
    padding: 15px 50px 0 0;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #fff;
}
.button .lbl {
    position: relative;
    z-index: 3;
}
.button .icn {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 50px;
    height: 50px;
}
.button .icn i {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

.button:hover {
    color: #0d3b66;
}
.button:hover .icn {
    width: 100%;
}
.common-link {
    width: calc(100% - 50px);
    background-color: #0d3b66;
}
.common-link .icn {
    background-color: #fff;
}
.common-link .icn i {
    background-image: url('/images/icons/submit-icon.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.common-link:hover .icn i {
    background-color: #0d3b66;
    background-image: url('/images/icons/submit-icon-w.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.common-link .icn.quote-icon i {
    background-image: url('/images/icons/production-icon.png');
}
.common-link:hover .icn.quote-icon i {
    background-image: url('/images/icons/production-icon-w.png');
}
.second-link {
    width: calc(100% - 50px);
    background-color: transparent;
    border: 2px solid #0d3b66;
    color: #0d3b66;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.second-link .icn {
    background-color: #0d3b66;
}
.second-link .icn i {
    background-image: url('/images/icons/submit-icon-w.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.second-link:hover {
    color: #fff;
}
.second-link:hover .icn i {
    background-color: #fff;
    background-image: url('/images/icons/submit-icon.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}

A.products-filter-trigger {
    display: none;
    padding: 10px 0;
    background-color: #212121;
    text-align: center;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    clear: both;
    margin: 20px 2px;
}
/* Buttons - END */

.responsive-menu-trigger {
    float: left;
    height: 49px;
    width: 49px;
    background: #fff;
    cursor: pointer;
    margin-top: 30px;
    display: none;
    padding: 0 20px;
}

.responsive-menu-trigger span {
    display: block;
    width: 38px;
    height: 4px;
    margin: 6px auto;
    background: #3e3b46;
    transition: background 0.5s;
}

.responsive-menu-trigger:hover span {
    background: #000000;
}

.responsive-menu-trigger span:first-child {
    margin-top: 12px;
}

.responsive-menu-container {
    display: none;
    width: 100%;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 11;
}
.responsive-menu-container p {
    margin-bottom: 0;
}
.responsive-menu-container A:link,
.responsive-menu-container A:visited {
    display: block;
    text-align: right;
    padding: 20px 15px 20px 5px;
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #c3c3c3;
    text-decoration: none;
    color: #fff;
}

.responsive-menu-container A:hover {
    background: rgba(0, 0, 0, 0.7);
}

.header {
    z-index: 999;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
}
.h-top {
    position: relative;
    background: #e1e8f6;
}
.h-phones {
    width: 50%;
    display: flex;
    justify-content: space-between;
}
.h-bottom {
    position: relative;
}
.hp-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
.hp-item,
.ht-location {
    padding: 10px 0;
    color: #757575;
}
.hp-item img,
.ht-location img {
    margin-right: 10px;
}
.hp-item a {
    color: #757575;
}

.logo {
    position: absolute;
    top: 13px;
    left: 5%;
}
.logo img {
    width: 100%;
    max-width: 240px;
}
.enviromental {
    position: absolute;
    left: calc(5% + 270px);
    display: flex;
    top: 15px;
    align-items: center;
    color: #0d3b66;
}
.h-body {
    height: 100px;
    float: right;
    position: relative;
    transition: height 0.5s;
}

.top-menu {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    float: left;
    margin-right: 35px;
}

.tm-item {
    position: relative;
    display: inline-block;
    margin: 0 20px;
    font-weight: 700;
    font-size: 18px;
    color: #0d3b66;
    border-bottom: 1px solid #fff;
    transition: border-bottom 0.5s;
}

.tm-item:hover:not(.tm-itemS) {
    border-bottom: 1px solid #2b2831;
}

.h-links {
    position: relative;
    float: left;
    font-size: 0;
}

.h-links .wrapper {
    display: inline-block;
    vertical-align: top;
}

.h-links a {
    max-width: 200px;
    display: inline-block;
    padding: 0 35px;
    height: 100px;
    transition: background 0.5s;
}

.h-links a span {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 18px;
}

.hl-service-trigger {
    background: #fed766;
    color: #2b2831;
}

.hl-service-trigger:hover {
    background: #212121;
    color: #fff;
}

.hl-call-trigger {
    background: #0d3b66;
    color: #fff;
}

.hl-call-trigger:hover {
    background: #212121;
    color: #fff;
}

.hlp-wrapper {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.hlp-wrapper span:first-child {
    display: block;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}
.home-services-block {
    display: flex;
    /* justify-content: space-between; */
    justify-content: space-around;
    padding: 60px 0 20px;
    align-items: center;
}
.home-service-thumb {
    filter: drop-shadow(0px 1px 5px rgba(14, 9, 41, 0.2));
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.home-service-thumb:nth-child(1) {
    transform: scale(1.3) translateX(20px);
}

.home-service-thumb:nth-child(2) {
    transform: scale(1.3) translateX(-20px);
}

.service-ttl {
    width: 340px;
    display: block;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 500;
}
.img-gallery-box {
    width: 24%;
}
.shape-outer {
    display: flex;
    flex-shrink: 0;
    height: calc(220px + 4vw);
    width: calc(220px + 4vw);
    /* margin: 25px; */
    padding: 20px;
    background: #fff;
}

.shape-inner {
    height: calc(220px + 4vw);
    width: calc(220px + 4vw);
    /* background: url(https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=300&h=300&fit=crop&crop=faces) no-repeat center; */
    background-size: cover;
    background-color: grey;
    margin: auto;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    position: relative;
}

.pentagon {
    -webkit-clip-path: polygon(50% 0%, 100% 40%, 82% 100%, 18% 100%, 0% 40%);
    clip-path: polygon(50% 0%, 100% 40%, 82% 100%, 18% 100%, 0% 40%);
}
.shape-inner .overlay {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -100%;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-top: 18px;
    text-align: center;
    background-color: rgba(13, 59, 102, 0.87);
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-service-thumb:hover .shape-inner .overlay {
    opacity: 1;
    bottom: 0%;
}
.shape-inner img {
    width: 100%;
    height: 100%;
}
.shape-inner .overlay ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.common-header {
    width: 100%;
    height: auto;
    min-height: 180px;
    background: url(/images/common-header-bg.png) center center no-repeat;
    background-size: cover;
    position: relative;
}
.common-header .page-heading {
    align-self: center;
    color: #0d3b66;
    background: #fafafa;
    padding: 10px 20px;
    position: absolute;
    left: 5%;
    min-width: 300px;
    bottom: -1px;
}
.page-ttl {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 15px;
}
.page-ttl-dscr {
    font-size: 16px;
}
.reasons h3 {
    display: inline-block;
    width: 84%;
    font-size: 50px;
    font-weight: 500;
}
.reason-number {
    font-size: 150px;
    font-weight: 900;
    line-height: 0;
    color: #fff;
    display: inline-block;
    width: 15%;
}
.adv-point {
    width: 33%;
    display: inline-block;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    color: #fff;
}
.adv-point h4 {
    font-size: 24px;
}

.service-thumb {
    width: 33%;
}

.fourty {
    color: #0d3b66;
    font-size: 180px;
    font-weight: 900;
    line-height: 0;
}
.years {
    font-weight: 900;
    font-size: 80px;
    text-transform: uppercase;
}
.ofexp {
    font-size: 40px;
    font-weight: 900;
    color: #0d3b66;
}
.building-img {
    position: absolute;
    right: -102px;
    bottom: -19%;
    width: 70%;
    z-index: 2;
}
.trucks {
    z-index: 3;
    position: absolute;
}
.dots {
    position: absolute;
    z-index: 1;
    width: 85%;
    bottom: -16%;
}

.service-thumb {
    width: 23%;
    margin: 1%;
    background: #fff;
    box-shadow: 0px 3px 6px #00000029;
    display: inline-block;
}
.service-thumb:hover {
    background: #b9d6f2;
    box-shadow: 0px 1px 10px #0a021b3b;
    transform: scale(1.01);
}
.st-img {
    width: 100%;
    height: 225px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.st-dscr {
    padding: 15px 20px 50px;
    text-align: left;
    position: relative;
}
.st-dscr h4 {
    font-size: 24px;
    font-weight: 500;
}
.st-dscr p {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.st-dscr .link-service {
    position: absolute;
    transform: rotate(180deg);
    bottom: 10%;
    right: 5%;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(13, 59, 102, 0.205);
    background-image: url('/images/icons/arrow-blog-slider.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}
.st-dscr .link-service:hover {
    box-shadow: 0px 3px 6px #00000029;
    background-color: #b9d6f2;
}
.service-block {
    width: calc(100% - 350px);
}
.service-menu {
    width: 300px;
    margin-right: 50px;
    box-shadow: 0px 3px 6px #00000029;
    background: #fff;
}

.service-menu-wp {
    background: #f6f6f6;
}

.service-menu-wp label {
    display: block;
    padding: 20px;
    font-size: 24px;
    background: #0d3b66;
    color: #fff;
    font-weight: 700;
}

.sm-sep {
    width: 80%;
    margin-left: 10%;
    height: 1px;
    background-color: #e1e1e1;
}

.sm-block A:link,
.sm-block A:visited {
    display: block;
    padding: 20px 10px 16px 10%;
    text-decoration: none;
    color: #0d3b66;
    font-size: 18px;
}

.sm-block A:hover,
.sm-block A.active:link,
.sm-block A.active:visited {
    color: #fff;
    background-color: #a9bfd0;
}
.sm-block A:hover {
    background-color: #afafaf;
    color: #182132;
}

/* Footer - BEGIN */

.footer {
    width: 100%;
    background: #0d3b66;
    padding-top: 50px;
    color: #fff;
}

.footer-T {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-B {
    padding: 20px 5%;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer .wp {
    padding: 0;
    max-width: 100%;
    width: 90%;
}
.ft-links {
    position: relative;
    z-index: 1;
    padding-left: 50px;
}
.ft-links.ft-logo {
    padding-left: 0;
    width: 20%;
}
.ft-links label {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    transform-origin: 0 0;
    font-size: 16px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

.ft-contacts label {
    top: 115px;
}

.ft-navigation label {
    top: 80px;
}
.ft-navigation div {
    margin-bottom: 10px;
}
.ft-contacts div {
    padding-top: 3px;
    line-height: 150%;
    font-size: 11pt;
}
/* .ft-contacts div:last-child {
    padding-top: 30px;
} */

.ft-links A:link,
.ft-links A:visited {
    padding: 5px 0;
    text-decoration: none;
    color: #fff;
    font-size: 11pt;
    font-weight: 400;
}

.ft-links A:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 11pt;
    color: #fff;
}

.copyright A {
    color: #fff;
    font-size: 11pt;
    text-decoration: none;
    font-weight: bold;
}

.copyright A:hover {
    text-decoration: underline;
}

.socials A {
    display: inline-block;
    margin-right: 15px;
    overflow: hidden;
}

.ft-logo .socials {
    margin-top: 20px;
}

/* Footer - END */

/* EDI Popup START */
#edi-popup {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}
#edi-popup .fancybox-close-small {
    right: 15px;
}
.edi-logo {
    display: block;
    max-width: 300px;
    margin: 0 auto 35px auto;
}
.edi-logo-image {
    display: block;
    max-width: 100%;
}
.edi-popup__btn-continue {
    display: block;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #0d3b66;
    width: max-content;
    font-size: clamp(14px, 2vw, 20px);
    margin: 30px auto;
    transition: 0.3s ease;
    padding: 15px 30px;
}
.edi-popup__btn-continue:hover {
    color: #fff;
    background: #0d3b66;
}
/* EDI Popup END */

/* MEDIA QUARIES - BEGIN */

/* Laptop & desktop displays */

@media (max-width: 1880px) {
    .h-links a {
        padding: 0 15px;
    }
    .tm-item {
        margin: 0 10px;
    }
    .fourty {
        font-size: 150px;
    }
    .ofexp {
        font-size: 36px;
    }
    .years {
        font-size: 70px;
    }
}

@media (max-width: 1780px) {
    .years {
        line-height: 1;
    }
    .building-img {
        bottom: -18%;
        width: 90%;
    }
    .trucks {
        width: 80%;
        top: 35%;
    }
}

@media (max-width: 1700px) {
    .enviromental span {
        display: none;
    }
}

@media (max-width: 1575px) {
    .enviromental {
        display: none;
    }
}

@media (max-width: 1500px) {
    .top-menu {
        margin-right: 10px;
    }
    .building-img {
        bottom: 0;
        width: 100%;
        position: relative;
        right: 0;
    }
    .dots {
        display: none;
    }
    .ofexp {
        font-size: 30px;
    }
    .years {
        font-size: 55px;
    }
    .fourty {
        font-size: 115px;
    }
}

@media (max-width: 1450px) {
    .top-menu {
        display: none;
    }

    .responsive-menu-trigger {
        display: block;
    }
    .adv-point {
        width: 29%;
    }
    .service-thumb {
        width: 31%;
    }
}
@media (max-width: 1380px) {
    /* .home-service-thumb:nth-child(2) {
        transform: scale(1);
    } */
    .home-service-thumb {
        transform: scale(1);
    }

    .service-ttl {
        width: 320px;
        font-size: 22px;
    }
}
/* Tablet landscape */
@media (max-width: 1050px) {
    .ft-links.ft-logo {
        padding-left: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}
@media (max-width: 1024px) {
    .logo {
        max-width: 180px;
    }
    .block-l,
    .block-r {
        width: 100%;
    }
    .years-block {
        display: none;
    }
    .block-l-30 {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .block-l {
        margin-bottom: 20px;
    }
    .block-r-70 {
        width: 100%;
    }
    .home-services-block {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }
    .home-service-thumb {
        margin: 3%;
        transform: scale(1) translateX(0);
    }
}
@media (max-width: 968px) {
    .ht-location {
        display: none;
    }
    .h-phones {
        width: 100%;
    }
    .ft-links {
        padding-left: 0;
    }
    .ft-contacts label,
    .ft-navigation label {
        top: 0;
    }
    .ft-links label {
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        margin-bottom: 10px;
    }
    .service-thumb {
        width: 48%;
    }
    .service-menu {
        display: none;
    }
    .sm-block A:link,
    .sm-block A:visited {
        padding: 20px 10px 16px 23px;
    }
    .service-block {
        width: 100%;
    }
    .home-service-thumb {
        margin: 2%;
    }
    A.products-filter-trigger,
    A.products-filter-close {
        display: block;
    }
    .service-menu {
        width: 100%;
        margin-right: 0;
    }
    .img-gallery-box {
        width: 49%;
    }
}
/* Tablet portait */
@media (max-width: 812px) {
    .copyright {
        width: 100%;
        text-align: center;
    }
    .adv-point {
        width: 100%;
    }
    .reason-number {
        font-size: 100px;
    }
    .reasons h3 {
        font-size: 35px;
        font-weight: 700;
    }
}
@media (max-width: 768px) {
    .ft-contacts {
        width: 30%;
        padding-left: 0;
    }
    .ft-contacts div {
        float: left;
        width: 100%;
        vertical-align: top;
        margin-bottom: 10%;
        line-height: 1.7;
        padding-top: 5%;
    }
    .ft-contacts div:last-child {
        padding-top: 0;
    }

    .ft-contacts label {
        top: auto;
        position: relative;
        rotate: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        font-size: 18px;
    }
    .desctop {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
    .h-links a {
        padding: 0 35px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    .txt-col {
        column-count: 1;
    }
    .shape-outer {
        height: calc(320px + 4vw);
        width: calc(320px + 4vw);
    }
    .shape-inner {
        height: calc(320px + 4vw);
        width: calc(320px + 4vw);
    }
    .service-ttl {
        width: 380px;
    }
}
@media (max-width: 650px) {
    .h-top {
        display: none;
    }
    .content {
        padding-top: 80px;
    }
    .reasons h3 {
        font-size: 30px;
    }
}
@media (max-width: 600px) {
    .service-thumb {
        width: 100%;
        margin-bottom: 3%;
    }
}
@media (max-width: 550px) {
    .h-links a {
        padding: 0 20px;
    }
    h2 {
        font-size: 36px;
    }
}
/* Mobile landscape */
@media (max-width: 500px) {
    .ft-contacts {
        width: 100%;
    }
    .reasons {
        text-align: center;
    }
    .common-header .page-heading {
        left: 15%;
        bottom: 23%;
    }
}
@media (max-width: 450px) {
    .h-links a {
        padding: 0 10px;
    }
    .responsive-menu-trigger {
        padding: 0 10px;
    }
    .shape-inner {
        height: calc(280px + 4vw);
        width: calc(280px + 4vw);
    }
    .shape-outer {
        height: calc(280px + 4vw);
        width: calc(280px + 4vw);
    }
    .service-ttl {
        width: auto;
    }
}
/* Mobile portait */
@media (max-width: 414px) {
    .logo {
        top: 33px;
        left: 10px;
        width: 120px;
    }
    .ft-contacts div {
        width: 100%;
    }
}
@media (max-width: 320px) {
}

/* MEDIA QUARIES - END */

/* RECYCLING PROCESS START */

.recycling-process {
    max-width: 1920px;
    margin: 0 auto;
    padding: 40px 5%;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 0;
}

.grid-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Intro Cell with Background Image */
.intro-cell {
    padding: 60px 40px;
    background-image: url('/images/misc/alnor_back-image.png');
    background-repeat: no-repeat;
    background-position: right 10% bottom 10%;
    background-size: 300px 300px;
}

.intro-content .intro-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-content .intro-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Image Cells */
.image-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Process Cards */
.process-card {
    padding: 50px 40px;
    position: relative;
}

.bg-dark-blue {
    background-color: #c5d0e6;
}

.bg-light-blue {
    background-color: #e1e8f6;
}

.process-card-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pcc-left {
    flex-shrink: 0;
    width: auto;
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 100px;
    height: auto;
    display: block;
}

.pcc-right {
    flex-grow: 1;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pcc-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.pcc-right ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.pcc-right ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 20px;
}

.pcc-right ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 2px;
    color: #1a1a1a;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: -5px;
}

/* Number Badges */
.number-badge {
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .intro-cell {
        padding: 40px 30px;
    }

    .process-card {
        padding: 40px 30px;
    }

    .card-header {
        flex-direction: row;
        gap: 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .number-badge {
        font-size: 4rem;
        bottom: 20px;
        right: 30px;
    }

    .pcc-right ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .recycling-process {
        padding: 20px 10px;
    }

    .intro-cell {
        padding: 30px 20px;
        background-size: 80%;
    }

    .process-card-content {
        flex-direction: column;
    }

    .process-card {
        padding: 30px 20px;
    }

    .card-header {
        gap: 12px;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }

    .number-badge {
        font-size: 3rem;
    }
}

/* RECYCLING PROCESS END */

/* SPECIALITY ALLOYS START */
.specialty-alloys-intro {
    padding: 60px 0;
}

.sa-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
}

.sa-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.specialty-alloys-intro p {
    max-width: 1300px;
    color: #333;
}

.specialty-alloys-intro .wrapper {
    max-width: 1920px;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

.why-choose-alnor {
    padding-bottom: 60px;
}

.wca-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #000;
}

.wca-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.wca-item {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wca-item.bg-light {
    background-color: #eef2fa;
}

.wca-item.bg-dark {
    background-color: #dbe4f0;
}

.wca-item-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.wca-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

@media (max-width: 1024px) {
    .wca-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wca-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wca-grid {
        grid-template-columns: 1fr;
    }
}

.materials-we-purchase {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.mwp-header {
    text-align: center;
    margin-bottom: 40px;
}

.mwp-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.mwp-subtitle {
    font-size: 22px;
    font-style: italic;
    color: #333;
}

.mwp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.mwp-col {
    display: flex;
    flex-direction: column;
}

.mwp-col.bg-light {
    background-color: #f2f2f2;
}

.mwp-col.bg-dark {
    background-color: #e1e8f6;
}

.mwp-img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
}

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

.mwp-content {
    padding: 30px 20px;
    flex-grow: 1;
}

.mwp-col-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.3;
    min-height: 42px; /* Ensure alignment of titles */
}

.mwp-content ul {
    list-style: none;
    padding-left: 0;
}

.mwp-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.5;
    color: #333;
}

.mwp-content ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 1024px) {
    .mwp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mwp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mwp-grid {
        grid-template-columns: 1fr;
    }
}

.industries-served {
    padding: 60px 0;
    background-color: #fff;
}

.is-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.is-header {
    background-color: #fed766;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 5px;
}

.is-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 0;
}

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

.is-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .is-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .is-grid {
        grid-template-columns: 1fr;
    }
}
/* SPECIALITY ALLOYS END */

/* AEROSPACE SECTION */
.aerospace-section {
    padding: 0 0 60px 0;
    background-color: #fff;
}

.aerospace-section .wrapper {
    max-width: 1920px;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

.as-header {
    background-color: #fff;
    padding: 0 0 40px 0;
    text-align: center;
    margin-bottom: 20px;
}

.as-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.aerospace-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    text-align: left;
}

.aerospace-list li {
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    position: relative;
    padding-left: 25px;
    display: flex;
    align-items: center;
}

.aerospace-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-size: 1.2rem;
    line-height: 1;
}

.more-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
    gap: 2px;
    background-color: #fff;
}

.mi-col {
    padding: 40px 30px;
    background-color: #d0dbe9;
    color: #000;
}

.mi-col:nth-child(odd) {
    background-color: #c5d0e6;
}

.mi-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.mi-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mi-col ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 1.627px;
    color: #000;
}

.mi-col ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: #000;
    font-size: 1.2rem;
    line-height: 1;
}

/* New Home Services Block */
.home-services-block.new-look {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 140px;
    padding: 60px 0 0 0;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

@media (max-width: 1350px) {
    .home-services-block.new-look {
        gap: 50px;
    }
}

.hs-card {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hs-card-img {
    width: 100%;
    height: 385px;
    overflow: hidden;
    margin-bottom: 25px;
}

.hs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hs-card:hover .hs-card-img img {
    transform: scale(1.05);
}

.hs-card-body h3 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
}

.hs-card-body .home-btn {
    padding-top: 20px;
}

.home-services-block.new-look .second-link .icn i {
    background-image: url('/images/icons/arrow-right-white.svg');
    background-size: 22px;
}

.home-services-block.new-look .second-link:hover .icn i {
    background-image: url('/images/icons/arrow-right-blue.svg');
}

/* Responsive */
@media (max-width: 768px) {
    .home-services-block.new-look {
        flex-direction: column;
        gap: 40px;
    }

    .hs-card-img {
        height: 250px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .more-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .aerospace-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .more-industries-grid {
        grid-template-columns: 1fr;
    }
    .aerospace-list {
        grid-template-columns: 1fr;
    }
}
