/* Hero Section */
.sec1{
    position: relative;
    overflow: hidden;
}
.sec1 .container{
    padding-top: 50px;
    padding-bottom: 100px;
}
.sec1-txtwrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.sec1-btnwrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    margin-top: 35px;
}
.sec1-h{
    font-size: 44px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 20px;
}
.sec1-p{
    color: #fff;
    line-height: 26px;
}
.sec1-bg{
    position: absolute;
    z-index: -11;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    right: 0;
}
.sec1-bg-img{
    position: absolute;
    z-index: -11;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    right: 0; 
    -o-object-fit: cover; 
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.sec1-bg-overlay{
    position: absolute;
    z-index: -10;
    background-color: rgba(12, 52, 74, 0.75);
    top: 0;
    bottom: 0;
    left: 0;
    /* height: 100%;
    width: 100%; */
    right: 0;
}
.crossFade__image {
  opacity: 0;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); /* start unzoomed */
  -webkit-transition: opacity 2s ease, -webkit-transform 6s ease;
  transition: opacity 2s ease, -webkit-transform 6s ease;
  -o-transition: opacity 2s ease, transform 6s ease;
  transition: opacity 2s ease, transform 6s ease;
  transition: opacity 2s ease, transform 6s ease, -webkit-transform 6s ease;
}
.crossFade__image--active {
  opacity: 1;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); /* zoom target */
}

@media (min-width: 395px) {
    .sec1-h{
        font-size: 46px;
    }
}
@media (min-width: 410px) {
    .sec1-h{
        font-size: 48px;
    }
}
@media (min-width: 425px) {
    .sec1-h{
        font-size: 50px;
    }
}
@media (min-width: 744px) {
    .sec1-h{
        max-width: 600px;
    }
    .sec1-p{
        line-height: 28px;
        font-size: 18px;
        max-width: 480px;
    }
}
@media (min-width: 1024px) {
    .sec1 .container{
        padding-top: 100px;
        padding-bottom: 180px;
    }
    .sec1-h {
        max-width: 800px;
        margin-bottom: 25px;
        font-size: 75px;
        line-height: 80px;
    }
    .sec1-p {
        line-height: 35px;
        font-size: 25px;
        max-width: 780px;
    }
}
/* Wave */
.sec1 .wave{
    position: absolute;
    bottom: -0.5px;
    left: 0;
    width: 100%;
    height: 25px;
    background: url("https://dbwp.org/wp-content/themes/dbwp/img/wave.svg");
    background-size: 250px 25px;
}
.sec1 .wave {
    image-rendering: -webkit-optimize-contrast; /* helps with crispness */
    -webkit-transform: translateZ(0);
            transform: translateZ(0); /* forces GPU rendering, reduces seams */
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    will-change: transform;
    overflow: hidden;
}

.sec1 .wave.wave1{
    -webkit-animation: animate 14s linear infinite;
            animation: animate 14s linear infinite;
    z-index: 1000;
    opacity: 1;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}
.sec1 .wave.wave2{
    -webkit-animation: animate2 8s linear infinite;
            animation: animate2 8s linear infinite;
    z-index: 999;
    opacity: 0.5;
    -webkit-animation-delay: -8s;
            animation-delay: -8s;
}
.sec1 .wave.wave3{
    -webkit-animation: animate3 3s linear infinite;
            animation: animate3 3s linear infinite;
    z-index: 997;
    opacity: 0.5;
    -webkit-animation-delay: -10s;
            animation-delay: -10s;
}

@-webkit-keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}

@keyframes animate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}
@-webkit-keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -250px;
    }
}
@keyframes animate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -250px;
    }
}
@-webkit-keyframes animate3{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}
@keyframes animate3{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}
@media (min-width: 1024px) {
    .sec1 .wave{
        height: 60px;
        background-size: 600px 60px;
    }
    @-webkit-keyframes animate{
        100%{
            background-position-x: 600px;
        }
    }
    @keyframes animate{
        100%{
            background-position-x: 600px;
        }
    }
    @-webkit-keyframes animate2{
        100%{
            background-position-x: -600px;
        }
    }
    @keyframes animate2{
        100%{
            background-position-x: -600px;
        }
    }
    @-webkit-keyframes animate3{
        100%{
            background-position-x: 600px;
        }
    }
    @keyframes animate3{
        100%{
            background-position-x: 600px;
        }
    }
}
@media (min-width: 1500px) {
    .sec1 .container {
        max-width: 1350px;
    }
}

