* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--mainFont);
}

:root {
    --unset: unset;
    /* font */
    --mainFont: 'manrope', Arial, sans-serif;
    --secondaryFont: 'DM Sans', Arial, sans-serif;
    /* color */
    --primaryColor: #002169;
    --secondaryColor: #789C4A;
    --lightTextColor: rgba(0, 0, 0, 0.7);
    --blackColor: #000;
    --whiteColor: #fff;
    --bgColor: #F5F6F9;
}

*::-moz-selection,
*::selection{
    background: var(--primaryColor);
    color: var(--whiteColor);
}

html,
body {
    line-height: 1.2;
    font-size: 16px;
    color: var(--blackColor);
    overflow-x: hidden;
    font-family: var(--mainFont);
    scroll-behavior: smooth;
}
body{
    background: var(--bgColor);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}

a {
    text-decoration: none;
    color: var(--primaryColor);
    display: block;
    cursor: pointer;
}

img{
    width: auto;
    max-width: 100%;
}
ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

:is(:focus, :focus-visible, :focus-within, :active:focus) {
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}

p{
    font-family: var(--secondaryFont);
}

.container{
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.flex-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.section {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 100px 0 0;
 }

*::-webkit-scrollbar{
	width: 0;
}

.butn{
    padding: 16px 30px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--secondaryFont);
    line-height: 100%;
    color: var(--whiteColor);
    border: 1px solid var(--secondaryColor);
    border-radius: 28px;
    background: var(--secondaryColor);
    transition: 0.5s ease-in;
    width: max-content;
}

.butn:hover{
    background: var(--blackColor);
    color: var(--whiteColor);
    border-color: var(--blackColor);
}

.btn-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--primaryColor);
    background: var(--primaryColor);
}

.bg-white{
    background: var(--whiteColor);
}

/* common-components */
.title_up{
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    color: var(--secondaryColor);
    font-family: var(--secondaryFont);
    text-transform: uppercase;
}

.section-header {
    margin: 0 0 60px;
}

.section-header .title_up {
    margin-bottom: 18px;
}

.main-heading{
    font-size: 70px;
    color: var(--whiteColor);
    line-height: 130%;
    font-weight: 600;
}

.heading{
    font-size: 56px;
    line-height: 125%;
    font-weight: 600;
    color: var(--blackColor);
    margin: 0 0 40px;
}

.desc {
    font-size: 18px;
    line-height: 156%;
    color: var(--whiteColor);
    margin: 12px 0 0;
}

.center{
    text-align: center;
}

.common-padding{
    padding: 120px 0;
}

/* Header */
.main_nav.navbar{
    padding: 20px 0;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: var(--bgColor);
}
.sticky .main_nav.navbar{
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
            box-shadow: 0 0 15px 0 rgba(0,0,0,0.2);
    background: var(--whiteColor);
}
.site-branding{
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.navbar-brand{
    padding: 0;
    margin: 0;
    display: block;
    line-height: 0;
}
.navbar-brand img,
.navbar-brand .custom-logo{
    display: block;
    max-height: 56px;
    width: auto;
    height: auto;
}
.site-branding .site-description{
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: var(--lightTextColor);
    font-family: var(--mainFont);
    font-weight: 400;
    max-width: 220px;
}
.navbar-collapse{
    gap: 50px;
}
.navbar-collapse .navbar-nav{
    gap: 50px;
}
.navbar-collapse .nav-item .nav-link{
    font-size: 20px;
    line-height: 100%;
    color: var(--lightTextColor);
    font-family: var(--mainFont);
    text-transform: capitalize;
    font-weight: 500;
    padding: 0;
}
.navbar-collapse .nav-item .nav-link:hover,
.navbar-collapse .nav-item .nav-link.current{
    color: var(--secondaryColor);
}
.sign-btn{
    border: 1px solid var(--greyColor);
    color: var(--whiteColor);
    padding: 7px 23px;
    font-size: 1.5rem;
    line-height: 18px;
    text-transform: uppercase;
    border-radius: 15px;
    background: transparent;
}
.sign-btn:hover{
    background: var(--primaryColor);
}

/* Banner-section */
.main-title {
    font-size: 160px;
    font-weight: 400;
    font-family: var(--mainFont);
    line-height: 106%;
    margin: 0 0 28px;
}

.main-title span{
    font-weight: 700;
}

.hero-wrap {
    width: 100%;
    padding: 0 40px;
    margin-top: 106px;
}

.inner-hero {   
    border-radius: 40px;
    height: 100%;
    overflow: hidden;
    position: relative;
    color: white;
    background: linear-gradient(rgba(0, 30, 70, .2),
            rgba(0, 15, 40, .6)),
        url("../img/homebanner-bg.png") center/cover;
}

.overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 130px 40px;
}

.title-small {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: .9;
}

