:root {
    --primary-color: rgba(38, 38, 38, 1);
    --red-color: rgba(203, 43, 45, 1);
    --grey-bckg: rgba(236, 236, 236, 1);
}

/*
RESET + BASE CSS
*/

/* 1. Box sizing  */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove margins and padding */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

/* 3. HTML5 elements like block */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 4. Basic font in body */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Manrope", 'sans-serif';
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--primary-color);
    background-color: rgba(236,236,236,1);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}

ul {
    list-style: none;
    padding: 0;
}

.grey-bckg {
    background-color: var(--grey-bckg);
}

h1,h2,h3,h4,h5 {
    font-family: "Onest", sans-serif;
}

h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 96px;
    letter-spacing: -2px;
    overflow: hidden;
    display: flex;
}

h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -1px;
}

h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
}

h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}

section {
    width: 100%;
}

.white-text {
    color: #ffffff;
}

.white-shadow-text {
    color: rgba(236, 236, 236, 1);
}

.site-container {
    max-width: 1120px;
    width: 100%;
    margin-inline: auto;
}

header {
    position: absolute;
    z-index: 10000;
    width: 100%;
    transition: 0.3s all ease-in-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header.active {
    backdrop-filter: blur(38px);
    background: rgba(236, 236, 236, 0.9);
    position: fixed;
}

header ul {
    display: flex;
    align-items: center;
}

#social-menu {
    justify-content: flex-end;
}

#primary-menu {
    justify-content: center;
}

#primary-menu li a {
    padding: 10px 26px;
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    color: var(--primary-color);
}

#primary-menu li a:hover,  #primary-menu li a.active {
    color: var(--red-color);
}


#social-menu li a {
    color: rgba(236, 236, 236, 1);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    padding: 10px;
    background: rgba(236,236,236, 1);
    align-items: center;
    justify-content: center;
}

#social-menu li a i {
    font-size: 20px;
    color: var(--red-color);
}

header nav {
    padding: 24px 30px;
}

.custom-site-logo {
    display: flex;
    align-items: center;
    column-gap: 12px;
    color: var(--primary-color);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
    font-family: "Onest", sans-serif;
}

nav.row {
    align-items: center;
}

.show-desktop {
    display: block;
}

.show-mobile {
    display: none;
}

/* Hero section */

.hero-section {
    padding: 175px 0 40px;
    position: relative;
}

.hero-section:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 420px;
    height: 524px;
    background-image: url("/wp-content/uploads/2025/10/header-banner-decoration-1.svg");
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-section h1 {
    display: flex;
    flex-direction: column;
}

.hero-section h1 span:first-of-type {
    font-size: 60px;
    font-weight: 700;
    line-height: 77px;
    letter-spacing: -2px;
    padding-left: 100px;
}

.hero-section h1 span:nth-of-type(2), .hero-section h1 .words span {
    background: linear-gradient(90.00deg, rgba(203, 43, 45, 1),rgba(242, 160, 33, 1) 100%);
;
    -webkit-background-clip:
            text;
    -webkit-text-fill-color:
            transparent;
    background-clip:
            text;
    text-fill-color:
            transparent;
    font-family: Onest;
    font-size: 163px;
    font-weight: 800;
    line-height: 208px;
    letter-spacing: -4px;
    text-align: left;
    text-transform: uppercase;
}

.hero-section .words {
    display: grid;
    overflow: hidden;
}

.words > * {
    grid-area: 1/1/2/2;
}

h1 > * {
    display: inline-block;
}

h1 > div {
    position: relative;
    margin: 0;
}

.words {
    visibility: hidden;
}

/* Hero section ends */

/* Big image section */

