: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: 24px;

}

.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: 80px;
    height: 6px;
    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);
}

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

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

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



/* 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: 40px 0;
}


.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: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 46px;
    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.talk-chat {
    background: var(--orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    Box-shadow: 0 10px 20px #f47a1e8a;
}

.coverBtns a.talk-chat: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 .bottomRow {
    text-align: center;
}

.homeBanner .bottomRow .statsRow {
    position: relative;
    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: 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);
}

.bannerImg {
    position: absolute;
    right: 5%;
    top: 3%;
    max-width: 50%;
}


@media only screen and (min-width: 1400px) {
    .bannerImg {
        /* right: 15%;
        max-width: 36%; */
        right: 5%;
        max-width: 50%;
    }
}


@media (min-width:1399px) and (max-width:1200px) {
    .bannerImg {
        right: 0%;
        max-width: 55%;
    }
}

.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: 12px 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 */

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

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

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

section.wyg p {
    font-family: 'Inter', sans-serif;
    line-height: 26px;
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 500;
}

.podcast-btn {
    display: inline-block;
    margin-top: 2rem;
}



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

    .podcastImg {
        position: absolute;
        bottom: 0;
        right: 0;
        top: 0;
        margin: auto;
    }
}



/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */

section.emServices {
    background-image: url('../img/podcast-marketing/packagesBanner.webp');
    background-size: cover;
}

.emSerivcesRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-row-gap: 2rem;
    grid-column-gap: 2rem;
}


.emSerivcesBox .back,
.emSerivcesBox .front {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #8cb2d0;
    border-radius: 20px;
    backface-visibility: hidden;
    overflow: hidden;
    transition: transform .8s ease
}

.emSerivcesBox .front {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
}

.emSerivcesBox .back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    background: var(--white);
    padding: 20px;
    border-color: var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.emSerivcesBox:hover .back {
    transform: rotateY(0)
}

.emSerivcesBox {
    position: relative;
    min-height: 260px;
    flex: 1 1 100%;
}

.emSerivcesBox .front h2 {
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: bold;
    letter-spacing: .5px;
    padding-top: 30px;
    line-height: 20px;
}

.serviceIcon {
    width: 25%;
}

.emSerivcesBox .back h2 {
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: bold;
    letter-spacing: 1px;
    padding: 20px 0 10px;
}

.emSerivcesBox .back p {
    font-size: 14px;
    color: var(--dark-blue);
    line-height: 22px;
}

.emSerivcesBox .back a {
    border: 1px solid #f5dfb4;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--dark-blue);
    font-weight: 500;
    float: right;
    display: none;
}

.emSerivcesBox .back a i {
    font-size: 16px;
    font-weight: bold;
    padding-left: 5px;
}

.emSerivcesBox .back a:hover {
    background: var(--orange);
    color: var(--white);
}

@media (min-width: 767px) {
    .emSerivcesBox {
        flex: 1 1 47%;
    }
}

@media (min-width: 991px) {
    .emSerivcesBox {
        flex: 1 1 22%;
    }
}

/* SECTION THREE CSS END HERE */


/* SECTION FOUR CSS START HERE  */

section.whereToStart {
    padding: 100px 0;
}

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

.whereToStart .row-one h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-blue);
    padding-bottom: 20px;
}

.whereToStart .row-one p {
    position: relative;
    z-index: 999;
    font-family: 'Inter', sans-serif;
    color: #333;
    font-size: 18px;
    line-height: 30px;
}

.premium-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 15px;
    margin-top: 14px;
}


.premium-cta a.premiumCall {
    font-family: 'Poppins', sans-serif;
    font-size: 68px;
    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: 0;
    bottom: 0;
    margin: auto;
}

.angleShape1 {
    left: 0;
}

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


/* SECTION FOUR CSS END HERE  */

/* SECTION FIVE CSS START HERE */

