@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700,800&display=swap);
@import url(../fonts/bignoodletitling_font.css);

* {
    margin: 0;
    padding: 0;

}

:root {
    --clr-white: hsl(0, 0%, 100%);
    --clr-Off-white: hsl(0, 0%, 96%);
    --clr-grey: hsl(0, 0%, 55%);
    --clr-black: rgba(81, 82, 83, 1);
    --clr-black-blue: hsl(234.7, 45.9%, 14.5%);
    --clr-blue-bright: rgb(8 189 232);
    --clr-blue: #0c83d1;
    --clr-blue-dark: rgb(7 155 203);
    --clr-orange: hsl(25, 100%, 60%);
    --clr-red: #f54748;
    --clr-green: #8dc96b;
    --shadow-light: 0 0 20px hsla(0, 0%, 0%, 0.05);
    --shadow-small: 0 0 20px hsla(0, 0%, 0%, 0.09);
    --shadow-regular: 7px 7px 20px hsla(0, 0%, 0%, 0.07);
    --gradient-transparent: linear-gradient(to bottom right, transparent, var(--clr-white));
    --gradient-blur: linear-gradient(to bottom right, hsla(0, 0%, 100%, 0.7), var(--clr-white));
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "BigNoodleTitling";
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 900;
    --fs-xs: clamp(15rem, 1.04vw, 16rem);
    --fs-small: clamp(16.5rem, 1.17vw, 18rem);
    --fs-regular: clamp(17.75rem, 1.3vw, 20rem);
    --fs-medium: clamp(21rem, 1.62vw, 25rem);
    --fs-large: clamp(38rem, 2.92vw, 45rem);
    --fs-xl: clamp(62rem, 5.53vw, 82rem);
    --fs-bg: clamp(180rem, 13.99vw, 215rem);
    --lh-xs: clamp(22rem, 1.69vw, 26rem);
    --lh-small: clamp(24rem, 1.82vw, 28rem);
    --lh-regular: clamp(27rem, 2.08vw, 32rem);
    --lh-medium: clamp(32rem, 2.27vw, 35rem);
    --lh-large: clamp(48rem, 3.58vw, 55rem);
    --lh-xl: clamp(72rem, 5.85vw, 87rem);
    --lh-bg: clamp(190rem, 14.64vw, 225rem);
    --pad-page: 8%;
    --scrollbar-dimention: 15px
}


html,
body {

    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-family: "Open Sans", sans-serif;
}


.site_paddy {
    padding: 60px 0px;
}

@media(max-width:992px) {
    .site_paddy {
        padding: 40px 0px;
    }
}

@media(max-width:768px) {
    @media(max-width:992px) {
        .site_paddy {
            padding: 20px 0px;
        }
    }
}

/* all text animation */
.fade-in {
    transform: translateY(80px);
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.fade-in.active {
    transform: translateY(0);
}

/* herro section */

.herro .banner {
    width: 100%;
    height: auto;
}

/* intro section */
.intro {
    text-align: center;
}

.intro .box {
    max-width: 1000px;
    margin: auto;
}

.intro .title {
    font-size: 32px;
    color: var(--clr-black);
    font-weight: 600;

}

.intro .info {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0px;
    color: var(--clr-black);
    font-weight: 400;
}

@media(max-width:768px) {
    .intro .title {
        font-size: 22px;
    }

    .intro .info {
        font-size: 18px;
    }
}

/* hastag section */

.hastag .flex_bx {
    display: flex;
    align-items: center;
    gap: 100px;
}

.hastag .text_box,
.hastag .tag_box {
    width: 50%;
}

.hastag .text_box .info {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    color: var(--clr-black);

}

.hastag .tag_box {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    padding: 40px;
}

.hastag .tag_box .title {
    font-size: 40px;
    font-weight: 800;
    color: var(--clr-white);
}

.hastag .tag_box ul {
    padding: 0;
}

.hastag .tag_box ul li {
    list-style: none;
    font-size: 24px;
    margin-top: 15px;
    font-weight: 500;
    line-height: 36px;
}

@media(max-width:992px) {
    .hastag .flex_bx {
        flex-direction: column;
        gap: 40px;
    }

    .hastag .text_box,
    .hastag .tag_box {
        width: 100%;
    }

    .hastag .tag_box {
        padding: 25px;
    }

    .hastag .text_box .info {
        font-size: 24px;
    }

    .hastag .tag_box .title {
        font-size: 32px;
    }

    .hastag .tag_box ul li {
        font-size: 22px;
        line-height: 30px;
    }
}

@media(max-width:768px) {
    .hastag .flex_bx {
        gap: 30px;
    }
}

@media(max-width:576px) {
    .hastag .text_box .info {
        font-size: 20px;
        line-height: 28px;
    }

    .hastag .tag_box .title {
        font-size: 30px;
    }

    .hastag .tag_box ul li {
        font-size: 20px;
        line-height: 22px;
    }
}

/* background section */
.background .flex_bx {
    display: flex;
    align-items: center;
    gap: 100px;
}

.background .image_box,
.background .text_box {
    width: 50%;
}

.background .image_box {
    position: relative;
    overflow: hidden;
}

.background .image_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 132, 255, 0.9);
    transform: translateX(-100%);

}

