nav#navbar {
    background-color: #1C1E50;

    position: fixed;
    left: 0;
    top: 0;
    height: 6rem !important;
}

.cta__btn-li>p {
    margin-top: 0.5rem;
}

.navbar__logo {
    height: 55% !important;
    width: auto;
}

.navbar__logo>img {
    height: 100%;
    width: auto;
}
  
a {
    text-decoration: none;
}

html {
    font-size: 16px !important;
}


/* -------------------------------------------- header -------------------------------------------- */
header#header {
    height: 3rem;
    width: 100vw;
    background-color: white;
    color: black;
    
    display: flex;
    justify-content: center;
    align-items: center;

    position: sticky;
    top: 6rem;
    left: 0;

    z-index: 9999;
}

#header > ul {
    width: 70vw;
    display: flex;
    justify-content: space-around;
    margin-bottom: 0rem;
}

#header > ul > li {
    list-style: none;
    cursor: pointer;
}

#header > ul > li > a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: bold;
}

@media only screen and (max-width:600px) {
    #header>ul {
            width: 100vw;
        }
}

@media only screen and (max-width:450px) {

    header#header {
        height: 8rem;
    }

    #header>ul {
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #header>ul>li {
        margin: 0.1rem 0;
    }
}

/* -------------------------------------------- overview -------------------------------------------- */
section#overview {
    width: 100vw;
    margin-top: 6rem;
}

.overview__container-img {
    width: 100%;
    height: auto;

    position: relative;
}

.overview__container-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview__arrow-icon {
    width: 3rem;
    height: 3rem;
    transform: rotate(90deg);
    position: absolute;
    bottom: 8rem;
    right: 2rem;
}

.overview__arrow-icon > img {
    width: 100%;
    height: 100%;
}

.overview__container-text {
    padding: 4rem 4rem;
    padding-top: 5rem;
}

.overview__container-text > h2 {
    color: #1C1E50;
    /*font-size: calc(2.5rem + 1vw);*/
    font-size:60px;
    font-weight: bolder;
    margin: 0;
}

.overview__container--para {
    margin-top: 1.2rem;
    font-weight: bold;

    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.overview__container--para > p {
    text-align: justify;
}

@media only screen and (max-width:1000px) {
    .overview__arrow-icon {
        display: none;
    }
}
@media only screen and (max-width:850px) {
    .overview__container-text {
        padding: 2rem 3rem;
    }

    .overview__container--para {
        gap: 3rem;
    }
}

@media only screen and (max-width:650px) {
    .overview__container-text {
        padding: 2rem 2rem;
    }

    .overview__container--para {
        gap: 2rem;
    }
}

@media only screen and (max-width:600px) {
    .overview__container-text {
        padding: 1.5rem 1.5rem;
    }

    .overview__container--para {
        gap: 1.5rem;
    }
}

@media only screen and (max-width:550px) {
    .overview__container-text {
        padding: 1.5rem 1.5rem;
    }

    .overview__container--para {
        flex-direction: column;
        gap: 1rem;

    }
}

@media only screen and (max-width:400px) {
    .overview__container-text {
        padding: 1rem 1rem;
    }

    .overview__container--para {
        flex-direction: column;
        gap: 1rem;

    }
}

/* -------------------------------------------- process -------------------------------------------- */
section#process {
    width: 100vw;
    padding: 2rem 0rem;
    background-color: #EDEDED;
}

.process__heading {
    width: 100%;
    
    display: flex;
    justify-content: center;
}

.process__heading > h2 {
    /*font-size: calc(2.5rem + 1vw) !important;*/
    font-size:60px;
    font-weight: bolder;
    color: #1C1E50;

    text-transform: uppercase;
}

.process__container-wrapper {
    /* border: 2px solid red; */
    overflow-x: scroll;
    padding-left: 4rem;
}

.process__container {
    /* border: 2px solid blue; */
    /* width: auto !important; */
    /* overflow-x: scroll; */
    margin-top: 2rem;
    padding: 1rem 0rem;

    display: flex;
}

.process__container--1,
.process__container--2,
.process__container--3,
.process__container--4,
.process__container--5 {

    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1rem;

    height: 33rem;
    padding: 1rem;
}

