/* =====Document Styles===== */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
/*   outline: 1px solid red; */
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Avenir", "Lato", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
  background-color: #F6F5F4;
  /* min-height: 200vh; */
}

/* =====Container===== */
/* Adjusting container for small device */
.container-small_device{
  margin-left: 16px;
  margin-right: 16px;
}
@media (min-width: 744px) {
  .container-small_device{
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media (min-width: 1024px) {
  .container-small_device{
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (min-width: 1200px) {
  .container-small_device{
    margin-left: 0;
    margin-right: 0;
  }
}
/* Device size 1200px */
@media (min-width: 1200px) {
  .container_1200 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Content Style */
h1 {
  font-family: "Recoleta", sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.375;
  font-style: normal;
  color: #0C344A;
}
h2 {
  font-family: "Recoleta", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.375;
  font-style: normal;
  color: #0C344A;
  
  margin-bottom: 15px;
}
h3 {
  font-family: "Recoleta", sans-serif;
  font-size: 20px;
  line-height: 1.375;
  font-weight: 500;
  font-style: normal;
  color: #0C344A;
}
h4 {
  font-family: "Recoleta", sans-serif;
  font-size: 18px;
  line-height: 1.375;
  font-weight: 500;
  font-style: normal;
  color: #0C344A;
}
p {
  font-family: "Avenir", "Lato", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
  font-style: normal;
  font-size: 17px;
}
.main{
  position: relative;
  margin-top: 66px;
  /* overflow: hidden; */
}
.page-id-19 .footer{
  margin-top: 105px;
}
@media (min-width: 1024px) {
  .main{
    margin-top: 98px;
  }
  h2{
    font-size: 39px;
  }
  p{
    font-size: 20px;
    line-height: 26px;
  }
  .page-id-19 .footer {
    margin-top: 160px;
  }
}
@media (min-width: 1200px) {
  .main{
    overflow: unset;
  }
}

/* =====Buttons===== */
.primary_btn{
  font-weight: 700;
  font-size: 18px;
  color: #0C344A;
  background-color: #F2B1AC;
  border-radius: 40px;
  padding: 10px 10px 8px 16px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;

  -webkit-transition: all 0.2s ease;

  -o-transition: all 0.2s ease;

  transition: all 0.2s ease;
}
.primary_btn-arrow_wrap{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  
  display: -webkit-box;
  
  display: -ms-flexbox;
  
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.primary_btn-arrow-line{
  height: 2px;
  width: 6px;
  background-color: #0C344A;
  margin-left: 4px;

  -webkit-transition: all 0.2s ease;

  -o-transition: all 0.2s ease;

  transition: all 0.2s ease;
}
.primary_btn-sec{
  background-color: #366E50;
  color: #fff
}
@media (min-width: 1024px) {
  .primary_btn {
    font-size: 20px;
    border-radius: 40px;
    padding: 14px 12px 12px 20px;
  }
  .primary_btn-arrow_wrap {
    width: 24px;
    height: 24px;
  }
  .primary_btn-arrow-line{
    margin-left: 5px;
  }
}
@media (min-width: 1200px) {
  .primary_btn:hover .primary_btn-arrow-line{
    width: 8px;
  }
  .primary_btn-prime:hover{
    background-color: #F5C1BD;
  }
  .primary_btn-sec:hover{
    background-color: #2B5840;
  }
}


/* Button: Blue stroke & text, white bg */
.light_blue-btn{
  font-weight: 700;
  font-size: 16px;
  color: #60A4B4;
  background-color: transparent;
  padding: 10px 15px 8px;
  border-radius: 40px;
  border: 2px solid #60A4B4;
  line-height: 1.25;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.light_blue-btn:hover {
  background-color: #60A4B4;
  color: #fff;
}

/* Eyebrow */
.eyebrow{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.eyebrow-txt{
  font-size: 11px;
  line-height: 1.25;
  color: #60A4B4;
  text-transform: uppercase;
}
.eyebrow-wave-double{
  margin-top: 4px;
  height: 5px;
}
.eyebrow-wave.right{
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.eyebrow-wave-single{
  margin-top: 4px;
  height: 5px;
}
@media (min-width: 1024px) {
  .eyebrow{
    margin-bottom: 5px;
  }
  .eyebrow-txt {
    font-size: 14px;
  }
  .eyebrow-wave-single {
    height: 6px;
  }
  .eyebrow-wave-double {
    height: 6px;
  }
}

/* xxxxx Header xxxxx */
.header{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
}

/* =====Mobile Nav - Header===== */
.header-mob{
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);

  z-index: 1000;
  position: relative;
}
.header-mob .container {
  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;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-logo,
.nav-logo-a{
  height: 46px;
}
.ham-box-menu{
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}
.ham-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #F0F0F0;
  padding: 12px 10px;
  border-radius: 5px;
}
.header_ham{
  width: 25px;
  height: 17px;
  position: relative;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.header_ham span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #60A4B4;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.header_ham span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
.header_ham span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
.header_ham span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
.ham-box.active .header_ham span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -3px;
  left: 3px;
}
.ham-box.active .header_ham span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.ham-box.active .header_ham span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 14px;
  left: 3px;
}
@media (min-width: 1024px) {
  .header-mob{
    display: none;
  }
}

/* Header: Desktop */
.header-desk{
  display: none;
}
.mini_nav-wrap{
  display: none;
}
.mini_nav-grey-i.large{
  display: none;
}
.nav-temp{
  display: none;
}
@media (min-width: 1024px) {
  /* Desktop Header */
  .header-desk{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  }
  .header-desk .container{
    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%;

    position: relative;
  }
  .nav-logo, .nav-logo-a {
    height: 60px;
  }
  .nav ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .header-desk_a{
    color: #000;
    font-size: 18px;
    font-weight: 500;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;

    padding-top: 48px;
    padding-bottom: 26px;

    -webkit-transition: all 0.2s ease;

    -o-transition: all 0.2s ease;

    transition: all 0.2s ease;
  }
  .header-desk_a:hover{
    color: #60A4B4;
  }
  .header-desk_a.current_page{
    color: #60A4B4;
    /* color: #4D8390; */
  }

  /* Mini Top Nav */
  .mini_nav-wrap{
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .mini_nav-wrap .container{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .mini_nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
  }
  .mini_nav-green{
    color: #fff;
    background-color: #366E50;
    padding: 8px 10px 4px 15px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .mini_nav-green:hover{
    background-color: #2B5840;
  }
  .mini_nav-orange{
    color: #000;
    background-color: #F2B1AC;
    padding: 8px 15px 4px 10px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .mini_nav-orange:hover{
    background-color: #F5C1BD;
  }
  .mini_nav-grey{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 7px 25px 5px 30px;
    background-color: #F0F0F0;
  }
  .mini_nav-grey-i{
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
  }
  .mini_nav-grey-i:hover{
    text-decoration: underline;
  }
}
@media (min-width: 1200px) {
  .mini_nav-grey-i.small{
    display: none;
  }
  .mini_nav-grey-i.large{
    display: block;
  }
  .nav-logo, .nav-logo-a{
    height: 65px;
  }
  .nav-temp{
    display: block;
  }
}
@media (min-width: 1500px) {
  .header-desk .container,
  .mini_nav-wrap .container {
      max-width: unset;
      margin-left: 60px;
      margin-right: 60px;
  }
}
@media (min-width: 1900px) {
  .header-desk .container,
  .mini_nav-wrap .container {
      max-width: 1600px;
      margin-left: auto;
      margin-right: auto;
  }
}

/* =====Footer===== */
.footer{
  background-color: #0C344A;
  position: relative;
}
/* Wave */
.footer .wave{
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 25px;
    background: url("https://dbwp.org/wp-content/themes/dbwp/img/wave-d.svg");
    background-size: 250px 25px;
}
.footer .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;
}

.footer .wave.wave1{
    -webkit-animation: anomate 14s linear infinite;
            animation: anomate 14s linear infinite;
    z-index: 1000;
    opacity: 1;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}
.footer .wave.wave2{
    -webkit-animation: anomate2 8s linear infinite;
            animation: anomate2 8s linear infinite;
    z-index: 999;
    opacity: 0.5;
    -webkit-animation-delay: -8s;
            animation-delay: -8s;
}
.footer .wave.wave3{
    -webkit-animation: anomate3 3s linear infinite;
            animation: anomate3 3s linear infinite;
    z-index: 997;
    opacity: 0.5;
    -webkit-animation-delay: -10s;
            animation-delay: -10s;
}

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

@keyframes anomate{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}
@-webkit-keyframes anomate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -250px;
    }
}
@keyframes anomate2{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: -250px;
    }
}
@-webkit-keyframes anomate3{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}
@keyframes anomate3{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 250px;
    }
}
@media (min-width: 1024px) {
    .footer .wave{
        height: 60px;
        background-size: 600px 60px;
        top: -60px;
    }
    @-webkit-keyframes anomate{
        100%{
            background-position-x: 600px;
        }
    }
    @keyframes anomate{
        100%{
            background-position-x: 600px;
        }
    }
    @-webkit-keyframes anomate2{
        100%{
            background-position-x: -600px;
        }
    }
    @keyframes anomate2{
        100%{
            background-position-x: -600px;
        }
    }
    @-webkit-keyframes anomate3{
        100%{
            background-position-x: 600px;
        }
    }
    @keyframes anomate3{
        100%{
            background-position-x: 600px;
        }
    }
}
@media (min-width: 1500px) {
    .footer .container {
        max-width: 1350px;
    }
}
/* Newsletter: Footer */
.foot-newsl{
  padding-top: 40px;
}
.foot-newsl .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;
}
.foot-newl-h{
  font-size: 28px;
  font-family: "Avenir", "Lato", sans-serif;
  font-weight: 500;
  color: #fff;
}
.foot-newsl-fields #mc_embed_signup {
	background-color: transparent;
	width: 100% !important;
}

/* Footer: Sepa */
.foot-sepa{
  width: 100%;
  height: 3px;
  background-color: rgba(229, 243, 245, 0.15);

  margin-top: 50px;
  margin-bottom: 40px;
}

/* Footer Bottom */
.foot-foot-mob{
  padding-top: 25px;
  padding-bottom: 30px;
  background-color: #001E2B;
}
.foot-foot-mob .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;
}
.foot-copyright{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.foot-foot-mob-wrap{
  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;
  gap: 10px;
}
.foot-foot-txt{
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.foot-foot-line{
  height: 14px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.foot-guidestar-logo{
  opacity: 0.6;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* Footer: Core */
.foot-core{
  padding-bottom: 50px;
}
.foot-core .container{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.foot-logo,
.foot-logo-a{
  height: 100px;
  /* margin-bottom: 50px; */
}
/* Foot Link */
.foot-lwrap{
  width: 100%;
  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;
}
.foot-lwrap-h{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.foot-lwrap-h h3{
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}
.foot-lwrap-h img{
  width: 10px;
}
.foot-lwrap-links{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.foot-lwrap-link{
  font-size: 18px;
  line-height: 1.375;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}
/* Foot Contact */
.foot-contact-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: 20px;
}
.foot-contact-link{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.foot-contact-link a{
  margin-top: 3px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.foot-contact-link a p{
  font-size: 18px;
  font-weight: 300;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/* Foot Socials */
.foot-socials{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-top: 15px;
}
.foot-social-img,
foot-social{
  height: 40px;
}
.foot-foot-desk{
  display: none;
}
@media (min-width: 744px) {
  .foot-lwrap{
    display: none;
  }
  .foot-lwrap.foot-contact{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-core .container{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-lwrap{
    width: unset;
  }
  .foot-logo, .foot-logo-a {
    height: 120px;
  }

  .foot-newsl .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .foot-newsl-txt_wrap{
    max-width: 50%;
  }
  .foot-foot-mob .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 800px) {
  .foot-lwrap:first-of-type{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .foot-newsl-txt_wrap{
    max-width: 43%;
  }
  .foot-sepa{
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .foot-logo, .foot-logo-a {
    height: 140px;
  }
  .foot-lwrap-h h3 {
    font-size: 25px;
  }
  .foot-lwrap-h{
    gap: 10px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .foot-lwrap-link {
    font-size: 18px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .foot-lwrap-links {
    gap: 20px;
  }
  .foot-lwrap{
    gap: 25px;
  }

  .foot-foot-mob{
    display: none;
  }
  .foot-foot-desk-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .foot-foot-desk{
    display: block;
    background-color: #001E2B;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .foot-foot-desk .container{
    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;
  }
  .foot-copyright{
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
  }
  .foot-foot-line{
    height: 24px;
  }
  .foot-foot-txt{
    font-size: 14px;
    line-height: 1.25;
    font-weight: 400;
  }
  .foot-guidestar-logo-wrap{
    height: 28px;
  }
  .foot-newsl .container{
    gap: 100px;
  }
}
@media (min-width: 1200px) {
  .foot-lwrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-newsl-txt_wrap {
      max-width: 500px;
  }
  .foot-lwrap-link:hover,
  .foot-contact-link a:hover,
  .foot-contact-link a:hover p{
    color: #fff;
  }
  .foot-foot-txt:hover{
    color: rgba(255, 255, 255, 0.8);
  }
  .foot-guidestar-logo:hover{
    opacity: 0.9;
  }
  .foot-lwrap-h:hover{
    gap: 12px;
  }
}
@media (min-width: 1500px) {
  .foot-newsl .container,
  .foot-sepa-wrap .container,
  .foot-core .container,
  .foot-foot-desk .container{
    max-width: 1350px;
  }
}

/* Generic Section */
.sec_gen{
  margin-top: 50px;
  margin-bottom: 50px;
}
.sec_gen .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;
}
.sec_gen-txt{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
}
.sec_gen-txt ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-left: 20px;
}
.sec_gen-txt ul li{
  position: relative;
}
.sec_gen-txt ul li::before {
  content: "";
  position: absolute;
  background-image: url("https://dbwp.org/wp-content/themes/dbwp/img/drop.svg");
  left: -22px;
  top: 3px;
  height: 16px;
  width: 10px;
}
.sec_gen-line_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;
  color: #60A4B4;
  margin-top: 20px;

  -webkit-transition: all 0.3s ease;

  -o-transition: all 0.3s ease;

  transition: all 0.3s ease;
}
.sec_gen-line_cta:hover{
  text-decoration: underline;
}
.sec_gen-img{
  width: 100%;
  border-radius: 10px;
  outline: 5px solid white;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.05);
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sec_gen-txt_wrap{
  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;
}
.round-arrow{
  width: 6px;
  height: 8px;
}
.sec_gen .primary_btn{
  margin-top: 20px;
}
@media (min-width: 744px) {
  .sec_gen .container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .sec_gen.rev .container > div {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; /* Default order */
  }
  .sec_gen.rev .container > div:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3; /* Move first child to the last position */
  }
  .sec_gen.rev .container > div:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; /* Move second child to the second position */
  }
  .sec_gen.rev .container > div:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; /* Move third child to the first position */
  }
}
@media (min-width: 1024px) {
  .sec_gen{
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .sec_gen-img{
    outline: 10px solid white;
    -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.10);
            box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.10);
    border-radius: 15px;
    height: 290px;
  }
  .sec_gen-txt ul li::before{
    scale: 1.1;
    top: 4px;
  }
  .sec_gen-txt ul{
    margin-left: 25px;
  }
  .sec_gen-txt{
    gap: 15px;
  }
  .round-arrow {
    width: 8px;
    height: 10px;
  }
  .sec_gen .primary_btn{
    margin-top: 25px;
  }
}
@media (min-width: 1200px) {
  .sec_gen .container{
    gap: 40px;
  }
  .sec_gen-img{
    height: 380px;
  }
  .sec_gen-txt_wrap{
    max-width: 580px;
  }
}
@media (min-width: 1500px) {
  .sec_gen .container{
    gap: 60px;
    max-width: 1400px;
  }
  .sec_gen-img {
      height: 460px;
      width: 740px;
  }
}

/* Fixed-width, underlined text link */
.arrow-link{
  display:inline-block;
  width: 100%;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.375;
  color:#60A4B4;

  margin-top: 20px;
}
.arrow-link-centre{
  text-align: center;
}
.arrow-link-u{
  text-decoration: underline;
}
.arrow-link::after{
  content: "\00A0";
  display:inline-block;
  width: 8px;
  height: 8px;
  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: 5px;

  -webkit-transition: all 0.2s ease;

  -o-transition: all 0.2s ease;

  transition: all 0.2s ease;
  position: relative;
  left: 0;
}
.arrow-link.white-arrow{
  color: #fff;
}
.arrow-link.white-arrow::after{
  background: url("https://dbwp.org/wp-content/themes/dbwp/img/round-arrow-white.svg") no-repeat center / contain;
}
@media (min-width: 1024px) {
  .arrow-link{
    font-size: 20px;
    margin-top: 25px;
  }
  .arrow-link::after{
    width: 10px;
    height: 10px;
    vertical-align: -10px;
    margin-left: 8px;
  }
}
@media (min-width: 1200px) {
  .arrow-link:hover::after{
    left: 2px;
  }
}

/* Prefoot */
.prefoot{
  background-color: #60A4B4;
  position: relative;
  margin-top: 60px;
}
.prefoot-img{
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  height: 250px;
  z-index: 10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.prefoot .container{
  padding-top: 270px;
  padding-bottom: 85px;
}
.prefoot-btnwrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.prefoot-h{
  font-size: 38px;
  margin-bottom: 12px;
  color: #fff;
}
.prefoot-p{
  font-size: 20px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 744px) {
  .prefoot{
    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;
  }
  .prefoot .container{
    max-width: 46%;

    padding-top: 40px;
    padding-bottom: 80px;
  }
  .prefoot-img {
    position: absolute;
    width: unset;
    right: unset;
    bottom: 0;
    height: 100%;
    width: 46%;
  }
}
@media (min-width: 1024px) {
  .prefoot-h{
    font-size: 45px;
    margin-bottom: 20px;
  }
  .prefoot .container {
      max-width: 46%;
      padding-top: 60px;
      padding-bottom: 140px;
  }
}
@media (min-width: 1200px) {
  .prefoot .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .prefoot_wrap{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .prefoot_wrap1{
    max-width: 625px;
  }
  .prefoot-h {
    font-size: 48.83px;
  }
  .prefoot-p {
    font-size: 22px;
    line-height: 30px;
  }
  .prefoot-img{
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .prefoot .container {
    max-width: 1350px;
  }
  .prefoot-img {
      width: 48%;
  }
}


/* Breadcrumb */
.bcrumb{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.bcrumb-arrow{
  width: 7px;
}
.bcrumb-box{
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  line-height: 1.25;

  padding: 7px 12px 5px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);

  -webkit-transition: all 0.2s ease;

  -o-transition: all 0.2s ease;

  transition: all 0.2s ease;
}
.bcrumb-txt{
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  line-height: 1.25;
}
.bcrumb.lbg .bcrumb-box{
  color: rgba(12, 54, 74, 0.9);
  border: 1px solid rgba(65, 64, 66, 0.4);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.bcrumb.lbg .bcrumb-box:hover{
  border: 1px solid rgba(65, 64, 66, 0.8);
}
.bcrumb.lbg .bcrumb-txt{
  color: rgba(12, 54, 74, 0.9);
}
@media (min-width: 1024px) {
  .bcrumb{
    gap: 15px;
  }
  .bcrumb-arrow{
    width: 8.5px;
  }
  .bcrumb-box{
    font-size: 13px;
    padding: 8px 15px 5px;
    border-radius: 6px;
  }
  .bcrumb-txt {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .bcrumb-box:hover{
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
}

/* Banner */
.banner{
  position: relative;
  margin-bottom: 50px;

  padding-top: 40px;
  padding-bottom: 50px;
}
.banner .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;
}
.banner_wave{
  position: absolute;
  width: 100%;
  height: 40px !important;
  bottom: -20px;
  z-index: 10;
  /* object-fit: fill; */
}
.banner-h{
  color: #fff;
  text-align: center;
  max-width: 850px;
}
.banner-p{
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-top: 10px;
  max-width: 780px;
}
.banner-bg_overlay{
  background-color: rgba(12, 54, 74, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}
.banner-img{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -7;
}
.banner-bg_color{
  background-color: #0C344A;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -9;
}
@media (min-width: 1024px) {
  .banner-h{
    font-size: 61px;
    line-height: 75px;
  }
  .banner .bcrumb{
    gap: 12px;
  }
  .banner_wave{
    height: 80px !important;
    bottom: -30px;
  }
  .banner{
    padding-top: 50px;
    padding-bottom: 80px;
    margin-bottom: 90px;
  }
  .banner-p{
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .banner{
    margin-bottom: 110px;
  }
}


/* =====Mega Menu===== */
.mega-panel{
  position: absolute;
  z-index: 999;
  /* background-color: #f1f1f1; */
  background-color: #E8E5E3;
  width: 100%;
  left: 0;
  top: 122px;

  border-radius: 20px;
  overflow: hidden;
  
  opacity: 0;
  -webkit-transform: translate(0, 10px);
      -ms-transform: translate(0, 10px);
          transform: translate(0, 10px);
  -webkit-transition: opacity 200ms ease-in, visibility 200ms ease-in, -webkit-transform 200ms ease-in;
  transition: opacity 200ms ease-in, visibility 200ms ease-in, -webkit-transform 200ms ease-in;
  -o-transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in, -webkit-transform 200ms ease-in;
  visibility: hidden;
}
.menu-item:hover .mega-panel{
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 200ms ease-in, visibility 200ms ease-in, -webkit-transform 200ms ease-in;
  transition: opacity 200ms ease-in, visibility 200ms ease-in, -webkit-transform 200ms ease-in;
  -o-transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in, -webkit-transform 200ms ease-in;
  visibility: visible;
}
.mega-panel-inner{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.menu-column{
  padding: 25px 25px 30px;

  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;


}
.menu-column h4{
  font-family: "Avenir";
  font-size: 14px;
  color: #2c3b20;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
.menu-column-sp{
  background-color: #fff;
}
.mega-description-group{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.mega-menu-title{
  display:inline-block;
  width: 100%;
  font-family: "Recoleta", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.375;
  color:#0C344A;

  -webkit-transition: all 0.2s ease;

  -o-transition: all 0.2s ease;

  transition: all 0.2s ease;
}
.mega-menu-title:hover{
  color: #60A4B4;
}
.mega-menu-title::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;
}
.mega-menu-description{
  font-size: 16px;
  line-height: 22px;
}
.header-desk_a.dropdown{
  position: relative;
}
.header-desk_a.dropdown::after{
  content: "";
  display: inline-block;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent #E8E5E3 transparent;
  border-width: 0 calc(30px / 2) 15px calc(30px / 2);
  background-size: 100% auto;
  height: 20px;
  width: 0;
  display: block !important;
  position: absolute !important;
  opacity: 0;
  bottom: -32px;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translate(-50%, 15px);
      -ms-transform: translate(-50%, 15px);
          transform: translate(-50%, 15px);
  -webkit-transition: opacity 50ms ease-in, -webkit-transform 200ms ease-in;
  transition: opacity 50ms ease-in, -webkit-transform 200ms ease-in;
  -o-transition: opacity 50ms ease-in, transform 200ms ease-in;
  transition: opacity 50ms ease-in, transform 200ms ease-in;
  transition: opacity 50ms ease-in, transform 200ms ease-in, -webkit-transform 200ms ease-in;
  visibility: hidden;
}
.menu-item:hover .header-desk_a.dropdown::after{
  opacity: 1;
  -webkit-transform: translate(-50%, 0) !important;
      -ms-transform: translate(-50%, 0) !important;
          transform: translate(-50%, 0) !important;
  bottom: -25px !important;
  visibility: visible;
}

/* Dark BG: Mobile Nav */
.header-mob-dark_bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020404;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Ensures it's not interactive when hidden */
  -webkit-transition: opacity 0.3s ease, visibility 0.5s ease;
  -o-transition: opacity 0.3s ease, visibility 0.5s ease;
  transition: opacity 0.3s ease, visibility 0.5s ease; /* Smooth transition */
  z-index: 998; /* Place it above other elements */

  /* visibility: visible;
  opacity: 0.75; */
}

/* Mobile Header: Sidebar */
.header-mobdbdn{
  position: absolute;
  top: 81px;
  width: 100%;
  background-color: #F6F5F4;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;

  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

  opacity: 0;
  visibility: hidden;
}
.header-mobdbdn-cta_wrap{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.header-mobdbdn-cta{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
.header-mobdbdn-cta:first-of-type{
  color: #0C344A;
  background-color: #F2B1AC;
}
.header-mobdbdn-cta:last-of-type{
  color: #fff;
  background-color: #366E50;
}
.header-mobdbdn-item-arrow{
  width: 7px;
  height: 10px;
}

.header-mobdbdn-item_wrap{
  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;
  margin-right: 16px;
  margin-left: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-mobdbdn-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.header-mobdbdn-item-icon{
  height: 40px;
}
.header-mobdbdn-item-txt{
  font-family: 'Recoleta';
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #414042;
}
.header-mobdbdn-sepa{
  height: 1px;
  width: 100%;
  background-color: #DADADA;
}
.header-mobdbdn-miniwrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 25px;
  margin-bottom: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-mobdbdn-miniwrap-txt{
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 744px) {
  .header-mobdbdn-item_wrap{
    margin-right: 24px;
    margin-left: 24px;
  }
}
@media (min-width: 1024px) {
  .header-mobdbdn,
  .header-mob-dark_bg{
    display: none;
  }
}

/* MailChimp: CSS */
.foot-newsl-fields{
  width: 100% !important;
  margin-top: 10px;
}
.foot-newsl-fields #mc_embed_signup form{
  margin: 0 !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group{
  padding-bottom: 0 !important;
  width: 100% !important;
}
.foot-newsl-fields .mc-field-group-wrap,
.foot-newsl-fields #mc_embed_signup_scroll{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  row-gap: 12px;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group{
  min-height: unset !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group input{
    text-indent: 15px !important;
    font-family: "Avenir" !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: 40px !important;
    line-height: 1.25 !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group input::-webkit-input-placeholder{
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group input::-moz-placeholder{
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group input:-ms-input-placeholder{
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group input::-ms-input-placeholder{
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.foot-newsl-fields #mc_embed_signup .mc-field-group input::placeholder{
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.foot-newsl-fields #mc_embed_signup .button{
  margin: 0 !important;
  font-family: "Avenir" !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #0C344A !important;
  border-radius: 40px !important;
  background-color: #F2B1AC !important;
  margin-top: 10px !important;
  padding: 10px 10px 8px 10px !important;
  height: unset !important;
  width: 100% !important;
  -webkit-transition: all 0.2s ease !important;
  -o-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
}
.foot-newsl-fields #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
  font-family: "Avenir" !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  background-color: #6B0505 !important;
  color: #fff !important;
  margin: 4px 0 -4px 0 !important;
  padding: 4px !important;
  width: 100%;
}
.foot-newsl-fields #mc_embed_signup #mce-success-response{
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  width: 100% !important;
}
.foot-newsl-fields #mc_embed_signup div#mce-responses{
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 10px !important;
  width: 100% !important;
  font-size: 14px !important;
/*   background-color: rgba(80, 124, 39, 0.2) !important; */

}
@media (min-width: 1024px) {
  .foot-newsl-fields .mc-field-group-wrap,
	.foot-newsl-fields #mc_embed_signup_scroll{
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px !important;
    -webkit-column-gap: 16px !important;
       -moz-column-gap: 16px !important;
            column-gap: 16px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group input {
    text-indent: 20px !important;
    font-size: 20px !important;
    padding-top: 15px !important;
    padding-bottom: 10px !important;
  }
  .foot-newsl-fields #mc_embed_signup .button{
    width: unset !important;
    padding: 14px 20px 12px !important;
    font-size: 20px !important;
    margin-top: 10px !important;
  }
  .foot-newsl-fields #mc_embed_signup .clear{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 20px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group input::-webkit-input-placeholder{
    font-size: 20px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group input::-moz-placeholder{
    font-size: 20px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group input:-ms-input-placeholder{
    font-size: 20px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group input::-ms-input-placeholder{
    font-size: 20px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group input::placeholder{
    font-size: 20px !important;
  }
  .foot-newsl-fields #mc_embed_signup .mc-field-group{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .foot-newsl-fields #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
    font-size: 13px !important;
  }
  .foot-newsl-fields #mc_embed_signup #mce-success-response{
    font-size: 16px !important;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
@media (min-width: 1200px) {
  .foot-newsl-fields #mc_embed_signup .button:hover{
    background-color: #F5C1BD !important;
  }
}

.copy-toast {
  position: fixed;
  top: 20px;
  left: 50%;                     /* move to middle */
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);   /* center align */
  background: #60a4b4;
  color: #fff;
  font-size: 14px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  -webkit-box-shadow: 0 0px 6px rgba(255,255,255,0.8);
          box-shadow: 0 0px 6px rgba(255,255,255,0.8);
  display: none;
  z-index: 99999;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.copy-toast.show {
  display: block;
  opacity: 1;
}

/* Sidebox: Categories */
.cat-sidebox{
  display: none;
}
@media (min-width: 1024px) {
  .cat-sidebox{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px; /* Prevent shrinking */
    height: 100%;

    position: sticky;
    top: 118px;
  }
  .cat-sidebox-dad .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
    position: relative;
  }
  .cat-sidebox{
    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;
  }
  .cat-sidebox-head{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    padding-bottom: 10px;
    border-bottom: 1px solid rgba(65, 64, 66, 0.1);
  }
  .cat-sidebox-h{
    font-size: 22px;
    color: #414042;
    line-height: 1.25;
    font-weight: 700;
  }
  .cat-sidebox-reset{
    font-size: 16px;
    font-weight: 400;
    color: #414042;
    line-height: 1.25;
    text-decoration: none;
  }
  .cat-sidebox-reset:hover{
    text-decoration: underline;
    text-underline-offset: 4px;
    -webkit-text-decoration-color: #60A4B4;
            text-decoration-color: #60A4B4;
  }
  .cat-sidebox-options{
    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;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(65, 64, 66, 0.1);
  }
  .cat-sidebox-option{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 400;
  }
  .cat-sidebox-option label{
    cursor: pointer;
  }
  .cat-sidebox-option:hover label{
    text-decoration: underline;
    -webkit-text-decoration-color: rgba(65, 64, 66, 0.1);
            text-decoration-color: rgba(65, 64, 66, 0.1);
    text-underline-offset: 4px;
  }
  .cat-sidebox-option input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #414042;
    background-color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; /* Remove default styling */
    border-radius: 50%; /* Make it circular */
    position: relative;
    outline: none;
  }
  .cat-sidebox-option input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 3px; /* Center the inner dot */
    left: 3px; /* Center the inner dot */
    width: 11px; /* Size of the inner dot */
    height: 11px;
    border-radius: 50%;
    background-color: #414042; /* Dot color when selected */
  }
}
@media (min-width: 1200px) {
  .cat-sidebox-dad .container{
    gap: 85px;
  }
  .cat-sidebox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
  }
  .newsh-box {
    gap: 35px;
  }
}

/* Pagination */
.pagination-dbwp{
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.nav-links{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.page-numbers{
  color: #414042;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
}
.page-numbers.current{
  color: #fff;
  padding: 4px 10px 3px 8px;
  background-color: #0C344A;
  margin-left: -5px;
  margin-right: -5px;
  border-radius: 5px;
  font-weight: 700;
}
.page-numbers.dots{
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 1024px) {
  .pagination-dbwp {
    left: 300px;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  .page-numbers{
    font-size: 18px;
  }
  .pagination-dbwp {
    left: 385px;
  }
}

/* FAQ */
.faq{
  margin-top: 50px;
  margin-bottom: 85px;
}
.faq .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;
}
.faq-h{
  margin-bottom: 30px;
}
.faq-repeater{
  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;
}
.faq-qabloc{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.faq-ques{
  color: #414042;
  font-weight: 700;
  font-size: 18px;
}
.faq-ans{
  color: rgba(65, 64, 66, 0.8);
}
.faq-ans a{
  color: #60A4B4;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;

  -webkit-transition: all 0.2s ease;

  -o-transition: all 0.2s ease;

  transition: all 0.2s ease;
}
.faq-ans a:hover{
  color: #414042;
}
.faq .primary_btn{
  margin-top: 25px;
}
@media (min-width: 744px) {
  .faq .container{
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .faq {
    margin-top: 80px;
    margin-bottom: 180px;
  }
  .faq-h {
    margin-bottom: 30px;
  }
  .faq-ques{
    font-size: 20px;
  }
  .faq-ans p{
    font-size: 18px;
    line-height: 25px;
  }
  .faq-repeater{
    gap: 30px;
  }
  .faq .primary_btn{
    margin-top: 40px;
  }
}

/* =====Blue Box Section===== */
.blue-box{
  margin-top: 50px;
  margin-bottom: 85px;
}
.blue-box .arrow-link,
.blue-box .primary_btn{
  margin-top: 0;
}
.blue-box-wrap{
  padding: 25px 20px 30px;
  background-color: #60A4B4;
  border-radius: 15px;
}
.blue-box-p_wrap{
  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;
  gap: 15px;
}
.blue-box-h_wrap .arrow-link,
.blue-box-h_wrap .primary_btn{
  display: none;
}
.blue-box-h{
  color: #fff;
  font-size: 32px;
  line-height: 1.375;
  margin-bottom: 10px;
}
.blue-box-p{
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .blue-box-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 50px 60px 55px;
  }
  .blue-box-h_wrap .arrow-link{
    display: inline-block;
    width: unset;
  }
  .blue-box-h_wrap .primary_btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .blue-box-p_wrap .arrow-link,
  .blue-box-p_wrap .primary_btn{
    display: none;
  }
  .blue-box-h_wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    -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;
    gap: 20px;
  }
  .blue-box-h{
    font-size: 39px;
    margin-bottom: 0;
  }
  .blue-box-p_wrap{
    margin-top: 10px;
  }
  .blue-box-p{
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .blue-box-h_wrap{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 420px;
            flex: 0 0 420px;
  }
  .blue-box-wrap{
    gap: 60px;
  }
  .blue-box {
    margin-top: 100px;
    margin-bottom: 160px;
  }
}


/* =====Exit-intent popup===== */
.ei-overlay{
  position: fixed;   /* change this */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999998;   /* make it safely above everything */
  background-color: rgba(12, 54, 74, 0.75);
}
.ei-god{
  position: fixed;
  z-index: 999999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 950px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.ei-img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.ei-wrap{
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 15px 15px 20px;
  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;
}
.ei-wrap .primary_btn{
  margin-top: 15px;
}
.ei-cross{
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  cursor: pointer;
}
.ei-god,
.ei-overlay{
  display: none;
}
@media (min-width: 744px) {
  .ei-god{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .ei-img{
    width: 50%;
    max-width: 450px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
  .ei-wrap{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }
}
@media (min-width: 1024px) {
  .ei-wrap{
    padding-left: 60px;
    padding-right: 60px;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
  }
  .ei-wrap .primary_btn {
    margin-top: 25px;
  }
  .ei-cross {
    top: -20px;
    right: -20px;
    width: 40px;
  }
  .ei-img{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}












