// 1️⃣ Import Bootstrap's default variables (before overriding)
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import "bootstrap/scss/functions";

$container-max-widths: (
  sm: 100%,
  md: 100%,
  lg: 100%,
  xl: 1224px,
  xxl: 1224px
) !default;

@import "bootstrap/scss/variables";
@import "bootstrap/scss/bootstrap";

$font-family-base: 'Inter', sans-serif;
$primary: $black;
$secondary: #FF4103;
$grayish: #968C8C;
$lightgray: #F8F8FA;
$font-size-base: 16px;



body {
    font-family: $font-family-base;
    font-size: $font-size-base;
    color: #000;
}

img{
    outline: none;
    border: none;
    max-width: 100%;
}

p {
    margin: 0px;
}

a{
    text-decoration: none;
}

button {
    &:focus{
        outline: none;
    }
}

.margin-top-70 {
    margin-top: 70px;

    @media (max-width: 1024px){
        margin-top: 50px;
    }

    @media (max-width: 767px){
        margin-top: 40px;
    }
}

.margin-bottom-70 {
    margin-bottom: 70px;

    @media (max-width: 1024px){
        margin-bottom: 50px;
    }
    
    @media (max-width: 767px){
        margin-bottom: 40px;
    }
}

@mixin inputplaceholder() {
    .form-control{
        &:focus {
            box-shadow: none;
        }

        &::-webkit-input-placeholder{
            color: #696969;
        }

        &::-moz-input-placeholder{
            color: #696969;
        }

        &::-ms-input-placeholder{
            color: #696969;
        }
        @content;
    }  
    .form-select{
        height: 45px;
        font-size: 14px;
        &:focus {
            box-shadow: none;
            border-color: #dee2e6;
        }

    }
}

#root{
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.navbar-nav{
    gap: 50px;

    @media (max-width: 991px) {
        gap: 30px;
    }

    @media (max-width: 767px) {
        gap: 0px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    a{
        color: $primary;

        @media (max-width: 767px) {
            border-top: 1px solid rgba(0, 0, 0, .1);
            padding: 8px 15px;
        }
    }
}

.default-btn-style{
    background: $secondary;
    border-radius: 20px;
    padding: 10px 20px;
    line-height: normal;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    gap: 7px;

    @media (max-width: 767px) {
        font-size: 15px;
        padding: 9px 18px;
    }
    

    @media (max-width: 360px) {
        font-size: 14px;
    }

    svg{
        @media (max-width: 360px) {
            width: 13px;
        }
    }

    &:hover  {
        background: $black;
    }

    &:active{
        background: $black !important;
    }
}

.menu {
    height: 75px;

    @media (max-width: 767px) {
        position: relative;
        height: 65px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        a{
            &:hover{
                color: $secondary;
            }
        }
    }
    .navbar-brand{
        img{
            max-width: 250px;
        }
    }
}

.banner{ 
    background: url('../../public/images/banner-shape.png') no-repeat bottom center / 100%;
    h1{
       font-size: 54px; 
       font-weight: 700;
       margin: 70px 0 0;
       line-height: 113.4%;

        @media (max-width: 1200px) {
            font-size: 40px;
        }

        @media (max-width: 767px) {
            margin: 40px 0px 0px;
            font-size: 30px;
        }

        @media (max-width: 575px) {
            margin-top: 25px;
        }

       span{
        color: $secondary;
       }
    }
    p{
        font-size: 20px;
        color: $grayish;
        max-width: 490px;
        line-height: 140%;
        margin: 25px 0;

        @media (max-width: 1200px) {
            font-size: 18px;
        }

        @media (max-width: 767px) {
            max-width: 100%;
            margin: 15px 0;
            font-size: 15px;
        }
    }
    img{
        margin: 108px 0 0;

        @media (max-width: 767px) {
            margin-top: 30px;
        }

        @media (max-width: 575px) {
            margin-left: auto;
            margin-right: auto;
            max-width: 250px;
            display: block;
        }

    }
}

.section-title{
    font-size: 40px;
    line-height: 113.4%;
    font-weight: 600;
    color: $black;

    @media (max-width: 1200px) {
        font-size: 32px;
    }

    @media (max-width: 767px) {
        font-size: 25px;
    }

    span{
        color: $secondary;
    }
}

.section-title-mark{
    margin: 3px 0 47px;
    
    @media (max-width: 767px) {
        margin-bottom: 35px;
    }

    &::before{
        content: "";
        width: 64px;
        height: 2px;
        background: $primary;

        @media (max-width: 1200px) {
            width: 50px;
        }
    }
    &::after{
        content: "";
        width: 64px;
        height: 2px;
        background: $primary;
        
        @media (max-width: 1200px) {
            width: 50px;
        }
    }
    span{
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: $secondary;
        margin: 0 6px;
    }
}

.steps-items{
    background: $secondary;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex: unset;

    @media (max-width: 767px) {
        width: 60px;
        height: 60px;
        padding: 7px;
    }

    @media (max-width: 767px) {
        width: 50px;
        height: 50px;
    }
}

.our-process{

    &.margin-bottom-70{
        @media (max-width: 767px) {
            margin-bottom: 0px;
        }
    }

    .our-process-img{
        @media (max-width: 767px) {
            order: 2;
        }

        img{
            @media (max-width: 767px){
                display: block;
                margin: 60px auto 0;
            }
        }
    }

    .our-process-right-column{
        max-width: 515px;
        margin: 0 0 0 auto;
        position: relative;

        @media (max-width: 767px){
            max-width: 100%;
        }

        &::before{
            content: '';
            background: url('../../public/images/dotted-line.png');
            height: 39px;
            width: 2px;
            margin: 0 0 0 35px;
            position: absolute;
            bottom: 0;

            @media (max-width: 767px) {
                display: none;
            }
        }
        &::after{
            content: '';
            background: url('../../public/images/horizontal-dotted-line.png');
            height: 2px;
            width: 108px;
            margin: 37px 0 0 38px;
            vertical-align: top;
            display: inline-block;

            @media (max-width: 767px) {
                display: none;
            }
        }
    }
    .accordion{
        width: 100%;
    }
    .accordion-item{
        border: none;
        border-radius: 0;
        position: relative;
        padding: 0 0 25px;

        @media (max-width: 767px) {
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0,0,0,.2);
            margin-bottom: 15px;
        }

        &::before{
            content: "";
            position: absolute;
            left: 35px;
            height: 100%;
            background: url('../../public/images/dotted-line.png'); 
            width: 2px;

            @media (max-width: 767px) {
                display: none;
            }
        }

        .accordion-button{
            background: none;
            box-shadow: none;
            border: none;
            padding: 0;
            flex-wrap: wrap;

            span{
                color: $primary;
            }

            &::after{
                content: "";
                background-repeat: no-repeat;
                background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.82902 9.14293L0.286121 7.71436L8.00042 0.571499L15.7147 7.71439L14.1719 9.14296L8.00042 3.4287L1.82902 9.14293Z' fill='%23494949'/%3E%3C/svg%3E%0A");
                width: 15px;
                height: 9px;
                background-size: 100%;
                margin: 0px 22px 0 0;
                transform: unset;


                @media (max-width: 767px) {
                    margin-right: 10px;
                }
            }

            &.collapsed{
                &::after{
                    content: "";
                    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.171 0.857055L15.7139 2.28562L7.99958 9.42849L0.285278 2.2856L1.82814 0.857025L7.99958 6.57128L14.171 0.857055Z' fill='%23494949'/%3E%3C/svg%3E%0A");
                }
            }

            .steps-title{
                width: calc(100% - 157px);
                margin: 0 10px 0 40px;
                flex: unset;

                @media (max-width: 991px) {
                    width: calc(100% - 142px);
                    margin-left: 25px;
                }

                @media (max-width: 767px) {
                    width: calc(100% - 120px);
                    font-size: 15px;
                    margin-left: 15px;
                }

                @media (max-width: 575px) {
                    font-size: 14px;
                }
            }

            label{
                color: $secondary;
                margin: 0 0 5px;
            }
        }
        .accordion-collapse{
            padding: 10px 0 0 110px;
            position: relative;

            @media (max-width: 991px) {
                padding: 10px 0 0 95px;
            }

            @media (max-width: 767px) {
                padding: 10px 0 0 75px;
                font-size: 15px;
            }

            @media (max-width: 575px) {
                font-size: 14px;
            }
        }
    }
    .book-consultation{
        margin: 0px;
        gap: 7px;
        display: flex;
        align-items: center;
        position: absolute;
        bottom: -16px;
        left: 161px;

        @media (max-width: 767px) {
            position: static;
            margin: 20px auto 0;
        }
    }
}

