:root {
    --gray: #474747;
    --black: #000;
    --white: #fff;
    --light-blue: #486fa4;
    --dark-blue: #0e2e67;
    --orange: #f16f1d;
    --sky-blue: #009ce5;
}

.light-blue {
    background: #486fa4;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0%;
}

p,
a,
li {
    font-family: 'Inter', sans-serif;
    line-height: 26px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    margin: 0px;
}

ul {
    margin: 0px !important;
    padding-left: 0px !important;
}

li {
    list-style: none;
}

a,
a:hover,
button,
button:hover,
i,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

i {
    transition: unset;
}

:focus {
    outline: 0px !important;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

body::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--dark-blue);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}


/* BOOTSTRAP CSS START  */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px
    }
}

@media (min-width:1920px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}


/* BOOTSTRAP CSS END  */


/* GLOBAL CSS START HERE  */

.section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.dark-blue {
    background-color: var(--dark-blue);
}

.sky-blue {
    background: var(--sky-blue);
}

.orange {
    background-color: var(--orange);
}

.clr-orange {
    color: var(--orange);
}

.clr-blue {
    color: var(--dark-blue);
}

.head {
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto 40px;
}

.head::before {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: 80px;
    height: 7px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.head h2 {
    padding-bottom: 10px;
    color: var(--dark-blue);
}

.head h2,
.head h2 span {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
}

.head h2 span {
    color: var(--orange);
}

.head h4 {
    font-size: 22px;
    color: #00a2fd;
    font-weight: 600;
    padding-bottom: 10px;
}

.head p {
    color: #333;
    font-weight: 400;
}

.head p a {
    text-decoration: underline !important;
    color: var(--orange);
}

a.main-cta {
    font-family: 'Inter', sans-serif;
    Border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    Border: 2px solid transparent;
    transition: all .3s;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

a.main-cta.btn--orange {
    Border: 2px solid #e76817;
    Box-shadow: 8px 8px 30px #f47a1e8a;
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--orange i {
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    justify-self: center;
    padding: 10px;
    align-items: center;
    Border: 2px solid #f2701d;
    background: linear-gradient(#f2701d, #f99250), linear-gradient(#f99250, #f2701d);
}

a.main-cta.btn--blue {
    Border: 2px solid #01122f;
    background: linear-gradient(#09275c, #0e2e67), linear-gradient(#0e2e67d6, #0e2e6763);
    box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--blue i {
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    justify-self: center;
    padding: 10px;
    align-items: center;
    Border: 2px solid #09275c;
    background: linear-gradient(#09275c, #01122f), linear-gradient(#01122f, #01122f);
}

a.main-cta.btn--orange:hover {
    Border-color: #01122f;
    box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--orange:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    height: 0;
    z-index: -1;
    background: linear-gradient(#09275c, #0e2e67), linear-gradient(#0e2e67d6, #0e2e6763);
}

a.main-cta.btn--orange:hover:before {
    height: 100%;
}

a.main-cta.btn--blue:hover {
    Border-color: #e76817;
    Box-shadow: 8px 8px 30px #f47a1e8a !important;
}

a.main-cta.btn--blue:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    height: 0;
    z-index: -1;
    background: linear-gradient(#f2701d, #f99250), linear-gradient(#f99250, #f2701d);
}

a.main-cta.btn--blue:hover:before {
    height: 100%;
}

a.main-cta.btn--blue:hover i {
    Border: 2px solid #e76817;
    Box-shadow: 8px 8px 30px #f47a1e8a;
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250);
}

a.main-cta.btn--orange:hover i {
    background: linear-gradient(#09275c, #01122f), linear-gradient(#01122f, #01122f);
    Border: 2px solid #01122f;
    box-shadow: 15px 15px 40px #0e2e678a !important;
}

a.main-cta.btn--white {
    Border: 2px solid transparent;
    color: var(--dark-blue);
    background: linear-gradient(#fff, #CCC), linear-gradient(#fff, #0e2e6763);
    box-shadow: 15px 15px 40px #0e2e678a !important
}

a.main-cta.btn--white i {
    border-radius: 5px;
    margin: 0 10px;
    display: flex;
    justify-self: center;
    padding: 10px;
    align-items: center;
    Border: 2px solid #fff;
    color: var(--dark-blue);
    font-weight: 700;
    box-shadow: 0 0 20px #0e2e678a !important;
    background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff)
}

a.main-cta.btn--white:hover {
    Border-color: #e76817;
    box-shadow: 15px 15px 40px #0e2e678a !important;
    color: var(--white)
}

a.main-cta.btn--white:before {
    position: absolute;
    content: '';
    width: 100%;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    height: 0;
    z-index: -1;
    background: linear-gradient(#f2701d, #f99250), linear-gradient(#f99250, #f2701d)
}

a.main-cta.btn--white:hover:before {
    height: 100%
}

a.main-cta.btn--white:hover i {
    Border: 2px solid #e76817;
    color: var(--white);
    background: linear-gradient(#f99250, #f2701d), linear-gradient(#f2701d, #f99250)
}

.row.footer-icon-row {
    margin-bottom: 0 !important;
}


/* GLOBAL CSS END HERE  */


/* FLOATING FORM CSS START HERE  */

.Form-box {
    width: 370px;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    padding: 0 20px;
    border-top: 5px solid #4385f4;
    margin: 0 auto;
    display: block;
    position: relative;
    padding-bottom: 20px;
}

.Form-box h2 {
    margin: 0;
    font-size: 34px;
    text-transform: uppercase;
    text-align: center;
    padding: 25px 0 30px;
    font-weight: 800;
    color: #0e2e67;
}

.Form-box h2 span {
    color: #f47a1e;
    font-weight: 800;
}

.Form-box .form-group {
    position: relative;
    margin-bottom: 15px;
}

.Form-box .form-group i {
    position: absolute;
    font-size: 18px;
    color: #f47a1e;
    left: 10px;
    height: 25px;
    width: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 25px;
}

.Form-box .form-control {
    height: 40px;
    padding-left: 40px;
    background-color: #f3f3f3;
    font-size: 14px;
    color: #a9a9a9;
    border: 1px solid #f6f4f4;
    box-shadow: none;
}

.Form-box:before {
    content: "";
    position: absolute;
    background-color: #f2701d;
    height: 10px;
    width: 370px;
    top: -15px;
    left: 0;
    border-radius: 8px 8px 0 0;
}

@media (max-width:767px) {
    .Form-box {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .Form-box h2 {
        font-size: 24px;
        padding-top: 0;
        padding-bottom: 15px;
    }

    .Form-box:before {
        width: 100%;
    }

    .mini-contact-area:before {
        display: none;
    }
}

#gmb-floatrq-form {
    top: 235px;
    width: 270px;
    display: none;
}

#floating_request_btn {
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 9999;
    transform: scale(-1);
}

#gmb-floatrq-form {
    background-size: cover;
    padding: 0;
    width: 300px;
    float: left;
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 9999;
    border: solid 1px #f2701d;
    border-right: 0;
}

#gmb-floatrq-form .button-box a {
    padding: 10px 15px;
    margin: 10px auto;
}

.close-div {
    position: absolute;
    left: 5px;
    top: 5px;
}

.close-rqf {
    padding: 2px 5px;
    font-size: 20px;
    color: #fff;
    background: #f47a1e;
    cursor: pointer;
}

.button-box a {
    font-size: 14px;
    color: #fff;
    background-color: #f47a1e;
    padding: 15px 25px;
    font-weight: 500;
    width: max-content;
    display: block;
    margin: 20px auto;
    text-decoration: none;
    border-radius: 4px;
}

#gmb-floatrq-form .Form-box {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    padding-bottom: 20px;
    position: relative;
}

#gmb-floatrq-form .Form-box:before {
    width: 100%;
}

#gmb-floatrq-form .Form-box h2 {
    font-size: 25px;
    padding: 10px 0;
}

#gmb-floatrq-form .button-box a {
    padding: 10px 15px;
    margin: 10px auto;
}

#gmb-floatrq-form .c-cont-box h4 {
    font-size: 13px;
}

#gmb-floatrq-form .c-cont-box a {
    font-size: 14px;
}

#gmb-floatrq-form textarea#Details2 {
    min-height: 100px;
}