.background .image_box.active::before {
    animation: slideRight 1.2s ease-in-out forwards;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(101%);
    }
}


.background .image_box img {
    height: auto;
    width: 100%;
}

.background .text_box .title {
    font-size: 40px;
    font-weight: 600;
    color: var(--clr-black);
}

.background .text_box .info {
    font-size: 20px;
    line-height: 35px;
    margin-top: 20px;
    color: var(--clr-black);
}

@media(max-width:992px) {
    .background .flex_bx {
        flex-direction: column;
        gap: 50px;
    }

    .background .image_box,
    .background .text_box {
        width: 100%;
    }

    .background .text_box .title {
        font-size: 32px;
    }
}

@media(max-width:768px) {
    .background .flex_bx {
        gap: 30px;
    }

    .background .text_box .info {
        font-size: 18px;
        line-height: 28px;
        margin-top: 10px;
    }
}

@media(max-width:576px) {

    .background .text_box .title {
        font-size: 30px;
    }

}

/* brief section */
.brief {
    position: relative;
    margin: 80px 0px;
}

.brief .flex_bx {
    display: flex;
    align-items: center;
}

.brief .brief_box {
    width: 50%;
}

.brief .Requirement_box {
    width: 50%;
}

.brief .brief_box .title {
    font-weight: 600;
    color: var(--clr-black);
    font-size: 40px;
}

.brief .brief_box .info {
    font-size: 20px;
    line-height: 35px;
    margin-top: 20px;
    color: var(--clr-black);
}

.brief .Requirement_box {
    background-color: rgba(245, 245, 245, 1);
    padding: 40px;
    position: absolute;
    right: -40px;
}

.brief .Requirement_box .title {
    font-size: 40px;
    font-weight: 800;
    color: var(--clr-blue);
}

.brief .Requirement_box ul {
    padding-left: 20px;
    ;
}

.brief .Requirement_box ul li {

    list-style: disc;
    font-size: 24px;
    margin-top: 15px;
    font-weight: 500;
    color: var(--clr-black);
}

