@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

a,
a:hover,
button,
header {
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
}

body {
    font-family: "Inter", sans-serif;
    background: #FFFFFF;
    color: #1F2332;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}


.btn-white-small {
    background: #FFFCEA;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    color: #1F2332;
    display: inline-block;
}

.btn-white-small:hover {
    background: #1F2332;
    color: #FFFCEA;
}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

.service-card .services-card-image {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    object-fit: cover;
    object-position: top;
}

.service-card-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 24px;
    z-index: 2;
    position: relative;
}

.service-card-info h3 {
    font-size: 32px;
    font-weight: bold;
}

.service-card-info .service-hover h4 {
    font-size: 20px;
    font-weight: 500;
}

.service-card-info .service-hover ul {
    margin: 10px 0 20px 0;
    list-style: disc;
    padding-left: 20px;
}

.service-hover {
    opacity: 0;
}

.service-hover p {
    color: #1F2332;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-hover .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #1F2332;
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 500;
}

.service-yellow-bg {
    opacity: 0;
    z-index: 1;
    background-color: #ffa500;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.process-list {
    gap: 34px;
}

.process-list li {
    flex: 1;
    padding-right: 34px;
    position: relative;
}

.process-list li::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
    background: linear-gradient(90deg, #26292B 0%, #101112 100%);
}

.process-list li:last-child {
    padding-right: 0px;
}

.process-list li:last-child::after {
    display: none;
}

.process-list li.step2 {
    padding-top: 97px;
}

.process-list li.step3 {
    padding-top: 197px;
}

.process-list li.step4 {
    padding-top: 297px;
}

.process-list .process-number {
    background: linear-gradient(90deg, #26292B 0%, #101112 100%);
    padding: 12px 32px;
    border-radius: 20px;
}

.process-list .process-number span {
    font-size: 20px;
    color: #FFFFFF;
}

.process-list .process-number h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 6px;
    color: #FFFFFF;
}

.process-list li p {
    color: #FFFFFF;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

.custom-cta-area {
    background: #FFA500 url(../images/work-cta-bg.png) center right no-repeat;
    padding: 70px 42px;
    border-radius: 24px;
}

.scrolled {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}