#gmb-floatrq-form .form-group.textarea i {
    bottom: unset;
    top: 10px;
}


/* FLOATING FORM CSS END HERE  */


/* SECTION ONE CSS START HERE  */

section.cover--section {
    position: relative;
    background-image: url('../img/web-design-development/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 50px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

section.cover--section h1,
section.cover--section h1 span {
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    padding: 15px 0;
}

section.cover--section h1 {
    color: #486fa4;
}

section.cover--section h1 span {
    color: var(--dark-blue);
}

section.cover--section p.sub-txt {
    font-size: 20px;
    color: var(--dark-blue);
    padding-bottom: 25px;
}

section.cover--section p.sub-txt span {
    font-weight: bold;
}

.cover--btn {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 30px;
    position: relative;
    z-index: 99;
}

.cover--btn .btn-div {
    text-align: center;
}

.cover--btn a.main-btn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 50px;
    min-width: 200px;
    text-align: center;
    color: var(--white);
    margin-bottom: 10px;
}

.cover--btn a.main-btn.btn-blue {
    background: var(--dark-blue);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

a.main-btn.btn-orange {
    background: var(--orange);
    Box-shadow: 0 10px 20px #f47a1e8a;
}

.cover--btn .btn-div p a {
    font-size: 12px;
    color: #838383;
    border-bottom: 1px solid;
}

.cover--btn .btn-div p {
    margin: 0;
}

.cover--btn a.main-btn.btn-blue:hover {
    background: var(--orange);
    Box-shadow: 0 10px 20px #f47a1e8a;
}

a.main-btn.btn-orange:hover {
    background: var(--dark-blue);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

.cover--btn .btn-div p a:hover {
    color: var(--orange);
}

img.coverIcons {
    position: absolute;
    left: 0;
    mix-blend-mode: multiply;
}


/* img.coverImg {
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 9;
} */

img.coverImg {
    height: 90%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
    bottom: 0;
    margin: auto;
}

@media screen and (min-width: 1500px) {
    img.coverImg {
        position: unset;
        height: 100%;
    }
}

img.wave {
    position: absolute;
    bottom: 0;
}

.scroll-text {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #0e2e67;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}

.scroll-text img {
    position: absolute;
    animation-name: bounce;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    margin: 30px 0 0 10px;
}

@keyframes bounce {
    to {
        top: -30px
    }

    50% {
        top: -60px
    }

    from {
        top: -30px
    }
}


/* SECTION ONE CSS END HERE  */


/* SECTION TWO - PARTNERS AREA CSS START HERE  */

section.partners-area {
    background: #f0f4fd;
}

.partners-area ul.partners li img {
    max-width: 100%;
    padding: 5px;
    text-align: center;
    margin: 0 auto;
}

ul.partners .slick-arrow {
    background: var(--dark-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul.partners .prev--arrow.slick-arrow {
    left: -60px;
}

ul.partners .next--arrow.slick-arrow {
    right: -60px;
}

ul.partners .slick-arrow:hover {
    background: var(--orange);
}

.slick-arrow.slick-disabled {
    opacity: .5;
    cursor: no-drop;
}

ul.partners ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.partners ul.slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-blue);
    opacity: .5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

ul.partners .slick-dots li button {
    margin: 0 auto;
    background: var(--white);
    border-radius: 50%;
    width: 0;
    height: 0;
    padding: 0;
    transition: all .3s ease-in-out;
}

ul.partners ul.slick-dots li.slick-active {
    opacity: 1;
}


/* SECTION TWO - PARTNERS AREA CSS END HERE  */


/* SECTION THREE CSS START HERE  */

section.section.section--three {
    padding: 0;
    overflow: visible;
}

section.section.section--three .row {
    align-items: center;
}

section.section.section--three .col-left {
    padding-left: 0;
    background: #0e2e67;
    padding: 100px;
}

section.section.section--three .col-left h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
    padding-bottom: 40px;
}

section.section.section--three .col-left p {
    color: var(--white);
    font-size: 14px;
}

section.section.section--three .col-left a.main-cta {
    width: 70%;
    margin-top: 60px;
}

@media (min-width: 1199px) {
    img.laptop {
        position: absolute;
        top: 50px;
        right: 0;
        width: 58%;
        z-index: 9;
    }
}

@media (min-width: 1500px) {
    img.laptop {
        width: auto;
    }
}


/* SECTION THREE CSS END HERE  */


/* SECTION FOUR CSS START HERE  */

section.section.section--four.next-level {
    background: #f9faff;
}

section.section.section--four.next-level .head {
    margin-bottom: 80px;
}

@media (min-width: 1199px) {
    section.section.section--four.next-level .row {
        max-width: 980px;
        margin: 0 auto;
    }

    .section--four.next-level .col-left {
        position: relative;
        top: -50px;
    }
}

.section--four.next-level .col-left {
    padding: 30px 30px 50px;
    box-shadow: 10px 10px 10px rgb(204 204 204 / 40%);
    border-radius: 20px;
    z-index: 9;
    width: 265px;
}

.section--four.next-level .row-one .col-left {
    margin-right: -70px;
}

.section--four.next-level .row-two .col-left {
    margin-left: -70px;
}

.section--four.next-level .col-left img {
    margin-bottom: 20px;
}

.section--four.next-level .col-left h4 {
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
}

section.section.section--four.next-level .row {
    padding: 10px 0;
}

.section--four.next-level .col-right {
    box-shadow: 0px 0px 30px rgb(204 204 204 / 40%);
    border-radius: 20px;
    position: relative;
    background: var(--white);
}

.section--four.next-level .row-one .col-right {
    padding: 50px 50px 0 130px;
}

.section--four.next-level .row-two .col-right {
    padding: 50px 100px 0 50px;
}

.section--four.next-level .col-right p {
    color: var(--dark-blue);
    line-height: 24px;
}

.section--four.next-level .col-right p a {
    color: var(--orange);
}

section.section.section--four.next-level .row.or {
    text-align: center;
    margin: 30px 0;
}

section.section.section--four.next-level .row.or h2 {
    font-size: 52px;
    color: var(--dark-blue);
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.cta-row {
    text-align: center;
    margin-top: 30px;
}

.cta-row p.sub-txt {
    color: #616b7d;
    font-weight: 600;
}

.cta-row .cover--btn {
    justify-content: center;
}

img.lazy.nl-shape-orange {
    position: absolute;
    left: 0;
    top: 150px;
}

img.lazy.nl-shape-blue {
    position: absolute;
    right: 0;
    bottom: 0;
}


/* SECTION FOUR CSS END HERE  */


/* SECTION FIVE CSS START HERE  */

section.packages .head h2 {
    color: var(--orange);
}

section.packages p.pkg-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.packages-tabs-wrapper {
    margin-top: 70px;
}

.packages-tabs-head {
    display: flex;
    justify-content: center;
    grid-column-gap: 30px;
    border-radius: 50px;
}

.packages-tabs-head .pkg-tab {
    text-align: center;
}

.packages-tabs-head .pkg-tab p {
    position: relative;
    margin: 0;
    font-size: 14px;
    background: #acacac;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    padding: 18px 52px;
    border-radius: 50px;
    cursor: pointer;
    min-width: 300px;
    text-align: center;
    -webkit-transition: all 4s ease-in-out;
    -moz-transition: all 4s ease-in-out;
    -o-transition: all 4s ease-in-out;
    transition: all .4s ease-in-out;
}

.packages-tabs-head .pkg-tab.active p {
    background: var(--dark-blue);
    box-shadow: 5px 5px 20px rgb(0 22 94 / 40%);
    margin-bottom: 12px;
}

.packages-tabs-head .pkg-tab.active p:before {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid var(--dark-blue);
    position: absolute;
    content: '';
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.packages-tabs-head .pkg-tab small {
    font-family: 'Raleway', sans-serif;
    color: #616b7d;
    font-weight: 600;
    line-height: 20px;
    display: block;
    padding-top: 20px;
}

.packages-tabs-head .pkg-tab small {
    display: none;
}

.packages-tabs-head .pkg-tab.active small {
    display: block;
}

.packages-tabs-content {
    margin-top: 60px;
}

.packageBox {
    box-shadow: 0 0 15px 10px #efefef;
    border: 1px solid #efefef;
    border-radius: 20px;
}

.packageName {
    position: relative;
    background-image: url('../img/web-design-development/starter-pkg-back.webp');
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.packageName:before {
    position: absolute;
    content: '';
    background: var(--orange);
    height: 7px;
    width: 50%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.packageName h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
}

.packagePrice {
    position: relative;
    background: #f2f5f9;
    text-align: center;
    padding: 18px 0;
}

.packagePrice h3 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 70px;
    line-height: 1;
    color: var(--dark-blue);
    font-weight: 800;
    display: block;
}

.packagePrice h3 sup {
    color: var(--orange);
    top: -0.5em;
    font-size: 45px;
}

.packagePrice p {
    color: #6178a1;
    margin: 0;
}

.packageContent {
    padding: 0 25px;
}

.packageContent>p {
    color: #717d92;
    text-align: center;
    padding-top: 5px;
    font-size: 14px;
}

.packageContent ul {
    margin: 22px 0 !important;
    overflow-y: auto;
    height: 240px;
}

.packageContent hr {
    margin: 0;
    background: #ccc;
    opacity: 1;
}

.packageContent ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.packageContent ul::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.packageContent ul::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

.packageContent li {
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-blue);
    line-height: 24px;
}

.packageContent li i {
    color: var(--orange);
    margin-right: 5px;
}

.packageOrder {
    padding: 40px 0;
    text-align: center;
}

.packageOrder a.order--btn {
    display: inline-block;
    padding: 14px 54px;
    border-radius: 50px;
    min-width: 200px;
    text-align: center;
    color: var(--white);
    margin-bottom: 10px;
    background: var(--dark-blue);
    box-shadow: 5px 5px 20px rgb(0 22 94 / 40%);
}

.packageOrder a.order--btn:hover {
    background: var(--orange);
    Box-shadow: 0 10px 20px #f47a1e8a;
}

.pkg-tabContent {
    display: none;
    text-align: initial;
    margin-top: 60px;
}

.pkg-tabContent.active {
    display: block;
    animation-name: inUp;
    animation-timing-function: ease-in-out;
    animation-duration: .6s;
}

@keyframes inUp {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    90% {
        transform: translateY(-10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}


/* SECTION FIVE CSS END HERE  */


/* SECTION SIX CSS START HERE  */

section.call-us-section {
    background: #f2fcff;
}

.call-us-wrapper {
    text-align: center;
}

.call-us-wrapper .call-us-box {
    position: relative;
    background: var(--dark-blue);
    max-width: 50%;
    margin: 0 auto 50px;
    padding: 20px 0;
    border-radius: 20px;
    box-shadow: 5px 5px 20px #ccc;
}

.call-us-wrapper .call-us-box h2 {
    color: var(--white);
    font-size: 40px;
    font-weight: 800;
}

.call-us-wrapper .call-us-box h2 span {
    color: var(--orange);
}

.call-us-wrapper .call-us-box:before {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid var(--dark-blue);
    position: absolute;
    content: '';
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.call-us-wrapper .call-us-no a {
    font-size: 70px;
    color: var(--orange);
    font-weight: 700;
    line-height: 1;
    margin: 10px 0 20px;
    background: linear-gradient(to right, var(--dark-blue), var(--orange), var(--dark-blue));
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    transition: color .4s ease-in-out;
}

.call-us-wrapper .call-us-no a:hover {
    color: rgba(0, 0, 0, 0);
}

@keyframes rainbow {
    0% {
        background-position: left
    }

    50% {
        background-position: right
    }

    100% {
        background-position: left
    }
}

.call-us-no {
    position: relative;
    display: inline-block;
}

img.call-arrow-left,
img.call-arrow-right {
    position: absolute;
    bottom: 0;
}

img.call-arrow-left {
    left: -120px;
}

img.call-arrow-right {
    right: -120px;
}


/* SECTION SIX CSS END HERE  */


/* SECTION SEVEN CSS START HERE  */

section.how-it-works p.sub-heading {
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 50px;
}

.hiw-row-wrapper>div {
    position: relative;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px 40px 50px;
    box-shadow: 10px 10px 20px #eee;
}

.hiw-row-wrapper>div:nth-child(1) {
    background: #f1fff4;
}

.hiw-row-wrapper>div:nth-child(2) {
    background: #fffcf1;
}

.hiw-row-wrapper>div:nth-child(3) {
    background: #f1fcff;
}

.hiw-row-wrapper>div:not(:last-child) {
    margin-bottom: 70px;
}

.hiw-row-wrapper>div h4 {
    font-size: 20px;
    color: var(--black);
    font-weight: bold;
    padding-bottom: 15px;
}

.hiw-row-wrapper>div p {
    color: #313131;
    font-size: 14px;
    line-height: 24px;
}

.hiw-row-wrapper ul.hiw-service-icons {
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: 10px 10px 20px #eee;
    border-radius: 15px;
    padding: 10px 50px !important;
    display: flex;
    grid-column-gap: 50px;
    width: max-content;
}

.hiw-row-wrapper ul.hiw-service-icons li {
    display: flex;
    align-items: center;
    grid-column-gap: 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.hiw-row-wrapper>div:nth-child(odd) ul.hiw-service-icons {
    float: right;
}

.hiw-row-wrapper>div:nth-child(even) ul.hiw-service-icons {
    float: left;
}

.hiw-row-wrapper {
    counter-reset: section;
}

.hiw-row-wrapper>div:before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    top: -12px;
    left: -12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.how-it-works .row.ctaRow {
    text-align: center;
    margin-top: 70px;
    justify-content: center;
}


/* SECTION SEVEN CSS END HERE  */


/* SECTION EIGHT CSS START HERE  */

section.section.section--eight .head:before {
    right: unset;
}

section.section--eight ul {
    margin-bottom: 70px !important;
}

section.section--eight ul li {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

section.section--eight .col-left ul li img {
    margin-right: 20px
}

section.section--eight a {
    padding: 14px 40px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 600;
    color: var(--dark-blue);
    border: 3px solid var(--dark-blue);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}

section.section--eight i {
    font-size: 18px;
    padding-right: 5px;
}

section.section--eight a:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgb(0 22 94 / 40%);
}


/* SECTION EIGHT CSS END HERE  */


/* SECTION NINE CSS START HERE  */

section.testimonials .head h2,
section.testimonials .head p {
    color: var(--white);
}

.client-carousel .item {
    margin: 0 5px;
}

.client-card .client-content {
    padding: 20px;
    background: #001043;
    border-radius: 0 0 20px 20px;
    /* min-height: 415px; */
}

.client-card .logo-box {
    margin-top: -75px;
    display: flex;
    grid-gap: 15px;
}

.client-card .logo-star {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.client-card .logo-star i {
    color: #fec03e;
    font-size: 20px;
    margin: 0 5px;
}

.client-card h3 {
    color: var(--white);
    font-weight: 800;
    margin: 20px 0 5px;
    font-size: 22px;
}

.client-card .logo-img img {
    border: 2px solid #ddd;
    border-radius: 100%
}

.client-content hr {
    border: none;
    border-top: 2px solid var(--light-blue);
}

.client-card .designation {
    font-family: 'Raleway', sans-serif;
    color: var(--white);
    opacity: .5;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 0;
}

.client-card p {
    font-family: 'Inter', sans-serif;
    color: var(--white);
}

.client-carousel .slick-arrow {
    background: var(--white);
    color: var(--dark-blue);
}

.client-carousel .slick-arrow:hover {
    background: var(--orange);
    color: var(--white);
}

.cs-slider .slick-arrow {
    background: var(--dark-blue);
    color: var(--white);
}

.slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
}

.slick-arrow:hover {
    opacity: 1;
}

i.fa.fa-angle-left.prev--arrow.slick-arrow {
    left: -40px;
}

i.fa.fa-angle-right.next--arrow.slick-arrow {
    right: -40px;
}

.slick-arrow.slick-disabled {
    opacity: .5;
    cursor: no-drop;
}


/* .client-carousel .slick-list {
    padding-bottom: 20px;
} */

.client-carousel ul.slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    opacity: .5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.client-carousel .slick-dots li button {
    margin: 0 auto;
    background: var(--white);
    border-radius: 50%;
    width: 0;
    height: 0;
    padding: 0;
    transition: all .3s ease-in-out;
}

.client-carousel .slick-dots li button:before {
    display: none;
}

.client-carousel ul.slick-dots li.slick-active {
    opacity: 1;
}

.client-carousel ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.testimonials .row.ctaRow {
    justify-content: center;
    margin-top: 100px;
}


/* SECTION NINE CSS END HERE  */


/* SECTION TEN CSS START HERE  */

#portfolioSlider .slick-arrow {
    background: var(--dark-blue);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#portfolioSlider .prev--arrow.slick-arrow {
    left: -60px;
}

#portfolioSlider .next--arrow.slick-arrow {
    right: -40px;
}

#portfolioSlider .slick-arrow:hover {
    background: var(--orange);
}

#portfolioSlider ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

#portfolioSlider ul.slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-blue);
    opacity: .5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

#portfolioSlider .slick-dots li button {
    margin: 0 auto;
    background: var(--white);
    border-radius: 50%;
    width: 0;
    height: 0;
    padding: 0;
    transition: all .3s ease-in-out;
}

#portfolioSlider ul.slick-dots li.slick-active {
    opacity: 1;
}

section.portfolio .row.ctaRow {
    text-align: center;
    margin-top: 70px;
    justify-content: center;
}


/* SECTION TEN CSS END HERE  */


/* SECTION ELEVEN CSS START HERE  */

section.site-perfomance {
    background: #f8f8f8;
}

section.site-perfomance .row {
    align-items: center;
}


/* SECTION ELEVEN CSS END HERE  */


/* SECTION TWELVE CSS START HERE  */

section.searchberg-magic .head {
    position: relative;
    margin-bottom: 70px;
    padding-bottom: 30px;
}

section.searchberg-magic .head h2 {
    font-size: 34px;
}

section.searchberg-magic .head img {
    margin-bottom: 20px;
}

section.searchberg-magic p {
    color: #333;
    line-height: 26px;
    font-weight: 500;
    margin: 0;
}

section.searchberg-magic .col-style h2 {
    color: var(--dark-blue);
    font-size: 30px;
    font-weight: 800;
    padding-bottom: 20px;
}

section.searchberg-magic .col-style h2 span {
    color: var(--orange);
}

section.searchberg-magic .col-style p {
    color: #6a6a6a;
}

section.searchberg-magic .row {
    align-items: center;
}


/* SECTION TWELVE CSS END HERE  */


/* SECTION THIRTEEN CSS START HERE  */

.seciton--thirteen {
    padding-top: 100px;
}

.contactBox--wrapper {
    position: relative
}

.contact--box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 60px;
    box-shadow: 5px 5px 10px 5px #e6eeff;
    z-index: 99
}

.contact--box h2 {
    color: var(--dark-blue);
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px
}

.contact--box p {
    color: var(--dark-blue);
    line-height: 30px;
    margin: 0;
}

.triangle-with-shadow {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 10px -17px #ccc;
    position: absolute;
    top: 100%;
    left: calc(50% - 50px)
}

.triangle-with-shadow:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    transform: rotate(45deg);
    bottom: 75px;
    right: 25px;
    box-shadow: 5px 5px 10px -2px #ccc
}

.seciton--thirteen img.orange-dots {
    position: absolute;
    top: -40px;
    left: -50px
}

.seciton--thirteen img.grady-dots {
    position: absolute;
    right: -50px;
    bottom: -40px
}

.seciton--thirteen .sec-cta {
    margin-top: 80px
}

.seciton--thirteen .sec-cta a.main-cta {
    display: inline-flex;
    padding: 14px 50px
}


/* SECTION THIRTEEN CSS END HERE  */


/* SECTION FOURTEEN - MILESTONS CSS START HERE  */

section.sb--milestones {
    background: #e0f0ff;
}

.sb--milestones .head h2 {
    color: var(--dark-blue);
}

.ms-box {
    padding: 0 20px;
    text-align: center;
}

.ms-box h3,
.ms-box h3 span {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    color: var(--dark-blue);
    font-weight: 800;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin: 10px 0;
}

.ms-box p {
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.ms-box h3 span {
    color: var(--orange);
    border: 0;
}


/* SECTION FOURTEEN - MILESTONS CSS END HERE  */


/* SECTION FIVETEEN - FAQS CSS START HERE  */

section.faq-section .head {
    margin-bottom: 20px;
}

section.faq-section .head h2,
section.faq-section .head h2 span {
    font-size: 52px;
}

section.faq-section .head:before {
    display: none;
}

.faq-section .info-details {
    background: #e5edfa;
    border-radius: 10px;
    line-height: 1.6;
    padding: 20px;
}

.faq-section .info-details h3 {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-blue);
    text-decoration: none;
    margin: 20px 0;
}

ul#accordian {
    overflow-y: auto;
    max-height: 580px;
    padding: 0 20px 20px !important;
}

ul#accordian::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

ul#accordian::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

ul#accordian::-webkit-scrollbar-thumb {
    background-color: var(--orange);
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

ul#accordian li p {
    display: none;
    color: #6a6a6a;
}

