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

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

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 50px;
}

.head::before {
    position: absolute;
    content: '';
    background-color: var(--orange);
    width: 120px;
    height: 8px;
    border-radius: 10px;
    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;
}

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

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

.head p {
    color: var(--dark-blue);
    font-size: 16px;
}

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

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

a.main-cta {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: 2px solid transparent;
    padding: .8rem 1.2rem;
    display: flex;
    align-items: 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;
}

a.main-cta.btn--orange {
    background: var(--orange);
    color: var(--white);
    Box-shadow: 5px 5px 15px rgb(242 112 29 / 40%);
}

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

a.main-cta.btn--transparent i {
    background: var(--dark-blue);
    color: var(--white);
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -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;
}

a.main-cta.btn--orange:hover,
a.main-cta.btn--transparent:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 5px 5px 15px rgb(14 46 103 / 40%);
}

a.main-cta.btn--transparent:hover i {
    background: var(--white);
    color: var(--dark-blue);
}

/* GLOBAL CSS END HERE  */



/* SECTION ONE CSS START HERE */

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

/* .topRow {
    align-items: center;
} */
.homeBanner .topRow p.sub-heading {
    color: #526d9d;
    letter-spacing: 2px;
    font-weight: bold;
    font-style: italic;
    margin: 0 0 10px;
}

.homeBanner .topRow h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 55px;
    padding-bottom: 25px;
}

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

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

.homeBanner .coverBtns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 2rem;
    margin: 3rem 0 0;
}

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


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

.coverBtns a.see-pricing:hover {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

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

.coverBtns a.talk-phone:before {
    position: absolute;
    content: '\f095';
    font-family: 'FontAwesome';
    left: 0px;
    width: 50px;
    height: 50px;
    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;
}

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

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

.homeBanner .coverBtns .divBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 1rem;
    position: relative;
}

.homeBanner .coverBtns .divBtn a.talk-chat {
    color: var(--dark-blue);
    text-decoration: underline !important;
    text-underline-offset: 5px;
    position: absolute;
    bottom: -40px;
}

.homeBanner .coverBtns .divBtn a.talk-chat:hover {
    color: var(--orange);
}

.homeBanner .bottomRow {
    text-align: center;
}

/* .homeBanner .bottomRow hr {
    margin: 2rem 0;
} */
.homeBanner .bottomRow .statsRow {
    display: flex;
    align-items: center;
    justify-content: space-around;

}

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

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

.homeBanner .bottomRow ul.partners {
    display: flex;
    grid-gap: 20px;
    width: 85%;
    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);
}

.bannerImg {
    position: absolute;
    right: 5%;
    top: 0;
    max-width: 48%;
}

@media only screen and (min-width: 1600px) {
    .bannerImg {
        right: 70px;
    }
}

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


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

.Form-box {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    padding: 30px 20px;
    max-width: 65%;
    margin: 0 0 20px auto;
    box-shadow: 10px 0 15px rgb(14 46 103 / 20%);
}

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

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

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

.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) {
    .Form-box {
        width: 100%;
        padding: 20px;
        height: auto
    }

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

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

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

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

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

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

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

/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */

section.why-youtube-seo {
    padding-bottom: 150px;
}

section.why-youtube-seo .row {
    align-items: center;
}

section.why-youtube-seo .col-lg-7 {
    padding-right: 4rem;
}

.youtube-seo-btn {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1.5rem;
    margin: 3rem 0 0;
}

section.why-youtube-seo h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    padding-bottom: 10px;
}

section.why-youtube-seo p {
    color: var(--dark-blue);
}

section.why-youtube-seo hr {
    background: #aaa;
    opacity: 1;
    height: 4px;
    max-width: 160px;
    margin: 1.5rem 0;
}

section.why-youtube-seo ul.yt-seo-list li {
    color: var(--dark-blue);
    line-height: 26px;
}

section.why-youtube-seo ul.yt-seo-list li:not(:last-child) {
    padding-bottom: 1rem;
}

section.why-youtube-seo ul.yt-seo-list li i {
    color: #ff0000;
    float: left;
    display: block;
    margin: 5px 15px 15px 0px;
}

img.yt-seo-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media only screen and (min-width: 1600px) {
    img.yt-seo-img {
        position: unset;
    }
}



/* SECTION TWO CSS END HERE */


/* SECTION THREE CSS START HERE */

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

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


section.our-strategy {
    background-image: url('../img/yoututbe-optimization/our-strategy.webp');
    background-size: cover;
    padding-bottom: 150px;
}

section.our-strategy .head {
    margin-bottom: 80px;
}

.our-strategy-row {
    position: relative;
    border: 2px solid #d9e6f1;
    border-radius: 20px;
    padding: 3rem;
}

.our-strategy-wrapper>div:not(:last-child) {
    margin-bottom: 5rem;
}

.our-strategy-row h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
}