section.marketingPlans {
    position: relative;
    background-image: url('../img/podcast-marketing/packagesBanner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 0 0 5rem;
}

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

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


.row.pkgsWrapper {
    margin: 6rem 0 0;
}

.packageBox {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgb(16 103 209 / 8%);
    z-index: 99;
    -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;
}

.packageBox .pkgName {
    background: #1067d1;
    padding: 50px 20px 10px;
    border-radius: 20px 20px 0 0;
}

.packageBox .pkgName h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
    text-align: center;
}

.packageBox .pkgDescription {
    background: #0d52a7;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.packageBox .pkgDescription p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
}

.packageBox .packageIcon>img {
    margin: -100px 0 0;
}

.packageBox .pkgList {
    min-height: 220px;
    margin-bottom: 30px;
}

.packageBox .pkgList ul li {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.packageBox .pkgList>ul>li:before {
    position: absolute;
    content: '';
    background: #e5e5e5;
    width: 1px;
    height: 100%;
    right: 70px;
}


.packageBox .pkgList ul li i.fa-check {
    color: #62db9b;
}

.packageBox .pkgList ul li i.fa-times {
    color: #ff0000;
}

.packageBox .pkgList ul li:nth-child(even) {
    background: #f8fafe;
}

.packageBox .packagePrice.packageCta {
    padding: 0 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.packageBox .packagePrice a.get-pricing {
    font-family: 'Inter', sans-serif;
    background: #1067d1;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    padding: 22px 0;
    width: 100%;
    border-radius: 6px;
    text-transform: uppercase;
}

.packageBox .packagePrice a.get-pricing:hover {
    background: var(--dark-blue);
    color: var(--white);
}


/* SECTION FIVE CSS END HERE */



/* SECTION SIX CSS START HERE  */
section.how-it-works {
    background: #f8fbff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.how-it-works .ctaRow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0 0;
}

section.how-it-works a.main-cta.btn--orange {
    text-transform: uppercase;
    font-size: 18px;
    padding: 1.2rem 4rem;
}

/* SECTION SIX CSS END HERE  */

/* SECTION SEVEN CSS START HERE  */

.something-custom {
    margin-top: 70px;
}

.something-custom .head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    padding: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.something-custom .left-arrow,
.something-custom .right-arrow {
    position: absolute;
    top: 80px;
}

.something-custom .left-arrow {
    left: 60px;
    transform: rotate(-30deg);
}

.something-custom .right-arrow {
    right: 60px;
    transform: rotate(30deg);
}

.something-custom .head:before {
    display: none;
}

.something-custom p.cal-now {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--dark-blue);
    letter-spacing: 6px;
    font-weight: 500;
    margin: 0;
}

.something-custom a.toll-number {
    font-size: 100px;
    color: var(--orange);
    font-weight: 700;
    line-height: 1;
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
    background: linear-gradient(to right, var(--dark-blue), var(--orange), var(--dark-blue));
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    transition: color .4s ease-in-out;
}

.something-custom a.toll-number:hover {
    color: rgba(0, 0, 0, 0);
}

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

    50% {
        background-position: right
    }

    100% {
        background-position: left
    }
}

.something-custom a:hover {
    color: var(--dark-blue);
}

.something-custom p.glad-tp-help {
    font-size: 30px;
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

section.something-custom img.orange-dots,
section.something-custom img.gray-dots {
    position: absolute;
    opacity: 0.5;
}

section.something-custom img.orange-dots {
    top: 0;
}

section.something-custom img.gray-dots {
    bottom: 30px;
    right: 0;
}


/* SECTION SEVEN CSS END HERE  */




/* SECTION EIGHT - FAQS CSS START HERE  */

section.designFAQS {
    background: #f8fbff;
}

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: 480px;
    padding: 0 20px 20px !important;
}

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

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

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

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

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

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

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

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

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

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

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


/* SECTION EIGHT - FAQS CSS END HERE  */