ul#accordian li {
    border-bottom: 1px solid #c6d2e6;
    padding: 25px 30px;
    cursor: pointer;
}

ul#accordian h4 {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul#accordian h4 i {
    color: var(--orange);
    font-size: 24px;
    transition: all .3s ease-in-out;
}

ul#accordian li.active {
    box-shadow: 0px 0px 15px 10px #e6eeff;
    border-radius: 30px;
    border: 0;
    margin-top: 20px;
}

ul#accordian li.active h4 {
    padding-bottom: 20px;
}

ul#accordian li p a {
    color: var(--orange);
}

ul#accordian li.active i::before {
    content: '\f068';
}


/* SECTION FIVETEEN - FAQS CSS END HERE  */


/* SECTION SIXTEEN CSS START HERE  */

section.why-new-website .col-left {
    padding-left: 0;
}

section.why-new-website .col-right .head h2 {
    text-transform: capitalize;
}

section.why-new-website .col-right .head:before {
    right: unset;
}

section.why-new-website p {
    line-height: 24px;
    color: #333;
    margin-bottom: 2rem;
}

section.why-new-website .col-inner {
    margin-left: -90px;
    max-width: 90%;
}

section.why-new-website ul li {
    font-weight: 500;
    color: var(--dark-blue);
    line-height: 22px;
    display: flex;
    align-items: center;
    grid-column-gap: 15px;
}

