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

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


.head h2 {
    color: #202020;
    margin: 1rem 0 0;
}

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

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

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

.head:after {
    position: absolute;
    content: '';
    background: rgb(51 51 51 / 20%);
    width: 230px;
    height: 2px;
    bottom: 1px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

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

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

section:hover .head h3 {
    color: var(--dark-blue);
}

section:hover .head h6 {
    background: var(--sky-blue);
}

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


a.main-cta {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    border: 2px solid transparent;
    padding: 1rem 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    border-radius: 4px;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    -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-blue {
    background: var(--sky-blue);
}

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

a.main-cta.btn-orange {
    background: var(--orange);
}

a.main-cta.btn-orange:hover {
    background: var(--sky-blue);
}

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

a.main-cta.btn-blue-border:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

a.main-cta.btn-blue-border i {
    background: var(--sky-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-blue-border:hover i {
    background: var(--white);
    color: var(--dark-blue);
}

/* GLOBAL CSS END HERE  */



/* SECTION ONE CSS START HERE */

.homeBanner.s1 {
    background-image: url(../img/about-american/bannerCover.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 4rem 0;
    background-repeat: no-repeat;
}

section.homeBanner.s1 h1 {
    font-size: 60px;
    color: var(--white);
    font-weight: 800;
    line-height: 66px;
    margin: 0 0 2rem;
    text-align: center;
}

.reviews-wrapper {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 2.5rem;
    margin: 0 0 2rem;
}

.reviews-wrapper>div {
    flex: 1 1 30%;
}

.reviews-box {
    background: var(--white);
    overflow: hidden;
    border-radius: 6px;
    padding: 1rem 0;
}

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

.reviews-box .review-slide-head {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 1rem;
    margin: 0 0 .5rem;
    border-bottom: 1px solid rgb(51 51 51 / 10%);
}

.reviews-box .review-slide-head>h2,
.reviews-box .review-slide-head>p {
    color: #333;
    /* font-size: .875rem; */
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.reviews-box .review-slide-head>p {
    margin: 0;
    opacity: 0.5;
    text-align: left;
    line-height: 1;
    font-size: 10px;
}

.reviews-box .review-slide-content {
    padding: 1rem 1rem 0;
    min-height: 81px;
}

.reviews-box .review-slide-content>p {
    font-size: 12px !important;
    color: #333;
    line-height: 17px;
}

.review-slide-bottom {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.review-slide-bottom>.read-all-reviews {
    position: relative;
    font-size: 8px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
    border-bottom: 1px solid;
}

.review-slide-bottom>.read-all-reviews:hover {
    color: var(--dark-blue);
}

.reviews-wrapper .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.reviews-wrapper ul.slick-dots li button:before {
    display: none;
}

.reviews-wrapper ul.slick-dots li button {
    padding: 0;
}

.reviews-wrapper ul.slick-dots li {
    width: 10px;
    height: 10px;
    background: #d6d6d6;
    border-radius: 50px;
}

.reviews-wrapper ul.slick-dots li.slick-active {
    background: #333;
}

span.clutch-slider-nav,
span.bark-slider-nav,
span.sitejabber-slider-nav {
    position: relative;
}

.reviews-wrapper ul.slick-dots {
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    /* right: 1rem; */
}

.timeline-services,
.company-stats {
    margin: 0 0 2rem;
}

.company-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
}


.cs-box {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
    border: 3px dashed rgb(255 255 255 / 25%);
    border-radius: 8px;
    padding: .3rem 1rem;
}

.cs-box span>p {
    font-size: 38px;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
    letter-spacing: .25px;
    margin: 0;
}

.cs-box span>small {
    font-size: 12px;
    font-weight: bold;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.partners {
    background: rgb(255 255 255 / 60%);
    border-radius: 6px;
    margin: 0 auto;
    padding: .5rem 1rem;
}

@media screen and (min-width:768px) {
    .partners {
        /* max-width: 55%; */
        max-width: 775px;
    }
}


.partners>ul {
    display: flex;
    display: -webkit-flex;
    grid-gap: 1rem;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .partners>ul {
        gap: 0.5rem;
    }
}

.partners img {
    filter: grayscale(1);
    transition: all .3s ease-in-out;
}

.partners img:hover {
    filter: unset;
}


/* SECTION ONE CSS END HERE */

/* SECTION TWO CSS START HERE */


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

section.what-we-do.diamond {
    margin: 3rem 0 0;
}

section.who-we-are.s2 .head h2 {
    font-size: 50px;
}

.whoWeAre-content p span {
    color: var(--orange);
    font-weight: 600;
}

@media screen and (min-width: 1199px) {
    .whoWeAre-content {
        padding: 0 5rem;
    }
}

.whoWeAre-content a.main-cta.btn-blue {
    margin: 2rem 0 3rem;
}

/* SECTION TWO CSS END HERE */

/* SECTION THREE CSS START HERE */


.whatWeDo-content p span {
    color: var(--orange);
    font-weight: 600;
}

@media screen and (min-width: 1199px) {
    .whatWeDo-content {
        padding: 0 5rem;
    }
}

.reviewBox {
    border: 2px solid var(--black);
    border-radius: 15px;
    height: 350px;
    max-width: 530px;
    padding: inherit;
    text-align: center;
    padding: 3rem 4rem;
    margin: 4rem auto 0;
}

.reviewBox h3.clientName {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1b1b1b;
}

.reviewBox .reviewBox p {
    min-height: 130px;
}


.reviewBox>img {
    margin: 0 0 1.5rem;
}


/* SECTION THREE CSS END HERE */

/* SECTION FOUR CSS START HERE */

section.services {
    padding: 0 0 60px;
}

section.services .head~h2 {
    position: relative;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0 0;
    text-align: center;
    color: var(--light-black);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    margin: 3rem 0 0;
}


.services-wrapper .service-box-style {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(14 46 103 / 20%);
}

.service-box-left {
    padding: 2rem 0 2rem 1.5rem;
}

.service-box-left h3 {
    position: relative;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--light-black);
    padding: 0 0 1rem;
    margin: 0 0 1rem;
}

.service-box-left h3:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 60px;
    height: 4px;
    bottom: 0;
    left: 0;
}

.service-box-left p {
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 1.2rem;
}

.service-box-left .service-btns {
    display: flex;
    grid-gap: 1rem;
}

.service-box-left .service-btns a {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    padding: .6rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    -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;
}

.service-box-left .service-btns a.learn-more {
    background: var(--gray);
}

.service-box-left .service-btns a.view-portfolio {
    background: var(--sky-blue);
}

.service-box-left .service-btns a:hover {
    background: var(--orange);
}


.service-box-right img {
    width: 100%;
    height: 100%;
}

.service-box.view-cs {
    border: 3px dashed #7f7f7f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box.view-cs a.main-cta {
    box-shadow: unset;
}

/* SECTION FOUR CSS END HERE */

/* SECTION FIVE CSS START HERE */

section.our-team {
    background: #00165e;
}

section.our-team .head:before,
section.our-team .head:after {
    display: none;
}

section.our-team .head h2 {
    color: var(--white);
}

section.our-team .head h3 {
    background: var(--white);
    color: var(--dark-blue);
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: .4rem 1rem;
}

section.our-team .head h4 {
    color: var(--orange);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin: 1rem 0 0;
    font-size: 2.5rem;
}

.our-team-bottom h3 {
    color: var(--white);
    font-size: 1.875rem;
    margin: 0 0 2rem;
    font-weight: 600;
}

.our-team-bottom {
    margin: -30px 0 0;
}

.our-team-bottom .our-team-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 1rem;
    flex-wrap: wrap;
}

.our-team-bottom .our-team-btns span {
    font-size: 1.625rem;
    color: var(--white);
    font-weight: bold;
    opacity: 0.3;
}

/* SECTION FIVE CSS END HERE */


/* SECTION SIX CSS START HERE */

.video-review-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.video-reviews-wrap .video-review-item:not(:last-child) {
    margin: 0 0 4rem;
}

.video-review-item .video-review-left {
    background-color: var(--dark-blue);
    background-image: url('../img/about-american/particles.webp');
    background-repeat: no-repeat;
    background-position: center center;
    padding: 1.5rem;
    border-radius: 10px 0 0 10px;
}

.video-reviews-wrap .video-review-item:nth-child(even) .video-review-left {
    margin-left: -25px;
    z-index: -1;
    border-radius: 0 10px 10px 0;
}

.video-review-item .video-review-left h2 {
    position: relative;
    color: #fff8ed;
    font-size: 30px;
    font-weight: 600;
    display: inline-block;
    padding: 0 0 5px;
    margin: 0 0 1rem;
}

.video-review-item .video-review-left h2:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 90px;
    height: 3px;
    bottom: -5px;
}

.video-review-item .video-review-left p,
.video-review-item .video-review-left ul li {
    color: #fff8ed;
    font-size: 18px;
    line-height: 22px;
}

.video-review-item .video-review-left p span {
    color: #00baff;
}

.video-review-item .video-review-left ul.highlights {
    display: flex;
    flex-wrap: wrap;
}

.video-review-item>div {
    position: relative;
    flex: 0 0 50%;
}

.video-review-item .video-review-left ul.highlights li:first-child {
    font-weight: 600;
    font-size: 20px;
    flex: 1 1 23%;
}

.video-review-item .video-review-left ul li {
    font-size: 16px;
    flex: 1 1 70%;
}

.video-review-item .video-review-right p {
    background: #081e46;
    color: #fff8ed;
    font-size: 14px;
    text-align: center;
    padding: .2rem 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    width: max-content;
    margin: 0 auto;
}


/* CONTENT REVIEW START  */

.content-reviews-wrap {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 2rem;
    margin: 5rem 0 0;
}

.content-reviews-wrap .content-review-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 30%;
    border: 2px solid var(--black);
    border-radius: 10px;
    min-height: 400px;
    padding: 1.5rem;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.content-reviews-wrap .content-review-item:hover {
    box-shadow: 0 0 20px rgb(14 46 103 / 20%);
}


.content-reviews-wrap .content-review-top img {
    margin: 0 0 2rem;
}

.content-reviews-wrap .content-review-top p {
    min-height: 145px;
}

.content-reviews-wrap .content-review-item p {
    line-height: 24px;
    font-size: 16px;
}

.content-reviews-wrap .content-review-item .content-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-reviews-wrap .content-review-item .content-review-footer p {
    margin: 0;
    font-weight: 600;
}

.read-reviews-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-gap: 1rem;
    margin: 1.5rem 0 0;
}

.read-reviews-wrap span {
    font-size: 1.625rem;
    color: var(--light-black);
    font-weight: bold;
    opacity: 0.3;
}

.read-them-here {
    background: var(--dark-blue);
    width: 100%;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

.read-them-here>h4 {
    background: var(--orange);
    color: var(--white);
    padding: .6rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.read-them-here ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 3rem !important;
    grid-gap: 2rem;
}

.read-them-here ul li {
    flex: 1 1 16%;
}

.badges-slider {
    margin: 4rem 0 0;
}

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

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

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

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

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

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

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

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

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

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

/* SECTION SIX CSS END HERE */

/* SECTION SEVEN CSS START HERE */

section.sb-content-wing {
    background: #f5f5f5;
}

section.sb-content-wing .row {
    margin: 4rem 0 0;
    grid-row-gap: 1.5rem;
}

article.blog-box {
    position: relative;
    box-shadow: 10px 0 15px rgb(0 0 0 / 10%);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

article.blog-box:hover {
    transform: translate(0px, -10px);
}

article.blog-box .blog-thumb {
    height: 174px;
}

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

.blog-content {
    padding: 1rem 1rem 2rem;
    background: var(--white);
    text-align: center;
}

.blog-content ul.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    color: #4e4e4e;
    font-weight: 500;
}

.blog-content h2 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 1rem 0 0;
    text-align: left;
    min-height: 44px;
}

.blog-content a {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: .875rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    grid-gap: .5rem;
    justify-content: center;
    border-radius: 4px;
    margin: 2rem 0 0;
    text-transform: uppercase;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    -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;
}

.blog-content a.read-more {
    background: var(--sky-blue);
}

.blog-content a.read-more:hover {
    background: var(--orange);
}

.blog-content a.watch-now {
    background: var(--orange);
}

.blog-content a.watch-now:hover {
    background: var(--sky-blue);
}

.content-wing-btns {
    margin: 4rem 0 0;
    display: flex;
    justify-content: center;
    grid-gap: 1.5rem;
    flex-wrap: wrap;
}


/* SECTION SEVEN CSS END HERE */

/* SECTION EIGHT CSS START HERE */


section.contact-section .row {
    position: relative;
    align-items: center;
    margin: 4rem 0 0;
}

section.contact-section .col-right {
    padding-left: 3rem;
}

div#discussLead {
    position: relative;
    background: #f5f5f5;
    padding: 2rem 1.5rem;
    border-radius: 10px;
}

div#discussLead .form-head {
    padding: 0 0 1rem;
    margin: 0 0 2rem;
    position: relative;
}

