:root {
    --gray: #747474;
    --black: #000;
    --light-black: #333333;
    --white: #fff;
    --light-blue: #486fa4;
    --dark-blue: #0e2e67;
    --orange: #f16f1d;
    --sky-blue: #0c7cde;
}

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

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

p {
    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;
}

button {
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    background: transparent;
}

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: 5rem 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;
    margin: 0 0 2rem;
    padding: 0 0 1.5rem;
}

.head-center {
    max-width: 70%;
    margin: 0 auto 3rem;
}

.head h2 {
    color: var(--dark-blue);
    margin: 0 0 .5rem;
}

.head h2,
.head h2 span {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}

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

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

.head:before {
    margin: unset;
}

.head-center:before {

    margin: auto;
}

.head p:last-child {
    margin: 0;
}

.head h3 {
    font-size: 28px;
    color: var(--light-black);
    font-weight: bold;
    line-height: 1;
    margin: 1rem 0 0;
}

.head h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--orange);
    color: var(--white);
    display: inline-block;
    padding: 0.2rem 1rem;
}

.head p {
    color: #121826;
    font-size: 16px;
    font-weight: 500;
}

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

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


.main-cta {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    padding: 1rem 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    border-radius: 6px;
    -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;
}

.main-cta.btn-blue {
    background: var(--dark-blue);
    box-shadow: 2px 2px 20px rgb(14 46 103 / 50%);
}

.main-cta.btn-blue:hover {
    background: var(--orange);
    box-shadow: unset;
}

.main-cta.btn-orange {
    background: var(--orange);
    box-shadow: 2px 2px 20px rgb(241 111 29 / 50%);
}

.main-cta.btn-orange:hover {
    background: var(--dark-blue);
    box-shadow: unset;
}

a.main-cta.btn-blue-border {
    background: transparent;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
}

.main-cta.btn-blue-border:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 2px 2px 20px rgb(241 111 29 / 50%);
}


section.diamond {
    padding-top: 120px;
    overflow: visible;
    border-top: 1px solid #b9b9b9;
}

img.diamond {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 9;
}

/* GLOBAL CSS END HERE  */


/* SECTION ONE CSS START HERE */

section.cover--section {
    position: relative;
    background-image: url('../img/global/coverBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 40px 0;
    overflow: hidden;
}

@media screen and (min-width: 1199px) {
    .cover--section .topRow .col-left {
        padding-right: 5rem;
    }
}

.cover--section .topRow p.sub-heading {
    color: #526d9d;
    letter-spacing: 2px;
    font-weight: bold;
    font-style: italic;
    margin: 0 0 10px;
}

.cover--section .topRow h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 50px;
    padding-bottom: 15px;
}

.cover--section .topRow p.sub-txt {
    font-weight: 500;
}

.cover--section .topRow h1 span {
    color: var(--orange);
}

.cover--section .topRow p.sub-text {
    color: var(--dark-blue);
}

.cover--section .coverBtns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 0;
}

.cover--section .coverBtns a {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}


.cover--section .coverBtns .talk-chat {
    background: var(--orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    Box-shadow: 0 10px 20px #f47a1e8a;
}

.cover--section .coverBtns .talk-chat:hover {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.cover--section .coverBtns .talk-phone {
    position: relative;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    padding-left: 45px;
}

.cover--section .coverBtns .talk-phone:before {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 0px;
    width: 35px;
    height: 35px;
    background: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -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;
}

.cover--section .coverBtns .talk-phone:hover {
    color: var(--orange);
}

.cover--section .coverBtns .talk-phone:hover:before {
    background: var(--orange);
}

.coverImg {
    display: none;
}

@media screen and (min-width: 1366px) {
    .coverImg {
        display: block;
        position: absolute;
        right: 0%;
        top: 30px;
    }

    hr {
        max-width: 85%;
    }
}

@media only screen and (min-width: 1500px) {
    .coverImg {
        right: 0;
    }
}


@media only screen and (min-width: 1600px) {
    .coverImg {
        right: 5%;
    }
}

@media only screen and (min-width: 1800px) {
    .coverImg {
        right: 8%;
    }
}

@media only screen and (min-width: 2000px) {
    .coverImg {
        right: 10%;
    }
}

.cover--section .bottomRow {
    position: relative;
    text-align: center;
    margin: 1rem 0 0;
}

.cover--section .bottomRow .statsRow {
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.cover--section .bottomRow .statsBox h2 {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: revert;
    color: var(--dark-blue);
}

.cover--section .bottomRow .statsBox p {
    font-weight: 500;
    color: var(--dark-blue);
}

.cover--section .bottomRow ul.partners {
    display: flex;
    grid-gap: 20px;
    width: 90%;
    margin: 0 auto !important;
    justify-content: center;
    align-items: center;
}

ul.partners img {
    filter: grayscale(1);
    -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 img:hover {
    filter: grayscale(0);
}


.cover--section .col-right .Form-box h2 {
    text-align: center;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark-blue);
    padding-bottom: 20px;
}


.cover--section .col-right .Form-box h2 span {
    color: var(--orange);
}

.cover--section .Form-box {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    padding: 30px 20px;

    margin: 0 0 20px auto;
    box-shadow: 10px 0 15px rgb(14 46 103 / 20%);
}

@media screen and (min-width: 1366px) {
    .cover--section .Form-box {
        max-width: 65%;
    }
}

.cover--section .Form-box:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 30%;
    height: 5px;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
}

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

.cover--section .Form-box .form-group i {
    position: absolute;
    font-size: 14px;
    color: #f47a1e;
    left: 15px;
    top: 18px;
}

.cover--section .Form-box .form-control {
    padding: 10px 10px 10px 40px;
    background-color: #f3f7fa;
    font-size: 14px;
    color: #a9a9a9;
    border: 1px solid #f6f4f4;
    box-shadow: none;
    border-radius: 50px;
}

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

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

.cover--section textarea#Details1 {
    border-radius: 20px;
    height: 80px;
    resize: none;
}

.cover--section .Form-box .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #9daac1;
}

.cover--section .button-box button {
    background: var(--orange);
    color: var(--white);
    padding: 12px 50px;
    border-radius: 50px;
    display: inline-block;
    Box-shadow: 0px 0px 10px #f47a1e8a;
}

.cover--section .button-box button i {
    font-size: 14px;
    padding-left: 5px;
}

.cover--section .button-box {
    text-align: center;
    margin-top: 24px;
}

.cover--section .button-box button:hover {
    background: var(--dark-blue);
    box-shadow: unset;
}



/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */


.s2 .col-left p {
    margin: 0;
    color: #333333;
}

.s2 .col-left ul {
    margin: 1.5rem 0 !important;
}

.s2 .col-left ul li:not(:last-child) {
    padding: 0 0 .6rem;
    margin: 0 0 .6rem;
    border-bottom: 1px solid #eee;
}