section.why-new-website ul li:not(:last-child) {
    margin-bottom: 18px;
}

section.why-new-website ul {
    margin: 90px !important;
}


/* SECTION SIXTEEN CSS END HERE  */

/* SECTION EIGHTEEN CSS START HERE  */

.section.s18 {
    padding-bottom: 0;
}

.section.s18 a {
    color: var(--orange);
    font-weight: 500;
}

/* SECTION EIGHTEEN CSS END HERE  */

/* SECTION SEVENTEEN - BOTTOM FORM CSS START HERE  */

div#discussLead {
    background: #3d62a3;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

div#discussLead span.dot {
    display: block;
    margin-left: 20px;
}

div#discussLead span.dot i {
    color: var(--white);
    opacity: 0.7;
}

div#discussLead span.dot i {
    margin-right: 10px;
}

.bottom-form.contact {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 120px;
    margin-top: 10px;
    box-shadow: 0px 0px 8px #222;
}

.bottom-form.contact h2 {
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bottom-form.contact h2 span {
    color: var(--orange);
}

.bottom-form.contact h2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 100px;
    height: 5px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.form-group .form-control {
    position: relative;
    color: #3d62a3;
    border: 2px solid #9eb0d1;
    background: #fafcfe;
    border-radius: 7px;
    padding: 14px 40px;
    box-shadow: unset;
    outline: unset;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-group i {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    color: #acb9d3;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
}

.form-control::placeholder {
    color: #3d62a3;
    opacity: 0.5;
}

textarea#Details {
    height: 150px;
}

.form-group.textarea {
    margin-bottom: 10px;
}

.form-group.textarea i {
    bottom: unset;
    top: 20px;
}

p.form-sub-text {
    color: #737373;
    font-size: 14px;
}

.btn-box {
    margin-top: 35px;
}

.btn-box a {
    display: inline-block;
    background: #16366e;
    color: var(--white);
    padding: 18px 96px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 500;
}

.btn-box a:hover {
    background: var(--orange);
}

.form-group .form-control:focus,
.form-group .form-control:visited {
    border-color: #3d62a3;
}

textarea#Details:focus::placeholder {
    color: #3d62a3;
    opacity: 1;
}