.our-strategy-row hr {
    background-color: var(--orange);
    width: 120px;
    height: 8px;
    border-radius: 10px;
    opacity: 1;
    margin: 1rem 0 2rem;
}

.our-strategy-row p {
    color: var(--dark-blue);
}

.our-strategy-row .search-icon {
    position: absolute;
    right: -10px;
    top: -30px;
}

.our-strategy-row .youtube-keyword-logos {
    margin: 1.5rem 0 0;
}

.title-optimization {
    position: absolute;
    top: -50px;
    right: -10px;
}



ul.tto-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1rem;
    margin: 2.5rem 0 0 !important;
}

ul.tto-list li {
    position: relative;
    font-family: 'Inter', sans-serif;
    background: #d4e1ec;
    color: #204f79;
    font-size: 14px;
    padding: 0 3.5rem 0px 1.5rem;
    border-radius: 50px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


ul.tto-list li>span {
    position: absolute;
    right: 0;
    top: 0;
    background: #799ab7;
    color: var(--white);
    font-size: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.oc-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: .5rem;
    margin: 2rem 0 0 !important;
}

ul.oc-list li {
    background: var(--white);
    color: var(--dark-blue);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border: 1px solid #dbe2e8;
    padding: .5rem 2rem;
    border-radius: 50px;
    box-shadow: 6px 6px 10px rgb(14 46 103 / 15%);
}

.monitoring-analytics {
    position: absolute;
    right: -50px;
    top: -30px;
}

ul.ma-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0.5rem;
    margin: 2rem 0 0 !important;
}

ul.ma-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--white);
    padding: .6rem 2rem;
    border-radius: 50px;
    background: #d22926;

}

/* ul.ma-list li:nth-child(1) {
    background: #d22926;
}

ul.ma-list li:nth-child(2) {
    background: #2697d2;
}

ul.ma-list li:nth-child(3) {
    background: #20bb20;
} */

ul.ma-list li i {
    padding-right: 5px;
}

.our-strategy-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 1.5rem;
    margin: 4rem 0 0;
}