.big-image {
    background-size: cover;
    background-position: center bottom;
    height: 675px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.big-image:before {
    content: '';
    position: absolute;
    display: block;
    width: 884px;
    height: 33px;
    bottom: 0;
    left: 0;
    background-image: url("/wp-content/uploads/2025/10/header-banner-decoration-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
/* Big image section ends */

/* Industries section */

.industries-container {
    padding: 140px 40px;
}

.industries-container h2 span {
    color: var(--red-color);
}

.industries-text p:last-of-type {
    font-weight: 700;
    margin-top: 20px;
}

.industries-container .row {
    align-items: center;
}

.industries-slide a {
    height: 330px;
    display: block;
    border-radius: 20px;
}

.industries-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.industries-gallery {
    padding: 0 100px 40px;
    position: relative;
}

.industries-swiper {
    position: relative;
}

.industries-swiper a img {
    transition: 0.3s all ease-in-out;
}


.industries-swiper a img:hover {
   opacity: .7;
}

.arrow-slider {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s all ease-in-out;
}

.swiper-button-next svg, .swiper-button-prev svg {
    display: none;
}

 .arrow-slider span {
    width: 16px;
    height: 14px;
    display: block;
    background-color: #ffffff;
}

 .left-arrow-slider {
     left: 30px;
 }

 .right-arrow-slider {
     right: 30px !important;
 }

 .left-arrow-slider span {
     -webkit-mask: url('/wp-content/uploads/2025/10/arrow-left.svg');
     -webkit-mask-repeat: no-repeat;
 }

 .right-arrow-slider span {
     -webkit-mask: url('/wp-content/uploads/2025/10/arrow-right.svg');
     -webkit-mask-repeat: no-repeat;
 }

 .arrow-slider:hover {
     background-color: var(--red-color);
 }
/* Industries section ends */

/* Services section */

.services-section {
    padding-top: 100px;
    padding-bottom: 350px;
    background-color: var(--primary-color);
    position: relative;
}

.services-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 461px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/10/section-decoration-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.services-list {
    margin-top: 80px;
}

.services-container {
   max-width: 1600px;
    width: 100%;
    margin-inline: auto;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    row-gap: 90px;
}

.inner-heading {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 20px;
}

.industries-heading p, .industries-served-heading p, .vision-heading p, .rob-heading p, .contact-heading p {
padding-left: 5px;
}

.services-wrapper {
    padding-inline: 15px;
}

.services-inner {
    padding-inline: 28px;
}

.inner-heading .services-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

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

.show-desktop .services-icon {
    padding-block: 0;
}

.show-desktop .inner-heading {
    align-items: flex-start;
}

.show-desktop .services-inner {
    padding-inline: 10px;
}

.service-info-desktop {
    width: calc(100% - 70px);
}

.service-info-desktop p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
}

.services-text p {
    color: rgba(255,255,255,.6);
}
/* Services section ends */

/* Industries Served section */

.industries-served {
    border-radius: 20px;
    background: linear-gradient(133.26deg, rgba(203, 43, 45, 1),rgba(147, 34, 68, 1) 100%);
    position: relative;
    max-width: 1720px;
    width: 95%;
    margin: -250px auto 0;
}

.map-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.industries-served .site-container {
    position: relative;
    z-index: 1;
}

.industries-served .intro-text {
    text-align: right;
    font-weight: 700;
}

.industries-served .row {
    align-items: center;
}

.first-container {
    padding-block: 80px;
    border-bottom: 1px solid  rgba(236, 236, 236, .2) ;
}

.industries-served-list {
    display: flex;
    align-items: center;
    padding-block: 60px;
}

.industries-served-image {
    width: 140px;
    height: 140px;
    padding: 10px;
    margin-bottom: 10px;
}

.industries-served-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
}

.industries-served-wrapper p {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
}

/* Industries served section */

/* Why us section */

.why-us {
    padding-block: 100px;
}

.why-list {
    margin-top: 60px;
}

.why-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.why-wrapper {
    border-right: 1px solid rgba(236, 236, 236, 1);
    border-bottom: 1px solid rgba(236, 236, 236, 1);
    padding: 40px;
    border-color: rgba(0,0,0,.1) !important;
}

.why-wrapper:nth-of-type(3), .why-wrapper:last-of-type {
    border-right: none;
}

.why-wrapper:nth-of-type(4), .why-wrapper:nth-of-type(5), .why-wrapper:nth-of-type(6) {
    border-bottom: none;
}

.why-inner p {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    margin-top: 20px;
}
/* Why us section ends */

/* About us section */

.cardinal-crane-logo {
    text-align: center;
}

.cardinal-crane-logo img {
    width: 360px;
    margin-top: -50px;
}

.about-us {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.about-us:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180.00deg, rgba(38, 38, 38, 0.89),rgba(38, 38, 38, 1) 100%);
}

.about-us:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 461px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/10/section-decoration-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.about-us .container {
    position: relative;
}

.about-container {
    padding-block: 80px;
}

.about-heading {
    margin-bottom: 40px;
}

.about-heading h2 span {
    color: var(--red-color);
}

