@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;;
}

:root {
    --primary-color: #e9faff;
    --body: #e9faff;
    --secondary-color: #35dad6;
    --tertiary-color: #1fb2ed;
    --primary-text: #0D1213;
    --secondary-text: #4A4A4A;
    --highlight-green: var(--secondary-color);
    --highlight-orange: var(--tertiary-color);
    --caption: #4A4A4A;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    background: var(--body);
}

.highlight-green {
    color: var(--highlight-green);
}

.highlight-orange {
    color: var(--highlight-orange);
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
}

ul li {
    list-style: none;
    margin: 0;
}

h1 {
    font-size: 4.5rem;
    font-style: normal;
    font-weight: 700;
    color: var(--primary-text);
}

h2 {
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 600;
}

h3 {
    font-size: 2.666rem;
    font-style: normal;
    font-weight: 600;
}

h4 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
}

h5 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
}

h6 {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-text);
}

.h6 {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-text);
}

p {
    font-size: 1rem;
    line-height: 1.7rem;
    color: var(--secondary-text);
}

.pr-1 {
    padding-right: 0.5rem;
}

.mr-1 {
    margin-right: 0.5rem;
}

.pl-1 {
    padding-left: 0.5rem;
}

.ml-1 {
    margin-left: 0.5rem;
}

.pl-2 {
    padding-left: 1rem;
}

.ml-2 {
    margin-left: 1rem;
}

.fs-5 {
    font-size: 1.4rem;
}

fs-6 {
    font-size: 0.8rem;
}

.text-primary {
    color: #3AE3F9 !important;
}

.text-secondary {
    color: var(--caption) !important;
}

.btn-build {
    color: #0D1213;
    font-size: 1.1rem;
    font-weight: 800;
}

.btn-join {
    color: #00A3F3;
    font-size: 1.1rem;
    font-weight: 800;
}

.btn-build i, .btn-join i {
    margin-left: 0.4rem;
    transition: 0.4s;
}

.btn-build:hover i, .btn-join:hover i {
    margin-left: 0.8rem;
}

/*Header*/
.navbar {
    background: var(--body);
}

.navbar-nav .nav-link {
    margin: 0.5rem 1.5rem !important;
    position: relative;
    font-weight: 500;
    color: #0782B7;
    /*transition: color 0.1s,background-color 0.1s, 0.2s ease-in;*/
}

.navbar-nav .nav-link.active {
    color: #0782B7;
    text-decoration: none;
}

.navbar-nav .nav-link {
    text-decoration: none;
    transition: color 0.1s, background-color 0.1s;
}

.navbar-nav .nav-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #0782B7;
    transform-origin: right top;
    transform: scale(0, 0);
    transition: color 0.1s, transform 0.2s ease-out;
}

.navbar-nav .nav-link.active:before {
    background-color: #0782B7;
    transform: scale(1, 1);
    height: 2px;
}

.navbar-nav .nav-link:hover::before, .navbar-nav .nav-link:focus::before {
    transform-origin: left top;
    transform: scale(1, 1);
    height: 2px;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #7b7c7c;
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


.container {
    max-width: 1190px;
    margin: 0 auto;
}

/*Footer*/
footer {
    background: #263238;
}

footer span {
    font-size: 0.9rem;
}

.menu-footer li {
    padding-top: 0.5rem;
    font-size: 0.9rem;
}

.footer-border {
    border: 1px solid #ffffff;
    width: 10px;
    height: 1px;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.menu-footer li:hover .footer-border {
    width: 15px;
}

/*Scrollbar Css*/
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--secondary-text);
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.portfolio-cards {
    border-radius: 30px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    cursor: pointer;
    position: relative;
}

.portfolio-cards li {
    font-size: 0.9rem;
    padding: 0.2rem;
    list-style: square;
}

.brand-image {
    display: block;
    transition: 0.5ms ease-in;
}

.links-portfolio {
    position: absolute;
    bottom: 1.3rem;
    left: 2rem;
}

.portfolio-cards .brand-product-image {
    margin: 1rem 0 0;
    display: block;
    transition: 0.5ms ease-in;
}

.projects-links {
    font-size: 0.9rem;
    font-weight: 600;
}

.portfolio-cards .arrow-up {
    display: none;
    transition: 0.5s ease-in;
}

.portfolio-cards .arrow-down {
    display: block;
    transition: 0.5s ease-in;
}

.portfolio-cards:hover .brand-image {
    display: none;
    animation: fadeOut 1s linear;
}

.portfolio-cards:hover .brand-product-image {
    display: none;
    opacity: 1;
    animation: fadeOut 1s linear;
}

.portfolio-cards .portfolio-details {
    display: none;
    opacity: 0;
    animation: fadeOut 1s linear forwards;
}

.portfolio-cards:hover .portfolio-details {
    display: block;
    opacity: 0;
    animation: fade 1s linear forwards;
}

@keyframes fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}