.title-large {
    font-size: 82px;
    font-weight: 800;
    line-height: .95;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.tagline {
    background: linear-gradient(90deg,
            #789C4A 0%,
            #BBCDA4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    line-height: 125%;
    font-weight: 500;
    font-family: var(--secondaryFont);
    margin-bottom: 25px;
}

.description {
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--secondaryFont);
    max-width: 740px;
    margin-bottom: 40px;
}

.topics {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    flex-wrap: wrap;
    justify-content: center;
}

.topic {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-border {
    background: transparent;
    color: var(--whiteColor);
}

.btn:hover {
    transform: translateY(-2px);
}

/* About Section */
.about-section{
    position: relative;
    padding: 170px 0;
    z-index: 1;
}

.abt-heading,
.inner-about {
    display: flex;
    justify-content: space-between;
}

.abt-heading .small-tag,
.inner-about .abt-list{
    width: 100%;
    max-width: 350px;
}

.abt-heading .sec-heading,
.inner-about .about-content {
    width: calc(100% - 350px);
}

.abt-list ul {
    list-style: disc;
    padding-left: 24px;
}

.abt-list ul li {
    font-size: 24px;
    line-height: 100%;
    font-weight: 300;
    font-family: var(--secondaryFont);
    margin-bottom: 28px;
    font-style: italic;
}

.inner-about .abt-list {
    display: flex;
    align-items: end;
}

.abt-images {
    width: 40%;
    display: flex;
    gap: 20px;
}

.img-box {
    width: calc(50% - 10px);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-content .abt-desc {
    width: 60%;
}

.inner-about .about-content {
    display: flex;
    gap: 60px;
}

.abt-desc p {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--secondaryFont);
    line-height: 130%;
    color: var(--lightTextColor);
}

.abt-desc .butn {
    margin-top: 30px;
}

.whale-img{
    position: absolute;
    top: 18px;
    right: 40px;
    width: 14.5vw;
}

.flamingo-img{
    position: absolute;
    left: 0;
    bottom: -36px;
    width: 14vw;
}

.wave-down {
    background: var(--bgColor);
    position: absolute;
    bottom: -49px;
    z-index: 1;
}

.impact-section{
    background: var(--whiteColor);
    padding: 160px 0;
}

.impact-section .section-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.impact-section .section-header p.desc {
    color: var(--lightTextColor);
}

.impact-section .section-header .heading {
    margin: 0 0 25px;
}

.impact-section .mark-inner {
    align-items: center;
}

.impact-section .image-section {
    width: 45%;
}

.impact-section .right-cont-sec {
    width: 55%;
}

.impact-section .image-section img {
    height: 640px;
    object-fit: cover;
    width: 100%;
}


/* Service Section */
.services-section {
    background: var(--whiteColor);
    position: relative;
}

.leaf-design{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 25vw;
}

.service-card {
    padding: 25px 25px 30px;
    background: var(--bgColor);
    border-radius: 20px;
    transition: background-image 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/serv-bg.png") center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: rotate(-2deg);
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    color: var(--blackColor);
    margin: 30px 0 16px;
}

.service-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--lightTextColor);
    margin: 0 0 30px;
}

.service-card:hover h3,
.service-card:hover p{
    color: var(--whiteColor);
}

.service-card:hover .butn {
    background: var(--whiteColor);
    border-color: var(--whiteColor);
    color: var(--primaryColor);
}

.service-card:hover .butn img{
    filter: invert();
}

.inner-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.campaign-slider .swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet{
    background: #93a1bf;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primaryColor);
    width: 20px;
    height: 20px;
}

.campaign-slider .swiper-slide img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-card{
    position: relative;
    overflow: hidden;
}

.camp-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.camp-desc .camp-head img {
    width: 56px;
    height: 56px;
}

.campaign-card h3 {
    font-size: 28px;
    font-weight: 500;
}

.campaign-card p {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--secondaryFont);
    color: var(--lightTextColor);
}

.camp-desc {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, #FFFFFF 100%);
    padding: 30px 30px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.campaign-card:hover .camp-desc {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

/* Trusted CSS */
.trusted-section{
  padding: 180px 0;
  background: var(--whiteColor);
  position: relative;
}

.inner-trust .swiper {
    padding-bottom: 60px;
}

.inner-trust .swiper-slide {
    text-align: center;
}

.leaf-circle {
    width: 18.5vw;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: 2;
}

/* Camp Css */
.campaign-section {
    position: relative;
}

.campturt-one {
    position: absolute;
    top: 50px;
    width: 24vw;
}

.campturt-two {
    position: absolute;
    bottom: -180px;
    right: 0;
    width: 28vw;
}

/* Eco System */

.ecosystem-section{
    padding: 180px 0;
    position: relative;
}
.ecosystem-section .section-header {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.ecosystem-wrap {
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.beauti-whale{
    position: absolute;
    left: 0;
    bottom: 150px;
}

/* Testimonial */
.testimonial-sec{
    position: relative;
}

.testimonial-box {
    background: var(--bgColor);
    padding: 80px 200px 80px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote {
    position: absolute;
    top: 55px;
    left: 108px;
}

.content p {
    font-size: 20px;
    font-weight: 400;
    color: var(--blackColor);
}

.content h2 {
    display: none;
}

#activeText br {
    display: none;
}

#activeName {
    font-size: 30px;
    font-weight: bold;
}

.leoprint-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 14.5vw;
}

/* Avatar Area */
.avatar-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 80px;
    overflow: auto;
}

.avatar {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all .5s ease;
    flex-shrink: 0;
}

.avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: .5s;
}

.avatar h4 {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    opacity: .6;
    transition: .5s;
    display: none;
}

.avatar.active h4 {
    font-size: 20px;
    font-weight: 600;
    opacity: 1;
    display: block;
}

/* Hidden Data */
.hidden-data {
    display: none;
}


/*FAQ CSS */

.faqsection_wrapper{
    padding: 180px 0;
    background: url(../img/water-picture.png) no-repeat;
    background-size: cover;
    position: relative;
}

.faq-parent {
    max-width: 1100px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    background-color: transparent;
    border: 0;
}

.accordion-flush .accordion-item .accordion-button {
    padding: 20px 30px;
    background: #fff;
    line-height: 100%;
    font-size: 20px;
    font-weight: 500;
    border-radius: 16px;
}

.faq-parent .accordion-flush .accordion-item {
    border-radius: 16px;
    overflow: hidden;
}

.accordion-flush .accordion-item .accordion-button:not(.collapsed){
    background: var(--primaryColor);
    color: #fff;
}