.process__container  div {
    width: 23rem !important;

    position: relative;
}

.process__container > div:not(:first-of-type) {
    padding-left: 4rem;
}

.process__container > div:not(:last-of-type):after {
    content: '';
    position: absolute;
    background-image: url('process.png');
    background-repeat: no-repeat;
    background-size: cover;
    left: 100%;
    top: 0;
    width: 3.5rem;
    height: 100%;
}

.process__container--wrapper {
    height: 20rem;
}

.process__container--top {
    display: flex;
    margin-bottom: 1rem;
}

.process__container--top > img {
    width: 6rem;
    height: 6rem;
}

.process__container--top > span {
    font-size: 4rem;
    font-weight: 800;
    color: #1C1E50;
    margin-left: 0.5rem;
}

.process__container--bottom {

    display: flex;
    flex-direction: column;
}

.process__container--bottom > h3 {
    font-size: calc(1.4rem + 0.8vw);
    font-weight: bolder;
    color: #1C1E50;
    margin-bottom: 1.2rem;
}

.process__container--bottom > p {
    font-weight: 600;
    /*font-size: calc(0.8rem + 0.5vw);*/
    font-size:20px;
    color: #000;
    max-width: 75%;

}

@media only screen and (max-width:600px) {
    section#process {
        padding: 2rem 1rem;
    }


    .process__container div {
        width: 18rem !important;

        position: relative;
    }
}

/* -------------------------------------------- team -------------------------------------------- */
section#team {
    width: 100vw;
    padding: 2rem 4rem;
    padding-bottom: 5rem;
}

.team__heading {
    width: 100%;

    display: flex;
    justify-content: center;
}

.team__heading > h2 {
    color: #1C1E50;
    /*font-size: calc(2.5rem + 1vw) !important;*/
    font-size:60px;
}

.team__container-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-around;
}

.card {
    margin-top: 2rem;
    width: 30%;
    /* overflow: hidden; */

    display: flex;
    flex-direction: column;
    align-items: center;
}

.team__img-wrapper {
    height: 20rem;
    max-width: 100%;

    position: relative;
    z-index: 1;
}

.team__img-wrapper::before {
    content: '';
    position: absolute;
    top: 0%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-image:radial-gradient(63.51% 63.51% at 47.84% 42.15%,
                rgba(29, 111, 183, 0.5) 0%,
                #6CC9CF 0%,
                rgba(244, 244, 244, 0) 80%);
    z-index: -1;
}

.team__container-card img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.team__card--text {
    margin-top: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.team__card--text > p {
    font-size: calc(0.6rem + 0.4vw);
    font-weight: bold;
    color: #1C1E50;
}

.team__card--text > p:last-child {
    color: #86868B;
}

@media only screen and (max-width:1000px) {
    section#team {
        padding: 2rem 2rem;

    }
}

@media only screen and (max-width:850px) {
    .card {
        margin-top: 2rem;
        width: 35%;
    }
}

@media only screen and (max-width:700px) {
    .card {
        margin-top: 2rem;
        width: 45%;
    }
}

@media only screen and (max-width:500px) {
    section#team {
        padding: 1rem 1rem;
    }
    .card {
        margin-top: 2rem;
        width: 45%;
    }

    .team__img-wrapper {
        height: 15rem;
    }
}

/* -------------------------------------------- clients -------------------------------------------- */
section#clients {
    width: 100vw;
    margin-top: 1rem;
    background-color: #E7EEED;
    padding: 2rem;
}

.clients__heading > h2 {
    color: #1C1E50;
    /*font-size: calc(2.5rem + 1vw) !important;*/
    font-size:60px;
    font-weight: bolder;

    display: flex;
    justify-content: center;
}

.clients__container {
    width: 100%;
    margin-top: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.clients__container--logo {
    width: 10rem;
    height: 10rem;
    filter: grayscale(100%);

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.4s ease;
}

.clients__container--logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.clients__container--logo img {
    width: 100%;
    object-fit: cover;
}

.eic-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eic-logo a{
    width: 60%;

}

@media only screen and (max-width:500px) {
    section#clients {
        padding: 1rem;
    }

    .clients__container {
        gap: 1rem;
    }

    .clients__container--logo {
        width: 8rem;
        height: 8rem;
    }
}