.s2 .col-left ul li {
    color: var(--dark-blue);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.s2 .div-sounds {
    background: #e5edfa;
    border-radius: .5rem;
    width: max-content;
    padding: .8rem;
}

.s2 .div-sounds>span {
    font-size: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.s2 .div-sounds>p {
    color: var(--dark-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.s2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}



@media screen and (min-width: 1199px) {
    .seo-screen {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

.s3 {
    background: #fff9ed;
    padding-bottom: 6rem;
}

.s3 .head {
    margin-bottom: 3rem;
}

.s3 .tab-content {
    display: none;
}

.s3 .tab-content.active {
    display: block;
}

@media screen and (min-width: 1199px) {
    .s3 .tab-content.active .col-lg-7 {
        padding-right: 60px;
    }
}

.s3 p.sub-txt {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.s3 .tabs-head .tabs-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 20px;
    border-bottom: 5px solid var(--dark-blue);
}

.s3 .tab-nav {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: #f6f6f6;
    border: 1px solid #e2e2e2;
    text-transform: uppercase;
    border-bottom: 0;
    padding: 4px 22px;
    line-height: 3;
    text-align: center;
    color: #646464;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
}

.s3 .tab-nav.active {
    background: var(--dark-blue);
    color: var(--white);
}

.s3 .tab-nav img {
    margin-right: 10px;
}

.s3 .tab-nav.active img,
.s3 .tab-nav:hover img {
    filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(255deg) brightness(300%) contrast(100%);
    -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;
}

.s3 .tab-nav:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.s3 .tabs-body {
    background: var(--white);
    border: 1px solid #e2e2e2;
    border-top: 0;
    padding: 40px;
}

.s3 .tab-content h2 {
    font-size: 30px;
    color: var(--dark-blue);
    font-weight: bold;
    padding-bottom: 20px;
}

.s3 .tab-content a h2:hover {
    color: var(--orange);
}

.s3 .tab-content p {
    font-family: 'Inter', sans-serif;
    line-height: 22px;
}

.s3 .tab-content p u {
    font-weight: 600;
    color: var(--dark-blue);
}

.s3 .tab-content .col-lg-5 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .s3 .seo-solutions {
    margin: 3rem 0 0;
} */

.s3 .seo-solutions ul {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 12px;
}

.s3 .seo-solutions ul li a {
    display: block;
}

.s3 .seo-solutions ul li {
    box-shadow: 0px 0px 10px rgb(14 46 103 / 10%);
    padding: 1rem;
    text-align: center;
}

.s3 .seo-solutions ul li p {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin: 10px 0 0;
    color: #333;
}

.s3 .seo-solutions>p {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-weight: 600;
    border-bottom: 1px solid;
    display: inline-block;
}

.orange-dots,
.gray-dots {
    display: none;
}

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

    .orange-dots,
    .gray-dots {
        display: block;
        position: absolute;
    }

    .orange-dots {
        top: 3rem;
        left: -1rem;
    }

    .gray-dots {
        right: -2rem;
        bottom: 1rem;
    }
}

/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */

.s4 p.sub-text {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--dark-blue);
}

.s4 .row {
    margin-top: 3rem;
    grid-row-gap: 1.5rem;
}

.s4 .expertise-box {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px #ddd;
    border: 1px solid #e4e4e4;
}

.s4 .expertise-box img {
    width: 100%;
}

.s4 .expertise-box h3 {
    background: var(--dark-blue);
    text-align: center;
    color: var(--white);
    padding: .75rem 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.s4 ul.expertise-stats {
    display: flex;
}

.s4 ul.expertise-stats>li {
    flex: 1 1 50%;
    text-align: center;
    padding: 1rem 0;
}

.s4 ul.expertise-stats p {
    margin: 0;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--dark-blue);
}

.s4 ul.expertise-stats small {
    color: #474747;
    font-weight: 500;
}

.s4 ul.expertise-stats>li:not(:last-child) {
    border-right: 1px solid #cfd5e1;
}

.s4 .expertise-bottom {
    border-top: 1px solid #cfd5e1;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: 125px;
}

.s4 .expertise-bottom p {
    font-size: .875rem;
    line-height: 1.25rem;
    color: #333333;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}

/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */

.s5 {
    background: #e5edfa;
}

.s5 .col-style {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    min-height: 460px;
}

.s5 .col-style h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    padding: 0 0 1rem;
    margin: 0 0 1rem;
}

.s5 .col-style h3:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 5px;
    background: var(--orange);
    bottom: 0;
    left: 0;
}

.s5 .col-style p {
    font-size: .875rem;
    line-height: 20px;
    font-weight: 500;
}

.s5 .col-style a {
    border: 2px solid #091f48;
    display: inline-block;
    padding: .6rem 1.4rem;
    border-radius: .4rem;
    font-size: .875rem;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1rem 0 0;
}

.s5 .col-style a i {
    margin-left: .5rem;
    color: #091f48;
    transition: all .3s ease-in-out !important;
}

.s5 .col-style a:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.s5 .col-style a:hover i {
    color: var(--white);
}


/* SECTION FIVE CSS END HERE */


/* SECTION SIX CSS START HERE */

.s6 .paper-plan {
    position: absolute;
    left: -10px;
    top: -10px;
}

.s6 .contaact-form-1 {
    background: #e5edfa;
    border-radius: 1rem;
    padding: 3rem 6rem;
    text-align: center;
    position: relative;
}

.s6 .contaact-form-1 h2,
.s6 .contaact-form-1 h3 {
    font-family: 'Raleway', sans-serif;
}

.s6 .contaact-form-1 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    /* text-transform: uppercase; */
    color: var(--orange);
}

.s6 .contaact-form-1 h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-blue);
}

.s6 .contaact-form-1 form {
    margin: 3rem 0 0;
}

.s6 .contaact-form-1 .row {
    grid-row-gap: 1rem;
}

.s6 .contaact-form-1 .form-group {
    position: relative;
}

.s6 .contaact-form-1 .form-group i {
    position: absolute;
    left: 1.5rem;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--orange);
}

.s6 .contaact-form-1 .form-group input {
    border-radius: 50px;
    min-height: 60px;
    border: 0;
    box-shadow: 0px 0px 10px 1px #ddd;
    padding: 0 3rem;
}

.s6 .contaact-form-1 .form-group input:focus {
    box-shadow: unset !important;
}

.s6 .contaact-form-1 .form-group ::placeholder {
    color: #9daac1;
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.s6 .contaact-form-1 .btn-box {
    margin: 3rem 0;
}

.s6 .contaact-form-1 .btn-box .btn-submit {
    background: var(--dark-blue);
    color: var(--white);
    display: inline-block;
    padding: 1.2rem 5rem;
    border-radius: 50px;
    box-shadow: 5px 5px 20px 1px rgb(14 46 103 / 40%);
}

.s6 .contaact-form-1 .btn-box .btn-submit:hover {
    background: var(--orange);
    box-shadow: 5px 5px 20px 1px rgb(241 111 29 / 40%);
}

.s6 .contaact-form-1 .mini-contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.s6 .contaact-form-1 .mini-contact-box {
    display: flex;
    align-items: center;
    text-align: left;
}

.s6 .contaact-form-1 .c-cont-box span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
    color: #999;
    font-weight: 500;
    display: block;
}

.s6 .contaact-form-1 .c-cont-box a,
.s6 .contaact-form-1 .c-cont-box button {
    font-size: 20px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: bold;
}