.accordion-collapse .accordion-body {
    padding: 30px;
    font-size: 16px;
    line-height: 150%;
    color: var(--lightTextColor);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.singleblog_content ul li{
    color: #4B5A58;
}

/* Media */

.media-section{
    position: relative;
}
.media-inner .nav {
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.media-inner .nav-pills .nav-link {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.8);
    font-family: var(--secondaryFont);
    padding: 10px 44px;
    border-radius: 50px;
    border: 1px solid var(--secondaryColor);
    transition: all 0.3s ease;
}

.media-inner .nav-pills .nav-link.active{
    color: var(--whiteColor);
    background-color: var(--secondaryColor);
}

.media-inner .nav-pills .nav-link:hover{
    color: var(--whiteColor);
    background-color: var(--secondaryColor);
}

.octopus-img {
    width: 27vw;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1;
}

#pills-instagram .podcast-wrapper {
    display: block;
}

#pills-instagram .podcast-card {
    border-radius: 0;
    overflow: unset;
}

#pills-instagram .podcast-wrapper .podcast-img {
    height: 100%;
}


.podcast-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.podcast-card {
    border-radius: 20px;
    overflow: hidden;
}

.podcast-card .podcast-content {
    background: var(--bgColor);
    padding: 30px 30px 40px;
}

.podcast-img {
    height: 350px;
    overflow: hidden;
}

.podcast-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast_date {
    font-size: 16px;
    font-weight: 400;
    gap: 8px;
    display: flex;
    align-items: flex-start;
    color: #000;
    margin-bottom: 17px;
}

.podcast-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.podcast-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--lightTextColor);
}

.btn-learn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.foot-wave{
    background: transparent;
}

/* Footer */
footer.main-footer {
    background: url(../img/footer-bg.png) no-repeat;
    background-size: cover;
    padding: 180px 0 50px;
}

.footer-top {
    padding-bottom: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

body:not(.home) .footer-top {
    display: none;
}

.footer-top h2 {
    text-align: center;
    font-size: 160px;
    font-weight: 800;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.1);
    -webkit-text-stroke: 2px var(--whiteColor);
    text-transform: uppercase;
    transition: color 0.4s ease, -webkit-text-stroke 0.4s ease;
    width: max-content;
    margin: 0 auto;
}

.footer-top h2:hover {
    color: var(--whiteColor);
    -webkit-text-stroke: 0;
}

.home .footer-middle {
  max-width: 100%;
}

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.foot-logo img {
    width: 100%;
    max-width: 218px;
}

.social-icon ul {
    display: flex;
    gap: 12px;
}

.social-icon ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s ease;
}

.social-icon ul li a:hover{
    background: var(--whiteColor);
}

.social-icon ul li a:hover img{
    filter: invert();
}

.cont-link a {
    font-size: 28px;
    font-weight: 600;
    color: var(--whiteColor);
    font-family: var(--secondaryFont);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.28);
    padding: 60px 80px;
    border-radius: 20px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links h4 {
    color: rgb(255, 255, 255, .8);
}

.footer-links h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--whiteColor);
    line-height: 130%;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: rgb(255, 255, 255, .8);
}

.footer-links ul li a:hover {
    color: var(--whiteColor);
}

.rights-block {
    margin-top: 28px;
}

.rights-block p{
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, .6);
}

.footer-bottom .footer-links {
    width: 30%;
}

.footer-bottom .news-letter {
    width: 35%;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input.wpcf7-email {
    padding: 12px 20px;
    border: 1px solid var(--whiteColor);
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.newsletter-form input.wpcf7-email::placeholder {
    color: #fff;
}

.newsletter-form .submit-newsletter {
    position: relative;
}

.newsletter-form .submit-newsletter {
    position: absolute;
    top: 14px;
    right: 20px;
    width: 20px;
    height: 20px;
}

.newsletter-form .submit-newsletter:before {
    position: absolute;
    content: "";
    background: url("/wp-content/uploads/2026/07/newsletter-send.svg") no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.newsletter-form .submit-newsletter span.wpcf7-spinner {
    display: none;
}

.newsletter-form input.wpcf7-submit {
    font-size: 0;
    border: 0;
    background: transparent;
    z-index: 2;
    position: relative;
}

.submit-newsletter input,
.submit-newsletter p {
    width: 100%;
    height: 100%;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border: 0;
    padding: 0;
    margin: 15px 0 0;
    font-size: 15px;
}

/* About Page */
.banner-mt{
    margin-top: 96px;
}

.about-banner{
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-banner .section-header {
    max-width: 1100px;
    margin: 0 auto 30px;
}

.inner-abt>p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main-heading span {
    font-weight: 700;
}

.mark-inner {
    display: flex;
    gap: 100px;
    justify-content: space-between;
}

.mark-inner ul {
    list-style: disc;
    padding-left: 18px;
    margin: 30px 0 30px 10px;
}

.mark-inner ul li {
    font-size: 18px;
    color: var(--lightTextColor);
    margin-bottom: 15px;
    font-family: var(--secondaryFont);
    font-weight: 400;
    line-height: 145%;
}

.abtmark-section{
    position: relative;
}

.abtmark-section .image-section{
    width: 45%;
}

.abtmark-section .right-cont-sec {
    width: 55%;
}

.image-section img {
    border-radius: 20px;
}

.right-cont-sec .section-header {
    margin: 0;
}

.right-cont-sec .title_up{
    color: var(--secondaryColor);
}

.right-cont-sec p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--lightTextColor);
}

.timeline-section {
    position: relative;
    background: url(/wp-content/uploads/2026/07/cap_waves.jpg) no-repeat;
    background-size: cover;
}

.timeline-section:before {
    position: absolute;
    content: "";
    background: rgb(2, 28, 72, .9);
    width: 100%;
    height: 100%;
    inset: 0;
}

.inner-timeline {
    position: relative;
}

/* Timeline CSS */
.timeline-wrap {
    padding: 20px 20px 0;
}

.timelineSwiper{
    position: relative;
}

.timeline-wrap .timelineSwiper::before {
    position: absolute;
    content: "";
    background: var(--whiteColor);
    width: 100%;
    height: 3px;
    left: 0;
    top: calc(50% - 40px);
    /* 55px / 2 */
    transform: translateY(-50%);
}

.timeline-wrap ul.timeline-list li {
    list-style-type: none;
    position: relative;
    width: 3px;
    margin: 0 auto;
    padding-top: 50px;
    background: #fff;
}

.timeline-wrap ul.timeline-list li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: inherit;
    z-index: 1;
}

.timeline-wrap ul.timeline-list li div {
    position: relative;
    bottom: 0;
    width: 400px;
    padding: 20px;
    background: var(--whiteColor);
}

.timeline-wrap ul.timeline-list li div::before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-wrap ul.timeline-list li:nth-child(odd) div {
    left: 45px;
}

.timeline-wrap ul.timeline-list li:nth-child(odd) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent var(--whiteColor) transparent transparent;
}