div#discussLead .form-head p {
    font-size: 18px;
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0;
}

div#discussLead .form-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
}

div#discussLead .form-head h2>span {
    color: var(--orange);
}

div#discussLead .form-head:before {
    position: absolute;
    content: '';
    background: var(--orange);
    width: 300px;
    height: 5px;
    bottom: 0;
    left: 0;
}

div#discussLead .form-group {
    position: relative;
    margin-bottom: 10px;
}

div#discussLead .form-group .form-control {
    position: relative;
    color: #989898;
    border: 2px solid #e7e7e7;
    background: #fafcfe;
    border-radius: 0;
    padding: 14px 45px;
    box-shadow: unset;
    outline: unset;
    font-size: 14px;
}

div#discussLead .form-group i {
    position: absolute;
    z-index: 9;
    top: 20px;
    left: 20px;
    color: var(--orange);
}

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

div#discussLead .form-control::placeholder {
    color: #989898;
}

div#discussLead .form-group textarea.form-control {
    height: 120px;
    resize: none;
}

div#discussLead .form-group .form-control:focus {
    border-color: var(--sky-blue);
}

div#discussLead .btn-box {
    margin: 1.5rem 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-gap: 1rem;
}

div#discussLead .btn-box .btn-form {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--sky-blue);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem;
    border-radius: 4px;
    text-shadow: 0px 2px 0px rgb(5 5 5 / 20%);
    text-transform: uppercase;
    letter-spacing: .5px;
    -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;
}