.s6 .contaact-form-1 .c-cont-box a:hover,
.s6 .contaact-form-1 .c-cont-box button:hover {
    color: var(--orange);
}

.s6 .contaact-form-1 .c-icon-box i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-right: 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */

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

.s7 .head>* {
    color: var(--white);
}

.s7 .tab-content {
    display: none;
}

.s7 .tab-content.active {
    display: block;
}

.s7 ul.tabs-list {
    background: #1a3c7a;
    border-radius: .5rem;
    overflow: hidden;
    position: relative;
}

.s7 ul.tabs-list .tab-nav {
    position: relative;
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    line-height: 1;
}

.s7 .tab-icon {
    background: #0d1e3d;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.s7 ul.tabs-list .tab-nav.active,
.s7 ul.tabs-list .tab-nav.active .tab-icon {
    background: var(--orange);
}

.s7 .tab-content {
    padding-left: 2rem;
}

.s7 .tab-content h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    padding: 0 0 1rem;
    margin: 0 0 2rem;
    text-transform: capitalize;
}

.s7 .tab-content h3:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 60px;
    height: 5px;
    bottom: 0;
}

.s7 .tab-content p {
    color: #dae0f1;
    font-size: .875rem;
    line-height: 24px;
}

.s7 a.consultation {
    background: var(--orange);
    color: var(--white);
    padding: .8rem 2rem;
    text-transform: uppercase;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 4px;
    margin: 2rem 2rem 0;
    display: inline-block;
}

.s7 a.consultation:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.s7 a.consultation i {
    margin-left: .5rem;
}

/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT CSS START HERE */

.s8 {
    background-image: url('../img/seo-services/seo-services-bg.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.s8 .row {
    grid-row-gap: 1.5rem;
}

.s8 .seo-service-box {
    position: relative;
    background: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    min-height: 350px;
    overflow: hidden;
    border: 1px solid #d2dcee;
    box-shadow: 15px 15px 30px rgb(0 91 255 / 15%);
}

.s8 .seo-service-box h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 1rem 0 0;
}

.s8 .seo-service-box hr {
    background: #d3d5e0;
    opacity: 1;
}

.s8 .seo-service-box p {
    font-size: .875rem;
    color: #333;
    font-weight: 500;
    line-height: 22px;
}

.s8 .seo-service-box p:last-child {
    margin: 0;
}

.toll-free-row {
    margin: 8rem 0 0;
}

.toll-free-row .head:before {
    display: none;
}

.toll-free-row .head h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.toll-free-row .left-arrow,
.toll-free-row .right-arrow {
    position: absolute;
    top: -1.5rem;
}

.toll-free-row .left-arrow {
    left: -1rem;
}

.toll-free-row .right-arrow {
    right: -1rem;
}

.toll-free-row .call-now {
    font-size: 1.875rem;
    text-transform: uppercase;
    color: var(--dark-blue);
    letter-spacing: 6px;
    font-weight: 600;
    margin: 0;
}

.toll-free-row .toll-number {
    font-size: 6rem;
    color: var(--orange);
    font-weight: 800;
    line-height: 1;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    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;
}

.toll-free-row .toll-number:hover {
    color: rgba(0, 0, 0, 0);
}

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

    50% {
        background-position: right
    }

    100% {
        background-position: left
    }
}

.toll-free-row a:hover {
    color: var(--dark-blue);
}

.toll-free-row .sign-up {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--dark-blue);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

/* SECTION EIGHT CSS END HERE */

/* SECTION NINE CSS START HERE */

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

.s9 .head>* {
    color: #fff8ed;
}

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

.img-box img {
    width: 100%;
}

.client-card .client-content {
    padding: 1.25rem;
    background: #001043;
    border-radius: 0 0 1.25rem 1.25rem;
    min-height: 28rem;
}

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

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

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

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

.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);
}

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

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

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

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

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

.client-carousel .slick-list {
    padding-bottom: 1.25rem;
}