.about-intro p:last-of-type {
    font-weight: 700;
    margin-top: 20px;
}

.videos-container {
    width: 1550px;
    max-width: 90%;
    margin-inline: auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    display: block;
}

.video-wrapper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(38, 38, 38, 0.65);
    top: 0;
    left: 0;
}

.video-wrapper a {
    display: block;
}

.video-poster {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    height: 430px;
}

.video-wrapper video {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    box-shadow: 0px 14px 40px 0px rgba(0, 0, 0, 0.16);
}

.video-wrapper .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: 0.3s all ease-in-out;
}

.video-wrapper .play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.videos-slider {
    height: 430px;
}

.video-arrow-right {
    right: -60px !important;
}

.video-arrow-left {
    left: -60px !important;
}

.videos-container .arrow-slider {
    background-color: rgba(255, 255, 255, 0.2);
}

.videos-container .arrow-slider:hover {
    background-color: var(--red-color);
}

.videos-pagination {
    position: static !important;
    margin: 40px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-pagination .swiper-pagination-bullet {
    border-radius: 47px;
    background: rgba(255, 255, 255, 1);
    opacity: 0.1;
    width: 8px;
    height: 8px;
}

.videos-pagination .swiper-pagination-bullet-active {
    background-color: var(--red-color);
    opacity: 1;
}

.vision-container {
    padding-block: 120px;
}

.vision-heading {
    margin-bottom: 40px;
}

.vision-intro p:last-of-type {
    font-weight: 700;
    margin-top: 20px;
}

.vision-list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.vision-list li {
    position: relative;
    padding-left: 30px;
}

.vision-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 12px;
    background-image: url("/wp-content/uploads/2025/10/Checkmark.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.vision-container .row {
    align-items: center;
}

.vision-heading span {
    color: var(--red-color);
}

.vision-column:first-of-type {
    padding-right: 60px;
    border-right: 1px solid rgba(236, 236, 236, .2);
}

.vision-column:last-of-type {
    padding-left: 60px;
}

.bottom-effect {
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url('/wp-content/uploads/2025/10/section-decoration-1.svg');
    width: 421px;
    height: 16px;
}
/* About us section ends */

/* Rob Cardinal section */

.rob-cardinal {
    padding-block: 120px;
    position: relative;
    overflow: hidden;
}

.rob-cardinal:before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 0;
    background-image: url("/wp-content/uploads/2025/10/bg-feather.svg");
    background-position: center center;
    background-repeat: no-repeat;
    width: 765px;
    height: 891px;
    z-index: -1;
}

.rob-cardinal-image {
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(236,236,236,1);
}

.rob-heading h2 span {
    color: var(--red-color);
}

.rob-heading {
    margin-bottom: 40px;
}

.cardinal-intro p {
    margin-bottom: 20px;
}

.cardinal-intro p:last-of-type {
    margin-bottom: 0;
}

.rob-cardinal .row {
    column-gap: 45px;
    flex-wrap: nowrap;
    align-items: center;
}
/* Rob Cardinal section ends */