.section-subtitle{
    line-height: 120%;
    font-size: 14px;
    margin-top: 10px;
    color: $black;
}

.expertise-our-developers{
    background: $lightgray;
    padding: 50px 0;

    @media (max-width: 767px) {
        padding: 40px 0px;
    }

    .section-subtitle{
        margin-bottom: 84px;

        @media (max-width: 991px) {
            margin-bottom: 60px;
        }
    }
}

.square-shape{
    background: $secondary;
    border-radius: 5px;
    width: 100px;
    height: 100px;
    transform: translate(-50%, 0) rotate(45deg);
    left: 50%;
    position: relative;
    margin: 0 0 -50px 0;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 991px) {
        width: 80px;
        height: 80px;
    }

    img, svg{
        max-height: 50px;
        transform: rotate(-45deg);

        @media (max-width: 991px) {
            max-height: 42px;
        }
    }
}
.expertise-our-developers-list{
    gap: 76px 0px;

    @media (max-width: 991px) {
        gap: 40px 0px;
    }
}
.developers-list{
    background: map-get($colors, "white");
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    padding: 103px 20px 22px;
    height: calc(100% - 50px);

    @media (max-width: 991px) {
        padding: 90px 15px 22px;
        height: calc(100% - 30px);
    }

    .read-more{
        margin-top: auto;
    }

    label {
        font-size: 20px;
        font-weight: 600;
        line-height: 113.4%;
        vertical-align: top;

        @media (max-width: 991px) {
            font-size: 18px;
        }
    }

    p{
        line-height: 125%;
        margin: 15px 0px;

        @media (max-width: 991px) {
            font-size: 15px;
        }
    }
}
.read-more {
    color: $secondary;
    font-size: 15px;

    @media (max-width: 400px) {
        font-size: 14px;
    }

    svg{
        margin: 0 0 0 7px;
        width: 13px;
        height: auto;

        @media (max-width: 400px) {
            width: 12px;
        }
    }

    &:hover{
        color: $black;

        path{
            fill: $black;
        }
    }
}

.hire-developer-btn{
    display: inline-flex;
    margin: 50px 0 0;
}
.home-why-choose-inner-content{
    gap: 15px;

    svg {
        height: 70px;
        width: auto;
    }
    strong{
        width: 100%;
        line-height: 113.4%;
        margin: 25px 0 6px;
    }
    p{
        line-height: 113.4%;
        font-size: 14px;
    }
    & > div{
        max-width: 245px;
    }
}