/* -------------------------------------------- testimonials -------------------------------------------- */
section#testimonials {
    width: 100vw;
    background-color: #1C1E50;
    padding: 2rem;
    margin-bottom: 0.8rem;
}

/* img {
    max-width: 100%;
    height: auto;
} */

/* body {
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    line-height: 1.67;
    color: #444;
    padding: 60px 0;
} */

.section-title {
    /* font-size: 2.8rem; */
    /*font-size: calc(2.5rem + 1vw) !important;*/
    font-size:60px;
    margin-bottom: 1.4rem;
    padding-bottom: 1rem;
    font-weight: 400;
    color: white;
    display: inline-block;
    position: relative;
}

/* .section-title:after,
.section-title:before {
    content: "";
    position: absolute;
    bottom: 0;
}

.section-title:after {
    height: 2px;
    background-color: white;
    left: 25%;
    right: 25%;
}

.section-title:before {
    width: 15px;
    height: 15px;
    border: 3px solid #1C1E50;
    background-color: white;
    left: 50%;
    transform: translatex(-50%);
    bottom: -6px;
    z-index: 9;
    border-radius: 50%;
} */

/* CAROUSEL STARTS */
.customer-feedback .owl-item img {
    background-color: white;
    width: 120px;
    height: 120px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    /* margin-top: -1rem; */
}

.feedback-slider-item {
    position: relative;
    padding: 40px;
    margin-top: -40px;
}

.customer-name {
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
    font-size: 2rem;
    font-weight: 600;
    color: black;
}

.feedback-slider-item p {
    /* line-height: 1.875; */
    line-height: 1.2;
    font-family: 'Inter';
    color: black;
    font-size: calc(0.6rem + 0.4vw);
}

.customer-rating {
    background-color: #eee;
    border: 3px solid #fff;
    color: rgba(1, 1, 1, 0.702);
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    width: 47px;
    height: 47px;
    line-height: 44px;
    font-size: 15px;
    right: 0;
    top: 77px;
    text-indent: -3px;
}

.thumb-prev .customer-rating {
    top: -20px;
    left: 0;
    right: auto;
}

.thumb-next .customer-rating {
    top: -20px;
    right: 0;
}

.customer-rating i {
    color: white;
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: 600;
    font-size: 12px;
}

/* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
.feedback-slider-item:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    top: 103px;
    background-color: #f6f6f6;
    border: 1px solid rgba(251, 90, 13, 0.1);
    border-radius: 10px;
    z-index: -1;
}

.thumb-prev,
.thumb-next {
    position: absolute;
    z-index: 99;
    top: 45%;
    width: 98px;
    height: 98px;
    left: -90px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.thumb-next {
    left: auto;
    right: -90px;
}

.feedback-slider-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
}

.feedback-slider-thumb:hover {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.customer-feedback .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    /* bottom: 45px; */
    transition: all 0.2s ease-in;
}

.customer-feedback .owl-nav i {
    background-color: transparent;
    /* color: rgb(251, 90, 13); */
    color: white;
    font-size: 25px;
}

.customer-feedback .owl-prev {
    left: -15px;
}

.customer-feedback .owl-prev:hover {
    left: -20px;
}

.customer-feedback .owl-next {
    right: -15px;
}

.customer-feedback .owl-next:hover {
    right: -20px;
}

/* DOTS */
.customer-feedback .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

.customer-feedback .owl-dot {
    display: inline-block;
}

.customer-feedback .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid rgb(251, 90, 13);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    border-radius: 50%;
}

.customer-feedback .owl-dots .owl-dot.active span {
    background-color: rgb(251, 90, 13);
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .feedback-slider-item:after {
        left: 30px;
        right: 30px;
    }

    .customer-feedback .owl-nav [class*="owl-"] {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 45px;
        bottom: auto;
    }

    .customer-feedback .owl-prev {
        left: 0;
    }

    .customer-feedback .owl-next {
        right: 0;
    }
}