*,::after,::before{
    box-sizing: border-box;
    outline: none;
}
:root{
    --color-primary: #072962;
    --color-primary-red: #D6372E;
    --color-bg: #F2F0F0;
    --color-bg-gray: #ebeef3;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    font-size: 16px;
    font-family: 'Lato';
    color: var(--color-primary);
}
::selection {
    background: rgba(214, 55, 46, 0.05);
    color: var(--color-primary-red);
}
img{
    max-width: 100%;
}
h1 strong,h1 b,h2 b,h3 b{
    font-size: 150%;
    color: var(--color-primary-red);
    line-height: 0;
}
a{
    text-decoration: none;
    color: var(--color-primary-red);
}
.overflow-hidden{
    overflow: hidden !important;
}
.si-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.si-logo-wrap{
    width: auto;
    height: 64px;
    display: flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 34px;
    gap: 12px;
}
.si-logo-wrap img{
    height: 100%;
}
.si-container{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1240px;
    padding-left: 15px;
    padding-right: 15px;
}
.si-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px 2.5%;
    z-index: 999;
    gap: 38px;
}
.si-header .si-contact-wrap{
    margin-left: auto;    
    padding: 6px 16px;
    background-color: #ffffff;
    border-radius: 50px;
}
.si-contact-wrap{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
}
.si-contact-wrap a{
    color: var(--color-primary);
}
.si-contact-number{
    background-color: var(--color-bg);
    padding: 2px 8px;
    border-radius: 12px;
}
.si-sticky{
    background-color: #ffffff;
    transition: all .3s;
    border-bottom: 1px solid #00000026;
}
.si-nav-btn{   
    padding: 8px 34px 8px 12px;
    background-color: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}