/* =====Section 2===== */
.sec2{
    margin-top: 35px;
    margin-bottom: 80px;
    overflow: hidden;
}
.sec2 .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.sec2-top_wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.sec2-arrows-wrap1{
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
}
.sec2-arrows-wrap2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
}
.sec2-arrow-wrap{
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: rgba(43, 43, 43, 0.1);
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    cursor: pointer;
}
.sec2-arrow-wrap:hover{
    background-color: rgba(43, 43, 43, 0.08);
}
.sec2-arrow-wrap.is-disabled{
    background-color: transparent;
    cursor: unset;
}
.sec2-arrow-img{
    width: 7px;
    margin-left: 1px;
}
.sec2-arrow-wrap.is-disabled .sec2-arrow-img{
    margin-left: 0;
    margin-right: 1px;
    opacity: 0.2;
}
.sec2-arrow-wrap.left{
    -webkit-transform: scalex(-1);
        -ms-transform: scalex(-1);
            transform: scalex(-1);

}


/* Card */
.sec2-card{
    display: none;
    background-color: #fff;
    padding: 10px 10px 20px;
    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
}
.sec2-cards .sec2-card:nth-of-type(1){
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sec2-card-img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    aspect-ratio: 2 / 1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.sec2-card-h{
    font-family: "Recoleta", sans-serif;
    font-size: 20px;
    line-height: 1.375;
    font-weight: 500;
    font-style: normal;
    color: #0C344A;

    -webkit-transition: all 0.2s ease;

    -o-transition: all 0.2s ease;

    transition: all 0.2s ease;
}
.sec2-card-h:hover{
    color: #60A4B4;
    text-decoration: underline;
}

.event-mini{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}
.event-mini-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
}
.event-txt{
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    color: rgba(43, 43, 43, 0.5);
    margin-top: 1px;
}
.event-icon{
    height: 18px;
}

/* Ensure Swiper container is not turned into a flex row */
.sec2-cards{
    width: 100%;
}
.sec2 .sec2-cards.swiper {
  display: block !important;
  overflow: visible;
}

