@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.woff2') format('woff2'),
        url('assets/fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('assets/fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Bold.woff2') format('woff2'),
        url('assets/fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Medium.woff2') format('woff2'),
        url('assets/fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
}

:root {
    --primary-color: #3A3A3A;
    --Secondary-color: #01061F;
    --accent-color: #029F4A;
    --white-color: #fff;
    --primary-blue: #0641B1;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--Secondary-color);
    line-height: 1.2;
    margin: 0 0 15px;
    font-weight: 600;

}
p {
    margin: 0 0 15px;
}
p:last-child {
    margin: 0;
}
h1,
.h1 {
    font-size: 42px;
    margin: 0 0 25px;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 27px;
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 18px;
}

h6,
.h6 {
    font-size: 16px;
}
.relative {
    position: relative;
}
h1 span, h2 span {
    color: var(--accent-color);
}
a.btn {
    border-radius: 5px;
    background: var(--accent-color);
    color: var(--white-color);
    padding: 8px 23.38px;
    text-align: center;
    border: 1px solid var(--accent-color);
}
img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
    max-width: max-content;
    object-fit: contain;
}
a.btn:hover {
    background: transparent;
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: 1305px;
    margin: auto;
    padding-inline: 15px;
}

.flex {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.items-start {
    align-items: flex-start;
}
.space-between {
    justify-content: space-between;
}
/* header */
header {
    padding: 10px 0;
}

ul.nav {
    padding: 0;
    margin: 0 20px 0 0;
    list-style: none;
}

ul.nav li a {
    padding: 6px 10px;
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

ul.nav li a:hover, ul.nav li a.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.logo {
    flex: 0 0 100%;
    max-width: 265px;
}

.navigation {
    flex: 0 0 100%;
    max-width: 75%;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.pd-medium {
    padding: 60px 0;
}
/* banner */
.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.banner-sec .container {
    position: relative;
    padding: 126px 15px 50px;
}
.banner-sec {
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-content {
    max-width: 41%;
    color: var(--white-color);
}
.banner-content h1 {
    color: var(--white-color);
}
.icon-list-item .icon {
    width: 56px;
    height: 56px;
    border: 1px solid #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.icon-list-item .text {
    flex: 0 0 100%;
    max-width: calc(100% - 76px);
}
.icon {
    width: 56px;
    height: 56px;
    border: 1px solid #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}
.icon-list-item > .text {
    flex: 0 0 100%;
    max-width: calc(100% - 76px);
}
p.title {
    margin: 0;
    color: var(--accent-color);
    font-weight: 600;
}
.icon-list-item {
    margin-bottom: 25px;
    align-items: flex-start;
}
.icon-list {
    max-width: 289px;
    margin: 35px 0 0;
}
.icon-list-item .text .icon-text {
    font-size: 15px;
}
.banner-text {
    max-width: 446px;
}
.product-col {
    flex: 0 0 100%;
    max-width: 57%;
    align-items: baseline;
}
/* .product-wrap img {
    width: 100%;
    max-width: max-content;
} */
.product-text {
    color: var(--white-color);
}
.product-col >* {
    max-width: calc(100% / 2 - 10px);
    flex: 0 0 100%;
    text-align: center;
}
.tag-btn a {
    border: 1px solid #276BC5;
    border-radius: 50px;
    color: var(--white-color);
    background: transparent linear-gradient(180deg, #1A5BB8 0%, #0141A3 100%) 0%;
    padding: 3.5px 12px;
    min-width: 118px;
    font-size: 15px;
    text-align: center;
    margin: 0 0 10px;
}
a.simple-link {
    padding: 5px;
}
a.btn.arrow-btn:hover img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(86%) saturate(2163%) hue-rotate(129deg) brightness(90%) contrast(107%);
}
a.arrow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.product-title {
    margin: 0 0 2px;
    font-size: 15px;
}
a.arrow-btn img {
    max-width: 17px;
    transition: all 0.3s ease;
}
a.arrow-btn:hover img {
    transform: translateX(8px);
}
/* footer */
footer {
    background: #011C40;
    padding: 60px 0 29px;
}
footer h3 {
    color: var(--white-color) !important;
}
footer p, footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer ul li a {
    padding: 4px 0;
}
footer ul li a:hover {
    color: var(--accent-color);
}
.social-link {
    border: 1px solid rgba(255, 255, 255, 0.87);
    display: inline-flex;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 5px;  
}
.social-link img {
    opacity: 0.87;
}
.social-icons {
    margin: 38px 0 0;
}
.icon-wrap {
    display: inline-block;
    line-height: 1;
    height: 22px;
}
.contact-detail {
    gap: 11px;
    margin-bottom: 12px;
}
.contact-detail:last-child {
    margin: 0;
}
.copyright {
    text-align: center;
    margin-top: 45px;
}

.copyright p {
    font-size: 14px;
}
.inner-footer >* {
    flex: 0 0 100%;
    max-width: 20%;
    border-right: 1px solid rgba(255, 255, 255, 0.31);
    padding: 0 30px;
}
.inner-footer {
    align-items: stretch;
    gap: 0;
}
.inner-footer >*:last-child {
    padding-right: 0;
    border-right: none;
}
.inner-footer >*:nth-child(1) {
    max-width: 22%;
    padding-left: 0;
}
.footer-col .logo {
    max-width: 245px;
    margin: 0 0 20px;
}
/* .logo img {
    width: 100%;
    max-width: max-content;
} */

.inner-footer >*:first-child a {
    font-weight: 600;
    color: var(--accent-color);
}

.inner-footer >*:nth-child(2) {
    max-width: 15%;
}

.inner-footer >*:nth-child(5) {
    max-width: 16%;
}

.inner-footer >*:nth-child(4) {
    max-width: 25.5%;
}
.footer-col h3 {
    margin-bottom: 18px;
}
/* trusted sec */
.trusted-sec {
    background: #0041A3;
}
.globe-text * {
    color: var(--white-color);
}
.globe-text ul {
    display: inline-flex;
    padding-left: 20px;
    gap: 35px;
    margin: 0;
}
/* .globa-left {
    flex: 0 0 100%;
    max-width: 77%;
} */
.globe-img {
    flex: 0 0 100%;
    max-width: 268px;
}
.globe-text {
    flex: 0 0 100%;
    max-width: 59%;
}
.globe-btn.mobile {
    display: none;
}
.heading-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.top-title {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    position: relative;
    display: inline-block;
}
.top-title:before, .top-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    top: 50%;
    transform: translateY(-50%);
}
.top-title:before {
    left: -55px;
}
.top-title:after {
    right: -55px;
}
.solution-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.single-box {
    box-shadow: 0px 1px 8px #00000026;
    border-radius: 10px;
    padding: 30px;
    background: var(--white-color);
    display: flex;
    gap: 10px;
    align-items: center;
}
.left-text h3 {
    color: #0B5CDA;
    margin: 0 0 10px;
}
.left-text h4 {
    color: var(--primary-color);
}
.left-text ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.left-text .btn-wrap {
    margin-top: 38px;
}
.left-text ul li {
    position: relative;
    font-weight: 500;
    padding-left: 29px;
    margin: 0 0 10px;
}

.left-text ul li:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('assets/img/check.png');
    left: 0;
    top: 4px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.left-text {
    flex: 0 0 100%;
    max-width: 58%;
}

.right-img {
    flex: 0 0 100%;
    max-width: 40%;
    text-align: center;
}
/* .right-img img {
    width: 100%;
    max-width: max-content;
} */
.icon-sec {
    background: #011C40;
}
.icon-sec-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.icon-box {
    text-align: center;
    border-right: 1px solid var(--accent-color);
    padding-right: 35px;
}
.icon-box * {
    color: var(--white-color);
}
.icon-box:last-child {
    border: none;
    padding: 0;
}
.icon-img {
    margin: 0 0 20px;
}
.icon-sec h2 {
    color: var(--white-color);
}
/* four column layout */
.four-col-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.single-col {
    box-shadow: 0px 3px 6px #00000014;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}
.text-wrap {
    padding: 0 20px 20px;
    text-align: center;
    margin-top: -39px;
    position: relative;
}

.featured-icon {
    background: var(--primary-blue);
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white-color);
    border-radius: 50px;
}
.four-col-sec .heading-wrapper h2 {
    color: var(--primary-blue);
}
.single-col h3 {
    color: var(--primary-blue);
}
.single-col a.simple-link {
    color: var(--primary-blue);
    font-weight: 500;
}
.single-col a.simple-link img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(2690%) hue-rotate(215deg) brightness(88%) contrast(97%);
}
.featured-img img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}
/* inner page banner */
.inner-page-banner {
    background: transparent linear-gradient(90deg, #012158 0%, #4A8FEE 100%);
    text-align: center;
    min-height: 251px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-page-banner h1 {
    color: var(--white-color);
    margin: 0;
}
/* two column layout */
.two-col-wrap >* {
    flex: 0 0 100%;
    max-width: 48%;
}
.image-col img {
    border-radius: 7px;
}
.two-col-wrap h2 {
    color: #113979;
}

.two-col-wrap h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.two-col-wrap .left-text {
    max-width: 502px;
}
/* specification table  */
.specifications {
    background: #FAFAFA;
}
.spec-table{
    width:100%;
    border-collapse:collapse;
}
.spec-table th, .spec-table td{
    padding: 14px 0px;
    border-top: 1px solid #CCCCCC;
    vertical-align:middle;
    text-align:left;
}
.spec-table th{
    color:#0d3b8e;
    font-weight: 500;
    width:25%;
}
.spec-table td{
    width:25%;
    padding: 14px 20px;
}
.spec-table th:nth-child(3), .spec-table td:nth-child(3){
    border-left:1px solid #e5e5e5;
    padding-left: 30px;
}
.spec-card {
    box-shadow: 0px 8px 25px #00000005;
    border: 1px solid #CCCCCC;
    border-radius: 7px;
    padding: 24px 39px;
    max-width: 1179px;
    margin: auto;
}
.spec-card h3 {
    color: #113979;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
}
.icon-with-text-wrap .col {
    box-shadow: 0px 0px 8px #0000001A;
    border-radius: 5px;
    padding: 58px 20px;
    text-align: center;
    color: #153F81;
}
.icon-with-text-wrap .icon-col {
    margin: 0 0 20px;
}
.icon-with-text-wrap {
    gap: 40px;
}
.icon-with-text .heading-wrapper h3 {
    color: #113979;
}
.download-setup .globe-img {
    max-width: 54px;
}

.download-setup .globe-text {
    max-width: 67%;
}

.download-setup {
    max-width: 1100px;
    margin: auto;
}
.download-setup .globe-btn {
    max-width: 257px;
    flex: 0 0 100%;
}
/* three col section */
.content-wrap {
    padding: 20px;
}
.three-col-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.industries-listing {
    background: #FAFAFA;
}



/* CSS Styling to match your NAKAGAWA Global-T. website Contact Page */
.swm-contact-page-wrapper {
    background-color: #ffffff;
    padding: 60px 20px;
    
}

.swm-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Top Content Section */
.swm-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.swm-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.swm-page-subtitle {
    font-size: 18px;
    color: #555555;
   
    margin: 0 auto;
    line-height: 1.5;
}

/* Two Columns Layout */
.swm-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

/* Left Column - Contact Info */
.swm-contact-info {
    flex: 1;
    min-width: 260px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 35px 30px;
}

.swm-info-card {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.swm-info-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.swm-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.swm-info-detail {
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.swm-info-detail a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.swm-info-detail a:hover {
    color: #1e5a38;
    text-decoration: underline;
}

/* Right Column - Contact Form 7 */
.swm-contact-form {
    flex: 1.5;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.swm-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

/* Styling for Contact Form 7 Fields */
.swm-contact-form .wpcf7-form p {
    margin-bottom: 20px;
}

.swm-contact-form .wpcf7-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
}

.swm-contact-form .wpcf7-form input,
.swm-contact-form .wpcf7-form textarea,
.swm-contact-form .wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
}

.swm-contact-form .wpcf7-form input:focus,
.swm-contact-form .wpcf7-form textarea:focus {
    outline: none;
    border-color: #2c7a4d;
    box-shadow: 0 0 0 3px rgba(44, 122, 77, 0.1);
}

.swm-contact-form .wpcf7-submit {
    background: #029f4a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.swm-contact-form .wpcf7-submit:hover {
    background: #00000000;
	color: #029f4a;
}

.swm-contact-form .wpcf7-submit:active {
    transform: scale(0.97);
}

/* Responsive */
@media (max-width: 768px) {
    .swm-contact-page-wrapper {
        padding: 40px 16px;
    }
    
    .swm-page-title {
        font-size: 32px;
    }
    
    .swm-two-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .swm-contact-info,
    .swm-contact-form {
        width: 100%;
        padding: 25px 20px;
    }
}

/* Simple AJAX Loader for CF7 */
.wpcf7 .ajax-loader {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}




section.defult-page.py-60 {
    padding: 60px 0;
}
/* end css contact page */


/* how it works */
.border-icon {
    width: 103px;
    height: 103px;
    border: 1px solid #0041A3;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0 auto 15px;
}
.border-icon.green {
    border-color: #0D7F36;
}
.work-col {
    text-align: center;
}

.work-col-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.work-col .title {
    font-size: 16px;
    color: #113979;
    margin: 0 0 10px;
}
@media(max-width:1199px){
.inner-footer >* {
    padding: 0 20px;
}

footer p, footer a {
    font-size: 14px;
}
.globe-btn {
    flex: 0 0 100%;
    max-width: 218px;
}
.globe-text ul {
    flex-wrap: wrap;
    gap: 7px 32px;
}
.globe-text {
    max-width: 46%;
}
.download-setup {
    max-width: 100%;
}
.download-setup .globe-text {
    max-width: 64%;
}
}

@media (max-width:1024px) {
    .menu-toggle {
        display: block;
    }
    ul.nav li a {
        border: none;
    }
    .navigation {
        max-width: 100%;
        display:none;
        width:100%;
    }
    .navigation.active {
        display: flex;
    }
   ul.nav {
        width: 100%;
        gap: 0;
        margin: 0;
    }
    .nav li {
        width: 100%;
    }

    .nav li a {
        display: block;
        padding: 10px 0;
    }

    .btn-wrap {
        width: 100%;
    }

    .btn {
        display: inline-block;
    }

    .logo img {
        max-width: 180px;
        height: auto;
    }
    .inner-footer >* {
        max-width: calc(100% / 3 - 16px) !important;
        border: none;
        padding: 0;
    }
    .inner-footer {
        justify-content: flex-start;
        gap: 30px 24px;
    }
    .globe-text {
        max-width: calc(100% - 292px);
    }
    .globe-btn.mobile {
        display: block;
        margin-top: 30px;
    }
    .globe-btn.desktop {
        display: none;
    }
    .banner-content {
        max-width: 100%;
    }
    .icon-list {
        max-width: 389px;
    }

    .product-col {
        max-width: 100%;
    }
    .banner-sec .container {
        padding: 60px 15px 40px;
    }
    .solution-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .icon-box {
        padding-right: 25px;
    }
    .icon-sec-wrap {
        gap: 25px;
    }
    .text-wrap {
    padding: 0 14px 14px;
}
.four-col-wrap {
    gap: 16px;
}
.download-setup .globe-text {
    max-width: calc(100% - 80px);
}
.three-col-wrap {
    gap: 20px;
}
}
@media(max-width:991px){
.icon-box h3 {
    font-size: 16px;
}
.icon-box p {
    font-size: 14px;
}
.four-col-wrap, .three-col-wrap, .work-col-wrap  {
    grid-template-columns: repeat(2, 1fr);
}
.spec-card {
    padding: 20px;
}
.icon-with-text-wrap {
    grid-template-columns: repeat(4, 1fr);
}
.icon-with-text-wrap .col {
    padding: 40px 17px;
}
}
@media(max-width:767px){
    .pd-medium {
        padding: 40px 0;
    }
    body {
        font-size: 14px;
    }
    h1, .h1, h2, .h2 {
        font-size: 32px;
    }
    h3, .h3 {
        font-size: 22px;
    }
    .logo {
        max-width: 155px;
    }
    .inner-footer >* {
        max-width: calc(100% / 2 - 12px) !important;
        border: none;
        padding: 0;
    }
    footer {
        padding: 40px 0 20px;
    }
    .social-icons {
        margin: 25px 0 0;
    }
    .copyright p {
        font-size: 12px;
    }
    .copyright {
        margin-top: 35px;
    }
    .globe-img, .globe-text {
        max-width: 100%;
}
.icon-list-item .icon {
    width: 45px;
    height: 45px;
}

.icon-list-item .icon img {
    max-width: 28px;
    height: 25px;
    object-fit: contain;
}

.icon-list-item > .text {
    max-width: calc(100% - 65px);
}
.product-col {
    gap: 10px;
}
.product-col >* {
    max-width: calc(100% / 2 - 5px);
}
.product-title {
    font-size: 14px;
}
.banner-sec .container {
    padding: 40px 15px 30px;
}
.single-box {
    padding: 20px;
    flex-wrap: wrap;
}
.single-box >* {
    max-width: 100%;
}
.top-title {
    font-size: 16px;
}
.top-title:before {
    left: -40px;
}

.top-title:before, .top-title:after {
    width: 32px;
}

.top-title:after {
    right: -40px;
}
.icon-sec-wrap, .three-col-wrap  {
    grid-template-columns: repeat(1, 1fr);
}

.icon-box {
    border-right: 0;
    border-bottom: 1px solid var(--accent-color);
    padding-right: 0;
    padding-bottom: 25px;
}
.four-col-wrap {
    grid-template-columns: repeat(1, 1fr);
}
.two-col-wrap >* {
    max-width: 100%;
}
.image-col {
    order: 1;
}
.spec-table {
    width: 800px;
}
.table-wrapper {
    overflow: auto;
}
.spec-card {
    padding: 0;
}
.spec-table th, .spec-table td {
    padding: 13px 15px;
}
.spec-card h3 {
    font-size: 18px;
    padding: 15px;
    margin: 0;
}
.icon-with-text-wrap {
    grid-template-columns: repeat(2, 1fr);
}
.icon-with-text-wrap .col {
    padding: 30px 14px;
}
.inner-page-banner {
    min-height: 185px;
}
.border-icon {
    width: 90px;
    height: 90px;
}
}
@media(max-width:500px){
    .inner-footer >* {
        max-width: 100% !important;
    }
    .work-col-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}