.timeline-wrap ul.timeline-list li:nth-child(even) div {
    left: -439px;
}

.timeline-wrap ul.timeline-list li:nth-child(even) div::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent var(--whiteColor);
}

time {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 130%;
    color: var(--primaryColor);
}

.timeline-wrap ul.timeline-list li::after {
    transition: background 0.5s ease-in-out;
}

.timeline-wrap ul.timeline-list li.in-view::after {
    background: var(--secondaryColor);
}

.timeline-wrap ul.timeline-list li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.timeline-wrap ul.timeline-list li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
}

.timeline-wrap ul.timeline-list li:nth-child(even) div {
    transform: translate3d(-200px, 0, 0);
}

.timeline-wrap ul.timeline-list li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
    border-radius: 10px;
    font-size: 18px;
    line-height: 135%;
}

.timeline-wrap ul.timeline-list li ul li {
    width: 100%;
    padding: 0;
}

.timeline-wrap ul.timeline-list li ul li::after {
    display: none;
}

.timeline-wrap ul.timeline-list li ul,
.timeline-wrap ul.timeline-list li ul li {
    list-style: disc;
}

.timeline-wrap ul.timeline-list li ul {
    padding-left: 20px;
}

.timeline-wrap ul.timeline-list li ul li:not(:last-child) {
    margin-bottom: 8px;
}

.timeline-card {
    background: var(--whiteColor);
    padding: 25px 30px;
    border-radius: 10px;
    height: 100%;
}

.timeline-card ul {
    list-style: disc;
    padding-left: 18px;
}

.timeline-card p,
.timeline-card ul li {
    font-size: 17px;
    line-height: 146%;
    color: var(--lightTextColor);
    font-family: var(--secondaryFont);
}

.timeline-card ul li {
    padding-bottom: 10px;
}

.timeline-wrap .swiper-slide {
    height: auto;
}

.timeline-wrap .swiper {
    padding-bottom: 80px;
}


.timeline-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--whiteColor);
}

/* .timelineSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
} */

/* CTA */
.contact-section{
    position: relative;
}
.contact-section.banner-mt {
    margin-top: 40px;
}

.cta-section .heading {
    color: var(--whiteColor);
}

.cta-section{
    position: relative;
    background: var(--whiteColor);
}

.cta-section .section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.innercta-card {
    background: #02163e url(../img/water-picture.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    position: relative;
    border-radius: 16px;
    max-width: 1350px;
    margin: 0 auto;
}

/* Contact Us */

.contact-left .main-heading{
    color: var(--blackColor);
}

.inner-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.contact-left p.desc {
    color: var(--lightTextColor);
    margin-top: 25px;
}

.contact-left,
.contact-right {
    width: 50%;
}

.contact-form {
    background: var(--whiteColor);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    display: flex;
    gap: 15px;
}

.form-outer,
.form-group {
    margin-bottom: 22px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bgColor);
    border: 1px solid #cdcdcd;
    padding: 12px 10px;
    border-radius: 10px;
}

.contact-form label {
    font-size: 16px;
    font-weight: 500;
    color: var(--lightTextColor);
    margin: 0 0 5px;
}

.contact-form textarea {
    height: 100px;
} 

.contact-form .submit-form .wpcf7-spinner {
    position: absolute;
    top: 12px;
    right: 0;
    background-color: var(--whiteColor);
}

.contact-form .submit-form .wpcf7-spinner::before {
    background-color: var(--blackColor);
}

.contact-form .submit-form {
    position: relative;
}

.contact-form .submit-form input.wpcf7-submit {
    font-size: 18px;
    font-weight: 500;
    border: 1px solid var(--primaryColor);
    background: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 50px;
    transition: 0.5s ease-in;
}

.contact-form .submit-form input.wpcf7-submit:hover {
    background: var(--blackColor);
    border-color: var(--blackColor);
}

.wpcf7-response-output {
    color: #dc3232;
}

.cont-address h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
}

.cont-address ul li {
    font-size: 16px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cont-address ul li,
.cont-address ul li a{
    color: var(--lightTextColor);   
    font-family: var(--secondaryFont);
}

/* Projects */
.projects_banner .inner-project {
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.projects_banner {
    background: url(/wp-content/uploads/2026/07/sunlight-shining-the-surface-under.webp) no-repeat;
    background-size: cover !important;
    background-position: bottom !important;
    position: relative;
}

.projects_banner::before {
    position: absolute;
    content: "";
    background: rgb(2, 24, 68, .6);
    width: 100%;
    height: 100%;
    inset: 0;
}

.inner-project .desc {
    padding: 0 60px;
}

.clients-section .service-card{
    background: var(--whiteColor);
}

.clients-section .inner-service {
    grid-template-columns: repeat(4, 1fr);
}

.icon-wrap {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bgColor);
    border-radius: 50px;
}

.clients-section .service-card span{
    margin-top: 15px;
}

.clients-section .service-card span,
.small-tag {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondaryColor);
    display: block;
    text-transform: uppercase;
}