.si-nav-btn::before,.si-nav-btn::after{
    content: "";
    width: 3px;
    height: 24px;
    border-radius: 2px;
    background-color: var(--color-primary);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -ms-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) rotate(10deg);
}
.si-nav-btn::before{
    right: 22px;
}
.si-nav-btn.active::before,.si-nav-btn.active::after {
    right: 17px;
    transform: translateY(-50%) rotate(-135deg);
    height: 20px;
    width: 2px;
}
.si-nav-btn.active::after {
    transform: translateY(-50%) rotate(135deg);
}
.si-nav-wrap{
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 140px 32px 98px;
    overflow: hidden;
    z-index: 998;
    color: #ffffff;
    display: none;
}
.si-nav-wrap.active{
    display: block;
}
.si-nav-bg {
    position: absolute;
    width: 4%;
    height: 4%;
    background-color: var(--color-primary);
    right: -4%;
    top: -4%;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease, border-bottom-left-radius .8s ease-out, right .1s linear,top .1s linear,border-bottom-right-radius .8s ease-out,border-top-left-radius .8s ease-out,border-top-right-radius .1s ease;
    z-index: -1;
}
.si-nav-bg.active {
    width: 100%;
    height: 100%;
    border-radius: 0;
    right: 0;
    top: 84px;
}
.si-nav-wrap .si-nav-link,.si-nav-wrap .si-subnav-link{
    color: #ffffff;
    text-transform: capitalize;
    width: 100%;
    display: flex;
    transition: all 0.35s linear;
}
.si-nav-wrap .si-nav-link:hover,.si-nav-wrap .si-subnav-link:hover{
    color: var(--color-primary-red);
}
.si-nav-list-wrap{
    max-height: 100%;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: auto;
    list-style: none;
    user-select: none;
    opacity: 0;
    transition: 0.2s all;
    padding: 0;
}
.si-nav-list-wrap::-webkit-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.si-nav-list-wrap.active{
    opacity: 1;
}
.si-nav-link{
    font-size: 70px;
    line-height: 85px;
    font-family: 'Montserrat';
    font-weight: 800;
}
.has-sub-menu .si-nav-link{
    position: relative;
    padding-right: 48px;
}
.has-sub-menu .si-nav-link::after{
    content: '+';
    position: absolute;
    right: 12px;
    color: var(--color-primary-red);
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.has-sub-menu.active .si-nav-link::after{
    content: "-";
}
.si-subnav-list{
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    transition: all 0.4s ease-in;
    opacity: 0;
    overflow: hidden;
}
.has-sub-menu.active .si-subnav-list{
    opacity: 1;
}
.si-subnav-link{
    font-size: 22px;
    font-family: 'Lato';
    line-height: 1.5;
    padding: 4px 0;
}
.si-banner-section{
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.si-banner-image{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.si-banner-image svg{
    width: 100%;
}
.si-banner-content{
    flex-shrink: 0;
    padding-top: 100px;
    padding-bottom: 120px;
    max-width: 100%;
    position: relative;
}
.si-banner-heading{
    font-family: 'Montserrat';
    font-size: 62px;
    width: 100%;
    font-weight: 800;
    max-width: 600px;
    flex-shrink: 0;
    word-break: break-word;
}
.si-scroll-line{
    position: absolute;
    height: 90px;
    width: 2px;
    position: absolute;
    left: 44%;
    transform: translateX(-50%);
    bottom: -10px;
}
.si-scroll-line span:first-child {
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    animation: scrollLine 2s infinite;
    -moz-animation: scrollLine 2s infinite;
    -webkit-animation: scrollLine 2s infinite;
    -o-animation: scrollLine 2s infinite;
    bottom: 20%;
    left: 18%;
    display: block;
    width: 2px;
    height: 90px;
    background-color: #253069;
}
.si-scroll-line span:nth-of-type(2) {
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    animation: scrollLine-2 2s infinite;
    -moz-animation: scrollLine-2 2s infinite;
    -webkit-animation: scrollLine-2 2s infinite;
    -o-animation: scrollLine-2 2s infinite;
    bottom: 20%;
    left: 18%;
    display: block;
    width: 2px;
    height: 90px;
    background-color: #253069;
}

@-webkit-keyframes scrollLine { 0% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left top; transform-origin: left top } 20% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left top; transform-origin: left top } 20.1% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left bottom; transform-origin: left bottom } 60% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left bottom; transform-origin: left bottom } to { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left bottom; transform-origin: left bottom } } @keyframes scrollLine { 0% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left top; transform-origin: left top } 20% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left top; transform-origin: left top } 20.1% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left bottom; transform-origin: left bottom } 60% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left bottom; transform-origin: left bottom } to { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left bottom; transform-origin: left bottom } } @-webkit-keyframes scrollLine-2 { 0% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left top; transform-origin: left top } 40% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left top; transform-origin: left top } 80% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left top; transform-origin: left top } 80.1% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left bottom; transform-origin: left bottom } to { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left bottom; transform-origin: left bottom } } @keyframes scrollLine-2 { 0% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left top; transform-origin: left top } 40% { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left top; transform-origin: left top } 80% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left top; transform-origin: left top } 80.1% { transform: scale(1, 1); -moz-transform: scale(1, 1); -webkit-transform: scale(1, 1); -o-transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform-origin: left bottom; transform-origin: left bottom } to { transform: scale(1, 0); -moz-transform: scale(1, 0); -webkit-transform: scale(1, 0); -o-transform: scale(1, 0); -ms-transform: scale(1, 0); -webkit-transform-origin: left bottom; transform-origin: left bottom } }