@media(max-width:991px) {
    .brief {
        margin: 0px 0px;
        position: relative;
    }

    .brief .flex_bx {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .brief .brief_box {
        width: 100%;
    }

    .brief .brief_box .title {
        font-size: 32px;
    }

    .brief .Requirement_box {
        width: 100%;
        right: 0px;
        position: relative;
        padding: 25px;
    }
}

@media(max-width:768px) {
    .brief .flex_bx {
        gap: 30px;
    }
}

@media(max-width:576px) {

    .brief .brief_box .title {
        font-size: 30px;
    }

    .brief .brief_box .info {
        margin-top: 10px;
        line-height: 28px;
        font-size: 18px;
    }

    .brief .Requirement_box .title {
        font-size: 30px;
    }

    .brief .Requirement_box ul li {
        font-size: 20px;
        line-height: 22px;
    }
}


/* image animation section */
.image_animation {
    margin: 40px 0px;
}

.image_animation .box-con {
    max-width: 1200px;
}

.image_animation .flex_bx {
    display: flex;
    gap: 100px;
    align-items: center;
}

.image_animation .images_box,
.image_animation .text_box {
    width: 50%;
}

.image_animation .images_box {
    display: flex;
    justify-content: center;
}

.images_box .image_layer {
    position: relative;
    display: inline-block;
}

.images_box .image_layer img {
    height: 400px;
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: top var(--top-time, 0.8s) ease-in var(--top-delay, 0s),
        left var(--left-time, 1s) ease-in var(--left-delay, 1s);
}

.images_box:not(.active) .image_layer img {
    --top-time: 0.8s;
    --left-time: 1s;
    --top-delay: 0s;
    --left-delay: 1s;
}

.images_box.active .image_layer img {
    --top-time: 0.8s;
    --left-time: 1s;
    --top-delay: 0s;
    --left-delay: 1s;
}

.images_box .image_layer img:nth-child(1) {
    position: relative;
}

.images_box.active .image_layer img:nth-child(2) {
    top: -80px;
    left: -80px;
}

.images_box.active .image_layer img:nth-child(3) {
    top: 80px;
    left: 80px;
}

.image_animation .text_box .title {
    font-weight: 600;
    color: var(--clr-black);
    font-size: 40px;
}

.image_animation .text_box .info {
    font-size: 20px;
    line-height: 35px;
    margin-top: 20px;
    color: var(--clr-black);
}

@media(max-width:1024px) {
    .images_box .image_layer img {
        height: 300px;
    }
}

@media(max-width:991px) {
    .image_animation .flex_bx {
        flex-direction: column;
        gap: 60px;
    }

    .images_box .image_layer img {
        height: 350px;
    }

    .image_animation .text_box,
    .image_animation .images_box {
        width: 100%;
    }

    .images_box.active .image_layer img:nth-child(2) {
        top: -50px;
        left: -50px;

    }

    .images_box.active .image_layer img:nth-child(3) {
        top: 50px;
        left: 50px;
    }

    .image_animation .text_box .title {
        font-size: 32px;
    }
}

@media(max-width:575px) {

    .images_box .image_layer img {
        height: 250px;
    }

    .images_box.active .image_layer img:nth-child(2) {
        top: -30px;
        left: -30px;

    }

    .images_box.active .image_layer img:nth-child(3) {
        top: 30px;
        left: 30px;
    }

    .image_animation .text_box .title {
        font-size: 30px;
    }

    .image_animation .text_box .info {
        line-height: 28px;
        margin-top: 10px;
        font-size: 18px;
    }
}

/* blue border section */
.blue_border {
    position: relative;
}

.blue_border .flex_bx {
    display: flex;

}

.blue_border .solid_border {
    width: 200px;
    height: 15px;
    background-color: var(--clr-blue);
    flex-shrink: 0;
    position: absolute;
    left: 0px;
    top: 50%;
}

.blue_border .text_box {
    margin-left: 300px;
}

.blue_border .text_box .title {
    font-weight: 600;
    color: var(--clr-black);
    font-size: 40px;

}

.blue_border .text_box .info {
    font-size: 20px;
    line-height: 35px;
    margin-top: 20px;
    color: var(--clr-black);

}

@media(max-width:992px) {
    .blue_border .flex_bx {
        flex-direction: column;
        gap: 40px;
    }

    .blue_border .solid_border {
        top: -20px;
    }

    .blue_border .text_box {
        margin-left: 0px;
    }

    .blue_border .text_box .title {
        font-size: 32px;
    }
}

@media(max-width:576px) {

    .blue_border .text_box .title {
        font-size: 30px;
    }

    .blue_border .text_box .info {
        line-height: 28px;
        margin-top: 10px;
    }
}

/* client section */

.client .flex_bx {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: auto;
}

.client .image_box {
    position: relative;
}

.client .image_box img {
    width: 100%;
    height: auto;

}

.client .image_box .autor_info {
    position: absolute;
    bottom: 20px;
    left: 0px;
    display: flex;
    gap: 30px;
    left: 20px;
}

.client .image_box .autor_info p {
    background-color: var(--clr-white);
    padding: 4px 14px;
    color: var(--clr-black);
    font-size: 24px;
    font-weight: 600;
    border-radius: 4px;
}

.client .image_box .autor_info a {
    background-color: var(--clr-white);
    padding: 4px 8px;
    color: var(--clr-blue);
    height: fit-content;
    font-weight: 600;
    border-radius: 4px;
    display: block;

}

.client .image_box .autor_info a i {
    font-size: 24px;
}

.client .text_box .title {

    font-weight: 600;
    color: var(--clr-black);
    font-size: 40px;
}

.client .text_box .qoute {
    font-size: 20px;
    line-height: 35px;
    margin-top: 10px;
    color: var(--clr-black);
}


@media(max-width:768px) {
    .client .text_box .title {
        font-size: 32px;
    }
}

@media(max-width:576px) {
    .client .text_box .title {
        font-size: 30px;
    }

    .client .text_box .qoute {
        font-size: 18px;
        line-height: 28px;

    }
}

/* development setion */
.development .flex_bx {
    display: flex;
    gap: 60px;
}

.development .dev_box {
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 440px;
    padding: 40px;
    transition: .4s ease-in-out;

}

.development .dev_box:nth-child(1) {
    transform: translateX(-200px);

}

.development .dev_box:nth-child(2) {
    transform: translateX(200px);
}

.development .dev_box.active {
    transform: translateX(0);
}

.development .dev_box .inner_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.development .dev_box h5 {

    font-size: 28px;
    color: var(--clr-white);
    font-weight: 600;
}

.development .dev_box p {
    font-size: 18px;
    color: var(--clr-white);
    line-height: 35px;
    margin-top: 20px;
}

.development .dev_box a {
    background-color: var(--clr-white);
    color: var(--clr-black);
    width: fit-content;
    padding: 10px 20px;
    display: block;
    font-size: 16px;
    opacity: 0;
    transition: opacity 1s ease-in-out;

}

.development .dev_box.active a {
    opacity: 1;
}

@media(max-width:991px) {
    .development .flex_bx {
        flex-direction: column;
        gap: 40px;
    }

    .development .dev_box {
        width: 100%;

    }
}

@media(max-width:768px) {
    .development .flex_bx {
        gap: 30px;
    }
}

@media(max-width:575px) {
    .development .dev_box {
        padding: 20px;
        height: 360px;
    }

    .development .dev_box p {
        line-height: 28px;
    }
}


/* get in warp section */

.get_in_wrap {
    position: relative;
    padding: 40px 0px;

}

.get_in_wrap .get_inner {
    position: relative;
    background-color: #f2f6fd;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 5px;
}

.get_in_wrap .get_inner .left_shape {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 200px;
    height: 200px;
    object-fit: contain;
    object-position: bottom;
}

.get_in_wrap .get_inner .right_shape {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 200px;
    height: 200px;
    object-fit: contain;
    object-position: bottom;
}

.get_in_wrap .get_inner .get_con {
    position: relative;
    padding: 50px;
}


.get_in_wrap .get_inner .get_con .sec_title {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.get_in_wrap .get_inner .get_con p {
    font-size: 16px;
    font-weight: normal;
    color: var(--clr-black);
    margin-bottom: 25px;
}

.get_in_wrap .get_inner .get_con a {
    display: inline-block;
    border: solid 1px var(--clr-blue);
    background-color: var(--white);
    color: var(--clr-blue);
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

.get_in_wrap .get_inner .get_con a:hover {
    background-color: var(--clr-blue);
    color: var(--clr-white);
}


@media(max-width:1200px) {
    .get_in_wrap .get_inner .get_con .sec_title {
        line-height: 42px;
    }
}

@media(max-width:768px) {
    .get_in_wrap {
        padding: 20px 0px 0px;
        padding-bottom: 0;
    }

    .get_in_wrap .get_inner .get_con .sec_title {
        font-size: 36px;
        line-height: 36px;

    }

    .get_in_wrap .get_inner .get_con {
        padding: 30px;
    }

    .get_in_wrap .get_inner .left_shape,
    .get_in_wrap .get_inner .right_shape {
        height: 80px;
        width: 80px;
    }

}

@media (max-width: 576px) {

    .get_in_wrap .get_inner .left_shape,
    .get_in_wrap .get_inner .right_shape {
        display: none;
    }
}