.contact-section {
    padding-top: 120px;
    background-color: var(--primary-color);
    position: relative;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 461px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/10/section-decoration-2.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Contact section */

.contact-heading h2 span {
    color: var(--red-color);
}

.contact-heading {
    margin-bottom: 40px;
}

.contact-column:first-of-type {
    padding-right: 50px;
    border-right: 1px solid rgba(236, 236, 236, .1);
}

.contact-column:last-of-type {
    padding-left: 50px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-link {
    display: flex;
    align-items: center;
    column-gap: 20px;
    width: fit-content;
}

.contact-link {
    font-size: 40px;
    font-weight: 400;
    line-height: 55px;
    color: rgba(236, 236, 236, 1);
}

.contact-link:hover, .contact-link:hover i {
    color: var(--red-color);
}

.contact-link i {
    color: rgba(255,255,255,.3);
    font-size: 26px;
}

.contact-location p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.contact-location p strong {
    text-decoration: underline;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    color: rgba(236, 236, 236, 1);
}

.contact-location p strong:hover {
    color: var(--red-color);
    text-decoration: none;
}

.contact-form {
    max-width: 1400px;
    width: 90%;
    margin-inline: auto;
}

.contact-form form input, .contact-form form textarea {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: rgba(255,255,255,0) !important;
    padding: 0 0 5px !important;
    border-bottom: 1px solid rgba(255,255,255,.4) !important;
    color: #ffffff !important;
}


.contact-location {
	position: relative;
	z-index: 3;
}

.contact-form form input::placeholder, .contact-form form textarea::placeholder {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    color: #ffffff !important;
}

.contact-form {
    border-radius: 0px 20px 20px 20px;
    box-shadow: 0px 20px 37px 0px rgba(0, 0, 0, 0.25);
    background:  linear-gradient(194.49deg, rgba(203, 43, 45, 1),rgba(147, 34, 68, 1) 100%);
    padding: 80px 20px;
    margin-top: 120px;
    z-index: 10;
    position: relative;
}

.contact-form form {
    width: 860px;
    max-width: 100%;
    margin-inline: auto;
}

.contact-form button.gform_button {
    border-radius: 10px;
    box-shadow: 0px 10px 13px 0px rgba(0, 0, 0, 0.15) !important;
    background: rgba(255, 255, 255, 1) !important;
    width: 100%;
    padding-block: 16px !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
    color: var(--primary-color);
    cursor: pointer !important;
    border: 2px solid rgba(255,255,255,0) !important;
    transition: 0.3s all ease-in-out;
}

.contact-form button i {
    color: var(--red-color);
    order: 2;
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin-top: 18px !important;
}

.contact-form button.gform_button:hover {
    border: 2px solid rgba(255, 255, 255, 1) !important;
    color: #ffffff !important;
    background-color: rgba(255,255,255,0) !important;
}

.contact-form button.gform_button:hover i {
    color: #ffffff;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 40px !important;
}

.bird-image {
    position: absolute;
    top: 0;
    right: 0;
}

.bird-image img {
    object-fit: contain;
    width: 1000px;
    height: 700px;
    z-index: -1;
}

.contact-section {
    overflow: hidden;
}

/* Contact section ends */

/* Footer */

footer {
    padding-block: 80px;
    background-color: var(--primary-color);
    color: rgba(255,255,255,.5);
    margin-top: auto;
    width: 100%;
}

footer ul, .footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}


footer ul li a, .footer-menu p, .footer-menu p a, .footer-menu span {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: rgba(255,255,255,.5);
    padding-inline: 20px;
}

footer a:hover {
    color: var(--red-color);
}

.footer-menu p a {
    padding-inline: 0;
}

footer #social-menu li a {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
}

footer #social-menu li a i {
    color: rgba(236,236,236,.5);
    font-size: 16px
}

footer #social-menu li a:hover {
    background-color: var(--red-color);
}

footer #social-menu li a:hover i {
    color: #ffffff;
}

footer #social-menu li {
    padding-right: 20px;
}

/* Footer ends */

/* Popup */

.popup-backdrope {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100000;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-confirmation {
    max-width: 620px;
    width: 90%;
    padding: 60px;
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 10px;
}

.popup-confirmation span {
    width: 39px;
    height: 39px;
    position: absolute;
    top: -49px;
    right: -49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-color);
    transition: 0.3s all ease-in-out;
    cursor: pointer;
    border-radius: 116px;
}

.popup-confirmation span i {
    color: #ffffff;
}

.popup-confirmation span:hover {
    transform: scale(1.05);
}

.popup-confirmation img {
    display: block;
    margin: 0 auto 40px;
}

.popup-confirmation h4 {
    color: var(--primary-color);
}

.popup-confirmation p {
    color: var(--primary-color);
}

#fancybox-3 .fancybox__thumbs {
    display: none !important;
}

/* Popup */

.default-section {
    padding: 200px 0 100px;
}

.default-section p {
    margin-bottom: 25px;
}