.si-section{
    padding-top: 80px;
    padding-bottom: 80px;
}
.si-about-section{
   overflow: hidden;
}
.si-about-section .si-row{
    gap: 48px 64px;
}
.si-about-content{
    flex-shrink: 0;
    max-width: 70%;
}
.si-about-intro{
    font-size: 28px;
    line-height: 1.8;
}
.si-section-title{
    font-size: 24px;
    font-family: 'Montserrat';
    font-weight: 800;
    position: relative;
    padding-left: 16px;
}
.si-section-title::before{
    content: "";
    width: 3px;
    height: 90%;
    left: 0;
    top: 5%;
    position: absolute;
    background-color: var(--color-primary-red);
}
.si-about-image-wrap img{
    opacity: .4;
}
.si-service-section{
    background-color: var(--color-primary);
    background-image: url("../media/ad.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom left;
    overflow: hidden;
}
.si-service-section{
    color: #ffffff;
}
.si-service-section .si-row{
    gap: 48px 64px;
    align-items: flex-start;
}
.si-service-title{
    font-family: 'Montserrat';
    font-weight: 800;
    font-size: 84px;
}
.si-service-para, .si-privacy-para{
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: .8px;
}
.pre-para-art{
    width: 152px;
    margin-bottom: 32px;
}
.si-services-grid{
    margin: 120px 0;
    display: grid;
    gap: 72px 32px;
    grid-template-columns: repeat(auto-fill, minmax(308px, 1fr));
}
.si-service-category{
    display: flex;
    flex-flow: column wrap;
}
.si-service-list-title{
    margin: 0;
    font-size: 30px;
    font-family: 'Montserrat';
    font-weight: 600;
    display: flex;
    align-items: flex-end;
}
.si-service-list-title b{
    line-height: 1;
}
.si-service-list{
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    margin-top: 36px;
    flex: 1;
}
.si-service-list li{
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s linear;
}

.si-approach-section,.si-contact-section{
    position: relative;
}
.si-approach-section:before,.si-contact-section::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: -64px;
    width: 100%;
    height: 200px;
    background-color: #fff;
    transform: skewY(-4deg);
    -moz-transform: skewY(-4deg);
    -webkit-transform: skewY(-4deg);
    -o-transform: skewY(-4deg);
    -ms-transform: skewY(-4deg);
    z-index: 0;
}
.si-contact-section,.si-contact-section::before{
    background-color: var(--color-bg);
}

.si-approach-section .si-row,.si-contact-section .si-row{
    margin-bottom: 120px;
    align-items: flex-start;
    gap: 42px 64px;
}
.si-approach-title{
    font-size: 90px;
    font-family: 'Montserrat';
    font-weight: 800;
    word-break: break-word;
    margin: 0;
}
.si-approach-para{
    position: relative;
    font-size: 30px;
    line-height: 1.6;
}
.si-approach-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 28px 48px;
    margin-bottom: 120px;
}
.si-approach-item{
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    align-items: center;
}
.si-approach-item img{
    height: 120px;
}
.si-approach-name{
    font-size: 50px;
    font-family: 'Montserrat';
    line-height: 1.2;
    margin: 0 0 38px;
    display: inline-flex;
    font-weight: 800;
    position: relative;
    transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
}
.si-approach-name sup{
    position: absolute;
    top: 0;
    font-size: .3em;
    font-family: "Lato";
    left: -1.5em;
    display: block;
}
.si-approach-name::before,.si-approach-name::after{
    content: "";
    top: 50%;
    right: -40px;
    transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: block;
    position: absolute;
    width: 12px;
    height: 3px;
    background-color: var(--color-primary-red);
}
.si-approach-name:after {
    top: 50%;
    right: -40px;
    transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -o-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
}
.si-approach-item.active .si-approach-name::before,.si-approach-item.active .si-approach-name::after{
    transform: translate(-50%, -50%) rotate(180deg);
    -moz-transform: translate(-50%, -50%) rotate(180deg);
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -o-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
}