.client-carousel ul.slick-dots li {
    width: 2.5rem;
    height: 0.625rem;
    border-radius: 3.125rem;
    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.SBreviews {
    overflow: hidden;
}

.SBreviews--wrapper {
    max-width: 65%;
    margin: 0 auto;
}

.SBreviews--wrapper .row {
    align-items: center;
}

.SBreviews--wrapper h4 {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0 0 1.563rem 1.563rem;
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
    letter-spacing: 1px;
}

/* SECTION NINE CSS END HERE */

/* SECTION TEN CSS START HERE */

.s10 .tab-content {
    display: none;
}

.s10 .tab-content.active {
    display: block;
}

.s10 .tab-content .packages-row {
    grid-row-gap: 2rem;
}

.s10 ul.tabs-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.s10 ul.tabs-list .tab-nav {
    position: relative;
    flex: 1 1 22.333%;
    text-align: center;
    background: #e6eaf0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.s10 ul.tabs-list .tab-nav h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
    color: #747474;
}

.s10 ul.tabs-list .tab-nav p {
    margin: 0;
    color: #747474;
    letter-spacing: 2px;
}

.s10 ul.tabs-list .tab-nav.active {
    background: var(--dark-blue);
}

.s10 ul.tabs-list .tab-nav.active div>* {
    color: var(--white);
}

.s10 ul.tabs-list .tab-nav.active img {
    filter: invert(98%) sepia(100%) saturate(0%) hue-rotate(255deg) brightness(300%) contrast(100%);
    -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;
}

.s10 ul.tabs-list .tab-nav img.recommended {
    filter: unset;
    position: absolute;
    left: -1rem;
    top: -1rem;
}

.s10 .tabs-body {
    margin: 2rem 0 0;
}

.s10 .package-Box {
    border: 1px solid #efefef;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.s10 .package-Box:hover {
    box-shadow: 0 0 30px rgb(204 204 204 / 40%);
}

.s10 .pkg-name {
    position: relative;
    padding: 2rem 0;
    text-align: center;
    background-image: url('../img/seo-services/package-stars.webp');
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
}

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

.pkg-name p {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.2;
}

.package-price {
    background: #f2f5f9;
    text-align: center;
    padding: 1.5rem 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.package-price span sup {
    color: var(--orange);
    top: -0.5em;
    font-size: 45px;
}

.package-price span {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 4.375rem;
    line-height: 1;
    color: var(--dark-blue);
    font-weight: 800;
    display: block;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.package-price small {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #bfbfbf;
    margin-left: 30%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.s10 .package-Box:hover .package-price {
    background: var(--dark-blue);
}

.s10 .package-Box:hover span {
    color: var(--white);
}

.s10 .package-Box:hover small {
    color: #6178a1;
}

.package-body {
    padding: 1rem 1rem 0;
}

.package-body>p {
    text-align: center;
    color: #717d92;
    font-size: .875rem;
    margin: 0;
    line-height: 1.5rem;
}

.package-body hr {
    background: #e6e9ee;
    opacity: 1;
}


.pkg-list h4 {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 0 0 .4rem;
}

.pkg-list ul {
    margin: 0 0 1rem !important;
}

.pkg-list ul li {
    position: relative;
    color: #343434;
    font-size: .875rem;
    padding-left: 1.5rem;
}

.pkg-list ul li:before {
    position: absolute;
    content: '\f105';
    font-family: 'FontAwesome';
    color: var(--white);
    width: 15px;
    height: 15px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    font-weight: bold;
}

.pkg-list {
    height: 270px;
    overflow-y: auto;
}

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

.pkg-list::-webkit-scrollbar {
    width: 3px;
    background-color: #e6e9ee;
}

.pkg-list::-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);
}

.package-order {
    padding: 1.5rem 0 3rem;
    text-align: center;
}

.package-order a,
.package-order button {
    background: var(--dark-blue);
    color: var(--white);
    display: inline-block;
    padding: 1rem 4rem;
    border-radius: 50px;
    box-shadow: 6px 6px 15px rgb(14 46 103 / 30%);
}

.package-order a:hover,
.package-order button:hover {
    background: var(--orange);
    box-shadow: 6px 6px 15px rgb(241 111 29 / 30%);
}

/* SECTION TEN CSS END HERE */

/* SECTION ELEVEN CSS START HERE  */

section.section.the-ultimate {
    background: var(--dark-blue);
    padding-top: 0;
}

.theUltimate-head {
    align-items: flex-start;
    max-width: 1125px;
    margin: 0 auto 2rem;
}

.theUltimate-head .col-right {
    padding: 2rem 2rem 0;
}

.theUltimate-head .col-left {
    background: var(--orange);
    border-radius: 0 0 20px 20px;
    padding: 2rem 0;
    box-shadow: 3px 3px 0px #b54a06;
    position: relative;
}

.theUltimate-head .col-left h2 {
    font-size: 40px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    padding-left: 20px;
    text-shadow: 2px 2px 2px #222;
}

.theUltimate-head .col-right h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 .5rem;
}

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

.theUltimate-head .col-right p {
    position: relative;
    color: var(--white);
    font-size: 0.938rem;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.theUltimate-head .col-left img.tu-left-arrow {
    position: absolute;
    left: -30px;
    bottom: -50px;
}

.theUltimate-head .col-right img.tu-right-arrow {
    position: absolute;
    right: -40px;
    top: 10px;
}

.theUltimate-box h4 {
    background: var(--orange);
    padding: 8px 14px 8px 20px;
    box-shadow: 3px 3px 0px #b54a06;
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 3px 3px 0px #b54a06;
    margin-bottom: 15px;
}

.theUltimate-packages {
    background: #001043;
    padding: 50px 10px 50px 40px;
    max-width: 1240px;
    margin: 20px auto 0;
    margin-top: 20px;
    border-radius: 30px;
}

@media only screen and (min-width: 1199px) {
    .theUltimate-packages {
        column-count: 4;
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-gap: 28px;
        -moz-column-gap: 28px;
        -webkit-column-gap: 28px;
    }
}

.theUltimate-box ul li {
    position: relative;
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
}

.theUltimate-box ul li i {
    background: var(--orange);
    color: var(--dark-blue);
    font-weight: bold;
    padding: 0px 4px;
    margin-right: 4px;
}

.theUltimate-packages .theUltimate-box:not(:first-child) {
    margin-top: 15px;
}

.theUltimate-footer {
    max-width: 1240px;
    margin: 30px auto 0;
}

.theUltimate-footer .col-left h2 {
    color: var(--white);
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 3px 3px 0 #222;
    padding-bottom: 14px;
}

.theUltimate-footer .col-left li {
    color: var(--white);
    font-size: 18px;
    line-height: 30px;
}

.theUltimate-footer .col-left li i {
    color: var(--orange);
    padding-right: 10px;
}

.theUltimate-footer .col-right a.call-for {
    background: var(--orange);
    padding: 10px 40px;
    box-shadow: 3px 3px 0px #b54a06;
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 3px 3px 0px #b54a06;
    margin-bottom: 15px;
}

.theUltimate-footer .col-right a.call-for:hover {
    background: var(--white);
    color: var(--orange);
    text-shadow: unset;
}

.theUltimate-footer .col-right {
    text-align: center;
}

.theUltimate-footer .col-right p {
    color: var(--white);
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.theUltimate-footer .mini-contact-area {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: left;
}

.theUltimate-footer .mini-contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.theUltimate-footer .mini-contact-area .c-icon-box i {
    font-size: 2rem;
    color: var(--orange);
}

.theUltimate-footer .mini-contact-area .c-cont-box h4,
.theUltimate-footer .mini-contact-area .c-cont-box a {
    font-family: 'Inter', sans-serif;
    color: var(--white);
}

.theUltimate-footer .mini-contact-area .c-cont-box h4 {
    font-size: .875rem;
    font-weight: 600;
    opacity: 0.5;
}

.theUltimate-footer .mini-contact-area .c-cont-box a {
    font-size: 1.25rem;
    font-weight: bold;

}

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


/* SECTION ELEVEN CSS END HERE  */


/* SECTION TWELEVE CSS START HERE  */

.s12 {
    background: #eef4fd;
}

.custom-packages-main table {
    width: 100%;
}

.custom-packages-main {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgb(0 91 255 / 15%);
    overflow-x: auto;
}

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

.custom-packages-main::-webkit-scrollbar {
    height: 7px;
    background-color: #f5f5f5;
}

.custom-packages-main::-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);
}

.packageName {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 0;
}

.packageName span {
    color: var(--orange);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: block;
}

thead.custom-packages-head .packagePrice s {
    color: #7386a9;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

thead.custom-packages-head .packagePrice {
    font-size: 20px;
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 10px 0;
}

tbody.custom-packages-body .packageServices {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-blue);
    font-weight: 500;
    padding: 10px 16px;
}

tbody.custom-packages-body .check,
tbody.custom-packages-body .cross {
    text-align: center;
    font-size: 20px;
}

tbody.custom-packages-body .check {
    color: #07962c;
}

tbody.custom-packages-body .cross {
    color: #ff0606;
}

tbody.custom-packages-body .number {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-align: center;
    color: var(--dark-blue);
}

thead.custom-packages-head tr th {
    border-bottom: 1px solid #c6d2e6;
}

thead.custom-packages-head tr>th:not(:last-child) {
    border-right: 1px solid #c6d2e6;
}

tbody.custom-packages-body>tr:not(:last-child) {
    border-bottom: 1px solid #c6d2e6;
}

tbody.custom-packages-body tr>td:not(:last-child) {
    border-right: 1px solid #c6d2e6;
}

tbody.custom-packages-body .orderNow {
    text-align: center;
    padding: 20px 0;
}

tbody.custom-packages-body .orderNow a {
    background: var(--dark-blue);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 12px;
    display: inline-block;
    border-radius: 6px;
}

tbody.custom-packages-body .orderNow a:hover {
    background: var(--orange);
}


/* SECTION TWELEVE CSS END HERE  */

/* SECTION THIRTEEN CSS START HERE  */

.s13.diamond {
    margin: 2rem 0 0;
    padding: 8rem 0 5rem;
}

.s13 .row {
    grid-row-gap: 1.5rem;
}

@media screen and (min-width: 1199px) {
    .s13 .head-center {
        max-width: 60%;
        margin-bottom: 3rem;
    }
}

.s13 .seo-effective-box {
    border: 1px solid var(--black);
    border-radius: .6rem;
    text-align: center;
    overflow: hidden;
}

.s13 .seo-effective-box h3 {
    background: var(--dark-blue);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1rem 0;
}

.s13 .seo-effective-box .seo-effective-content {
    padding: 1.5rem;
    min-height: 350px;
}

.s13 .seo-effective-box .seo-effective-content p:last-child {
    margin: 0;
}

.s13 .seo-effective-box .seo-effective-content p {
    font-size: 0.938rem;
    line-height: 20px;
}

/* SECTION THIRTEEN CSS END HERE  */

/* SECTION FOURTEEN CSS START HERE  */

.s14 {
    background: #fff6f0;
}

.s14:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 330px;
    height: 330px;
    border-radius: 50%;
    left: -3rem;
    top: 5rem;
}