.cp-tag {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 500;
    width: max-content;
    background: #f5f6f9;
    padding: 5px 12px;
    border-radius: 5px;
}

.clients-section .service-card h3 {
    margin-top: 15px;
}

.collab-section{
    background: var(--whiteColor);
}

.main-collab {
    display: flex;
    background: #f5f6f9;
    border-radius: 16px;
    overflow: hidden;
    width: 60%;
    align-items: center;
}

.collab-cont .small-tag {
    margin: 0 0 10px;
}

.collab-cont h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.main-collab .collab-img {
    width: 40%;
    height: 100%;
}

.main-collab .collab-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collab-cont {
    width: 60%;
}

.collab-cont-inner{
    padding: 65px 40px;
}

.collab-cont p {
    font-size: 18px;
    color: var(--lightTextColor);
}

.other-collabs {
    border-radius: 16px;
    padding: 38px;
    width: 35%;
    background: var(--bgColor);
    background: url(../img/serv-bg.png) center / cover no-repeat;
}

.inner-collab {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.other-collabs ul li:not(:last-child) {
    margin-bottom: 15px;
}

.other-collabs ul li {
    background: var(--bgColor);
    padding: 18px 20px;
    border-radius: 16px;
    display: flex;
    gap: 8px;
}

.other-collabs ul li h4 {
    font-size: 20px;
    font-weight: 700;
}

.other-collabs ul li p{
    color: var(--lightTextColor);
}

.other-collabs ul li .coll-icn {
    padding-top: 5px;
}

.other-collabs ul li .coll-icn img {
    width: 20px;
}

.commit-section{
    padding: 180px 0;
}

.commit-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;
    position: relative;
    z-index: 1;
}


.commit-inner .right-cont-sec {
    width: 55%;
}

.commit-inner .image-section {
    width: 45%;
}

.commit-inner .image-section img {
    height: 560px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    position: relative;
    z-index: 1;
}

.commit-inner .right-cont-sec>p {
    line-height: 153%;
}

.commit-inner .right-cont-sec .btn-blue {
    margin-top: 45px;
}

.inner-past-client {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.pastclient-section{
    background: var(--whiteColor);
}

.pastclient-left ul li {
    background: #f3f5f7;
    padding: 30px;
    border-radius: 16px;
}

.pastclient-left ul li:not(:last-child){
    margin-bottom: 25px;
}

.pastclient-left ul li h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 15px;
}

.pastclient-left ul li p{
    color: var(--lightTextColor);
}

.pastclient-left ul li .small-tag {
    margin-bottom: 22px;
}

.inner-past-client .pastclient-left {
    width: 55%;
}

.inner-past-client .image-block {
    width: 40%;
}

.inner-past-client .image-block img {
    width: 100%;
    border-radius: 20px;
    height: 650px;
    object-fit: cover;
}

.prior-collab {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.prior-collab .p_collab-card {
    background: #f3f5f7;
    padding: 10px 10px 45px;
    text-align: center;
    border-radius: 16px;
    width: calc((100% - 100px) / 3);
}

.prior-collab .p_collab-card .icon-wrap {
    background: var(--primaryColor);
    margin: 0 auto 20px;
}

.prior-collab .p_collab-card .icon-wrap img {
    filter: brightness(0) invert(1);
}

.p_collab-img {
    margin-bottom: 25px;
}

.p_collab-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.p_collab-card p {
    font-size: 20px;
    padding: 0 25px;
    font-weight: 500;
}

.pastclient-section .whale-img {
    bottom: 0;
    top: auto;
}

.prior-collab-section {
    margin-top: 120px;
    z-index: 1;
}

.prior-collab-section .heading {
    text-align: center;
}

/* Media */
.media_banner{
    margin-top: 60px;
}

.inner-media .button-wrap {
    justify-content: flex-start;
}

.inner-media .main-heading {
    color: var(--blackColor);
}

.inner-media .desc{
    color: var(--lightTextColor);
}

.inner-media {
    display: flex;
    align-items: center;
    gap: 160px;
    justify-content: space-between;
}

.media-bann-left {
    width: 50%;
}

.media-bann-right {
    width: 45%;
}

.media-bann-right img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.insta-feed{
    background: var(--whiteColor);
}

.insta-card {
    height: 300px;
}

.insta-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.inner-newsfeed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    padding: 35px 25px 35px;
    background: var(--whiteColor);
    border-radius: 20px;
    position: relative;
    transition: background-image 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.news-card>* {
    position: relative;
    z-index: 1;
}

.news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/serv-bg.png") center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.news-card h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    color: var(--blackColor);
    margin: 0px 0 20px;
}

.news-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--lightTextColor);
    margin: 0 0 30px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .butn {
    font-size: 16px;
    padding: 15px 24px;
}