.strategy-shape {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/* SECTION THREE CSS END HERE */


/* SECTION FOUR CSS START HERE */

.pkgs-wrapper {
    background: #1067d1;
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
}

.pkgs-wrapper>div:nth-child(1) {
    flex: 1 1 30%;
}

.pkgs-wrapper>div:nth-child(2) {
    flex: 1 1 23%;
}

.pkgs-wrapper>div:nth-child(3) {
    flex: 1 1 23%;
}

.pkgs-wrapper>div:nth-child(4) {
    flex: 1 1 23%;
}

.pkgs-wrapper .package-Box:not(:last-child) {
    border-right: 1px solid rgb(255 255 255 / 50%);
}

.package-Box .pkg-name {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.package-Box .pkg-name h2 {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 26px;
    font-weight: bold;
}

.pkg-name span.video-optimized {
    color: #6bdda0;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.package-Box .pkg-list ul li:nth-child(odd) {
    background: rgb(255 255 255 / 10%);
}

.package-Box .pkg-list ul li {
    padding: .5rem 2rem;
    text-align: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.package-main.package-Box ul li {
    text-align: left;
}



.package-price.package-order {
    text-align: center;
    padding: 20px;
}

.package-price h5 {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 50px;
    color: var(--white);
    padding-bottom: 10px;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.package-price h5>sup {
    position: absolute;
    top: 15px;
    left: -20px;
    color: #6bdda0;
    font-size: 30px;
}

.package-price h5 small {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #76b1f9;
}

.package-order a.order-now {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 40px;
    display: inline-block;
    border-radius: 6px;
    text-transform: uppercase;
    background: var(--white);
    color: #1067d1;
}

.package-order a.order-now:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.pkgs-wrapper>div:nth-child(4) li.upto {
    background: #0d59b6;

}

.package-Box .pkg-list ul li.upto {
    font-size: 12px;
    text-align: left;
    padding: 0.5rem 1rem;
    min-height: 52px;
}


/* SECTION FOUR CSS END HERE */



/* SECTION FOUR CSS START HERE  */

section.whereToStart {
    background: #f6f9ff;
}

.whereToStart .row-one {
    text-align: center;
    position: relative;
}

.whereToStart p.sub-heading {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--dark-blue);
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 10px;
}

.whereToStart .row-one h2 {
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: bold;
    color: var(--orange);
}

.whereToStart p.sub-txt {
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: var(--dark-blue);
    margin: 0 0 3rem;
}

.premium-cta span {
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
}


.premium-cta a.premiumCall {
    font-family: 'Poppins', sans-serif;
    font-size: 65px;
    font-weight: bold;
    color: var(--dark-blue);
    margin-left: 14px;
    line-height: 1;
}


.premium-cta a.premiumCall:hover {
    color: var(--orange);
}

.premium-cta a.premiumCall i {
    color: var(--orange);
}

.angleShape1,
.angleShape2 {
    position: absolute;
    top: 70px;
    margin: auto;
}

.angleShape1 {
    left: 0;
}

.angleShape2 {
    right: 0;
    transform: scaleX(-1);
}


/* SECTION FOUR CSS END HERE  */


/* SECTION FIVE - FAQS CSS START HERE  */

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

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

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

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

section.designFAQS .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: 600px;
    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 20px 5px #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 FIVE - FAQS CSS END HERE  */



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

section.ny-contact {
    padding: 30px 0;
}

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 150px;
    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: 200px;
    height: 5px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

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

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

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

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

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

.bottom-form .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-family: 'Inter', sans-serif;
    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 SIX - BOTTOM FORM CSS END HERE  */


@media only screen and (max-width: 1199px) {
    .homeBanner .topRow h1 {
        font-size: 40px;
        line-height: 50px;
    }

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

    .bannerImg {
        display: none;
    }

    img.yt-seo-img {
        position: unset;
    }

    .package-Box .pkg-list ul li.upto {
        min-height: 70px;
    }

    .pkgs-wrapper>div:nth-child(1) {
        flex: 1 1 33%;
    }

    .pkgs-wrapper>div:nth-child(2) {
        flex: 1 1 20%;
    }

    .pkgs-wrapper>div:nth-child(3) {
        flex: 1 1 20%;
    }

    .pkgs-wrapper>div:nth-child(4) {
        flex: 1 1 20%;
    }

    .package-order a.order-now {
        padding: 16px;
        width: 100%;
    }

    .bottom-form.contact {
        padding: 40px 50px;
    }
}

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

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

    .head p br {
        display: none;
    }

    .homeBanner .topRow p br {
        display: none;
    }

    .homeBanner .coverBtns {
        margin: 2rem 0 0;
    }

    .homeBanner .col-right {
        margin: 5rem 0 0;
    }

    .homeBanner .bottomRow .statsBox h2 {
        font-size: 36px;
    }

    .homeBanner .bottomRow ul.partners {
        width: 100%;
    }

    .homeBanner .bottomRow .statsBox p {
        font-size: 14px;
    }

    img.yt-seo-img {
        position: unset;
        margin: 3rem 0 0;
    }

    section.why-youtube-seo .col-lg-5 {
        text-align: center;
    }

    .our-strategy-row h2 {
        font-size: 36px;
    }

    .enableScroll {
        display: flex;
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        padding-bottom: 20px;
        padding-top: 20px;
        justify-content: normal;
        align-items: normal;
    }

    .enableScroll>div {
        min-width: 100%;
    }

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

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

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

    .monitoring-analytics {
        right: 0;
    }

    .angleShape1,
    .angleShape2 {
        display: none;
    }

    .package-Box .pkg-list ul li.upto {
        min-height: auto;
    }

    .bottom-form.contact h2 br {
        display: none;
    }

    .bottom-form.contact {
        padding: 40px 100px;
    }
}

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

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

    .homeBanner .topRow h1 {
        font-size: 30px;
        line-height: 34px;
        padding-bottom: 10px;
    }

    .homeBanner .coverBtns .divBtn a.talk-chat {
        position: unset;
    }

    .homeBanner .coverBtns {
        justify-content: center;
    }

    .homeBanner .col-right {
        margin: 2rem 0 0;
    }

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

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

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

    .homeBanner .bottomRow ul.partners {
        flex-wrap: wrap;
        grid-gap: 10px;
        justify-content: space-between;
    }

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

    section.why-youtube-seo h2 {
        font-size: 26px;
    }

    section.why-youtube-seo .col-lg-7 {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    section.why-youtube-seo {
        padding-bottom: 100px;
    }

    section.our-strategy .head {
        margin-bottom: 40px;
    }


    .our-strategy-row .search-icon,
    .title-optimization,
    .monitoring-analytics {
        display: none;
    }

    .our-strategy-row {
        padding: 1.5rem;
    }

    .our-strategy-row h2 {
        font-size: 24px;
    }

    .package-Box .pkg-list ul li.upto {
        min-height: 55px;
    }

    .whereToStart p.sub-heading {
        font-size: 14px;
    }

    .whereToStart .row-one h2 {
        font-size: 36px;
    }

    .whereToStart p.sub-txt {
        font-size: 16px;
        line-height: 26px;
        margin: 0 0 1rem;
    }

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

    .premium-cta a.premiumCall {
        font-size: 30px;
    }

    ul#accordian {
        overflow: unset;
        max-height: unset;
        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 {
        font-size: 14px;
    }

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

    section.designFAQS .head h2,
    section.designFAQS .head h2 span {
        font-size: 30px;
    }
    section.ny-contact {
        padding: 0 0 3rem;
    }
    .bottom-form.contact {
        padding: 20px;
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        grid-column-gap: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .mini-contact-area {
        position: unset;
    }

    .btn-box a {
        padding: 16px 20px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .c-cont-box a {
        font-size: 14px;
    }

}