.portfolio-cards:hover .arrow-up {
    display: block;
}

.portfolio-cards:hover .arrow-down {
    display: none;
}

section {
    padding: 2rem 0 !important;
}

.border-radius-50 {
    border-radius: 50px;
}

.card.card-01, .card.card-02, .card.card-03 {
    display: flex;
    height: 100%;
}

.card.card-01 {
    background: #CDDAE9;
    border: 1px solid #CDDAE9;
}

.card.card-02 {
    background: #B9E3EA;
    border: 1px solid #B9E3EA;
}

.card.card-03 {
    background: #ADF7AD;
    border: 1px solid #ADF7AD;
}

.team-member-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #efefef;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
}

.teams-members:nth-child(4n) .team-member-img:hover {
    background: #8dc3ff;
}

.teams-members:nth-child(4n-1) .team-member-img:hover {
    background: #ffb0b0;
}

.teams-members:nth-child(4n-2) .team-member-img:hover {
    background: #b0f5c6;
}

.teams-members:nth-child(4n-3) .team-member-img:hover {
    background: #9a9ffd;
}

.team-member-img img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    transform: translateY(0%) scale(1);
    transition: 0.5s;
}

.holder {
    width: 250px;
    height: 250px;
    object-fit: cover;
    clip-path: circle(100% at 75% 0%);
}

.team-member-img img:hover {
    height: 400px;
    object-fit: cover;
    transform: translateY(-30%) scale(1);
}


.dots {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3AE3F9;
    text-align: center;
}

.border-bottom-01 {
    border: 1px solid #4A4A4A;
    height: 1px;
    width: 140px;
    margin-right: 2rem;
}


.testimonials-sec .card {
    border-radius: 100px 0px;
    background: #ffffff;
    border: none;
    padding: 6rem 6rem 4rem 6rem;
}

.testimonials-sec .card p {
    color: var(--primary-text);
    font-size: 1.2rem;
}

.slick-dots li.slick-active button:before {
    color: var(--highlight-green);
}


#services-sec h6 {
    font-size: 1.3rem;
    font-weight: 600;
    transition: ease-in-out 2s;
}

.services-details {
    padding-left: 4rem;
}

.form-check-input {
    display: none;
}

.projects-listing {
    height: 230px;
    transition: 2s;
}

.projects-listing img {
    /*display: none;*/
    transition: 0.2s;
    height: 380px;
    width: 100%;
    object-fit: cover;
    transform: translateX(200%);
}

.form-check-input:checked ~ .projects-listing img {
    /*animation: imgTranslate 0.2s forwards;*/
    display: block !important;
    transition: all 0.5s ease-in-out;
    transform: translateX(0);
}

.form-check-input:checked ~ .projects-listing {
    height: auto;
    transition: all 3s ease-in-out;
}

/*@keyframes imgTranslate {*/
/*    0%{*/
/*        transform: translateX(200%);*/
/*    }*/
/*    100%{*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/
.projects-listing label {
    cursor: pointer;
}

.projects-listing h3, .projects-listing .projects-details {
    transform: translateX(-200%);
    transition: 0.4s;
}

.projects-listing label {
    transform: translateX(-65%);
    transition: 0.4s;
}

.form-check-input:checked ~ .projects-listing label {
    /*animation: countTranslate 0.2s forwards;*/
    display: block !important;
    transition: all 0.5s ease-in-out;
    transform: translateX(0);
}

.form-check-input:checked ~ .projects-listing h3 {
    /*animation: countTranslate 0.2s forwards;*/
    display: block !important;
    transition: all 0.5s ease-in-out;
    transform: translateX(0);
}

@keyframes countTranslate {
    0% {
        transform: translateX(-200%);
    }
    100% {
        transform: translateX(0);
    }
}

.form-check-input:checked ~ .projects-listing h3:after {
    transform: translateX(-200%);
    content: '';
}

.careers-card {
    cursor: pointer;
    border-radius: 10px;
    background: #ffffff;
}

.careers-card-01 {
    border-radius: 10px;
    background: #ffffff;
}

.careers-card-01 ul li {
    list-style-type: "✅" !important;
    padding: 0.5rem 0;
}

.careers-card i {
    position: absolute;
    content: '';
    top: -0.4rem;
    transform: translateX(-5px);
    transition: 0.4s;
}