.news-card:hover {
    transform: rotate(-2deg);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover h3,
.news-card:hover p {
    color: var(--whiteColor);
    z-index: 1;
}

.news-card:hover .butn {
    background: var(--whiteColor);
    border-color: var(--whiteColor);
    color: var(--primaryColor);
}

.news-card:hover .butn img {
    filter: invert();
}

/* 404 page */

section.error-404.not-found header.page-header span {
    display: block;
    font-size: 150px;
}

section.error-404.not-found {
    margin-top: 100px;
    padding: 150px 0;
}

section.error-404.not-found h1,
section.error-404.not-found .page-content p {
    text-align: center;
}

section.error-404.not-found .page-content p {
    margin-top: 20px;
    color: var(--lightTextColor);
}

section.error-404.not-found .page-content .btn-blue {
    margin: 50px auto 0;
}

.service.type-service {
    padding: 140px 20px 120px;
    text-align: center;
}



@media(max-width: 1600px){
    .container {
        padding: 0 40px;
    }

    .navbar-collapse .nav-item .nav-link {
        font-size: 18px;
    }

    .heading {
        font-size: 46px;
        line-height: 125%;
        font-weight: 600;
        color: var(--blackColor);
        margin: 0 0 40px;
    }

    .main-heading {
        font-size: 62px;
    }

    .overlay {
        padding: 90px 40px;
    }

    .main-title {
        font-size: 120px;
    }

    .tagline {
        font-size: 26px;
    }

    .description {
        font-size: 18px;
    }

    .topic {
        font-size: 20px;
    }

    .title_up {
        font-size: 20px;
    }

    .butn {
        font-size: 16px;
    }

    .abt-desc p {
        font-size: 18px;
        font-weight: 400;
        font-family: var(--secondaryFont);
        line-height: 130%;
        color: var(--lightTextColor);
    }

    .abt-list ul li {
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .campaign-card h3 {
        font-size: 24px;
    }

    .camp-desc .camp-head img {
        width: 42px;
        height: 42px;
    }

    .campaign-card p {
        font-size: 18px;
    }

    .podcast-img {
        height: 280px;
    }

    .ecosystem-section .section-header {
        max-width: 1000px;
    }

    .inner-service {
        gap: 20px;
    }

    .clients-section .service-card p {
        margin: 0;
    }

    .inner-collab {
        gap: 60px;
    }

    .main-collab {
        width: 65%;
    }

    .commit-inner {
        gap: 120px;
    }

    .inner-past-client {
        gap: 40px;
    }

    .footer-top h2 {
        font-size: 130px;
    }

    .inner-media {
        gap: 90px;
    }

    .media-bann-right img {
        height: 450px;
    }


    .news-card h3 {
        font-size: 24px;
    }

    time {
        font-size: 22px;
    }

    .testimonial-box {
        padding: 80px 160px 80px;
    }

    .avatar-container {
        gap: 55px;
    }

    .inner-past-client .pastclient-left {
        width: 60%;
    }

    section.error-404.not-found {
        padding: 120px 0 150px;
    }

}

@media(max-width: 1366px) {
    .main-title {
        font-size: 95px;
    }

    .heading {
        font-size: 38px;
        margin: 0 0 25px;
    }

    .main-heading {
        font-size: 48px;
    }

    .title_up {
        font-size: 16px;
    }

    .section-header .title_up {
        margin-bottom: 15px;
    }

    .inner-about .about-content {
        gap: 40px;
    }

    .abt-list ul li {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .wave-down {
        bottom: -40px;
    }

    .topics {
        gap: 55px;
    }

    .topic {
        font-size: 18px;
    }

    .about-section {
        padding: 100px 0;
    }

    .trusted-section {
        padding: 140px 0;
    }

    .clients-section .inner-service {
        grid-template-columns: repeat(3, 1fr);
    }

    .collab-cont h3 {
        font-size: 26px;
    }

    .collab-cont p {
        font-size: 16px;
    }

    .other-collabs {
        padding: 20px;
    }

    .inner-collab {
        gap: 35px;
    }

    .other-collabs ul li h4 {
        font-size: 18px;
    }

    .other-collabs ul li {
        border-radius: 10px;
    }

    .commit-inner {
        gap: 60px;
    }

    .inner-past-client .pastclient-left {
        width: 60%;
    }

    .commit-section,
    .faqsection_wrapper,
    .trusted-section {
        padding: 120px 0;
    }

    .prior-collab {
        gap: 30px;
    }

    .prior-collab .p_collab-card {
        width: calc((100% - 60px) / 3);
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card {
        padding: 25px 20px 30px;
    }

    .inner-media {
        gap: 50px;
    }

    .podcast-wrapper {
        gap: 20px;
    }

    .podcast-card .podcast-content {
        padding: 30px 20px 40px;
    }

    .inner-newsfeed {
        gap: 25px;
    }

    .news-card h3 {
        font-size: 22px;
    }

    .mark-inner {   
        gap: 50px;
    }

    .mark-inner ul {
        margin: 25px 0 25px 10px;
    }

    .right-cont-sec p,
    .mark-inner ul li {
        font-size: 16px;
    }

    .mark-inner ul li {
        margin-bottom: 12px;
    }

    .timeline-card {
        padding: 25px 20px;
    }

    footer.main-footer {
        padding: 135px 0 50px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .media-inner .nav-pills .nav-link {
        padding: 10px 33px;
    }

    .testimonial-box {
        padding: 80px 80px 80px;
    }

    .quote {
        top: 30px;
        left: 30px;
    }

    .content p {
        font-size: 18px;
    }

    .avatar img {
        width: 60px;
        height: 60px;
    }

    .quote img {
        width: 80px;
        height: 80px;
    }

    .avatar.active h4 {
        font-size: 18px;
    }

    .podcast-content h3 {
        margin-bottom: 16px;
    }

}


@media(max-width: 1080px){
    .inner-contact {
        gap: 50px;
    }

    .main-heading {
        font-size: 40px;
    }

    .section-header {
        margin: 0 0 40px;
    }

    .right-cont-sec p {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 60px 30px;
    }

    .pastclient-left ul li .small-tag {
        margin-bottom: 18px;
    }

    .p_collab-card p {
        font-size: 18px;
    }

    .prior-collab {
        gap: 20px;
    }

    .p_collab-img img {
        height: 300px;
    }

    .commit-inner .image-section img {
        height: 460px;
    }

    .footer-top h2 {
        font-size: 100px;
    }

    .wave-down {
        bottom: -32px;
    }

    .desc {
        font-size: 16px;
    }

    .podcast-img {
        height: 250px;
    }

    .inner-about .about-content {
        flex-wrap: wrap;
    }

    .abt-images,
    .about-content .abt-desc{
        width: 100%;
    }

    .main-title {
        font-size: 76px;
    }

    .tagline {
        font-size: 24px;
    }

    .topic {
        font-size: 16px;
    }

    .topics {
        gap: 35px;
    }

    .navbar-collapse .navbar-nav {
        gap: 35px;
    }

    .inner-past-client {
        gap: 30px;
    }

    section.error-404.not-found header.page-header span {
        font-size: 120px;
    }

    section.error-404.not-found h1 {
        font-size: 24px;
    }
}

@media (max-width: 1024px){
    .inner-newsfeed {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-card {
        height: 222px;
    }

    .media-bann-right img {
        height: 390px;
    }

    .commit-section,
    .faqsection_wrapper,
    .common-padding {
        padding: 100px 0;
    }

    .podcast_date {
        font-size: 15px;
    }

    .accordion-flush .accordion-item .accordion-button {
        font-size: 18px;
    }

    .avatar-container {
        gap: 40px;
    }

    .testimonial-box {
        margin-bottom: 35px;
    }

    .abt-desc p {
        font-size: 16px;
    }

    .abt-heading {
        flex-direction: column;
        gap: 15px;
    }

    .abt-heading .small-tag,
    .abt-heading .sec-heading{
        width: 100%;
    }

    .trusted-section{
        padding: 100px 0;
    }

    .pastclient-left ul li {
        padding: 30px 20px;
    }

    .mark-inner {
        gap: 30px;
    }
}


@media(max-width: 991.98px){
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .navbar-brand img,
    .navbar-brand .custom-logo{
        max-height: 44px;
    }
    .site-branding .site-description{
        font-size: 12px;
        max-width: 140px;
    }
    .navbar-toggler:focus{
        outline: none;
        -webkit-box-shadow: none;
                box-shadow: none;
    }
    .navbar-toggler-icon {
        position: relative;
        border-bottom: 2px solid var(--secondaryColor);
      }
    
      .navbar-toggler-icon:before,
      .navbar-toggler-icon:after {
        position: absolute;
        content: '';
        left: 0;
        width: 40%;
        background: var(--secondaryColor);
        height: 2px;
        top: 0;
        border-radius: 4px;
      }
      .navbar-toggler.active .navbar-toggler-icon {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        border: 0;
    }
    .navbar-toggler.active .navbar-toggler-icon:before {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        width: 100%;
    }
    .navbar-toggler.active .navbar-toggler-icon:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        top: 50%;
        width: 100%;
    }

    .navbar-collapse {
        background: var(--whiteColor);
        border: 1px solid var(--borderColor);
        padding: 50px 20px;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        right: 0;
    }

    .navbar-collapse .navbar-nav {
        gap: 30px;
    }

    .navbar-collapse.active {
        display: block;

    }
      .navbar-toggler-icon:before {
        top: 50%;
        width: 70%;
      }
    
      [aria-expanded="true"] .navbar-toggler-icon {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        border: 0;
      }
    
      [aria-expanded="true"] .navbar-toggler-icon:before {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        width: 100%;
      }
    
      [aria-expanded="true"] .navbar-toggler-icon:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        top: 50%;
        width: 100%;
      }
      .navbar-toggler-icon{
        padding: 0;
        width: 34px;
        height: 20px;
      }
      .navbar-toggler{
        transition: box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
        padding-left: 0;
        padding-right: 0;
      }
      .nav-right{
        margin: 20px 0 0;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
      }

    .banner-mt {
        margin-top: 85px;
    }

    .inner-contact {
        flex-wrap: wrap;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .media-inner .nav {
        margin-bottom: 45px;
    }

    .inner-service {
        grid-template-columns: repeat(2, 1fr);
    }

    footer.main-footer {
        padding: 100px 0 50px;
    }

    .footer-top h2 {
        font-size: 80px;
    }
}

@media(max-width: 880px) {
    .clients-section .inner-service {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-collab,
    .commit-inner,
    .inner-past-client,
    .mark-inner {
        flex-wrap: wrap;
    }

    .main-collab,
    .other-collabs,
    .commit-inner .right-cont-sec,
    .commit-inner .image-section,
    .inner-past-client .image-block,
    .inner-past-client .pastclient-left,
    .media-bann-left,
    .media-bann-right,
    .abtmark-section .image-section,
    .abtmark-section .right-cont-sec,
    .impact-section .right-cont-sec,
    .impact-section .image-section{
       width: 100%;
    }

    .prior-collab .p_collab-card {
        width: calc((100% - 60px) / 2);
    }

    .podcast-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-media {
        flex-wrap: wrap;
    }

    .wave-down {
        bottom: -25px;
    }

    .news-card h3 {
        font-size: 20px;
    }

    .impact-section .mark-inner {
        flex-direction: column-reverse;
    }

    .media-inner .nav-pills .nav-link {
        font-size: 16px;
    }

    .media-inner .nav {
        gap: 15px;
    }

    .inner-about {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .inner-about .abt-list,
    .inner-about .about-content{
        width: 100%;
    }

    .inner-about .abt-list{
        max-width: 100%;
    }

    .abt-list ul li {
        font-size: 16px;
    }

    .abt-list ul li:not(:last-of-type) {
        margin-bottom: 20px;
    }   

    .main-title {
        font-size: 55px;
    }

    .about-section {
        padding: 80px 0;
    }

    .trusted-section {
        padding: 80px 0;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 30px 0;
    }

    .footer-bottom .footer-links {
        width: 50%;
    }

}

@media(max-width: 767.98px){
    .heading {
        font-size: 28px;
        margin: 0 0 30px;
    }

    .common-padding {
        padding: 65px 0;
    }

    .hero-wrap {
        padding: 0 20px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .inner-hero {
        border-radius: 20px;
    }

    .inner-service {
        grid-template-columns: repeat(1, 1fr);
    }

    .innercta-card {
        padding: 50px 30px;
    }

    .wave-down {
        bottom: -15px;
    }

    .timeline-wrap {
        padding: 0 20px 0;
    }

    .mark-inner ul {
        margin: 25px 0 25px 8px;
    }

    .about-banner {
        padding: 68px 0;
    }

    .about-banner .section-header {
        margin: 0 auto 25px;
    }

    .prior-collab-section {
        margin-top: 65px;
    }

    .commit-section,
    .faqsection_wrapper {
        padding: 80px 0;
    }

    .footer-bottom {
        padding: 40px 20px;
    }

    .footer-bottom .footer-links,
    .footer-bottom .news-letter {
        width: 100%;
    }

    .footer-top h2 {
        font-size: 62px;
    }

    .testimonial-box {
        padding: 40px 20px 40px;
        border-radius: 16px;
    }

    .content p {
        font-size: 16px;
    }

    .cp-tag,
    .clients-section .service-card span,
    .small-tag {
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .collab-cont h3 {
        font-size: 22px;
    }

    .timeline-card p,
    .timeline-card ul li {
        font-size: 16px;
    }

    .rights-block p {
        font-size: 14px;
    }

    .butn {
        padding: 14px 22px;
    }

    .contact-section .wpcf7-not-valid-tip {
        font-size: 15px;
    }

    .p_collab-card p {
        padding: 0 10px;
    }

    section.error-404.not-found header.page-header span {
        font-size: 80px;
    }

    section.error-404.not-found h1 {
        font-size: 20px;
    }

    section.error-404.not-found {
        margin-top: 84px;
        padding: 80px 0;
    }

    section.error-404.not-found .page-content .btn-blue {
        margin: 35px auto 0;
    }

}


@media (max-width: 680px){
    .main-title {
        font-size: 34px;
        margin: 0 0 20px;
    }

    .heading {
        margin: 0 0 22px;
    }

    .main-heading {
        font-size: 32px;
    }

    .desc {
        font-size: 16px;
    }

    .overlay {
        padding: 50px 18px;
    }

    .tagline {
        font-size: 18px;
    }

    .topic {
        font-size: 15px;
    }

    .topics {
        gap: 25px 20px;
        margin-bottom: 45px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-group {
        flex-wrap: wrap;
    }

    .cont-address h3 {
        font-size: 20px;
        margin: 0 0 15px;
    }

    .button-wrap {
        flex-wrap: wrap;
    }

    .clients-section .inner-service {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-collab {
        flex-wrap: wrap;
    }

    .prior-collab .p_collab-card,
    .main-collab .collab-img,
    .collab-cont {
        width: 100%;
    }

    .main-collab .collab-img {
        height: 280px;
    }

    .collab-cont-inner {
        padding: 50px 20px;
    }

    .commit-inner .image-section img,
    .inner-past-client .image-block img {
        height: 330px;
    }

    .foot-logo img {
        max-width: 165px;
    }

    .footer-links h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .podcast-wrapper,
    .inner-newsfeed,
    .inner-instafeed {
        grid-template-columns: repeat(1, 1fr);
    }

    .wave-down {
        display: none;
    }

    .innercta-card {
        padding: 50px 20px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 14px;
        height: 14px;
    }

    .timeline-wrap .swiper {
        padding-bottom: 55px;
    }

    .image-section img,
    .impact-section .image-section img {
        width: 100%;
    }

    .impact-section .image-section img {
        height: 330px;
    }

    footer.main-footer {
        padding: 60px 0 50px;
    }

    .footer-top h2 {
        font-size: 42px;
    }

    .footer-top {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }

    .media-inner .nav-pills .nav-link {
        padding: 10px 20px;
    }

    .media-inner .nav {
        gap: 10px;
    }

    .accordion-flush .accordion-item .accordion-button {
        font-size: 16px;
        padding: 20px 20px;
        border-radius: 12px;
        line-height: 140%;
    }

    .accordion-collapse .accordion-body {
        padding: 30px 12px;
    }

    .avatar.active h4 {
        font-size: 16px;
    }

    .quote img {
        width: 55px;
        height: 55px;
    }

    .quote {
        top: 10px;
        left: 10px;
    }

    .avatar-container {
        gap: 16px;
    }

    .avatar {
        gap: 10px;
    }

    .avatar img {
        width: 48px;
        height: 48px;
    }

    .campaign-slider .swiper-slide img {
        height: 350px;
        object-fit: cover;
    }

    .abt-images {
        gap: 10px;
    }

    .inner-about .about-content {
        gap: 30px;
    }

    .service-card>img {
        width: 50px;
    }

    .commit-section,
    .faqsection_wrapper {
        padding: 65px 0;
    } 

    .ecosystem-wrap {
        padding: 0;
    }

    .pastclient-left ul li .small-tag {
        line-height: 125%;
    }

    .cont-address ul li {
        margin: 0 0 14px;
        align-items: flex-start;
    }

    .inner-project .desc {
        padding: 0 0;
    }

    .pastclient-left ul li h3 {
        font-size: 20px;
        margin: 0 0 12px;
    }

    .other-collabs ul li {
        padding: 18px 12px;
    }
}