.s14 .audit-report {
    position: relative;
    z-index: 9;
}

@media screen and (min-width: 1199px) {
    .s14 .audit-report {
        position: absolute;
        left: 2rem;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

.contaact-form-2 {
    position: relative;
    background: #ffdcc4;
    border-radius: 1rem;
    overflow: hidden;
    padding: 3rem 2rem;
    text-align: center;
}

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

.contaact-form-2>p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-blue);
    margin: 0;
}

.contaact-form-2>h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.s14 .contaact-form-2 form {
    margin: 2rem 0 0;
}

.s14 .contaact-form-2 .row {
    grid-row-gap: 1rem;
}

.s14 .contaact-form-2 .form-group {
    position: relative;
}

.s14 .contaact-form-2 .form-group i {
    position: absolute;
    left: 1.5rem;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--orange);
}

.s14 .contaact-form-2 .form-group input {
    border-radius: 50px;
    min-height: 55px;
    border: 2px solid transparent;
    padding: 0 3rem;
}

.s14 .contaact-form-2 .form-group input:focus {
    border-color: var(--orange);
    box-shadow: unset !important;
}

.s14 .contaact-form-2 .form-group ::placeholder {
    color: #9daac1;
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.s14 .contaact-form-2 .btn-box {
    margin: 2rem 0 2.5rem;
}

.s14 .contaact-form-2 .btn-box .btn-submit {
    background: var(--dark-blue);
    color: var(--white);
    display: block;
    padding: 1rem 5rem;
    border-radius: 50px;
    width: 100%;
    box-shadow: 2px 2px 10px 2px rgb(14 46 103 / 40%);
}

.s14 .contaact-form-2 .btn-box .btn-submit:hover {
    background: var(--orange);
    box-shadow: 2px 2px 10px 2px rgb(241 111 29 / 40%);
}

.s14 .contaact-form-2 .mini-contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.s14 .contaact-form-2 .mini-contact-box {
    display: flex;
    align-items: center;
    text-align: left;
}

.s14 .contaact-form-2 .c-cont-box span {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    margin: 0;
    color: var(--dark-blue);
    opacity: 0.5;
    font-weight: bold;
    display: block;
}

.s14 .contaact-form-2 .c-cont-box a,
.s14 .contaact-form-2 .c-cont-box button {
    font-size: 0.938rem;
    margin: 0;
    color: var(--dark-blue);
    font-weight: bold;
}

.s14 .contaact-form-2 .c-cont-box a:hover,
.s14 .contaact-form-2 .c-cont-box button:hover {
    color: var(--orange);
}

.s14 .contaact-form-2 .c-icon-box i {
    font-size: 2rem;
    color: var(--orange);
    margin-right: 15px;
}

/* SECTION FOURTEEN CSS END HERE  */

/* SECTION FIVETEEN CSS START HERE  */

.s15 {
    background-image: url('../img/seo-services/dyk-bg.webp');
    background-size: cover;
    background-position: center center;
}

.s15 .head {
    margin-bottom: 3rem;
}

.s15 .head h2 {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
}

/* SECTION FIVETEEN CSS END HERE  */

/* SECTION SIXTEEN CSS START HERE  */

.s16 {
    background: #f3f8fe;
}

.s16 .row {
    grid-row-gap: 1.5rem;
}

.s16 .caseStudy-box {
    position: relative;
    box-shadow: 15px 15px 30px rgb(0 91 255 / 15%);
    border-radius: 1rem;
    overflow: hidden;
}

.s16 .caseStudy-box .caseStudy-img {
    height: 180px;
}

.s16 .caseStudy-box .caseStudy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s16 .caseStudy-box .caseStudy-details {
    padding: 1.5rem 1rem;
    text-align: center;
    background: var(--white);
}

.s16 .caseStudy-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 0 0 1rem;
}

.s16 .caseStudy-details p {
    font-size: 0.938rem;
    line-height: 22px;
    color: #333;
    min-height: 110px;
}

.s16 .caseStudy-box .caseStudy-details ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    grid-row-gap: .5rem;
}

.s16 .caseStudy-box .caseStudy-details ul li span {
    font-family: 'Antonio', sans-serif;
    background: var(--orange);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 3px 3px 0px #b54a06;
    min-width: 6.875rem;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s16 .caseStudy-box .caseStudy-details ul li {
    background: var(--dark-blue);
    color: var(--white);
    font-size: .875rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    gap: 1rem;
    padding-right: 10px;
}

.s16 .caseStudy-box a.read-caseStudy {
    border: 2px solid #091f48;
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 0.4rem;
    font-size: .875rem;
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 1.5rem 0 0;
}

.s16 .caseStudy-box a.read-caseStudy i {
    margin-left: 0.5rem;
    color: #091f48;
    transition: all .3s ease-in-out !important;
}

.s16 .caseStudy-box a.read-caseStudy:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
}

.s16 .caseStudy-box a.read-caseStudy:hover i {
    color: var(--white);
}

/* SECTION SIXTEEN CSS END HERE  */


/* SECTION SEVENTEEN CSS START HERE  */

.s17 {
    background: #fff8ed;
}

@media screen and (min-width: 1199px) {
    .s17 .head-center {
        max-width: 90%;
    }
}

.professional-services-row .topRow {
    position: relative;
    align-items: center;
    background: #feedd1;
    border-radius: 1.25rem 1.25rem 0 0;
    margin-top: 6.25rem;
}

@media only screen and (min-width: 1199px) {
    img.rowImg {
        min-width: 500px;
        position: absolute;
        top: -50px;
    }
}

@media only screen and (min-width: 1199px) {
    img.arrow-03 {
        position: absolute;
        bottom: -80px;
    }

}

.professional-services-row .colStyle {
    min-height: 330px;
}


.professional-services-row>div:nth-child(even) .topRow img.arrow-03 {
    right: 0px;
    transform: scaleX(-1);
}

.professional-services-row>div:nth-child(odd) .topRow img.rowImg {
    left: 0;
}

.professional-services-row>div:nth-child(even) .topRow img.rowImg {
    right: 0;
}

.professional-services-row>div:nth-child(odd) .topRow .colStyle {
    padding: 2rem 4rem 2rem;
}

.professional-services-row>div:nth-child(even) .topRow .colStyle {
    padding: 2rem 4rem 2rem;
}


.professional-services-row .topRow .colStyle h3 {
    font-size: 1.875rem;
    color: #202020;
    font-weight: bold;
    padding-bottom: 1.25rem;
}