div#discussLead .btn-box .btn-form:hover {
    background: var(--orange);
}

div#discussLead .mini-contact-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 1rem;
}

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

div#discussLead .c-cont-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 700;
    opacity: 0.5;
}

div#discussLead .c-cont-box a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
    color: var(--dark-blue);
    font-weight: 800;
}

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

div#discussLead .c-icon-box i {
    font-size: 30px;
    color: var(--orange);
    margin-right: 10px;
}

section.contact-section .col-right {
    text-align: center;
}

section.contact-section .col-right h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 1.2rem;
}

section.contact-section .contact-cta {
    margin: 2rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 1rem;
}

section.contact-section .contact-cta a.main-cta {
    display: inline-flex;
}


section.contact-section .contact-cta a.btn-blue:hover {
    background: var(--orange);
    color: var(--white);
}

section.contact-section .contact-cta a.btn-orange:hover {
    background: var(--sky-blue);
    color: var(--white);
}

/* SECTION EIGHT CSS END HERE */

/* MEDIA QUERY CSS START HERE  */

@media screen and (max-width: 1199px) {
    .contact-container {
        display: none !important;
    }

    .reviews-box .review-slide-content {
        min-height: 115px;
    }

    .service-box-left .service-btns a {
        padding: .6rem;
    }

    .video-review-item .video-review-left ul.highlights li:first-child {
        flex: 1 1 100%;
    }

    .blog-content h2 {
        min-height: 65px;
    }

    div#discussLead .form-head p {
        font-size: 14px;
    }

    div#discussLead .form-head h2 {
        font-size: 20px;
    }

    section.contact-section .col-right h2 {
        font-size: 22px;
    }

    div#discussLead .mini-contact-area {
        position: unset;
        margin-top: 3rem;
    }

    section.contact-section .contact-cta a.main-cta {
        padding: 1rem 2rem;
    }
}


