:root {
    --primary-color: #0e3b59;
    --primary-font: "Space Grotesk", sans-serif;
    --secondary-font: "Manrope", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    position: sticky;
    top: 0;
    box-shadow: 0 1px 5px #aaa;
    z-index: 999999;
}
.loicon{
    flex-direction: row;
    flex-wrap: nowrap !important;
    
}

.navbar-light .navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

body {
    font-family: var(--primary-font);
}

img {
    max-width: 100%;
}

.space-grotesk-font {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.manrope-font {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.primary-bg-color {
    background-color: var(--primary-color) !important;
    border: none;
    border-radius: 0;
}

.primary-color {
    color: var(--primary-color) !important;
}

.navbar-light {
    background-color: #f6f2ef !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0040df;
}

a.btn-pri,
button.btn-pri {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;

}

/* Button Css */

a.btn-pri,
button.btn-pri {
    position: relative;
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); */
    padding-block: 10px;
    padding-inline: 20px;
    background-color: var(--primary-color);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: 400;
    border: none;
    outline: none;
    overflow: hidden;
    max-width: 200px;
    font-family: var(--secondary-font);
}

a.btn-pri.btn-all,
button.btn-pri.btn-all {
    padding-block: 15px;
    padding-inline: 30px;
    font-size: 28px;
    max-width: max-content;
}

form button.btn-pri {
    max-width: 100% !important;
    width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

a.btn-pri:hover,
button.btn-pri:hover {
    transform: scale(1.05);
    /* border-color: #fff9; */
}

button.btn-pri.btn-all {
    font-size: 20px !important;
}

form button.btn-pri:hover {
    transform: scale(1);
}

a.btn-pri:hover .icon,
button.btn-pri:hover .icon {
    transform: translate(4px);
}

a.btn-pri:hover::before,
button.btn-pri:hover::before {
    animation: shine 1.5s ease-out infinite;
}

a.btn-pri::before,
button.btn-pri::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.sec1 {
    background-color: #f6f2ef;
}

.sec2 {
    background-color: var(--primary-color);
}

.sec3 {
    background-color: #f6f2ef;
    font-family: var(--secondary-font);
}

.fs-1 {
    font-size: 48px !important;
    line-height: 61.25px;
}

.fs-p {
    font-size: 28px !important;
}

.lightcolor {
    color: #0e3b59c3 !important;
}

/* Form inputs */
.form-section {
    padding: 20px 20px 50px 20px;
    border-radius: 30px;

}


.input-container {
    position: relative;
    margin: 50px auto;
    width: 90%;
}

.input-container input {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
}

.input-container .label {
    position: absolute;
    top: 50%;
    left: 0;
    color: #0E3B594D;
    transition: all 0.3s ease;
    pointer-events: none;
    transform: translateY(-50%);
    font-size: 20px;
}

.input-container input:focus~.label,
.input-container input:valid~.label {
    top: -5px;
    font-size: 16px;
    color: #0E3B594D;
}

.input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: all 0.3s ease;
}

.input-container input:focus~.underline,
.input-container input:valid~.underline {
    transform: scaleX(1);
}


@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

.slide1 {
    background-image: url(../images/image\ 6.png);
    background-color: #E4EDF9;
    border-radius: 36px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fs-h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 57.37px;
}

.fs-pp {
    font-size: 24px;
    line-height: 32.78px;
    font-weight: 400;

}

.slick-dots {
    bottom: 10px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

.slick-dots li {
    margin: 0px;
}

.procs {
    font-size: 42px;
}

/* 
.case_study>div {
    margin-inline: 20px;
} */

.brandlogos {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 70px;

}

.brandlogos img {
    max-width: 100%;
}

.cass_img {
    border-radius: 27px;
}

footer {
    background-color: var(--primary-color);
    font-family: var(--secondary-font) !important;
}




button.btn-pri.btn-footer {
    position: relative;
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2); */
    padding-block: 10px;
    padding-inline: 20px;
    background-color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    gap: 10px;
    font-weight: 600;
    border: none;
    outline: none;
    overflow: hidden;
    max-width: unset;
    font-family: var(--secondary-font);
    width: 250px;
}


button.btn-pri.btn-all.btn-footer {
    padding-block: 15px;
    padding-inline: 30px;
    font-size: 28px;
    max-width: 300px;
}

button.btn-pri.btn-all.btn-footer {
    font-size: 20px !important;
}

form button.btn-pri.btn-footer:hover {
    transform: scale(1);
}



button.btn-pri.btn-footer:hover::before {
    animation: shine 1.5s ease-out infinite;
}


button.btn-pri.btn-footer::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            var(--primary-color),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

.sec5 {
    font-family: var(--primary-font);
}

.sec5 h3 {
    font-weight: 400 !important;
}

.sec5 h3 span {
    color: #0040df;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.layout222_item-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.icon-embed-medium {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
}

.spacer-xsmall {
    width: 100%;
    padding-top: 1rem;
}

.text-size-medium {
    font-size: 1.125rem;
}

.imgstick {
    position: sticky;
    top: 20px;
}

.imgstick img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: .5rem;
    width: 100%;
    height: 100%;
}

.modal-content {
    border-radius: 30px;
    font-family: var(--secondary-font);
    padding: 20px 10px;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}
.errormsg{
    width: 90%;
        margin: auto;
}
.slide {
  height: 100%;
  background-color: #ccc;
  padding: 10px;
}
.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
}

@media screen and (max-width: 768px) {

    .sec1,
    .sec2,
    .sec3,
    .sec5 {

        padding-block: 50px;
    }

    .fs-1 {
        font-size: 36px !important;
        line-height: 45px;
    }

    .fs-p {
        font-size: 22px !important;
    }

    a.btn-pri.btn-all,
    button.btn-pri.btn-all {
        padding-block: 15px;
        padding-inline: 30px;
        font-size: 22px;
        max-width: max-content;
    }

    .procs {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .fs-h2 {
        font-size: 32px;
        font-weight: 600;
        line-height: 42px;
    }

    .fs-pp {
        font-size: 18px;
        line-height: 27px;
        font-weight: 400;
    }

    .brandlogos {

        grid-template-columns: auto auto auto auto;
        gap: 15px;
    }

    .modal-body {

        padding: 0rem;
    }

    .imgstick {
        position: relative;
        top: 0;
    }
    .topbtn{
        font-size : 12px;
        padding: 10px !important;
    }
    .icon {
    width: 15px;
    height: 15px;
    
    }
}