.careers-card:hover i {

    transform: translateX(2px);
    transition: 0.4s;
}

.careers-card:hover:after i {
    transition: 0.4s;
}

.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
}

/* Remove borders and add line below input */
.form-control {
    border: none;
    border-bottom: 1px solid #ccc;
}

/* Add asterisk to required fields
label[for="name"]::after,
label[for="email"]::after,
label[for="message"]::after {
  content: " *";
  color: red;
} */
.field {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: 1em;
}

/**
* Add a transition to the label and input.
* I'm not even sure that touch-action: manipulation works on
* inputs, but hey, it's new and cool and could remove the
* pesky delay.
*/
label, input {
    transition: all 0.2s;
    touch-action: manipulation;
}

.field input {
    font-size: 1.2rem;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    cursor: text;
    background: transparent;
}

.field input:focus {
    outline: 0;
    border-bottom: 1px solid #666;
}

label {
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
    font-size: 1rem;
}

/* Floating labels */
input:placeholder-shown + label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 2.125rem) scale(1.5);
}

::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

input:focus::-webkit-input-placeholder {
    opacity: 1;
}

input:not(:placeholder-shown) + label,
input:focus + label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
}

/* Make inputs taller */
.form-control {
    height: 50px;
}


label, textarea {
    transition: all 0.2s;
    touch-action: manipulation;
}

textarea {
    background: transparent;
    font-size: 1.2rem;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    cursor: text;
    resize: none; /* disable textarea resize */
}

textarea:focus {
    outline: 0;
    border-bottom: 1px solid #666;
}

label {
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
    color: #777777;
}

/* Floating labels */
textarea:placeholder-shown + label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 2.125rem) scale(1.5);
}

::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

textarea:focus::-webkit-input-placeholder {
    opacity: 1;
}

textarea:not(:placeholder-shown) + label,
textarea:focus + label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
}


.heart {
    padding: 0 0.3rem;
    animation: beat .25s infinite alternate;
    transform-origin: center;
}

/* Heart beat animation */
@keyframes beat {
    to {
        transform: scale(1.4);
    }
}

.btn-primary {
    border: 1px solid #3AE3F9;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 1.37rem;
    overflow: hidden;
    z-index: 0;
    transition: 0.5s;
    position: relative;
}

.btn-careers {
    border: 1px solid #69C5A7;
    background: #69C5A7;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    overflow: hidden;
    z-index: 0;
    transition: 0.5s;
    position: relative;
}

.btn-secondary {
    border: 1px solid var(--tertiary-color);
    background: var(--tertiary-color);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: #ffffff;
    font-size: 1.37rem;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    position: relative;
}

.btn-primary span, .btn-secondary span, .btn-careers span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #ffffff;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}


.btn-primary:hover, .btn-secondary:hover, .btn-careers:hover {
    color: #000000;
}

.btn-primary:hover span, .btn-secondary:hover span, .btn-careers:hover span {
    transform: translateY(0) scale(2);
}

.btn-primary span:nth-child(1), .btn-secondary span:nth-child(1), .btn-careers span:nth-child(1) {
    --n: 1;
}

.btn-primary span:nth-child(2), .btn-secondary span:nth-child(2), .btn-careers span:nth-child(2) {
    --n: 2;
}

.btn-primary span:nth-child(3), .btn-secondary span:nth-child(3), .btn-careers span:nth-child(3) {
    --n: 3;
}

.btn-primary span:nth-child(4), .btn-secondary span:nth-child(4), .btn-careers span:nth-child(4) {
    --n: 4;
}


.btn-primary::after .cloud {
    -webkit-animation: clouds 60s infinite linear;
    -moz-animation: clouds 60s infinite linear;
    -ms-animation: clouds 60s infinite linear;
    -o-animation: clouds 60s infinite linear;
    animation: clouds 60s infinite linear;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: absolute;
    margin: 33px 0 0 0;
    width: 54px;
    height: 5px;
    left: 50%;
    /*transform: ;*/
    background: #f7e7eb;
    visibility: visible;
}

.cloud.tiny {
    /*opacity: 0;*/
    -moz-transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5);
    -webkit-transform: scale(0.5, 0.5);
    /*transform: scale(0.5, 0.5) translateY(-120px);*/
}

.cloud div {
    -moz-box-shadow: inset -2px -3px 0 0 #f7e7eb;
    -webkit-box-shadow: inset -2px -3px 0 0 #f7e7eb;
    box-shadow: inset -2px -3px 0 0 #f7e7eb;
    position: absolute;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    left: -3px;
    bottom: 0;
    background: #fafbf0;
    z-index: 10;
}