.si-approach-detail{
    font-size: 16px;
    transform: scale(0.35, 0.25) rotateX(15deg) rotateZ(20deg) translateY(150px) translateX(-50px);
    -moz-transform: scale(0.35, 0.25) rotateX(15deg) rotateZ(20deg) translateY(150px) translateX(-50px);
    -webkit-transform: scale(0.35, 0.25) rotateX(15deg) rotateZ(20deg) translateY(150px) translateX(-50px);
    -o-transform: scale(0.35, 0.25) rotateX(15deg) rotateZ(20deg) translateY(150px) translateX(-50px);
    -ms-transform: scale(0.35, 0.25) rotateX(15deg) rotateZ(20deg) translateY(150px) translateX(-50px);
    transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 350ms cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0;
    text-align: left;
    flex: 1;
    margin: 0;
}
.si-approach-item.active .si-approach-detail{
    opacity: 1;
    transform: scale(1, 1) rotateX(0deg) rotateZ(0deg) translateY(0) translateX(0);
    -moz-transform: scale(1, 1) rotateX(0deg) rotateZ(0deg) translateY(0) translateX(0);
    -webkit-transform: scale(1, 1) rotateX(0deg) rotateZ(0deg) translateY(0) translateX(0);
    -o-transform: scale(1, 1) rotateX(0deg) rotateZ(0deg) translateY(0) translateX(0);
    -ms-transform: scale(1, 1) rotateX(0deg) rotateZ(0deg) translateY(0) translateX(0);
}