/* SECTION NINE - 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: 100px;
    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;
}

.bottom-form .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#Details {
    height: 150px;
}

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

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

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

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

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

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

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

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

.bottom-form .form-group.textarea textarea:focus::placeholder {
    color: #3d62a3;
    opacity: 1;
}

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

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

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

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

.bottom-form .c-cont-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: #999;
    font-weight: 600;
}

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

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

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

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


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

/* MEDIA QUERIES CSS START HERE  */

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


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

    .homeBanner .topRow p.sub-heading {
        font-size: .875rem;
    }

    .homeBanner .topRow h1 {
        font-size: 33px;
        line-height: 40px;
    }

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

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

    .bannerImg {
        display: none;
    }

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

    .coverBtns a.talk-chat {
        padding: 16px 30px;
    }

    .coverBtns a.talk-phone {
        font-size: 20px;
    }



    section.wyg h2 {
        font-size: 30px;
    }

    .emSerivcesRow {
        grid-row-gap: 1rem;
        grid-column-gap: 1rem;
    }

    .packageBox .pkgName h2 {
        font-size: 22px;
    }

    .packageBox .pkgList>ul>li:before {
        display: none;
    }

    .something-custom .head {
        position: relative;
        z-index: 9;
    }

    .something-custom .left-arrow {
        left: 0;
    }

    .something-custom .right-arrow {
        right: 0;
    }
}

@media screen and (max-width: 991px) {
    .head p br {
        display: none;
    }

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

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

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

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

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

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

    .angleShape1,
    .angleShape2 {
        display: none;
    }

    .row.pkgsWrapper {
        grid-row-gap: 3rem;
    }

    .hiw-row-wrapper ul.hiw-service-icons li br {
        display: none;
    }

    .hiw-row-wrapper ul.hiw-service-icons {
        flex-wrap: wrap;
        padding: 10px 0px !important;
        grid-column-gap: 0;
        grid-row-gap: 1rem;
        width: 100%;
    }

    .hiw-row-wrapper ul.hiw-service-icons>li {
        flex: 1 1 45%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hiw-row-wrapper>div:nth-child(2) {
        margin-bottom: 20%;
    }

    .hiw-row-wrapper>div:nth-child(3) {
        margin-bottom: 20%;
    }

    .something-custom .head h2 {
        font-size: 46px;
        line-height: 40px;
    }

    .something-custom .head h2 br {
        display: none;
    }

    .something-custom .left-arrow {
        left: -5%;
    }

    .something-custom .right-arrow {
        right: -5%;
    }

    .something-custom a.toll-number {
        font-size: 70px;
    }

    section.something-custom img.orange-dots,
    section.something-custom img.gray-dots {
        display: none;
    }

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

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

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

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

    .homeBanner .topRow p.sub-text {
        font-size: .875rem;
    }

    .homeBanner .coverBtns {
        text-align: center;
        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.wyg p {
        font-size: .875rem;
    }

    a.main-cta {
        padding: 1rem 0rem;
        width: 100%;
        text-align: center;
        font-size: .875rem;
    }

    .podcast-btn {
        width: 100%;
    }

    section.wyg .col-right {
        text-align: center;
        margin: 2rem 0 0;
    }

    .head p {
        font-size: .875rem;
    }


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

    .whereToStart .row-one h2 br {
        display: none;
    }

    .whereToStart .row-one p {
        font-size: .875rem;
    }

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

    .packageBox .pkgDescription p {
        text-align: center;
        font-size: .875rem;
    }

    .packageBox .pkgList ul li {
        font-size: .875rem;
    }

    .packageBox .packagePrice a.get-pricing {
        font-size: .875rem;
    }

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

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

    section.how-it-works a.main-cta.btn--orange {
        padding: 1rem 0;
    }

    .how-it-works .ctaRow {
        margin: 0;
    }

    .something-custom {
        margin-top: 0;
    }

    .something-custom .head h2 {
        font-size: 24px;
        line-height: 30px;
    }

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

    .something-custom .head {
        margin-bottom: 1rem;
    }

    .something-custom .head h2 {
        font-size: 26px;
    }

    section.section.section--five.something-custom .head {
        margin-bottom: 0;
    }

    .something-custom p.cal-now {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .something-custom a.toll-number {
        font-size: 34px;
    }

    .something-custom p.glad-tp-help {
        font-size: 20px;
    }

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

    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.ny-contact {
        padding: 0 0 3rem;
    }

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

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

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

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

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

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


/* MEDIA QUERIES CSS END HERE  */