input::-webkit-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

input:focus::-webkit-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Firefox < 19 */

div#discussLead input:-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus:-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Firefox > 19 */

div#discussLead input::-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus::-moz-placeholder {
    color: #3d62a3;
    opacity: 1;
}


/* Internet Explorer 10 */

div#discussLead input:-ms-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

div#discussLead input:focus:-ms-input-placeholder {
    color: #3d62a3;
    opacity: 1;
}

.mini-contact-area {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.mini-contact-box {
    display: flex;
    align-items: center;
}

.c-cont-box h4 {
    font-size: 14px;
    margin: 0;
    color: #999;
    font-weight: 600;
}

.c-cont-box a {
    font-size: 20px;
    margin: 0;
    color: #16366e;
    font-weight: 800;
}

.c-cont-box a:hover {
    color: var(--orange);
}

.c-icon-box i {
    font-size: 24px;
    color: var(--orange);
    margin-right: 15px;
}

.mini-contact-box:first-child {
    margin-bottom: 10px;
}


/* SECTION SEVENTEEN - BOTTOM FORM CSS END HERE  */


/* MEDIA QURIES CSS START HERE  */

@media only screen and (max-width: 1199px) {

    .head h2,
    .head h2 span {
        font-size: 36px;
    }

    img.coverImg {
        position: unset;
    }

    img.coverIcons {
        display: none;
    }

    section.cover--section {
        padding-bottom: 60px;
    }

    section.section.section--three .col-left {
        padding: 50px;
    }

    section.section.section--three .col-left h2 {
        font-size: 30px;
    }

    .section--four.next-level .row {
        z-index: 99;
        position: relative;
    }

    #portfolioSlider .prev--arrow.slick-arrow {
        left: 0;
    }

    #portfolioSlider .next--arrow.slick-arrow {
        right: 0;
    }

    .contact--box h2 {
        font-size: 50px;
    }

    .ms-box h3,
    .ms-box h3 span {
        font-size: 36px;
    }

    ul#accordian {
        max-height: 690px;
    }

    section.why-new-website .col-inner {
        margin: 0;
        max-width: 100%;
    }

    section.why-new-website ul {
        margin: 0 !important;
    }

    .bottom-form {
        padding: 30px 30px;
    }

    .bottom-form h2 {
        font-size: 21px;
    }
}