.si-contact-card{
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    padding: 48px;
    position: relative;
    width: 100%;
    max-width: 580px;
}
.si-contact-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.si-form-field{
    width: 100%;
    border: none;
    color: var(--color-primary);
    padding: 22px 30px;
    border-radius: 2px;
    font-size: 16px;
    background-color: #F7FBFF;
    font-family: 'Lato';
    resize: none;
    border-radius: 2px;
}
.si-validation-error{
    color: var(--color-primary-red);
    font-size: 14px;
    margin: 0;
    line-height: 2.5;
    font-family: 'Montserrat';
    font-weight: 600;
    margin-bottom: -12px;
}
input[type="submit"]{
    background-color: var(--color-primary-red);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    font-family: 'Montserrat';
    font-weight: 600;
    border-radius: 2px;
    line-height: 1.5;
}
.si-footer{
    border-top: 1px solid #00000026;
}
.si-footer-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 16px;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
}
.si-review-wrap{
    min-width: 180px;
    position: relative;
    padding-left: 96px;
    height: 50px;
}
.si-review-wrap::before{
    content: "reviewed on";
    font-size: 11px;
    line-height: 1;
    color: #00000099;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    position: absolute;
    top: 4px;
    left: 0;
    width: 90px;
    text-align: left;
}
.si-review-wrap::after{
    content: "";
    height: calc(100% - 22px);
    width: 80px;
    background-image: url("../media/clutch-logo.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0;
}
.si-review-wrap[data-variant="google"]::after{
    background-image: url("../media/google.svg");
}
.si-review-number{
    letter-spacing: 0.4px;
    font-size: 12px;
    color: #00000099;
    position: absolute;
    bottom: 5px;
    left: 96px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}
.si-review-number::before{
    content: attr(data-value);
    margin-right: 4px;
}
.si-star{
    width: 80px;
    height: 20px;
    background-image: url(../media/star-blank.png);
    background-size: 100%;
    background-position: center left;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
}
.si-star::after{
    content: "";
    width: 80px;
    height: 20px;
    background-image: url(../media/star-fill.png);
    background-size: 80px;
    background-position: center left;
    position: absolute;
    overflow: hidden;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}
.si-star[data-value="4.5"]::after{
    width: calc(80px - 7.5px);
}
.si-star[data-value="4"]::after{
    width: calc(80px - 16px);
}
.si-star[data-value="3.5"]::after{
    width: calc(80px - 23.5px);
}
.si-star[data-value="3"]::after{
    width: calc(80px - 32px);
}
.si-star[data-value="2.5"]::after{
    width: calc(80px - 40px);
}
.si-star[data-value="2"]::after{
    width: calc(80px - 48px);
}
.si-star[data-value="1.5"]::after{
    width: calc(80px - 56px);
}
.si-star[data-value="1"]::after{
    width: calc(80px - 64px);
}
.si-inner-banner-section{
    margin-top: 96px;
    padding: 70px 0;
    background-color: var(--color-primary);
}
.si-banner-title{
    color: #ffffff;
    font-size: 40px;
    text-align: center;
}
.si-footer-badge{
    display: flex;
    height: 45px;
}
.si-footer-badge img{
    height: 100%;
}

.si-footer-contact-tile{
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}
.si-footer-contact-tile a,.si-footer-contact-tile span{
    color: var(--color-primary);
    width: 100%;
    display: block;
    margin-bottom: 4px;
    opacity: .8;
}
.si-footer-contact-tile::before{
    content: "";
    height: 28px;
    width: 3px;
    background-color: #00000026;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 2px;
}

.si-footer-inner .si-footer-contact-tile{
    width: 25%;
}
.si-footer-inner .si-review-wrap{
    width: 20%;
}
.si-copyright-wrap{
    width: 100%;
    color: var(--color-primary);
    opacity: .8;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 24px;
}
.si-copyright-wrap a{
    color: var(--color-primary);
    opacity: .8;
}
.si-copyright-wrap a:hover{
    text-decoration: underline;
}

@media(max-width: 1200px){
    .si-row{
        flex-wrap: wrap;
    }
    .si-section-title{
        font-size: 18px;
    }
    .si-about-intro{
        font-size: 22px;
    }
    .si-about-content{
        max-width: 100%;
    }
    .si-about-image-wrap{
        display: none;
    }
    .si-approach-item{
        width: calc(50% - 24px);
    }
    .si-contact-card{
        padding: 20px;
    }
    .si-contact-section .si-row{
        margin-bottom: 42px;
    }
}
@media(min-width:1201px){
    .si-service-list li:hover{
        transform: scale(1.1);
    }
    .pre-para-art{
        margin-top: 210px;
    }
    .si-approach-para{
        margin-top: 20px;
        max-width: 600px;
    }
    .si-approach-grid{
        justify-content: center;
    }
    .si-approach-item{
        width: calc(33.33% - 32px);
    }
    .si-contact-card{
        margin-top: 200px;
    }
}
@media(max-width:600px){
    .si-header{
        gap: 12px;
        padding: 10px 12px;
    }
    .si-logo-wrap{
        width: 48px;
        font-size: 24px;
    }
    .si-header .si-contact-wrap{
        display: none;
    }
    .si-banner-heading,.si-service-title,.si-approach-title{
        font-size: 42px;
    }
    .si-service-section{
        background-size: 200%;
    }
    .si-service-para,.si-approach-para{
        font-size: 18px;
    }
    .si-nav-link{
        font-size: 30px;
        line-height: 2;
        font-weight: 700;
    }
    .si-approach-section .si-row,.si-service-section .si-row{
        gap: 24px;
    }
    .pre-para-art{
        width: 72px;
    }
    .si-copyright-wrap{
        justify-content: flex-start;
    }
    .si-copyright-wrap span{
        width: 100%;
        text-align: left;
    }
    .si-copyright-wrap a{
        width: max-content;
        text-align: left;
    }
    .si-copyright-wrap span{
        order: 3;
    }
    .si-banner-title{
        font-size: 24px;
    }
}
@media(max-width:768px){
    .si-approach-item{
        flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        border-bottom: 1px solid var(--color-bg-gray);
        padding: 16px 0;
        width: 100%;
    }
    .si-approach-grid{
        gap: 0;
    }
    .si-approach-name{
        margin-bottom: 0;
        margin-left: 18px;
        font-size: 34px;
        width: calc(100% - 75px - 18px);
    }
    .si-approach-item img{
        height: 75px;
    }
    .si-approach-name::before, .si-approach-name::after,.si-approch-tile.active .si-approach-name:after{
        right: 0;
    }
    .si-approach-detail{
        height: 0;
    }
    .si-approach-item.active .si-approach-detail{
        height: calc(100% - 75px);
        margin-bottom: 16px;
    }
    .si-footer-inner .si-footer-contact-tile{
        width: 100%;
    }
}
@media(min-width:769px){
    .si-approach-item.active .si-approach-name{
        transform: scale(0.8);
        -moz-transform: scale(0.8);
        -webkit-transform: scale(0.8);
        -o-transform: scale(0.8);
        -ms-transform: scale(0.8);
    }
}