@media screen and (max-width: 991px) {
    section.homeBanner.s1 h1 {
        font-size: 44px;
        line-height: 1;
    }

    .reviews-wrapper {
        grid-gap: 1rem;
    }

    .reviews-box .review-slide-head {
        display: flex;
        flex-direction: column;
        min-height: 56px;
    }

    .reviews-box .review-slide-content {
        min-height: 145px;
    }

    .reviews-wrapper ul.slick-dots {
        position: unset;
        justify-content: center;
        margin: 1rem 0 0 !important;
    }

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

    section.who-we-are.s2 .head h2 {
        font-size: 40px;
    }

    .head h3 {
        font-size: 22px;
    }

    .services-wrapper .service-box-right {
        display: none;
    }

    .services-wrapper .service-box-style {
        display: block;
    }

    .service-box-left {
        padding: 2rem 1rem;
    }

    .service-box.view-cs a.main-cta {
        padding: 1rem 2rem;
    }

    .our-team-bottom h3 br {
        display: none;
    }

    .our-team-bottom .our-team-btns {
        flex-direction: column;
    }

    .video-review-item {
        flex-direction: column;
    }

    .video-review-item .video-review-right p {
        position: unset;
        width: auto;
    }

    .video-review-item .video-review-left {
        border-radius: 0 0 10px 10px;
    }

    .video-reviews-wrap .video-review-item:nth-child(odd) {
        flex-direction: column-reverse;
    }

    .video-reviews-wrap .video-review-item:nth-child(even) .video-review-left {
        margin: 0;
        border-radius: 0 0 10px 10px;
    }

    .video-reviews-wrap .video-review-item:not(:last-child) {
        margin: 0 0 2rem;
    }


    .content-reviews-wrap .content-review-item {
        padding: 1rem;
    }

    .content-reviews-wrap .content-review-item .content-review-footer {
        flex-direction: column;
        grid-gap: 1rem;
        align-items: flex-start;
    }

    .read-them-here ul {
        grid-gap: 1rem;
    }

    section.contact-section .row {
        margin: 0;
    }

    div#discussLead {
        margin: 1rem 0 2rem;
    }

    div#discussLead .btn-box {
        align-items: flex-end;
    }
}

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

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

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

    .head h3 {
        font-size: 20px;
    }

    .head h3 br {
        display: none;
    }

    .homeBanner.s1 {
        padding: 2rem 0;
    }

    section.homeBanner.s1 h1 {
        font-size: 22px;
    }

    .reviews-wrapper {
        display: block;
    }

    .reviews-box .review-slide-content {
        min-height: auto;
    }

    .reviews-wrapper .reviews-box:not(:last-child) {
        margin-bottom: 1rem;
    }

    .cs-box {
        width: 100%;
        flex-direction: row;
    }

    section.who-we-are.s2 .head h2 {
        font-size: 26px;
    }

    .reviewBox {
        height: auto;
        padding: 1rem;
    }

    .services-wrapper {
        display: block;
    }

    .services-wrapper .service-box:not(:last-child) {
        margin-bottom: 1rem;
    }

    .service-box.view-cs {
        border: 0;
        margin-top: 2rem;
    }

    section.our-team .head h3 {
        font-size: 16px;
    }

    section.our-team .head h4 {
        font-size: 22px;
    }

    .our-team-bottom {
        margin: 2rem 0 0;
    }

    .our-team-bottom h3 {
        font-size: 20px;
    }

    .video-review-item .video-review-left h2 {
        font-size: 22px;
    }

    .video-review-item .video-review-left p,
    .video-review-item .video-review-left ul li,
    .video-review-item .video-review-left ul.highlights li:first-child {
        font-size: 16px;
    }

    .content-reviews-wrap {
        margin: 2rem 0 0;
        flex-direction: column;
        grid-gap: 1rem;
    }

    .content-reviews-wrap .content-review-top p {
        min-height: auto;
    }

    .read-them-here ul li {
        flex: 1 1 50%;
    }

    .read-them-here ul {
        grid-gap: 0;
        grid-row-gap: 2rem;
    }

    .badges-slider {
        margin: 2rem 0;
    }

    .blog-content h2 {
        min-height: auto;
    }

    .content-wing-btns {
        margin: 2rem 0 0;
    }

    div#discussLead .form-head p {
        line-height: 1;
        margin: 0 0 .5rem;
    }

    div#discussLead .form-head {
        text-align: center;
    }

    div#discussLead .form-head:before {
        width: 100px;
        right: 0;
        margin: 0 auto;
    }

    div#discussLead .mini-contact-area {
        margin-top: 1rem;
    }

    section.contact-section .col-right {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}


/* MEDIA QUERY CSS END HERE  */

.footer-links {
    background: #0b2b46 !important;
}



.whoWeAre-content p {
    font-size: 18px;
}

.whatWeDo-content p {
    font-size: 18px;
}

.reviewBox p {
    font-size: 18px;
}