/* Show all slides when inside a Swiper (your base CSS hides them) */
.sec2 .sec2-cards.swiper .sec2-card {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* Do NOT disable arrows via CSS any more */
.sec2 .sec2-arrow-wrap.is-disabled {
  opacity: 1;
  pointer-events: auto;
}


@media (min-width: 744px) {
    .sec2 .container{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .sec2-card{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 400px;
                flex: 0 0 400px;
    }
    .sec2-arrows-wrap2 {
        width: unset;
        -webkit-box-pack: unset;
            -ms-flex-pack: unset;
                justify-content: unset;
        gap: 20px;
    }
    .sec2-arrows-wrap1{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end;
    }
    .sec2-cards{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 40px;
    }
    /* .sec2 .sec2-cards.swiper { overflow: hidden; } */
}
@media (min-width: 1024px) {
    .sec2-p{
        max-width: 780px;
    }
    .sec2-arrow-wrap {
        height: 30px;
        width: 30px;
    }
    .sec2-arrow-img {
        width: 8px;
    }
    .sec2-card {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 500px;
                flex: 0 0 500px;
        padding: 20px;
        border-radius: 20px;
        gap: 20px;
    }
    .sec2-card-h {
        font-size: 25px;
    }
    .sec2-card-img{
        border-radius: 15px;
        margin-bottom: 20px;
    }
    .sec2-arrows-wrap1 {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .light_blue-btn {
        font-size: 18px;
        padding: 12px 18px 10px;
    }
    .event-mini {
        gap: 22px;
        margin-bottom: 13px;
    }
    .event-txt {
        font-size: 18px;
    }
    .event-icon{
        height: 22px;
    }
}
@media (min-width: 1500px) {
    .sec2 .container{
        max-width: 1350px;
    }
}
@media (min-width: 1800px) {
    .sec2 .container{
        max-width: 1650px;
    }
}
/* Make all event cards equal height */
.sec2 .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* force equal height across row */
}

.sec2 .sec2-card {
  height: auto;          /* let flex grow */
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* push button down */
}



/* Section 3: Story 1/3 */
.sec3{
    margin-top: 80px;
    margin-bottom: 80px;
}
.sec3 .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}
.sec3-img{
    width: 100%;
}
.story-sec33-img{
    height: 230px;
    width: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (min-width: 744px) {
    .sec3 .container{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .sec3-txt_wrap{
        max-width: 43%;
    }
    .sec3-img{
        width: 54%;
    }
    .story-sec23{
        position: relative;
        margin-top: 80px;
        margin-bottom: 100px;
    }
    .story-sec23 .container{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .story-sec23 .sec_gen-txt_wrap{
        max-width: 50%;
    }
    .story-sec23 .sec_gen-img{
        max-width: 48%;
        position: absolute;
        left: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-left: 0;
    }
    .story-sec33{
        position: relative;
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .story-sec33 .container{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .story-sec33-img {
        width: 48%;
        height: 500px;
        position: absolute;
        right: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}
@media (min-width: 1024px) {
    .sec3 .sec_gen-txt{
        margin-right: 30px;
    }
    .story-sec23 .sec_gen-img{
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        border-width: 10px;
        height: auto;
    }
    .story-sec23 .sec_gen-txt_wrap {
        max-width: 48%;
    }
    .story-sec23 {
        position: relative;
        margin-top: 100px;
        margin-bottom: 120px;
    }
    .story-sec23 .sec_gen-txt{
        margin-right: 30px;
    }
    .story-sec33 .sec_gen-txt ul li{
        font-size: 20px;
        line-height: 25px;
    }
    .story-sec33 .sec_gen-txt ul{
        gap: 20px;
    }
    .story-sec33 .sec_gen-txt{
        gap: 20px;
    }
}
@media (min-width: 1200px) {
    .sec3 {
        margin-top: 100px;
        margin-bottom: 190px;
    }
    .sec3 .container{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .sec3-txt_wrap {
        max-width: 520px;
    }
    .story-sec23 .sec_gen-txt_wrap{
        max-width: 550px;
    }
    .sec3-img{
        width: 590px;
    }
    .story-sec23 {
        margin-top: 190px;
        margin-bottom: 235px;
    }
    .story-sec33 {
        position: relative;
        margin-top: 240px;
        margin-bottom: 135px;
    }
    .story-sec33 .sec_gen-txt_wrap{
        max-width: 550px;
    }
    .story-sec33-img{
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
}
@media (min-width: 1500px) {
    .story-sec23 {
        margin-top: 250px;
        margin-bottom: 320px;
    }
    .story-sec23 .sec_gen-img{
        width: 50%;
        max-height: 600px;
    }
    .story-sec33 {
        margin-top: 280px;
        margin-bottom: 140px;
    }

}
@media (min-width: 1920px) {
    .story-sec23 {
        margin-top: 300px;
        margin-bottom: 360px;
    }
    .story-sec23 .sec_gen-img{
        max-height: 700px;
    }
}

/* Section: What We Do */
.wwd{
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #0C344A;
}
.wwd .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.wwd-h{
    color: white;
    text-align: center;
}
.wwd-p{
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}
.wwd-boxes{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 25px;
    margin-top: 30px;
}
.wwd-box{
    position: relative;
    padding: 10px 10px 62px;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
}
.wwd-box-img{
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 10px;
}
.wwd-box-h{
    font-size: 22px;
    margin-bottom: 5px;
}

.wwd-box-cta{
    font-size: 18px;
    font-weight: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    background-color: #366E50;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;

    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;

    -webkit-transition: all 0.3s ease;

    -o-transition: all 0.3s ease;

    transition: all 0.3s ease;
}
.wwd-box-cta:hover{
    background-color: #2B5840;
}
#wwd-box2 .wwd-box-cta{
    background-color: #F2B1AC;
    color: #0C344A;
}
#wwd-box2 .wwd-box-cta:hover{
    background-color: #F5C1BD;
}
#wwd-box3 .wwd-box-cta{
    background-color: #60A4B4;
}
#wwd-box3 .wwd-box-cta:hover{
    background-color: #4D8390;
}
@media (min-width: 744px) {
    .wwd-boxes{
        max-width: 400px;
    }
}
@media (min-width: 1024px) {
    .wwd {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .wwd-p{
        max-width: 780px;
    }
    .wwd-boxes{
        margin-top: 40px;
        row-gap: 30px;
    }
    .wwd-box {
        padding: 20px 20px 79px;
        border-radius: 20px;
    }
    .wwd-box-img{
        height: 230px;
        margin-bottom: 20px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    .wwd-box-h{
        font-size: 25px;
        margin-bottom: 10px;
    }
    .wwd-box-cta{
        font-size: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}


/* Stats */
.wwd_stats{
    background-color: #0C344A;
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 60px;
}
.wwd_stats::before{
    position: absolute;
    content: "";
    top: -1px;
    width: 100%;
    height: 2px;
    background-color: #0C344A;
    z-index: 2;
}
.wwd_stats-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;

    margin-bottom: 40px;
}
.wwd_stat{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}
.wwd_stat-h{
    font-family: "Recoleta", sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.375;
    color: #fff;
}
.wwd_stat-p{
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
}
.wwd_stat-sepa{
    display: none;
}
@media (min-width: 1024px) {
    .wwd_stats{
        padding-bottom: 80px;
        margin-bottom: 80px;
    }
    .wwd_stats-wrap{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .wwd_stat-sepa{
        display: block;
        width: 4px;
        height: 75px;
        margin-top: 15px;
        margin-bottom: 15px;
        background-color: rgba(246, 245, 244, 0.25);
    }
    .wwd_stats-wrap{
        margin-bottom: 30px;
    }
}
@media (min-width: 1200px) {
    .wwd-boxes {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 28px 1fr 28px 1fr;
        grid-template-columns: repeat(3, 1fr);
        max-width: unset;
        -webkit-column-gap: 28px;
           -moz-column-gap: 28px;
                column-gap: 28px;
    }
    .wwd_stats-wrap{
        max-width: 1065px;
    }
    .wwd_stat{
        width: 300px;
    }
    .wwd_stats .container{
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
@media (min-width: 1500px) {
    .wwd .container{
        max-width: 1350px;
    }
    .wwd-boxes{
        gap: 30px;
    }
}


/* Section: VOB */
.vob_sec{
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}
.vob_sec .container{
    background-color: #60A4B4;
    padding: 30px 15px 280px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.vob_sec-h{
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}
.vob_sec-p{
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    /* font-weight: 500; */
    text-align: center;
}
.vob_sec .arrow-link{
    font-size: 16px;
}
.vob_sec-img-wrap{
    position: absolute;
    width: 180px;
    height: 220px;
    border: 8px solid white;
    bottom: 0;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.vob_sec-img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.vob_sec-img-wrap::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 60px;
    left: 50%;
    -webkit-transform: translate(-50%, -75%);
        -ms-transform: translate(-50%, -75%);
            transform: translate(-50%, -75%);
    background-color: #F2B1AC;
}
#vob_sec-img1-wrap{
    rotate: -15deg;
    left: 7%;
    bottom: 20px;
}
#vob_sec-img2-wrap{
    rotate: 10deg;
    right: 8%;
    bottom: -10px;
}
@media (min-width: 744px) {
    .vob_sec-p {
        max-width: 50%;
    }
    .vob_sec .container{
        padding: 30px 15px 30px;
    }
    #vob_sec-img1-wrap{
        left: -25px;
        bottom: 50%;
        -webkit-transform: translateY(50%);
            -ms-transform: translateY(50%);
                transform: translateY(50%);
    }
    #vob_sec-img2-wrap{
        right: -20px;
        bottom: 50%;
        -webkit-transform: translateY(50%);
            -ms-transform: translateY(50%);
                transform: translateY(50%);
    }
}
@media (min-width: 900px) {
    .vob_sec-p {
        max-width: 60%;
    }
}
@media (min-width: 1024px) {
    .vob_sec .container {
        padding: 40px 15px 45px;
        border-radius: 20px;
    }
    .vob_sec-h{
        font-size: 39px;
        margin-bottom: 15px;
    }
    .vob_sec-p{
        font-size: 20px;
        line-height: 28px;
    }
    .vob_sec .arrow-link {
        font-size: 20px;
        margin-top: 25px;
    }
    .vob_sec-img-wrap {
        width: 200px;
        height: 250px;
    }
}
@media (min-width: 1200px) {
    .vob_sec .container{
        position: relative;
    }
    .vob_sec-img-wrap{
        border: 10px solid white;
    }
}


/* Section: Take Action */
.ta_sec-points{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
}
.ta_sec{
    margin-top: 60px;
    margin-bottom: 50px;
}
.ta_sec .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
}
.ta_sec-h{
  display:inline-block;
  width: 100%;
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.375;
  color:#60A4B4;
}
.ta_sec-h::after{
  content: "\00A0";
  display:inline-block;
  width: 10px;
  height: 10px;
  background: url("https://dbwp.org/wp-content/themes/dbwp/img/round-arrow-lblue.svg") no-repeat center / contain;
  vertical-align: -8px;
  text-decoration: none;
  margin-left: 6px;
}
.ta_sec-point-wrap1{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
}
.ta_sec-point-wrap2{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
}
.ta_sec-point-img {
    height: 55px;

    position: relative;
    right: 5px;
}
.ta_sec-point-img.outside{
    display: none;
}

/* ======Section: Our Funders===== */
.our_funders-sec{
    margin-top: 80px;
    margin-bottom: 80px;
    /* overflow: hidden; */

    position: relative;
}
.our_funders-sec .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
}
@media (min-width: 744px) {
    .our_funders-sec .container{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .ta_sec{
        margin-bottom: 80px;
    }
}
@media (min-width: 1024px) {
    .ta_sec .container{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        gap: 55px;

        position: relative;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .ta_sec,
    .ta_sec .container,
    .ta_sec .container.container_1200 {
        overflow: visible;
    }
    .ta_sec-txt{
        max-width: 40%;

        position: sticky;
        top: 125px;
        -ms-flex-item-align: start;
            align-self: flex-start;
    }
    .ta_sec-point-img.outside {
        display: block;
    }
    .ta_sec-point-img.inside{
        display: none;
    }
    .ta_sec-point-img{
        right: 0;
        height: 80px;
    }
    .ta_sec-point{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        gap: 25px;
    }
    .ta_sec-h{
        font-size: 25px;
    }
    .ta_sec-h::after{
        vertical-align: -10px;
        margin-left: 8px;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .ta_sec-point-p{
        font-size: 20px;
        line-height: 25px;
    }
    .ta_sec-points{
        gap: 35px;
    }
}
@media (min-width: 1200px) {
    .ta_sec {
        margin-bottom: 100px;
    }
    .ta_sec-h:hover::after{
        margin-left: 10px;
    }
}

.of-icons{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 7px 1fr 7px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.of-icon{
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;

    max-height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.of-icon-img{
    max-height: 100%;
    max-width: 100%;
}
@media (min-width: 1024px) {
    .our_funders-sec {
        margin-top: 170px;
        margin-bottom: 170px;
    }
    .of-icons{
        position: absolute;
        gap: 22px;
        width: 704px;
        right: 53%;

        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    .of-icon{
        max-height: 120px;
        border-radius: 10px;
        padding: 15px 20px;
        max-width: 220px;
    }
    .of-icon:nth-child(4),
    .of-icon:nth-child(5),
    .of-icon:nth-child(6){
        position: relative;
        right: 100px;
    }
}
@media (min-width: 1200px) {
    .our_funders-sec .sec_gen-txt_wrap {
        max-width: 550px;
    }
    .of-icons{
        right: 50%;
    }
}
@media (min-width: 1500px) {
    .of-icons {
        right: 52%;
    }
}