.professional-services-row .topRow .colStyle p {
    line-height: 22px;
}

.professional-services-row .bottomRow {
    background: var(--dark-blue);
    padding: 4rem 0 2rem;
    text-align: center;
    border-radius: 0 0 1.25rem 1.25rem;
}

.professional-services-row .bottomRow h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
}

.professional-services-row .row-three .bottomRow {
    padding: 7rem 0 2rem;
}

@media only screen and (min-width: 992px) {
    .professional-services-row .row-three img.arrow-03 {
        bottom: -120px;
    }

    .row-five .bottomRow h3 {
        max-width: 70%;
        margin: 0 auto;
    }
}

.hire-professional {
    padding: 5rem 0 0;
    text-align: center;
    position: relative;
}

.hire-professional h3,
.hire-professional h2 {
    position: relative;
    font-size: 3.125rem;
    font-weight: 800;
}

.hire-professional h2 {
    color: var(--orange);
}

.hire-professional a.cta {
    background: var(--orange);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: .5rem;
    font-size: 2rem;
    font-weight: 600;
    display: inline-block;
    margin: 2rem 0 0;
    Border: 2px solid var(--orange);
    Box-shadow: 8px 8px 30px #f47a1e8a;
}

.hire-professional a.cta:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    box-shadow: 8px 8px 30px hwb(218deg 5% 60% / 30%);
}

.arrow-left {
    position: absolute;
    left: 10%;
}

.arrow-right {
    position: absolute;
    right: 10%;
    transform: scaleX(-1);
}

/* SECTION SEVENTEEN CSS END HERE  */

/* SECTION EIGHTEEN CSS START HERE  */


.location-col .back,
.location-col .front {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border-radius: .5rem;
    overflow: hidden;
    backface-visibility: hidden;
    transition: transform .8s ease
}

.location-col .front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
}