@media only screen and (max-width: 991px) {

    .head h2,
    .head h2 span {
        font-size: 30px;
    }

    .head h2 br,
    .head h2 span br {
        display: none;
    }

    .head h4 br {
        display: none;
    }

    .head p br {
        display: none;
    }

    section.cover--section h1,
    section.cover--section h1 span {
        font-size: 36px;
    }

    section.cover--section h1 br {
        display: none;
    }

    section.cover--section p.sub-txt br {
        display: none;
    }

    section.cover--section p.sub-txt {
        font-size: 18px;
    }

    section.section.section--three .col-left a.main-cta {
        max-width: 50%;
    }

    section.section.section--three .col-lg-6.col-right {
        display: none;
    }

    .section--four.next-level .row-one .col-left {
        margin: 0;
    }

    .section--four.next-level .col-left h4 {
        font-size: 20px;
    }

    .section--four.next-level .col-left {
        border-radius: 20px 0 0 20px;
        width: 33.3333333333%;
    }

    .section--four.next-level .row-one .col-right {
        border-radius: 0 20px 20px 0;
        padding: 50px;
    }

    .section--four.next-level .row-two .col-right {
        border-radius: 20px 0 0 20px;
        padding: 50px;
    }

    .section--four.next-level .row-two .col-left {
        border-radius: 0 20px 20px 0;
        margin: 0;
    }

    section.packages p.pkg-heading {
        font-size: 20px;
    }

    .pkgsWrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding-bottom: 20px;
        margin: 0 !important;
        justify-content: normal;
        align-items: normal;
    }

    .pkgsWrapper>div {
        min-width: 50%;
    }

    .pkgsWrapper::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #f5f5f5;
    }

    .pkgsWrapper::-webkit-scrollbar {
        height: 7px;
        background-color: #f5f5f5;
    }

    .pkgsWrapper::-webkit-scrollbar-thumb {
        background-color: var(--orange);
        background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    }

    .call-us-wrapper .call-us-box {
        max-width: 100%;
    }

    section.section--eight ul {
        margin-bottom: 40px !important;
    }

    section.section.section--eight .col-right {
        margin-top: 30px;
    }

    section.searchberg-magic .head h2 {
        font-size: 30px;
    }

    .contact--box h2 {
        font-size: 36px;
    }

    .contact--box p br {
        display: none;
    }

    .ms-box h3,
    .ms-box h3 span {
        font-size: 30px;
    }

    .ms-box p {
        font-size: 14px;
    }

    .ms-box {
        padding: 0;
    }

    section.faq-section .head h2,
    section.faq-section .head h2 span {
        font-size: 30px;
        text-align: center;
    }

    .faq-section .info-details {
        margin-bottom: 30px;
    }

    ul#accordian {
        max-height: initial;
    }

    section.why-new-website .col-left {
        display: none;
    }

    section.why-new-website .col-right {
        width: 100%;
    }

    section.why-new-website {
        padding: 0;
    }

    .contact-box-q {
        text-align: center;
    }

    .call-custom-cta a:first-child {
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
    p {
        font-size: 14px;
        line-height: 20px;
    }

    .section {
        padding: 40px 0;
    }

    .head h2,
    .head h2 span {
        font-size: 20px;
    }

    .head h4 {
        font-size: 18px;
    }

    .head p {
        font-size: 14px;
        line-height: 20px;
    }

    a.main-cta {
        font-size: 14px;
        letter-spacing: 0px;
        padding: 10px 0px !important;
        height: 60px;
        display: flex !important;
    }

    a.main-cta i {
        padding: 5px;
    }

    section.cover--section {
        padding: 25px 0;
    }

    section.cover--section h1,
    section.cover--section h1 span {
        font-size: 20px;
        line-height: 30px;
    }

    section.cover--section p.sub-txt {
        font-size: 14px;
        line-height: 20px;
        margin: 0;
    }

    .cover--btn a.main-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    section.cover--section .col-right {
        display: none;
    }

    .scroll-text {
        display: none;
    }

    #floating_request_btn {
        display: none;
    }

    .cover--btn {
        grid-gap: 20px;
        justify-content: center;
    }

    section.section.section--three .col-left {
        padding: 40px 15px;
    }

    section.section.section--three .col-left h2 {
        font-size: 20px;
        padding-bottom: 20px;
    }

    section.section.section--three .col-left a.main-cta {
        max-width: 100%;
        width: 100%;
        margin-top: 40px;
    }

    img.lazy.nl-shape-orange,
    img.lazy.nl-shape-blue {
        display: none;
    }

    .section--four.next-level .col-left {
        width: 100%;
    }

    section.section.section--four.next-level .row {
        padding: 15px;
    }

    section.section.section--four.next-level .head {
        margin-bottom: 40px;
    }

    .section--four.next-level .col-left {
        border-radius: 20px 20px 0 0;
    }

    .section--four.next-level .row-one .col-right {
        padding: 30px;
        border-radius: 0 0 20px 20px;
    }

    section.section.section--four.next-level .row.or {
        margin: 0;
    }

    .section--four.next-level .row-two {
        flex-direction: column-reverse;
    }

    .section--four.next-level .col-left {
        padding: 30px;
    }

    .section--four.next-level .row-two .col-right {
        padding: 30px;
        border-radius: 0 0 20px 20px;
    }

    .section--four.next-level .row-two .col-left {
        border-radius: 20px 20px 0 0;
    }

    .packages-tabs-head {
        flex-direction: column;
        grid-row-gap: 20px;
    }

    .packageName h2 {
        font-size: 30px;
    }

    .packagePrice h3 {
        font-size: 50px;
    }

    .packagePrice h3 sup {
        font-size: 35px;
    }

    .packageOrder a.order--btn {
        padding: 10px 40px;
    }

    .call-us-wrapper .call-us-box h2 {
        font-size: 24px;
    }

    .call-us-wrapper .call-us-no a {
        font-size: 36px;
    }

    img.call-arrow-left,
    img.call-arrow-right {
        display: none;
    }

    .hiw-row-wrapper>div:nth-child(odd) ul.hiw-service-icons,
    .hiw-row-wrapper>div:nth-child(even) ul.hiw-service-icons {
        float: unset;
        flex-direction: column;
        grid-gap: 20px;
        width: auto;
        padding: 20px !important;
    }

    .hiw-row-wrapper ul.hiw-service-icons li {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works .row.ctaRow {
        margin-top: 40px;
    }

    section.testimonials .row.ctaRow {
        margin-top: 70px;
    }

    section.site-perfomance img {
        margin-bottom: 30px;
    }

    section.section.section--eight .col-right {
        display: none;
    }

    section.searchberg-magic .head h2 {
        font-size: 20px;
    }

    section.searchberg-magic .col-style h2 {
        font-size: 20px;
    }

    section.section.section--twelve.searchberg-magic .row:last-child {
        margin-bottom: 20px;
    }

    section.searchberg-magic .head {
        margin-bottom: 40px;
    }

    section.section.section--twelve.searchberg-magic .row-one {
        flex-direction: column-reverse;
    }

    section.section.section--twelve.searchberg-magic .row-one img,
    section.section.section--twelve.searchberg-magic .row-two img {
        margin-top: 30px;
    }

    section.section.seciton--thirteen {
        padding-top: 0;
    }

    .contact--box h2 {
        font-size: 24px;
    }

    .contact--box {
        padding: 20px;
    }

    img.grady-dots,
    img.orange-dots {
        display: none;
    }

    section.faq-section .head h2,
    section.faq-section .head h2 span {
        font-size: 20px;
    }

    .sb--milestones .row .col-sm-3 {
        max-width: 50%;
    }

    .ms-box p {
        font-size: 12px;
    }

    .ms-box h3,
    .ms-box h3 span {
        font-size: 24px;
    }

    ul#accordian {
        padding: 0 !important;
    }

    ul#accordian li {
        padding: 25px 0;
        box-shadow: unset;
    }

    ul#accordian li.active {
        box-shadow: unset;
        background: none;
        border-radius: 0;
    }

    ul#accordian h4 i {
        font-size: 18px;
    }

    .bottom-form {
        padding: 30px 20px;
    }

    .mini-contact-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-box-q h3 {
        font-size: 26px;
        padding: 25px 20px;
    }

    .call-custom-cta a {
        padding: 0 !important;
    }

    .call-custom-cta a:first-child {
        margin-bottom: 20px;
    }
}


/* MEDIA QURIES CSS END HERE  */