.default-section ul li {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.default-section ul, .default-section ol {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: disc;
}

.default-section ol {
    list-style: decimal;
}

::marker {
    color: var(--red-color);
}

.default-section a {
    color: var(--red-color);
    text-decoration: underline;
}

.default-section h1 {
    margin-bottom: 50px;
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -1px;
}

@media(max-width: 1500px) {
    .hero-section h1 span:nth-of-type(2), .hero-section h1 .words span {
        font-size: 140px;
        line-height: 180px;
    }
}

@media (max-width: 1250px) {
    .inner-heading .services-title {
        font-size: 17px;
        line-height: 21px;
    }
}

@media(max-width: 1200px) {
    .hero-section h1 span:nth-of-type(2), .hero-section h1 .words span {
        font-size: 110px;
        line-height: 150px;
    }

    .videos-container {
        max-width: 80%;
    }

    .about-us:after {
        width: 30%;
        left: -5%;
    }

    .rob-cardinal .row {
        column-gap: 10px;
    }
}

@media(max-width: 991px) {

    .show-desktop {
        display: none;
    }

    .show-mobile {
        display: block;
    }

    .menu-hamburger {
        width: 30px;
        height: 30px;
        position: relative;
        top: 5px;
    }

    .menu-hamburger span {
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 6px;
        background-color: rgba(38, 38, 38, 1);
        left: 0;
        transition: 0.3s all ease-in-out;
    }

    .menu-hamburger span:first-of-type {
        top: 0;
    }

    .menu-hamburger span:nth-of-type(2) {
        top: 9px;
    }

    .menu-hamburger span:nth-of-type(3) {
        top: 18px
    }

    .nav-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 3;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-column {
        display: flex;
        justify-content: flex-end;
    }

    .mobile-menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(38px);
        background: rgba(236, 236, 236, 0.9);
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: 0.3s all ease-in-out;
        padding-top: 93px;
    }


    .open .mobile-menu {
        transform: none;
    }

    body.open .menu-hamburger span:nth-of-type(1) {
        transform: translateY(10px) rotate(45deg);
    }

    body.open .menu-hamburger span:nth-of-type(2) {
        opacity: 0;
    }

    body.open .menu-hamburger span:nth-of-type(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.open {
        overflow: hidden;
    }

    .mobile-menu ul {
        width: 100%;
        height: 100%;
        padding: 10px;
        flex-direction: column;
        row-gap: 10px;
    }

    .mobile-menu ul#mobile-menu li {
        width: 100%;
    }

    .mobile-menu ul#mobile-menu li a {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 1);
        padding: 20px 26px;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 700;
        line-height: 27px;
        display: block;
        text-align: center;
    }

    #mobile-social-menu {
        flex-direction: row;
        justify-content: flex-end;
    }

    .mobile-menu ul#mobile-menu li a:hover, .mobile-menu ul#mobile-menu li a.active {
        background-color: var(--red-color);
        color: #ffffff;
    }

    #mobile-social-menu li a {
        color: rgba(236, 236, 236, 1);
        border-radius: 5px;
        width: 40px;
        height: 40px;
        display: flex;
        padding: 10px;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
        background: rgba(255, 255, 255, 1);
    }

    #mobile-social-menu li a i {
        font-size: 20px;
        color: var(--red-color);
    }

    .hero-section:before {
        display: none;
    }

    .hero-section h1 span:first-of-type {
        padding-left: 0;
    }

    .hero-section h1 span, .hero-section h1 span:nth-of-type(2), .hero-section h1 .words span {
        text-align: center;
    }

    .industries-gallery {
        padding: 0 0 30px;
    }

    .arrow-slider {
        display: none;
    }

    .industries-container {
        padding: 80px 0;
        text-align: center;
    }

    .industries-text {
        text-align: left;
        margin-top: 40px;
    }

    .inner-heading .services-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
    }

    .services-wrapper {
        padding-block: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .services-list {
        row-gap: 0;
    }

    .services-section {
        padding-top: 80px;
        padding-bottom: 280px;
    }

    .inner-heading {
        margin-bottom: 20px;
    }

    .show-mobile .inner-heading .services-title {
        width: calc(100% - 70px);
    }

    .industries-served {
        margin-top: -200px;
    }

    .industries-served-heading, .industries-served .intro-text {
        text-align: center;
    }

    .industries-served-heading {
        margin-bottom: 20px;
    }

    .industries-served-list {
        flex-direction: column;
    }

    .industries-served-wrapper {
        width: 100%;
        flex-direction: row;
        padding-block: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: space-between;
    }

    .first-container {
        padding-block: 60px;
        border-bottom: none;
    }

    .industries-served-image {
        width: auto;
        height: 50px;
        margin-bottom: 0;
        order: 1;
        padding: 0;
    }

    .industries-served-image img {
        height: 100%;
    }

    .industries-served-wrapper p {
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
    }

    .why-wrapper:nth-of-type(3) {
        border-right: 1px solid rgba(236, 236, 236, 1);
    }

    .why-wrapper:nth-of-type(2) {
        border-right: none;
    }

    .why-wrapper:nth-of-type(4) {
        border-right: none;
        border-bottom: 1px solid rgba(236, 236, 236, 1);
    }

    .why-list {
        margin-top: 20px;
    }

    .why-us {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .vision-container {
        padding-block: 40px;
    }

    .vision-column:first-of-type, .vision-column:last-of-type {
        padding-inline: 12px;
    }

    .vision-column:first-of-type {
        border-bottom: 1px solid rgba(236, 236, 236, .2);
        border-right: none;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .videos-pagination {
        margin-bottom: 0;
    }

    .about-container {
        text-align: left !important;
    }

    .about-us:after {
      display: none;
    }

    .rob-cardinal .row {
        flex-direction: column;
    }

    .rob-heading {
        text-align: center;
    }


    .rob-cardinal-image {
        width: 50%;
        margin: 0 auto 40px;
    }

    .rob-cardinal {
        padding-block: 80px;
    }

    .rob-cardinal:before {
        display: none;
    }

    .contact-column:first-of-type {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(236, 236, 236, .1);
    }

    .contact-column:last-of-type {
        padding-left: 0;
    }

    .contact-column {
        text-align: center;
    }

    .contact-section {
        padding-top: 80px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-column:first-of-type {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .contact-links {
        align-items: center;
    }

    .contact-form {
        margin-top: 80px;
    }

    #industries {
        padding-inline: 0;
    }

    .industries-heading p, .industries-served-heading p,.rob-heading p, .contact-heading p {
        padding-left: 0;
    }
}

@media(max-width: 768px) {
    .hero-section h1 span:nth-of-type(2), .hero-section h1 .words span {
        font-size: 80px;
        line-height: 130px;
    }

    .big-image {
        height: 350px;
    }

    .services-section {
        padding-top: 60px;
        padding-bottom: 210px;
    }

    .services-list {
        margin-top: 60px;
    }

    .services-inner {
        padding-inline: 0;
    }

    .industries-served {
      margin-top: -150px;
    }

    .why-list .why-wrapper {
        border: none;
        padding: 0 12px;
    }

    .why-list {
        row-gap: 10px;
    }

    .why-inner {
        flex-direction: row;
        column-gap: 20px;
        align-items: center;
        text-align: left;
    }

    .why-inner p {
        margin-top: 0;
    }

    .why-image {
        width: 70px;
        height: 70px;
    }

    .why-image img {
        width: 100%;
        height: 100%;
    }

    .why-inner p {
        width: calc(100% - 90px);
    }

    .videos-container {
        max-width: 90%;
    }

    .videos-slider, .video-poster {
        height: 250px;
    }

    .video-wrapper span img {
        width: 65px;
    }

    .about-container {
        padding-block: 60px;
    }

    .cardinal-crane-logo img {
        width: 180px;
        margin-top: -25px;
    }


    .rob-cardinal {
        padding-block: 60px;
    }


    .contact-section {
        padding-top: 60px;
    }

    .contact-form {
        margin-top: 60px;
    }

    footer ul, .footer-menu {
        flex-wrap: wrap;
    }

    footer {
        padding-block: 60px;
    }

    .popup-confirmation {
        max-width: 315px;
        width: 90%;
        padding: 40px;
    }

    .popup-confirmation img {
        width: 80px;
        margin-bottom: 20px;
    }

    .popup-confirmation span {
        width: 25px;
        height: 25px;
        right: 5px;
        top: 5px;
    }

    .popup-confirmation span i {
        font-size: 12px;
    }

    .popup-confirmation h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        margin-bottom: 20px;
    }

    footer #social-menu li {
        padding-right: 0;
    }

    .default-section {
        padding: 150px 0 60px;
    }

    .default-section h1 {
        font-size: 40px;
        line-height: 120%;
        margin-bottom: 30px;
    }

    .vision-heading p {
        padding-left: 0;
    }
}

@media(max-width: 575px) {

    header nav {
        padding: 10px;
    }

    .logo-text {
        font-size: 18px;
        font-weight: 700;
        line-height: 23px;
    }

    h1 {
        font-size: 34px;
        font-weight: 700;
        line-height: 43px;
        letter-spacing: -2px;
    }


    h2 {
        font-size: 28px;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: -1px;
    }

    h3 {
        font-size: 24px;
        font-weight: 700;
        line-height: 31px;
    }

    h4 {
        font-size: 22px;
        font-weight: 700;
        line-height: 28px;
    }

    h5 {
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
    }

    p {
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
    }

    .hero-section {
        padding: 100px 0 35px;
    }


    .hero-section h1 span:first-of-type {
        font-size: 30px;
        font-weight: 700;
        line-height: 38px;
        letter-spacing: 0;
    }

    .hero-section h1 span:nth-of-type(2), .hero-section h1 .words span {
        font-size: 50px;
        font-weight: 800;
        line-height: 64px;
        letter-spacing: -3px;
    }

    .big-image:before, .big-image:after {
        background-image: url("/wp-content/uploads/2025/10/banner-decoration-mobile.svg");
        width: 277px;
        height: 10px;
    }

    .big-image:after {
        content: '';
        position: absolute;
        background-image: url("/wp-content/uploads/2025/10/baner-decorative-mobile-2.svg");
        top: 0;
        right: 0;
        bottom: unset;
        left: unset;
    }

    .big-image {
        height: 230px;
    }

    .industries-container {
        padding-block: 40px;
    }

    .industries-text {
        margin-top: 20px;
    }

    .industries-slide a {
        height: 190px;
    }

    .services-section {
        padding-top: 40px;
        padding-bottom: 260px;
    }

    .services-list {
        margin-top: 40px;
    }

    .inner-heading {
        margin-bottom: 10px;
        column-gap: 10px;
    }

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

    .inner-heading .services-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
    }

   .services-inner .services-text {
       font-size: 14px;
       font-weight: 400;
       line-height: 18px;
       letter-spacing: 0px;
    }

    .services-wrapper {
        padding-inline: 0;
    }

    section {
        padding-inline: 8px;
    }

    .services-section:before {
        background-image: url("/wp-content/uploads/2025/10/red-decoration-mobile-1.svg");
        width: 207px;
        height: 7px;
    }

    .first-container {
        padding-block: 40px;
    }

    .industries-served-list {
        padding: 0 0 40px;
    }

    .map-image {
        display: none;
    }

    .industries-served {
        margin-top: -220px;
    }

    .why-inner p {
        line-height: 18px;
    }

    .vision-container {
        padding-top: 15px;
    }

    .videos-container {
        max-width: calc(100% - 46px);
    }

    .videos-pagination {
        margin-top: 20px;
    }

    .videos-slider, .video-poster {
        height: 185px;
    }

    .about-container {
        padding: 30px 12px 40px
    }

    .about-heading, .vision-heading {
        text-align: center;
        margin-bottom: 20px;
    }

    .vision-column:first-of-type {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .bottom-effect {
        background-image: url("/wp-content/uploads/2025/10/decoration-bottom-mobile.svg");
        width: 207px;
        height: 7px;
    }

    .rob-cardinal {
        padding-block: 40px;
    }

    .rob-heading, .rob-cardinal-image {
        margin-bottom: 20px;
    }

    .rob-cardinal-image {
        width: 100%;
    }

    .contact-section {
        padding-top: 40px;
    }

    .contact-column:first-of-type {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .contact-form {
        margin-top: 40px;
        width: 100%;
        padding: 50px 20px 20px;
    }

    .contact-link {
        font-size: 23px;
        font-weight: 400;
        line-height: 31px;
    }

    .contact-link i {
        font-size: 20px;
    }

    .contact-link {
        column-gap: 10px;
    }

    .contact-section:before {
        background-image: url("/wp-content/uploads/2025/10/red-decoration-mobile-1.svg");
        width: 207px;
        height: 7px;
    }

    #social-menu, #privacy-menu {
        width: 100%;
    }

    .copyright-wrapper {
        order: 4;
        width: 100%;
        text-align: center;
    }

    footer ul li a, .footer-menu p, .footer-menu p a, .footer-menu span {
        padding-inline: 5px;
    }

    footer {
        padding-block: 30px;
    }

    footer #social-menu li a  {
        margin-bottom: 15px;
    }

    footer #social-menu {
        justify-content: center;
    }

    .default-section  h1 {
        font-size: 34px;
        font-weight: 700;
        line-height: 43px;
        letter-spacing: -2px;
    }

    .default-section {
        padding: 100px 0 40px;
    }
}

@media(max-width: 420px) {
    .industries-swiper {
        margin-inline: -150px !important;
    }

    #industries {
        overflow: hidden;
    }

}