.cloud div:first-child + div {
    -moz-transform: scale(1.6, 1.6);
    -ms-transform: scale(1.6, 1.6);
    -webkit-transform: scale(1.6, 1.6);
    transform: scale(1.6, 1.6);
    margin: 0 0 4px 13px;
    z-index: 9;
}

.cloud div:first-child + div + div {
    -moz-transform: scale(2.4, 2.4);
    -ms-transform: scale(2.4, 2.4);
    -webkit-transform: scale(2.4, 2.4);
    transform: scale(2.4, 2.4);
    margin: 0 0 9px 32px;
    z-index: 8;
}

.cloud div:first-child + div + div + div {
    -moz-transform: scale(1.3, 1.3);
    -ms-transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
    margin: 0 0 2px 50px;
    z-index: 7;
}

.btn-primary:hover .cloud {
    /*transform: scale(0.5, 0.5) translateY(0);*/
    opacity: 1;
    visibility: hidden;
}

.icons-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #4b5563;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4b5563;
}

.slick-track, .slick-slide {
    display: flex !important;
    height: auto !important;
}


.icons-circle:hover {
    border-radius: 50%;
    border: 1px solid #4b5563;
    background: #4b5563;
    color: #ffffff;
}

/*About Us Pages*/
.about-hero-sec img {
    width: 440px;
    height: 440px;
    object-position: center;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #ffffff;
}

.prev, .next {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #ffffff;
    text-align: center;
    font-size: 1.3rem;
}

.prev i, .next i {
    font-size: 0.9rem;
}

.prev {
    position: absolute;
    top: 50%;
    left: 6%;
}

.next {
    position: absolute;
    top: 50%;
    right: 6%;
}

#services hr, #services .border-right {
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.2), #ffffff, rgba(255, 255, 255, 0.2)) 1;
}

#services .border-right {
    border-right: 1px solid;
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0.4), #ffffff, rgba(255, 255, 255, 0.4)) 1;
}

.timeline {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.timeline_bar_point {
    position: relative;
    margin: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.timeline-progress {
    z-index: -2;
    margin: auto;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #efefef;
}

.timeline_progress-bar {
    z-index: -1;
    width: 3px;
    height: 0;
    background-color: #85e4f1;
    position: absolute;
    left: 49.87%;
    top: 0;

    /*bottom: 80vh;*/
}

.timeline_items {
    display: grid;
    grid-template-columns: 1fr 10rem 1fr;
}

.timeline_items img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/*tabs*/
.tabs #tabs-nav {
    display: flex;
    justify-content: center;
    margin-top: 1.3rem;
    padding: 0;
}

.tabs #tabs-nav li {
    margin: 1.4rem 1rem 0 0;
}

.tabs #tabs-nav li.active a {
    color: var(--tertiary-color) !important;
    font-weight: 600;
    border-bottom: 3px solid var(--tertiary-color);
}

.tabs #tabs-nav li a {
    /*border-bottom: 1px solid #ffffff;*/
    padding: 0.5rem 1.3rem;
    color: #7B7B7B;
}

.blog-img {
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
}

.tab-content span {
    font-size: 1.1rem;
}

.tab-content h6 {
    font-size: 1.5rem;
    font-weight: 400;
}

.img-block-details {
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
}

.requirement-tag {
    border-radius: 52px;
    font-size: 0.9rem;
    background: #ADF7AD;
    color: #0D1213;
    padding: 0.5rem 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 1rem;
}

.list-style li {
    list-style-type: disc;
    color: var(--caption);
    margin: 0.4rem 0;
}

.border-dashed {
    border: 1px dashed gray;
}

.home-project-cards {
    width: 320px;
    height: 240px;
}

.project-names .slick-arrow, .project-cards .slick-arrow {
    display: none !important;
}

.blogs-background {
    height: 50vh;
    background: #DADBFF;
}

@media screen and (max-width: 1300px) {
    .panel {
        padding: 2rem 7rem;
    }

    h3 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1030px) {
    footer {
        padding: 0 0.8rem;
    }
}