.location-col .front:before {
    background-image: linear-gradient(180deg, transparent, #000);
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.location-col .back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-col .back:before {
    position: absolute;
    content: '';
    background: var(--dark-blue);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .8;
}

.location-col:hover .front {
    transform: rotateY(-180deg)
}

.location-col:hover .back {
    transform: rotateY(0)
}

.location-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.location-col {
    position: relative;
    flex: 0 0 18%;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 200px;
    border-radius: .5rem;
    overflow: hidden;
}

.location-col h2,
.location-col p {
    position: relative;
}

.location-col h2 {
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.location-col .back h2 {
    margin: 0 0 .5rem;
}

.location-col .back p {
    color: var(--white);
    font-size: .875rem;
    line-height: 18px;
    font-weight: 500;
}

/* SECTION EIGHTEEN CSS END HERE  */

/* SECTION NINETEEN CSS START HERE  */

.s19 {
    background: #fff8ed;
}

.s19:before {
    position: absolute;
    content: '';
    width: 12rem;
    height: 12rem;
    border: 20px solid var(--orange);
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
}

.s19 .row {
    align-items: center;
}

.s19 p a {
    color: var(--orange);
    font-weight: 500;
}

.s19 p a:hover {
    color: var(--dark-blue);
}

a.video-fancy {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    display: block;
    box-shadow: 15px 15px 40px rgb(116 47 3 / 30%);
}

a.video-fancy img {
    width: 100%;
}

.playme {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    top: 0px;
    bottom: 0;
    left: 0px;
    height: 100%;
    width: 100%;
}

.pulse-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

svg.pulse-svg {
    overflow: visible;
}

svg.pulse-svg .first-circle,
svg.pulse-svg .second-circle,
svg.pulse-svg .third-circle {
    fill: var(--black);
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
}

svg.pulse-svg .second-circle {
    animation-delay: 1s;
}

svg.pulse-svg .third-circle {
    animation-delay: 2s;
}

.pulse-css {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    position: relative;
}

.pulse-css:before,
.pulse-css:after {
    content: "";
    width: 50px;
    height: 50px;
    border-radius: 25px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: scale(0.5);
    transform-origin: center center;
    animation: pulse-me 3s linear infinite;
}

.pulse-css:after {
    animation-delay: 2s;
}

circle.circle.play-icon {
    position: relative;
}

.pulse-box:before {
    position: absolute;
    content: '';
    font-size: 20px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-top: 12px solid transparent;
    border-left: 20px solid var(--white);
    border-bottom: 12px solid transparent;
}

.pulse-box {
    position: relative;
}

@keyframes pulse-me {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    70% {
        opacity: 0.4;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* SECTION NINETEEN CSS END HERE  */

/* SECTION TWENTY CSS START HERE  */

.s20 {
    background: #fafafa;
}

section.designFAQS .head {
    margin-bottom: 1.25rem;
}

.designFaqs .head h2 {
    line-height: 4.375rem;
    font-weight: 800;
}


section.designFAQS .head h2,
section.designFAQS .head h2 span {
    font-size: 3.75rem;
}

section.designFAQS .head:before {
    display: none;
}

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

section.designFAQS .info-details h3 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-blue);
    text-decoration: none;
    margin: 1.25rem 0;
}

ul#accordian {
    overflow-y: auto;
    max-height: 690px;
    padding: 0 1.25rem 1.25rem !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 TWENTY CSS END HERE  */

/* SECTION TWENTY ONE CSS START HERE  */

.s21 .row {
    grid-row-gap: 2rem;
}

.s21 .blog-card {
    box-shadow: 0px 0px 40px rgb(204 204 204 / 40%);
    position: relative;
    padding: .6rem;
    border-radius: 1rem;
    overflow: hidden;
}

.s21 .blog-card:before {
    position: absolute;
    content: '';
    width: 50%;
    height: .6rem;
    background: var(--orange);
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.s21 .blog-card .blog-thumb {
    height: 250px;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 0 1rem;
}

.s21 .blog-card .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s21 .blog-card .blog-details {
    padding: 0 1rem;
}

.s21 .blog-card ul.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1rem !important;
    padding: 0 0 1rem;
    border-bottom: 1px solid #ddd;
}

.s21 .blog-card ul.blog-meta li {
    font-size: .75rem;
    color: #717d92;
}

.s21 .blog-card .blog-title a {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--dark-blue);
    line-height: 1.5rem;
    display: inline-block;
    margin: 0 0 1rem;
}

.s21 .blog-category a {
    background: #ebebeb;
    color: var(--dark-blue);
    font-size: 0.75rem;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 500;
}

.s21 .blog-category {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1rem;
}

.s21 .blog-card p {
    color: var(--dark-blue);
    font-weight: 500;
    line-height: 24px;
    min-height: 145px;
}

.s21 .blog-card .blog-read-more {
    text-align: center;
    margin: 1rem 0 0;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
}

.s21 .blog-card .blog-read-more a {
    background: var(--orange);
    color: var(--white);
    display: inline-flex;
    padding: .8rem 3rem;
    border-radius: .5rem;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    box-shadow: 4px 4px 20px rgb(241 111 29 / 40%);
}

.s21 .blog-card .blog-read-more a:hover {
    background: var(--dark-blue);
    box-shadow: 4px 4px 20px rgb(14 46 103 / 40%);
}

/* SECTION TWENTY ONE CSS END HERE  */

/* SECTION TWENTY TWO CSS START HERE  */

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

.s22:before {
    position: absolute;
    content: '';
    width: 170px;
    height: 170px;
    border: 10px solid var(--white);
    opacity: 0.5;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.s22 .heading {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 1.875rem;
}

.s22 .heading h2 {
    color: var(--white);
    font-size: 3.75rem;
    font-weight: bold;
    padding-bottom: 10px;
}

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

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

.s22 .heading h2 strong {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.s22 .row {
    align-items: center;
}

.s22 .col-left {
    position: relative;
    background: #00165e;
    padding: 40px 40px;
    border-radius: 20px;
}

.s22 .col-left img.tu-left-arrow {
    position: absolute;
    right: -30px;
    bottom: 0;
    transform: rotate(-90deg);
}

.s22 .col-left h4 {
    color: var(--white);
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center;
}

.s22 .col-left h4 span {
    color: var(--orange);

}

.s22 .contact-box {
    padding-left: 50px;
}

.s22 .contact-box h4 {
    color: var(--white);
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

.s22 .contact-box a {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: bold;
    color: var(--orange);
    line-height: 1;
}

.s22 .contact-box a:hover {
    color: var(--white);
}


/* SECTION TWENTY TWO CSS END HERE  */

/* SECTION TWENTY THREE - BOTTOM FORM CSS START HERE  */

.contaact-form-3 {
    position: relative;
    background: #e0f0ff;
    padding: 1.875rem 3.125rem;
    border-radius: .938rem;
}

.contaact-form-3 hr {
    position: absolute;
    border-top: 8px solid var(--orange);
    width: 50%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 1;
}

.contaact-form-3 h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 1.563rem;
    margin-top: 0;
}

.contaact-form-3 h2 span {
    color: var(--orange);
    font-weight: 800;
}

.contaact-form-3 .form-group {
    margin-bottom: 15px;
    position: relative
}

.contaact-form-3 .form-group i {
    position: absolute;
    font-size: 18px;
    color: var(--orange);
    left: 10px;
    height: 25px;
    width: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
}

.contaact-form-3 .form-control {
    height: 50px;
    padding-left: 40px;
    background-color: var(--white);
    font-size: 14px;
    color: #9daac1;
    border: 1px solid #ccc;
    box-shadow: none;
    border-radius: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contaact-form-3 .form-control:focus {
    border-color: var(--orange);
}

.contaact-form-3 .form-group ::placeholder {
    color: #9daac1;
    font-size: .875rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.contaact-form-3 .form-group.angle:before {
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome';
    right: 20px;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: bold;
    pointer-events: none;
    cursor: pointer;
}

.contaact-form-3 .form-group.textarea i {
    margin-top: 10px;
}

.contaact-form-3 .form-group.textarea textarea {
    height: 130px;
    resize: none;
}

.contaact-form-3 .mini-contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1rem 0 0;
}

.contaact-form-3 .mini-contact-box {
    display: flex;
    align-items: center;
    text-align: left;
}

.contaact-form-3 .c-cont-box span {
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    margin: 0;
    color: var(--dark-blue);
    opacity: 0.5;
    font-weight: bold;
    display: block;
}

.contaact-form-3 .c-cont-box a,
.contaact-form-3 .c-cont-box button {
    font-size: 0.938rem;
    margin: 0;
    color: var(--dark-blue);
    font-weight: bold;
}

.contaact-form-3 .c-cont-box a:hover,
.contaact-form-3 .c-cont-box button:hover {
    color: var(--orange);
}

.contaact-form-3 .c-icon-box i {
    font-size: 2rem;
    color: var(--orange);
    margin-right: 15px;
}

.contaact-form-3 form .btn-box {
    text-align: center;
    padding: 20px 0;
}

.contaact-form-3 form .btn-submit {
    padding: 0.938rem 4rem;
    font-size: 14px;
    color: var(--white);
    border-radius: 25px;
    background-color: var(--dark-blue);
    display: block;
    box-shadow: 6px 6px 15px rgb(14 46 103 / 30%);
    text-decoration: none;
    margin: auto;
    display: inline-block;
}

.contaact-form-3 form .btn-submit:hover {
    background: var(--orange);
    box-shadow: 6px 6px 15px rgb(241 111 29 / 30%);
}

.contact-box-q img {
    width: 100%;
}

.contact-box-q h3 {
    position: relative;
    background-color: var(--white);
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    padding: 25px 40px;
    box-shadow: 0 0 10px -2px #ccc;
    border-radius: 25px;
    margin: 30px 0 0;
    margin-bottom: 50px;
}

.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;
}

.call-custom-cta {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.call-custom-cta a:not(:last-child) {
    margin: 0 0 1rem;
}

.call-custom-cta a.main-cta.btn-orange:hover {
    color: var(--white);
}

.call-custom-cta a,
.call-custom-cta button {
    border-radius: 50px;
    font-size: .875rem;
}

/* SECTION TWENTY THREE - BOTTOM FORM CSS END HERE  */

/* SECTION TWENTY FOUR - BOTTOM FORM CSS START HERE  */


.section.s24 {
    background: #fec458;
    padding: 5rem 0;
    margin: 7rem 0 0;
    overflow: visible;
}

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

.section.s24 .div-text {
    position: relative;
}

.section.s24 .div-text h2 {
    font-size: 2.875rem;
    font-weight: 800;
    color: #333;
    max-width: 70%;
    margin: 0 0 1rem;
}

.section.s24 .div-text p {
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.section.s24 .div-text p span {
    font-size: 1.25rem;
    font-weight: 600;
}

.section.s24 a.see-packages {
    border: 2px solid #091f48;
    color: #333;
    padding: 1rem 3rem;
    display: inline-block;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 2rem 0 0;
}

.section.s24 a.see-packages:hover {
    background: var(--white);
}

.section.s24 .arrow-06 {
    display: block;
    position: absolute;
    right: 10rem;
    bottom: 0;
}

.section.s24 .packages-man {
    position: absolute;
    bottom: 0;
}

/* SECTION TWENTY FOUR - BOTTOM FORM CSS END HERE  */


@media screen and (max-width: 1366px) {
    .head-center {
        max-width: 80%;
    }


    .cover--section .bottomRow {
        margin: 0;
    }

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

    .s2:before {
        display: none;
    }

    .s3 .tab-nav img {
        display: block;
        margin: 0 auto .8rem;
    }

    .s3 .tab-nav {
        padding: 1rem;
        line-height: 1;
        flex: 1 1 auto;
    }

    .s8 .seo-service-box {
        min-height: 440px;
    }

    .toll-free-row .head h2 {
        font-size: 3rem;
    }

    .section.s24 .div-text h2 {
        font-size: 2rem;
    }

    .section.s24 .arrow-06 {
        right: 3rem;
    }

    .s13 .seo-effective-box .seo-effective-content {
        min-height: 425px;
    }

    .s13 .seo-effective-box h3 {
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ul#accordian {
        max-height: 100%;
    }

    .s22 .contact-box a {
        font-size: 56px;
    }

    img.arrow-03 {
        display: none;
    }

    .professional-services-row .bottomRow {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 991px) {
    .head-center {
        max-width: 100%;
    }

    .cover--section .Form-box {
        margin: 2rem 0 1rem;
    }

    .section.s2 .row,
    .section.s5 .row,
    .section.s7 .row,
    .section.s10 .row,
    .section.s19 .row {
        grid-row-gap: 3rem;
    }

    .s3 .tab-nav {
        flex: 1 1 100%;
    }

    .s3 .tabs-head .tabs-list {
        flex-wrap: wrap;
    }

    .s5 .col-style {
        min-height: auto;
    }

    .s6 .contaact-form-1 h2 {
        font-size: 2rem;
    }

    .s8 .seo-service-box {
        min-height: auto;
    }

    .toll-free-row .head h2 {
        font-size: 2rem;
    }

    .toll-free-row .toll-number {
        font-size: 5rem;
    }

    .section.s24 .div-img,
    .section.s24 .arrow-06 {
        display: none;
    }

    .section.s24 .div-text {
        text-align: center;
    }

    .section.s24 .div-text h2 {
        max-width: 100%;
    }

    .s13 .seo-effective-box .seo-effective-content,
    .s13 .seo-effective-box h3 {
        min-height: auto;
    }

    .professional-services-row .topRow {
        margin-top: 3rem;
        text-align: center;
        padding: 2rem 0;
        grid-row-gap: 2rem;
    }

    .professional-services-row>div:nth-child(even) .topRow {
        flex-direction: column-reverse;
    }

    .professional-services-row .colStyle {
        min-height: auto;
        padding: 0 3rem !important;
    }

    .professional-services-row .row-three .bottomRow {
        padding: 2rem 0;
    }

    .arrow-left {
        left: 0;
    }

    .arrow-right {
        right: 0;
    }

    .location-col {
        flex: 0 0 25%;
    }

    .section.s19 {
        text-align: center;
    }

    .section.s19 .head:before {
        margin: 0 auto;
    }

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

    section.designFAQS .info-details {
        margin-bottom: 20px;
    }

    .section.s22 .col-left h4 {
        font-size: 30px;
    }

    .section.s22 .contact-box {
        padding: 20px 0 0;
        text-align: center;
    }

    .section.s22 .col-left img.tu-left-arrow {
        display: none;
    }

    .section.s22 .col-left h4 {
        font-size: 30px;
    }

    .section.s22 .contact-box {
        padding: 20px 0 0;
        text-align: center;
    }

    .section.s22 .col-left img.tu-left-arrow {
        display: none;
    }

    .section.s23 .contaact-form-3 h2 br {
        display: none;
    }

    .section.s23 .row {
        grid-row-gap: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }

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

    p,
    li {
        font-size: 14px;
        line-height: 20px;
    }

    .cover--section .topRow h1 {
        font-size: 22px;
        line-height: 30px;
        padding-bottom: 10px;
    }

    .cover--section .coverBtns {
        justify-content: center;
    }

    .cover--section .bottomRow .statsRow {
        display: grid;
        grid-template-columns: auto auto;
    }

    .cover--section .bottomRow .statsBox h2 {
        font-size: 24px;
    }

    .cover--section .bottomRow .statsRow p {
        font-size: 13px;
    }

    .cover--section .bottomRow ul.partners {
        flex-wrap: wrap;
        grid-gap: 10px;
        justify-content: space-around;
    }

    .cover--section ul.partners li {
        flex: 0 0 calc(25% - 10px);
    }

    .s2 .div-sounds {
        width: auto;
    }

    .s3 .tab-nav img {
        display: inline-block;
        margin: 0 1rem 0 0;
    }

    .s3 .tab-nav {
        text-align: left;
        border-radius: 0;
    }

    .s3 .tabs-body {
        padding: 20px;
    }

    .s3 .seo-solutions ul li {
        width: 100%;
    }

    img.diamond {
        display: none;
    }

    section.diamond {
        padding-top: 3rem;
    }

    .s5 .col-style {
        padding: 2rem;
    }

    .s6 .contaact-form-1 {
        padding: 2rem 1rem;
    }

    .s6 .paper-plan {
        display: none;
    }

    .s6 .contaact-form-1 h2 {
        font-size: 1.2rem;
    }

    .s6 .contaact-form-1 h3 {
        font-size: 1rem;
    }

    .toll-free-row .left-arrow,
    .toll-free-row .right-arrow {
        display: none;
    }

    .toll-free-row {
        margin: 3rem 0 0;
    }

    .toll-free-row .head {
        margin: 0;
    }

    .toll-free-row .call-now {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .toll-free-row .toll-number {
        font-size: 2.2rem;
        margin: 1rem 0;
    }

    .toll-free-row .sign-up {
        line-height: 1;
        letter-spacing: 1px;
    }

    .SBreviews--wrapper h4 {
        font-size: 14px;
        padding: 2rem 0;
    }

    .SBreviews--wrapper {
        max-width: 100%;
    }

    .SBreviews--wrapper .row {
        grid-row-gap: 1rem;
    }

    .s10 ul.tabs-list {
        flex-direction: column;
    }

    .s10 ul.tabs-list .tab-nav {
        width: 100%;
    }

    .package-price span {
        font-size: 3rem;
    }

    .package-price span sup {
        font-size: 2rem;
    }

    .section.s24 {
        padding: 3rem 0;
        margin: 0;
    }

    .s14:before {
        display: none;
    }

    .s16 .caseStudy-box .caseStudy-details ul li {
        flex-direction: column;
        padding: 0 0 1rem;
    }

    .s16 .caseStudy-box .caseStudy-details ul li span {
        width: 100%;
    }

    .professional-services-row .colStyle {
        padding: 0 1rem !important;
    }

    .professional-services-row .topRow .colStyle h3 {
        font-size: 1.5rem;
    }

    .professional-services-row .bottomRow {
        border-radius: 0;
    }

    .professional-services-row .bottomRow h3 {
        font-size: 1.2rem;
    }

    .hire-professional h3,
    .hire-professional h2 {
        font-size: 1.875rem;
    }

    .hire-professional h3,
    .hire-professional h2 {
        font-size: 1.5rem;
    }

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

    .hire-professional a.cta {
        font-size: 14px;
    }

    .location-col {
        flex: 100%;
    }

    .s19:before {
        display: none;
    }

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

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

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

    .s22 .heading h2 {
        font-size: 1.875rem;
    }

    .section.s22:before {
        display: none;
    }

    .section.s22 .col-left h4 {
        font-size: 26px;
        padding: 0;
    }

    .section.s22 .col-left {
        padding: 20px;
        border-radius: 0;
    }

    .section.s22 .contact-box h4 {
        font-size: 30px;
    }

    .section.s22 .contact-box a {
        font-size: 36px;
    }

    .section.s22 .col-left h4 br {
        display: none;
    }

    .contaact-form-3 {
        padding: 20px 15px;
    }

    .contaact-form-3 h2 {
        font-size: 20px;
    }

    .contaact-form-3 h2 br {
        display: none;
    }

    .contaact-form-3 .mini-contact-area {
        flex-direction: column;
        text-align: center;
        grid-gap: 20px;
    }

    .contact-box-q h3 br {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .s5 .col-style a i {
        display: none;
    }
}