.home-why-choose-us{
    .section-subtitle{
        margin-bottom: 60px;

        @media (max-width: 767px) {
            margin-bottom: 45px;
        }
    }
    .home-why-choose-us-content{
        max-width: 538px;

        @media (max-width: 767px) {
            order: -1;
            max-width: 100%;
        }
    }
    .home-why-chooseus-img{
        img{
            @media (max-width: 767px) {
                margin: 30px auto 0px;
                display: block;
            }
        }
    }
}

.progress-container{
    gap: 50px;
    margin: 60px 0px 0px;

    @media (max-width: 991px) {
        gap: 30px;
    }

    @media (max-width: 450px) {
        margin-top: 40px;
    }

    @media (max-width: 400px) {
        gap: 20px;
    }

    .circle{
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;

        @media (max-width: 450px) {
            max-width: 100px;
        }

        @media (max-width: 370px) {
            max-width: 80px;
        }

        canvas{
            @media (max-width: 450px) {
                max-width: 100px;
                max-height: 100px;
            }

            @media (max-width: 370px) {
                max-width: 80px;
                max-height: 80px;
            }
        }

        .items-value {
            position: absolute;
            width: 100%;
            height: calc(100% - 36px);
            display: flex;
            align-items: center;
            justify-content: center;

            @media (max-width: 450px) {
                height: calc(100% - 28px);
            }

            strong{
                font-size: 20px;

                @media (max-width: 400px) {
                    font-size: 18px;
                }
            }
        }
    }
    span{
        font-weight: 600;
        margin: 12px 0 0;
        color: #000;

        @media (max-width: 450px) {
            margin: 7px 0 0;
            font-size: 14px;
        }

        @media (max-width: 370px) {
            font-size: 12px;
        }
    }
}

.our-testimonial{
    .section-subtitle{
        max-width: 498px;
        margin-bottom: 60px;
    }
}