@media screen and (max-width: 960px) {
    .prev {
        position: absolute;
        top: 50%;
        left: 4%;
    }

    .next {
        position: absolute;
        top: 50%;
        right: 4%;
    }

    footer {
        padding: 0 0.5rem 5rem;
    }

    .navbar {
        background: transparent;
        z-index: 9999;
    }

    .navbar-toggler:focus {
        outline: 0;
        box-shadow: none;
        border: 0;
    }

    .navbar-toggler {
        border: 0;
    }

    .navbar-collapse {
        border-radius: 40px 40px 0 0;
        padding: 0.5rem 0 2rem 0;
        z-index: -99;
        position: absolute;
        bottom: 3rem;
        left: 0;
        right: 0;
        background: #ffffff;
        width: 100%;
        transform: translate(-150%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: transform 0.5s ease-in-out;
        text-align: center;
    }

    .navbar-collapse.show {
        transform: translate(0);
        transition: transform 0.5s ease-in-out;
    }

    .mbl-fixed-bottom {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9999;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .w-75 {
        width: 100% !important;
    }

    #services .border-right {
        border-right: 0;
    }

    #services .border-top {
        border-top: 0;
    }

    footer {
        padding: 0 0.5rem 5rem;
    }

    .navbar {
        background: transparent;
        z-index: 9999;
    }

    .navbar-toggler:focus {
        outline: 0;
        box-shadow: none;
        border: 0;
    }

    .navbar-toggler {
        border: 0;
    }

    .navbar-collapse {
        border-radius: 40px 40px 0 0;
        padding: 0.5rem 0 2rem 0;
        z-index: -99;
        position: absolute;
        bottom: 3rem;
        left: 0;
        right: 0;
        background: #ffffff;
        width: 100%;
        transform: translate(-150%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: transform 0.1s ease-in-out;
        text-align: center;
    }

    .navbar-collapse.show {
        transform: translate(0);
        transition: transform 0.1s ease-in-out;
    }

    .mbl-fixed-bottom {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9999;
    }

    .border-radius-50 {
        border-radius: 10px;
    }

    h1, .h1 {
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 600;
    }

    h2, h3 {
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 600;
    }

    h4 {
        font-size: 1.3rem;
        font-weight: 600;
    }

    h6, .about-info h6 {
        font-size: 1.2rem !important;
        font-weight: 600;
    }

    p {
        font-size: 1rem;
    }

    .about-hero-sec img {
        width: 280px;
        height: 280px;
    }

    .timeline_img_sec {
        display: none;
    }

    .timeline-progress, .timeline_progress-bar {
        position: absolute;
        left: 1rem;
        right: inherit;
    }

    .timeline_bar_point {
        margin: 0.5rem 0 0;
    }

    .timeline_items {
        display: grid;
        grid-template-columns: 1fr 17rem 1fr;
    }

    .tabs #tabs-nav {
        justify-content: space-between;
    }

    .tabs #tabs-nav li {
        margin: 1.4rem 1rem 0 0;
        width: 150px;
        text-align: center;
        padding: 0;
    }

    .tabs #tabs-nav li a {
        border: none;
        padding: 0;
        color: #7B7B7B;
    }

    .services-details {
        padding-left: 1rem;
    }


    #links {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 50px;
        font-size: 13px;
        color: #fff;
    }

    #links a {
        text-decoration: none;
        font-size: 2.3em;
        color: #fff;
    }

    .img-block-details {
        margin-top:12rem;
        height: auto;
        width: 100%;
        object-fit: contain;
        border-radius: 30px;
    }

    .blogs-background {
        height: 24vh;
        background: #DADBFF;
    }
}

.ripple {
    color: #fff;
    background-color: #3AE3F9;
    animation: ripple 2s linear infinite;
    border: 1px solid #3AE3F9;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 .7rem #B6E2E9;
    }
    100% {
        box-shadow: 0 0 0 0rem #B6E2E9;
    }
}

@media screen and (max-width: 365px) {
    .prev, .next {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        background: #ffffff;
        text-align: center;
        font-size: 1.3rem;
    }

    #services .border-right {
        border-right: 0;
    }

    #services .border-top {
        border-top: none !important;
    }

    .w-75 {
        width: 100% !important;
    }

    .testimonials-sec .card {
        border-radius: 50px 0 !important;
        padding: 2rem !important;
    }
}

.card-projects {
    position: relative;
    transition: all .5s ease-in;
    cursor: pointer;
}


.card__image {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card__overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: none;
    transition: .5s ease;
    background-color: rgba(182, 182, 182, 0.82);
}

.card-projects:hover .card__overlay {
    opacity: 1;
}

.card__overlay .card_img img {
    /*position: absolute;*/
    /*top: 5%;*/
    /*right: 10%;*/
    /*-webkit-transform: translate(-50%, -50%);*/
    /*-ms-transform: translate(-50%, -50%);*/
    /*transform: translate(-50%, -50%);*/
    /*text-align: center;*/
}

.overlay__text {
    color: white;
    position: absolute;
    bottom: 5%;
    left: 10%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-5%, -10%);
    /*text-align: center;*/
}