.our-testimonial {
    .testimonial-top-portion{
        .client-logo{
            max-height: 25px;
            max-width: 200px;

            @media (max-width: 991px) { 
                max-height: 22px;
            }
        }
        .client-quotes{
            max-height: 30px;

            @media (max-width: 1200px) {
                max-height: 25px;
            }
        }
    }
    .slick-track{
        display: flex;
    }
    .slick-list{
        margin: 0 -12px;
    }
    .slick-slide{
        padding: 0 12px;
        height: unset;
        display: flex;
    }
    .slide-item{
        background: $lightgray;
        border-radius: 20px;
        padding: 20px;
        height: 100%;
        min-height: 350px;

        @media (max-width: 991px) {
            padding: 15px;
        }

        @media (max-width: 575px) {
            min-height: 280px;
        }

        p{
            line-height: 140%;
            margin: 28px 0 15px;

            @media (max-width: 1200px) {
                font-size: 15px;
            }
        }
    }
    .client{
        margin: auto 0 0;  
    }
    .client-image{
        width: 49px;
        height: 49px;
        border-radius: 50%;
        img{
            border-radius: 100%;
        }
    }
    .client-info {
        width: calc(100% - 64px);
        margin: 0 0 0 15px;
        label{
            font-size: 20px;
            vertical-align: top;
            font-weight: 600;
            width: 100%;
            color: $black;
            line-height: 120%;

            @media (max-width: 1200px) {
                font-size: 18px;
            }

            @media (max-width: 991px) {
                font-size: 17px;
            }
        }
        span{
            line-height: 120%;
            color: #8E8E8E;

            @media (max-width: 1200px) {
                font-size: 15px;
            }
        }
    }
    .slick-dots {
        bottom: -40px;
        height: 10px;

        li{
            width: 10px;
            height: 10px;
            background: #D9D9D9;
            border-radius: 50%;
            margin: 0 2.5px;
            vertical-align: top;

            &.slick-active{
                background: $secondary;
            }

            button {
                width: 100%;
                height: 100%;
                padding: 0px;

                &::before{
                    display: none;
                }
            }
        }
    }
}
.home-blogbg {
    background: url("../../public/images/home-blog-bg.png") no-repeat center bottom / 100%;
    padding: 40px 0 0;
    margin: 50px 0 0;
    
    .section-title{
        margin-bottom: 40px;

        @media (max-width: 767px) {
            margin-bottom: 30px;
        }
    }

    .home-latest-blog{
        position: relative;

        .home-latest-blog-info{
            position: absolute;
            bottom: 0px;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 20%);
            justify-content: end;
            color: $white;
            padding: 0 30px 30px;

            @media (max-width: 991px) {
                padding: 0 20px 20px;
            }

            & > span{
                line-height: 140%;
                display: block;
                margin: 0 0 10px;
                width: 100%;
            }

            label {
                font-size: 30px;
                vertical-align: top;
                font-weight: 600;
                line-height: 140%;
                margin: 0 0 14px;

                @media (max-width: 1024px) {
                    font-size: 26px;
                    line-height: 130%;
                }

                @media (max-width: 400px) {
                    font-size: 20px;
                }
            }

            .read-more{
                color: $white;

                &:hover{
                    color: $secondary;

                    path{
                        fill: $secondary;
                    }
                }
            }
        }
        .home-latest-blog-img{
            height: 536px;

            @media (max-width: 767px) {
                height: auto;
            }

            img{
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
    }

    .home-latest-blog-left-column{
        max-width: 524px;
        
        @media (max-width: 767px) {
            flex: 1 0 100%;
            max-width: 100%;
        }
    }
    .home-latest-blog-right-column{

        @media (max-width: 767px) {
            margin-top: 40px;
        }

        .home-latest-blog-right-column-list {
            max-width: 650px;
            margin-left: auto;
            border-bottom: 1px solid #D9D9D9;
            padding: 0 0 25px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            flex-direction: row;

            @media (max-width: 767px) {
                max-width: 100%;
            }
        }
    }
    .home-latest-blog-right-column-list-content{
        width: calc(100% - 220px);
        align-content: flex-start;
        margin-right: 20px;
        flex-direction: row;
        flex-wrap: wrap;

        @media (max-width: 340px) {
            margin-right: 10px;
        }

        & > span{
            color: #696969;
            display: block;
            margin: 0 0 10px;
            font-size: 14px;
        }

        label{
            font-size: 20px;
            line-height: 120%;
            color: $black;
            font-weight: 600;
            vertical-align: top;
            margin: 0 0 25px;

            @media (max-width: 1024px) {
                font-size: 18px;
            }

            @media (max-width: 767px) {
                margin: 0 0 18px;
            }

            @media (max-width: 400px) {
                font-size: 16px;
                margin-bottom: 10px;
            }

            @media (max-width: 340px) {
                font-size: 14px;
            }
        }

        .read-more {
            &:hover{
                color: $secondary;
    
                path{
                    fill: $secondary;
                }
            }
        }
    }
    .home-latest-blog-right-image{
        width: 200px;
        flex: unset;

        @media (max-width: 991px) {
            width: 150px;
        }

        @media (max-width: 400px) {
            width: 130px;
        }

    }
    .read-more{
        color: $black;
    }
    .home-blog-viewall{
        margin: 20px 0 50px;

        @media (max-width: 767px) {
            margin: 0px 0 40px;
        }
    }
}

.work-enquirybg{
    background: #304097;
    padding: 50px 0px;

    .section-title{
        color: $white;
    }
    .section-subtitle{
        color: $white;
        margin-bottom: 55px;

        @media (max-width: 991px) {
            margin-bottom: 40px;
        }
    }

    .work-enquiry-contact {
        max-width: 300px;
        margin: 0 0 30px;
    }
    .work-enquiry-contact-icon{
        width: 28px;
        flex: unset;

        @media (max-width: 991px) {
            width: 22px;
        }
    
        svg{
            width: 100%;
        }

    }

    

    .work-enquiry-contact-info{
        width: calc(100% - 57px);
        margin-left: 25px;

        @media (max-width: 991px) {
            width: calc(100% - 37px);
            margin-left: 15px;
        }

        span{
            display: block;
            margin: 0 0 5px;
        }

        a{
            color: $white;
            font-size: 20px;
            font-weight: 600;

            @media (max-width: 991px) {
                font-size: 18px;
            }
        }
    }
    .quiry-form-bg{
        background: #EAEAEA;
        border-radius: 15px;
        padding: 27px 20px 20px;
        max-width: 500px;

        @media (max-width: 575px) {
            max-width: 100%;
        }

        label{
            font-size: 24px;
            font-weight: 600;
            line-height: 140%;

            @media (max-width: 991px) {
                font-size: 20px;
            }
        }

        .section-subtitle{
            color: $black;
            margin-bottom: 30px;
        }

        form{
            display: flex;
            flex-direction: row;
            gap: 15px;
            flex-wrap: wrap;

            .btn{
                border-radius: 5px;
            }
        }

        .form-field{
            width: 100%;
        }

        .form-control{
            height: 45px;
            border-radius: 5px;
            color: $black;
            border: none;
            font-size: 15px;
            padding: 10px 15px;

            &.is-invalid {
                border: 1px solid var(--bs-form-invalid-border-color);
            }

            &:focus{
                box-shadow: none;
            }

            &::-webkit-input-placeholder{
                color: #696969;
            }

            &::-moz-input-placeholder{
                color: #696969;
            }

            &::-ms-input-placeholder{
                color: #696969;
           }
           &.messge{
            height: 90px;
           }
        }
    }
}

.footer-column-first{
    max-width: 277px;

    @media (max-width: 850px) {
        max-width: 170px;
    }

    @media (max-width: 767px) {
        max-width: 100%;
    }

    @media (max-width: 575px) {
        flex: 1 0 50%;
    }

    @media (max-width: 400px) {
        flex: 1 0 100%;
    }

    p{
        margin-top: 20px;
        color: $white;
        line-height: 120%;
        font-size: 14px;

        @media (max-width: 850px) {
            font-size: 15px;
        }

        @media (max-width: 400px) {
            margin-bottom: 20px;
        }
        
        a{
            color: #fff;
            text-decoration: underline;
        }
    }
}

.footer-column-second {
    max-width: 160px;

    @media (max-width: 767px) {
        max-width: 100%;
    }

    @media (max-width: 575px) {
        flex: 1 0 50%;
    }
}

.footer-column-third{
    width: 212px;
    flex: unset;

    @media (max-width: 991px) {
        width: 200px;
    }

    @media (max-width: 767px) {
        max-width: 100%;
        flex: 1 0;
        width: auto;
    }

    @media (max-width: 400px) {
        flex: 1 0 50%;
    }
}

.footer-column-menu{
    label{
        font-size: 20px;
        font-weight: 600;
        color: $white;
        margin: 0 0 10px;
        line-height: normal;

        @media (max-width: 991px) {
            font-size: 18px;
        }
    }

    ul {
        margin: 0px;
        padding: 0;

        li{
            list-style: none;
            margin: 0px 0 10px;
            padding: 0px;
            a{
                color: $white;

                @media (max-width: 991px){
                    font-size: 15px;
                    line-height: 100%;
                }
            }
        }
    }
}

.footer-column-four{

    @media (max-width: 767px){
        max-width: 100%;
        flex: 1 0 100%;
    }

    .form-field {
        background: $white;
        padding: 5px 10px 5px 0;
        border-radius: 10px;
        display: flex;

        @include inputplaceholder{
            background: none;
            border: none;
            padding: 0 17px;

            @media (max-width: 991px) {
                font-size: 14px;
            }
        }
    }

    .subscribe-form{
        width: 443px;
        max-width: 100%;

        @media (max-width: 1200px) {
            width: 370px;
        }

        @media (max-width: 1024px) {
            width: 330px;
        }

        @media (max-width: 991px) {
            width: 280px;
        }

        @media (max-width: 850px) {
            width: 260px;
        }

        @media (max-width: 767px) {
            margin-top: 15px;
            width: 100%;
        }


        label{
            font-size: 20px;
            font-weight: 600;
            color: $white;
            margin: 0 0 10px;

            @media (max-width: 991px) {
                font-size: 18px;
            }
        }
        .btn{
            border-radius: 5px;
            @media (max-width: 991px) {
                font-size: 14px;
                padding: 10px;
            }
        }
    }
    .social-icons {
        label{
            font-size: 20px;
            font-weight: 600;
            color: $white;
            width: 100%;
            margin: 0px 0 10px;
            line-height: 24px;

            @media (max-width: 991px) {
                font-size: 18px;
            }
        }
        gap: 5px;
        &-list{
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

            @media (max-width: 991px) {
                width: 32px;
                height: 32px;
                padding: 7px;
            }
        }
    }
}

.footer-top{
    gap: 36px;

    @media (max-width: 1100px) {
        gap: 25px;
    }

    @media (max-width: 991px) {
        gap: 0px;
    }
}

.footer-bottom{
    background: #D9D9D9;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;

    @media (max-width: 991px) {
        font-size: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    @media (max-width: 400px) {
        font-size: 14px;
        line-height: normal;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    a{
        color: #000;
        text-decoration: underline;
        margin: 0 0 0 4px;
    }
}

.navbar-collapse{
    @media (max-width: 767px) {
        background: #fff;
        position: absolute;
        left: 0;
        width: 100%;
        top: 100%;
        z-index: 1;
    }
}

.navbar-toggler{

    @media (max-width: 767px) {
        padding: 4px 8px;
    }

    &:focus{
        box-shadow: none;
    }
}

.headingone{
    font-size: 54px;
    font-weight: 600;
    color: #000;
    line-height: 100%;

    @media (max-width: 1200px) {
        font-size: 40px;
    }
    
    @media (max-width: 767px) {
        font-size: 30px;
    }
}

.pageHeader{
    position: relative;

    .headingone{
        margin-bottom: 10px;
        color: #fff;
    }

    &-Image{
        img{
            max-height: 450px;
            object-fit: cover;

            @media (max-width: 767px) {
                height: 230px;
                object-fit: cover;
            }
        }
    }
    &-Bg {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.5);
    }
    .breadcrumb{
            margin: 0px;

        .breadcrumb-item {

            font-size: 18px;

            @media (max-width: 767px) {
                font-size: 16px;
            }

            &::before{
                display: none;
            }
            a{
                font-size: 18px;
                color: #fff;

                @media (max-width: 767px) {
                    font-size: 16px;
                }

                &:hover{
                    color: #FF4103;
                }
            }

            &.active{
                color: #fff;
            }
        }
        .pie {
            color: #fff;
            line-height: normal;
            display: flex;
            align-items: center;
        }
    }
}

.who-we-are{
    &-img{
        @media (max-width: 767px){
            margin-top: 20px;
        }
    }

    img{
        @media (max-width: 767px){
            width: 100%;
        }
    }

    &-content{
        margin-left: 26px;

        @media (max-width: 767px) {
            margin-left: 0;    
        }
    }
    .section-title{
        margin-bottom: 10px;
    }
    p{
        line-height: 160%;
        margin: 0 0 15px;

        @media (max-width: 991px) {
            font-size: 15px;
        }
    }

    &-column-right{
        @media (max-width: 767px) {
            order: -1;
        }
    }
}
.about-why-choose-us{
    .section-subtitle{
        margin-bottom: 70px;

        @media (max-width: 1024px) {
            margin-bottom: 50px;
        }

        @media (max-width: 767px) {
            margin-bottom: 40px;
        }

    }
    .about-why-choose-us-content {
        gap: 30px;
        margin-bottom: 25px;
        border-bottom: 1px solid #D9D9D9;
        padding-bottom: 25px;

        @media (max-width: 1024px) {
            gap: 20px;
        }

        img{
            width: 40px;
            height: auto;

            
        }

        &-list{
            width: calc(100% - 70px);

            label{
                font-size: 20px;
                font-weight: 600;
                color: #000;
                vertical-align: top;
                line-height: 120%;
                margin: 0 0 10px;
                
                @media (max-width: 1024px) {
                    font-size: 18px;
                }
            }
            p{
                @media (max-width: 1024px) {
                    font-size: 15px;
                }

                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }

    }

    &-img{

        @media (max-width: 767px) {
            margin-top: 20px;
        }

        img{
            @media (max-width: 767px) {
                width: 100%;
            }
        }
    }
}

.company-fun-fact{
    background: #020626;
    padding: 110px 0px;

    @media (max-width: 767px) {
        padding: 50px 0px;
    }

    &-column-left{

        @media (max-width: 767px) {
            margin-bottom: 40px;
        }

        span{
            font-size: 20px;
            color: #FF4103;
            margin-bottom: 10px;
            display: block;

            @media (max-width: 991px) {
                font-size: 18px;
            }
        }
        h4{
            font-size: 50px;
            color: #fff;
            max-width: 502px;
            font-weight: 700;
            max-width: 500px;

            @media (max-width: 1200px) {
                font-size: 40px;
            }

            @media (max-width: 1100px) {
                max-width: 380px;
            }

            @media (max-width: 991px) {
                font-size: 35px;
                max-width: 350px;
            }

            @media (max-width: 820px) {
                font-size: 30px;
                max-width: 300px;
            }
        }
    }
    &-column-right{
        gap: 65px;

        @media (max-width: 1200px) {
            gap: 45px;
        }

        @media (max-width: 991px) {
            gap: 30px;
        }

        @media (max-width: 850px) {
            gap: 20px;
        }

        img{
            max-height: 68px;
            margin: 0 0 20px;
        }
    }
    &-status{
        align-items: center;
        label{
            font-size: 50px;
            color: #fff;
            font-weight: 700;
            line-height: 100%;
            margin: 0 0 10px;

            @media (max-width: 1200px) {
                font-size: 40px;
            }

            @media (max-width: 991px) {
                font-size: 35px;
            }
            @media (max-width: 820px) {
                font-size: 30px;
            }
        }
        span{
            font-size: 20px;
            color: #8E8F8F;

            @media (max-width: 1200px) {
                font-size: 18px;
            }

            @media (max-width: 991px) {
                font-size: 16px;
            }
        }
    }
}

.our-team{

    margin-bottom: 122px;

    @media (max-width: 1200px) {
        padding: 0px;
    }

    @media (max-width: 767px) {
        margin-bottom: 100px;
    }

    .row {

        @media (max-width: 1200px) {
            margin-left: 0;
            margin-right: 0px;
        }
    }

    .section-subtitle{
        margin-bottom: 50px;

        @media (max-width: 767px) {
            margin-bottom: 40px;
        }
    }

    &-list{
        margin: 0 15px;
        max-width: calc(100% - 30px);

        @media (max-width: 767px) {
            margin: 0 10px;
            max-width: calc(100% - 20px);
        }

        img{
            width: 100%;
            border-radius: 5px;
        }
        label{
            font-size: 20px;
            font-weight: 600;
            margin: 20px 0px 0px;
            line-height: 120%;

            @media (max-width: 991px) {
                font-size: 18px;
                margin-top: 15px;
            }
        }
        span{
            display: block;
            color: #000;
            line-height: 120%;
            margin: 10px 0 0;

            @media (max-width: 991px) {
                font-size: 15px;
            }
        }
    }

    .slick-dots{
        bottom: -52px;
        height: 10px;

        li {
            width: 10px;
            height: 10px;
            background: #D9D9D9;
            border-radius: 50%;
            vertical-align: top;
            margin: 0 2.5px;

            button {
                padding: 0px;
                width: 100%;
                height: 100%;

                &::before{
                    display: none;
                }
            }
            &.slick-active{
                background: #FF4103;
            }
        }
    }
}

.our-blog{
    .section-subtitle{
        margin-bottom: 50px;

        @media (max-width: 991px) {
            margin-bottom: 40px;
        }

        @media (max-width: 991px) {
            margin-bottom: 30px;
        }
    }

    & > .row{
        &:nth-child(2) {
            gap: 24px 0px;

            @media (max-width: 767px) {
                gap: 12px 0px;
            }
        }
    }

    &-list{
        box-shadow: 0 0 14px rgba(0, 0, 0, .1);
        border-radius: 10px;
    }

    &-list-content{
        padding: 15px 15px 20px;

        label{
            font-weight: 600;
            vertical-align: top;
            line-height: 120%;
            margin: 0 0 10px;

            @media (max-width: 991px) {
                font-size: 15px;
            }
        }

        p{
            line-height: 107%;
            margin: 0px;

            @media (max-width: 991px) {
                font-size: 15px;
            }
        }

        a{
          font-size: 14px;  
          color: #FF4103;

          svg{
            width: 7px;
          }
        }
    }
}

.get-in-touch{

    margin-top: 80px;
    margin-bottom: 80px;

    @media (max-width: 991px) {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    &-bg{
        background: #111539;
        padding: 40px;

        @media (max-width: 991px) {
            padding: 40px 30px;
        }

        @media (max-width: 767px) {
            padding: 30px;
        }

        @media (max-width: 400px) {
            padding: 30px 20px;
        }

        
        .section-title{
            color: #FF4103;
            margin: 0px 0 38px;
        }
    }

    &-list{
        margin-bottom: 30px;

        @media (max-width: 767px) {
            margin-bottom: 20px;
        }

        svg{
            width: 25px;
        }
    }

    &-list-content{
        max-width: calc(100% - 46px);
        label{
            color: #FF4103;
            font-size: 20px;
            line-height: 120%;

            @media (max-width: 991px) {
                font-size: 18px;
            }
        }
        span{
            display: block;
            font-size: 18px;
            line-height: 120%;
            margin: 10px 0 0;
            color: #fff;

            @media (max-width: 991px) {
                font-size: 16px;
            }
        }
    }

    &-formbg{
        background: #E5E5E5;
        padding: 50px;

        @media (max-width: 991px) {
            padding: 50px 30px;
        }

        @media (max-width: 767px) {
            padding: 40px 30px;
        }

        @media (max-width: 400px) {
            padding: 30px 20px;
        }

        form{
            gap: 15px;
        }

        @include inputplaceholder {
            height: 45px;
            border: none;
            font-size: 15px;
            padding: 10px 15px;
            border-radius: 4px;
        }

        .message{
            height: 85px;
            padding: 10px 15px;
        }

        .btn{
            border-radius: 5px;
            border: none;
            align-self: flex-start;
            font-size: 16px;
        }
    }
}

.service {
    .section-subtitle{
        margin-bottom: 87px;
    }

    &-row-bottom{
        gap: 81px 0px;

        @media (max-width: 767px) {
            gap: 60px 0px;
        }
    }

    &-list{
        border: 1px solid #000;
        border-radius: 10px;
        height: 100%;
    
        &-content {
            text-align: center;
            padding: 0 20px;
    
            label{
                font-weight: 600;
                font-size: 20px;
                vertical-align: top;
                line-height: 120%;
                margin: 0 0 20px;

                @media (max-width: 991px) {
                    font-size: 18px;
                    margin-bottom: 15px;
                }
            }
            p{
                line-height: 160%;
                margin-bottom: 20px;

                @media (max-width: 991px) {
                    font-size: 15px;
                    line-height: 150%;
                }
            }
        }
    
        &-icon{
            width: 75px;
            height: 75px;
            border-radius: 8px;
            background: #000000;
            align-items: center;
            justify-content: center;
            margin: -37.5px auto 30px;
            flex: unset;
        }
    }

    .read-more{
        margin-top: auto;
        margin-bottom: 20px;
        display: inline-flex;
        align-items: center;

        svg{
            width: 8px;
        }
    }
}


.service-request{
    .service-form{
        background: #E1E1E1;
        padding: 40px 95px;
        margin-bottom: 50px;

        @media (max-width: 991px) {
            padding: 30px 15px;
        }

        h2{
            font-size: 30px;
            color: #FF4103;
            text-align: center;
            font-weight: 600;
            margin: 0 0 34px;

            @media (max-width: 767px) {
                font-size: 25px;
                margin: 0 0 20px;
            }
        }

        @include inputplaceholder {
            height: 45px;
            border: none;
            font-size: 15px;
            padding: 10px 15px;
            border-radius: 6px;
        }
        .form-field{
            max-width: calc(50% - 10px);

            @media (max-width: 450px) {
                max-width: 100%;
            }
        }

        .message{
            height: 85px;
        }

        .btn{
            border-radius: 5px;
            border: none;
            align-self: flex-start;
            font-size: 16px;
            width: auto;
            margin-top: 16px;
        }
    }
}

.hire-dedicated-developer{
    p{
        margin-top: 20px;
    }
    .btn {
        border-radius: 30px;
        margin: 20px 0 0;

        svg {
            width: 15px;
            animation: arrowMoving 1.4s infinite;

            @keyframes arrowMoving{
                0% {
                    transform: translate3d(0, 0, 0);
                }
                
                100% {
                    transform: translate3d(10px, 0, 0);
                }
            }
        }
    }
}

.get-in-touch{
    .form-label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    @include inputplaceholder{
        height: 45px;
        font-size: 14px;
        padding: 10px 15px;
        border-radius: 6px;
        &:focus{
            border-color: #dee2e6;
        }
    }
    .form-control{
        height: 45px;
        font-size: 14px;
    }
    textarea{
        &.form-control{
            height: 85px;
        }
    }
}

.trusted-companies{

    h2{
        margin-bottom: 40px;
        position: relative;

        &::before {
            content: "";
            width: 100px;
            height: .5px;
            display: inline-block;
            background: rgba(0, 0, 0, .4);
            vertical-align: middle;
            position: absolute;
            top: 50%;
            transform: translate(calc(-50% - 140px), -50%);
            left: 50%;
        }

        &::after {
            content: "";
            width: 100px;
            height: .5px;
            display: inline-block;
            background: rgba(0, 0, 0, .4);
            vertical-align: middle;
            position: absolute;
            top: 50%;
            transform: translate(calc(20% - 5px), -50%);
        }
    }
    .slick-slide{
        & > div{
            &:focus-visible{
                outline: none;
            }
        }
    }
    .partners-logo{
        img{
            max-height: 100px;
            margin: 0 auto;

            &:focus{
                outline: none;
            }
        }
    }
}

.why-hire-dedicated-developers{

    h2{
        margin-bottom: 25px;
    }
    
    p{
        margin: 0 0 25px;
    }
    ul {
        margin: 0px;
        li{
            margin: 0 0 20px;
        }
    }
}

.dream-team-bg{
    background: rgba(32, 47, 63, 1);
    padding: 60px 0px;
    margin-bottom: 50px;

    p{
        margin-bottom: 40px;
    }

    .nav-tabs{
        border: none;
        justify-content: center;
        margin-bottom: 50px;

        .nav-item {
            flex-grow: 0;
            flex-basis: auto;

            .nav-link{
                font-size: 18px;
                color: #fff;
                border: none;
                border-radius: 0;
                padding: 8px 25px;

                &.active{
                    background: #0b1a2b;
                    border-radius: 6px;
                }
            }
        }
    }
    .hire-developers-teams{
        gap: 15px;
        justify-content: center;
    }
    .hire-developers-teams-list{
        width: calc(25.05% - 12px);
        flex-grow: unset;

        a{
            width: 100%;
            background: rgba(11,26,43,1.0);
            flex: unset;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        img{
            max-width: 55px;
        }
        span{
            color: #fff;
            margin: 15px 0 0;
        }
    }
    .default-btn-style {
        margin-top: 30px;
    }
}

.faq-section{ 
    h2{
        font-weight: 600;
    }
    p{
        text-align: center;
        margin: 0 0 20px;
    }
    .accordion{
        display: flex;
        gap: 20px;
        flex-direction: column;
        .accordion-item{
            border: 1px solid #e4e4e4;
            border-radius: 10px;

            &:first-of-type{
                border-radius: 10px;
            }

            .accordion-button{
                border-radius: 10px 10px 0 0;
                font-weight: 600;
                font-size: 20px;
                box-shadow: none;
                background: none;
                color: #000;
                padding: 20px;

                &::before{
                    content: "";
                    clear: both;
                    display: block;
                    background: #FF4103;
                    height: 3px;
                    width: 18px;
                    border-radius: 3px;
                    position: absolute;
                    right: 20px;
                }

                &::after{
                    content: "";
                    clear: both;
                    display: block;
                    background: #FF4103;
                    height: 18px;
                    width: 3px;
                    border-radius: 3px;
                    position: absolute;
                    right: 27px;
                    display: none;
                }
                &.collapsed{
                    &::after{
                        display: block;
                    }
                }
            }
        }
        .accordion-body{
            padding: 20px;
            font-size: 16px;
            line-height: 160%;
            margin: 0 20px;
            border-top: 1px solid #e4e4e4;

            ul {
                margin: 0px;
            }
        }
    }
}

.our-testimonial-gap{
    margin-bottom: 120px;
}

.expertise-angular-developer{
    margin-top: 50px;

    &-top-portion{
        p {
            margin: 0 auto 50px;
            max-width: 800px;
        }
    }
    &-bottom-portion {
        gap: 24px 0px;
        &-list{
            background: rgba(255,255,255,1.0);
            border: 1px solid rgb(0 0 0 / 10%);
            padding: 20px;
            border-radius: 10px;
            height: 100%;

            img{
                max-width: 50px;
                margin: 0 auto;
            }

            label {
                font-size: 20px;
                font-weight: 600;
                text-align: center;
                margin: 20px 0 10px;
            }

            p{
                text-align: center;
            }
        }
    }
}

.back-to-site{
    gap: 15px;
    margin: 25px 0 0;
}

.notfound{
    max-width: 600px;
    margin: 50px auto;

    img{
        margin: 0 auto;
    }

    h1{
        font-size: 30px;
        margin: 20px 0 15px;
        font-weight: 600;
    }
}
.hire-content-container {
    margin-bottom: 70px;
}
.hire-content-info {
    margin-top: 30px;
    h2 {
        font-size: 30px;
        font-weight: 600;
        margin: 0 0 10px;
    }
    p {
        color: #645a5a;
    }
    ul {
        display: flex;
        gap: 10px;
        flex-direction: column;
        margin: 0;

        li{
            color: #645a5a;
        }
    }
}
.footer-top-bg{
    background: #000;
    padding: 50px 0;
}
.modal-content {
    .modal-header {
        .btn-close{
            box-shadow: none;
            padding: 0px;
            border-radius: 0;
            margin: 0 0 0 auto;
        }
    }
    
}
.our-blog-post {
    h2 {
        font-size: 26px;
        font-weight: 600;
        margin: 30px 0 20px;
    }
    &-list{
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        padding: 0 0 20px;

        &-content{
            width: calc(100% - 220px);
            
            span{
                font-size: 14px;
                margin: 0 0 7px;
            }
        }

        &:last-child{
            border: none;
            padding: 0;
        }
        

        label {
            font-weight: 600;
            font-size: 18px;
            margin: 0px;
            line-height: normal;
        }
        p{
            font-size: 15px;
            line-height: normal;
            margin: 0 0 5px;
        }

        a{
            margin-right: auto;
            color: #FF4103;
            font-size: 14px;
            margin-top: auto;

            svg{
                margin-left: 5px;
            }
        }
    }
    &-column{
        padding: 15px;
        border: 1px solid rgba(0, 0, 0, .1);
        border-radius: 10px;
        gap: 20px;
        margin: 0 0 40px;
    }

    &-right-column{
        .blog-post-img{
            width: 100px;
            height: 80px;
        }
        .our-blog-post-list{
            gap: 12px;

            label{
                font-size: 16px;
            }
        }
        .our-blog-post-list-content {
            width: calc(100% - 120px);
        }
    }
}
.blog-post-img {
    width: 200px;
    height: 130px;

    img {
        border-radius: 5px;
        height: 100%;
        object-fit: cover;
    }
}
.our-blog-post-right-column{
    h2 {
        margin: 81px 0 20px;
        font-size: 20px;
    }
    .our-blog-post-list{
        margin: 0 0 20px;
    }
}
.blog-detail-content{
        margin: 20px 0 50px;
        gap: 20px;
    p{
        font-size: 15px;
        color: #696969;
    }
}

.our-blog-post-detail {
    margin-top: 60px;

    .our-blog-post-right-column {
        h2 {
            margin-top: 0px;
        }
    }
}

.contact-items-img {
    width: 50px;
    height: 50px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    border-radius: 50%;
    padding: 12px;
    flex: unset;
}
.contact-items {
    gap: 15px;
    align-items: center;
    margin: 0 0 20px;

    span{
        width: calc(100% - 100px);
    }
}
.contact-content{
    h2 {
        margin: 50px 0 20px;
        text-align: center;
    }
    a {
        color: #000;
        text-decoration: underline;
    }
}
.contact-content{
    .form-container{
        background: #fff;
        box-shadow: 0 0 20px hsla(0, 0%, 62%, .16);
        padding: 30px;
        margin: 0px 0 50px;
        
        .form-control{
            height: 45px;
            &:focus{
                box-shadow: none;
                border-color: #dee2e6;
            }
        }
    }
}
.contactmap{
    vertical-align: top;
}