@import url("https://use.typekit.net/upi5yjm.css");

:root {
  --font-family-1: "open-sans", sans-serif;
  /*--font-family-2: 'libre-franklin', sans-serif;*/
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black: 900;
  --bg-light-green: #b0c7c6;
  --bg-dark-green: #1e4d44;
  --bg-off-green: #dbe6e5;
  --facebook-button: #3b5998;
  --twitter-button: #1da1f2;
  --instagram-button: #d600a9;
  --youtube-button: #ff0000;
  --linkedin-button: #0072b1;
}

body,
html {
  height: 100%;
}

body {
  font-family: var(--font-family-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: inherit;
  display: flex;
  flex-direction: column;
  margin: 0px;
}

.container {
  max-width: 1200px;
  width: 100%;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

/* FULL MENU CSS */
#full-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-dark-green);
  opacity: 0;
  transition: none;
}

#full-menu.open {
  z-index: 1031;
  opacity: 1;
  transition: none;
}

.menu-active-lang {
  position: absolute;
  right: 15px;
  top: 50px;
  z-index: 1033;
  color: #fff !important;
}

.menu-items li {
  list-style: none;
}

.menu-items li:not(:last-child) {
  margin-bottom: 12px;
}

.menu-items > li a {
  color: #fff;
  letter-spacing: 0.01em;
  font-weight: var(--semi-bold);
  font-size: 24px;
  line-height: 48px;
  position: relative;
}

.menu-items li a:hover {
  opacity: 1;
  text-decoration: none;
}

.main-menu {
  margin-bottom: 0px;
}

/*.main-menu li:not(:last-child) {
    line-height: 32px;
    margin-right: 58px;
}

.main-menu li:not(:last-child) a {
    font-weight: var(--medium);
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 30px;
    color: #000 !important;
    text-transform: uppercase;
}

.main-menu li:not(:last-child) a:hover {
    opacity: 1;
    text-decoration: none;
}*/

/*.mobile-header {
    padding: 20px 15px;
    z-index: 4;
}

.mobile-header::before {
    left: 0;
    height: 69.96px;
}

.mobile-header.mho {
    position: static;
}*/

/* MENU ICON */
/*#mobile-main-menu-btn.active {
    position: relative;
    z-index: 1032;
    top: 0;
    right: 0;
}*/

#mobile-main-menu-btn {
  margin-left: auto;
}

.menu-btn {
  /*height: 33px;*/
  height: auto;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  right: 0;
  top: 0px;
}

.menu-btn:focus,
.menu-btn:visited {
  outline: none !important;
  box-shadow: none !important;
}

.scrolled .menu-btn {
  opacity: 1;
  z-index: 2;
}

.no-scroll .menu-btn {
  opacity: 1;
}

.menu-btn:hover {
  cursor: pointer;
}

.menu-span {
  padding: 0;
  position: relative;
  display: block;
  width: 36px;
  height: 2px;
  margin: 0 auto;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: var(--bg-dark-green);
  color: inherit;
  font-size: 0;
  transition: 0.35s;
}

.menu-span:after,
.menu-span:before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--bg-dark-green);
  content: "";
  transition: transform 0.35s;
}

.active .menu-span,
.active .menu-span:after,
.active .menu-span:before {
  background: #000 !important;
}

.menu-span:before {
  transform: translate(-50%, -10px);
}

.menu-span:after {
  transform: translate(-50%, 10px);
}

.menu-span:before,
.menu-span:after {
  transform-origin: 0% 0%;
}

.menu-btn.active .menu-span {
  background: 0 0;
}

.menu-btn.active .menu-span:before {
  transform: translate(-50%, 0) rotate(-45deg) scaleX(0.7);
}

.menu-btn.active .menu-span:after {
  transform: translate(-50%, 0) rotate(45deg) scaleX(0.7);
}

/* NO SCROLL CSS */
.no-scroll {
  height: 20vh;
  overflow: hidden;
}

/* Header CSS */
.landing-header {
  background-color: #fff;
  padding: 20px 0px;
  position: relative;
}

.main-menu {
  margin-bottom: 0px;
  text-align: right;
}

.main-menu li:not(:last-child) {
  margin-right: 18px;
}

.cbo-link.medium {
  font-weight: var(--semi-bold);
  font-size: 12px;
  letter-spacing: 0.09em;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--bg-dark-green);
  opacity: 0.8;
}

.main-menu li a {
  font-weight: var(--semi-bold);
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 27px;
  color: var(--bg-dark-green);
}

.main-menu li a i {
  font-size: 14px;
  margin-left: 6px;
}

.dropdown-toggle::after {
  content: none;
  /* font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    width: 12.5px;
    height: 8.07px;
    border: none;
    margin-left: 5px;
    vertical-align: baseline;*/
}

.main-menu li:not(:last-child) a:hover {
  text-decoration: none;
}

.dropdown-menu {
  top: 25px !important;
  right: -5px !important;
  width: 100%;
  max-width: 180px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--bg-dark-green);
  padding: 21px 9px 22px;
}

.dropdown-item {
  font-size: 16px !important;
  line-height: 19px;
  text-align: left;
  padding: 2px 10px 3px;
}

.dropdown-item:not(:last-child) {
  margin-bottom: 4px;
}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
  border-radius: 4px;
  background: var(--bg-off-green);
}

.mobile-header {
  display: none;
  background-color: #fff;
  padding: 10px 0px 14px;
  position: relative;
}

.mobile-header ul {
  margin-bottom: 0px;
  text-align: right;
}

.mobile-header ul li a {
  color: #fff;
}

.home-hero {
  position: relative;
  padding: 78px 0px 120px;
  background-color: var(--bg-light-green);
  /* padding: 78px 0px 62px;
  background-image: url(../images/new-hero-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;*/
}

.home-hero::before {
  content: " ";
  width: 100%;
  height: calc(100% - 110px);
  background-image: url(../images/home-hero-before.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left center;
  position: absolute;
  top: 0px;
  right: 0px;
  /*z-index: -1;*/
}

.hero {
  position: relative;
  background-color: var(--bg-off-green);
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/hero-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 121px;
  height: 100%;
  background-image: url(../images/hero-triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: 1;
}

.hero.inner .row {
  min-height: 380px;
  align-items: center;
}

.hero [class*="col-"] {
  padding-top: 58px;
  padding-bottom: 126px;
}

.main-heading {
  font-weight: var(--regular);
  font-size: 44px;
  letter-spacing: 0.03em;
  line-height: 54px;
  color: #000;
  max-width: 585px;
  margin-bottom: 23px;
}

/*.home-hero .main-heading {
    font-size: 100px;
    line-height: 100px;
}*/

.home-hero p {
  font-weight: var(--regular);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #000;
  opacity: 0.9;
  max-width: 556px;
  margin-bottom: 0px;
}

.home-hero p:not(:last-child) {
  margin-bottom: 21px;
}

.home-hero p:last-child {
  font-weight: var(--semi-bold);
  line-height: 28px;
  max-width: 490px;
}

/*.home-hero p strong {
}*/

.mccp-home-hero-image img {
  display: block;
  max-width: 500px;
  position: relative;
  margin-right: -50px;
  margin-left: auto;
}

.hero p {
  font-weight: var(--regular);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #000;
  opacity: 0.9;
  max-width: 530px;
  margin-bottom: 0px;
}

.hero p:not(:last-child) {
  margin-bottom: 26px;
}

.resources {
  background-color: transparent;
  position: relative;
  padding-bottom: 118px;
}

.resources::before {
  content: " ";
  width: 100%;
  min-height: 442px;
  background: linear-gradient(rgba(219, 230, 229, 0.5) 0%, #fff 100%);
  position: absolute;
  top: 90px;
  left: 0;
}

.gl-page-content {
  position: relative;
  margin-top: -90px;
}

.box {
  background-color: var(--bg-dark-green);
  padding: 51px 51px 51px 50px;
  margin-bottom: 40px;
  height: 180px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.box .media-body {
  padding-right: 15px;
}

.box i {
  font-size: 46px;
  letter-spacing: 0.02em;
  line-height: 27px;
  text-align: center;
  color: #fff;
  opacity: 0.6;
}

.box-title {
  font-weight: var(--semi-bold);
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0;
}

.box-link:hover .box {
  background-color: #f89921;
  border-color: #f89921;
}

.box-link,
.box-link * {
  transition: 0.2s ease-in-out;
}

.box-link:hover,
.box-link:hover * {
  color: #fff;
  /*opacity: 1;*/
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.mccp-question h3 {
  font-weight: var(--regular);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #000;
  margin-bottom: 18px;
}

.mccp-question p {
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 28px;
  color: #000000;
  margin-bottom: 0px;
}

.mccp-question p a {
  display: block;
  width: max-content;
  font-weight: var(--bold);
  text-decoration: underline;
  color: var(--bg-dark-green);
  margin: 0px auto;
}

/* Inner Page CSS */
.hero.inner::before {
  background-position: top center;
}

.hero.inner [class*="col-"] {
  padding-top: 66px;
  padding-bottom: 83px;
}

.hero.inner .main-heading {
  max-width: 430px;
}

.all-assets {
  padding: 60px 0px 90px;
  background-color: var(--bg-off-white);
}

.profile-photo {
  position: relative;
  padding: 54px 0px 95px;
}

.profile-photo::before {
  content: " ";
  width: 100%;
  min-height: 442px;
  background: linear-gradient(rgba(219, 230, 229, 0.5) 0%, #fff 100%);
  position: absolute;
  top: 0px;
  left: 0;
}

.profile-photo a:hover {
  text-decoration: none;
}

.section-heading {
  font-weight: var(--semi-bold);
  font-size: 40px;
  letter-spacing: 0.03em;
  line-height: 50px;
  color: #000;
  /*text-transform: uppercase;*/
  margin-bottom: 30px;
}

.asset-holder {
  margin-bottom: 45px;
  cursor: pointer;
}

.asset-holder span {
  font-weight: var(--bold);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 28px;
  color: #03115b;
  margin-top: 5px;
  display: block;
}

.asset-holder span i {
  font-size: 16px;
}

.resources.inner {
  padding: 54px 0px 90px;
}

.resources.inner::before {
  top: 0px;
}

.resources.inner a:hover {
  text-decoration: none;
}

.resources.inner .asset-holder {
  margin-bottom: 30px;
}

.asset-holder-box {
  background-color: var(--bg-dark-green);
  border-radius: 2px;
  padding: 38px 41px 40px 40px;
  min-height: 240px;
  background-image: url(../images/lct-icon.png);
  background-repeat: no-repeat;
  background-size: 58px auto;
  background-position: calc(100% - 40px) calc(100% - 39px);
}

.resources.inner a:hover .asset-holder-box {
  background-color: var(--bg-off-green);
  background-image: url(../images/dark-lct-icon.png);
}

.asset-holder-box h2 {
  font-weight: var(--bold);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 36px;
  max-width: 420px;
  color: #fff;
}

.resources.inner a:hover .asset-holder-box h2 {
  color: var(--bg-dark-green);
}

.draft-step-btn {
  border-radius: 2px;
  background: var(--bg-dark-green);
  font-family: var(--font-famliy-2);
  font-weight: var(--bold);
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 46px;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 60px;
  position: relative;
  border: none;
}

.draft-step-btn:focus {
  outline: none;
  box-shadow: none;
  color: #fff;
}

.draft-step-btn span {
  color: var(--bg-light-green);
  position: absolute;
  left: 20px;
  top: 8px;
}

.draft-step-btn span i {
  font-size: 20px;
}

.draft-step-btn:hover {
  background: var(--bg-dark-green) !important;
  color: #ffffff;
}

.draft-step-btn:hover span i {
  color: #ffffff;
}

.h-101 {
  height: calc(100% + 90px) !important;
}

.profile-photo .draft-step-btn {
  color: #ffffff;
}

.profile-photo .draft-step-btn span {
  color: #ffffff;
}

/*----- social share template ------*/
.social-holder .social-media-wrap {
  padding: 19px 20px 19px;
  border-radius: 0px 0px 2px 2px;
  background: #fff;
  border: 1px solid;
  border-top: none;
}

.facebook-post-holder .social-media-wrap {
  border-color: #5172fc;
}

.facebook-post-holder .social-media-wrap,
.instagram-post-holder .social-media-wrap {
  min-height: 231px;
  display: flex;
  flex-direction: column;
}

.social-holder .social-media-wrap h6 {
  font-weight: var(--bold);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 6px;
}

.social-holder .social-media-wrap p {
  font-family: var(--font-famliy-2);
  font-weight: var(--regular);
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  color: #000;
  max-width: 480px;
  flex-grow: 1;
}

.facebook-btn {
  background-color: var(--facebook-button);
}

.social-holder .social-media-wrap .draft-step-btn span {
  margin-top: 0px;
  line-height: 34px;
}

.all-assets a:hover .draft-step-btn span {
  color: #fff !important;
}

.twitter-heading {
  background-color: #1da1f2;
}

.twitter-btn {
  background-color: var(--twitter-button) !important;
}

.twitter-post-holder .social-media-wrap {
  border-color: #59c5ef;
  min-height: 275px;
  display: flex;
  flex-direction: column;
}

.instagram-heading {
  background: #d600a9;
}

.instagram-btn {
  background: var(--instagram-button) !important;
}

.instagram-post-holder .social-media-wrap {
  border-color: #d600a9;
}

.hid-field {
  position: absolute;
  left: -999999px;
}

.social-holder .social-media-wrap .draft-step-btn span {
  top: 16px;
}

.twitter-heading,
.instagram-heading {
  margin-top: 23px;
}

.draft-head {
  background-color: var(--bg-light-green);
  padding-top: 126px;
  padding-bottom: 199px;
  position: relative;
}

.back-post,
.back-post:visited {
  font-size: 40px;
  position: absolute;
  top: 9px;
  left: 30px;
  display: block;
  color: #000 !important;
  opacity: 0.8;
}

.back-post:hover {
  color: var(--bg-dark-green) !important;
}

.draft-head .main-heading {
  margin-bottom: 0px;
}

.draft-head p {
  font-weight: var(--medium);
  font-size: 21px;
  letter-spacing: 0.02em;
  line-height: 30px;
  color: #000;
  opacity: 0.9;
  margin-bottom: 0px;
}

.draft-steps-box-holder {
  padding-bottom: 141px;
  background: linear-gradient(rgba(219, 230, 229, 0.5) 0%, #fff 100%);
}

.draft-step-box {
  border-radius: 2px;
  background: #fff;
  padding: 25px 28px 20px;
  border: 1px solid var(--bg-dark-green);
  position: relative;
  margin-top: -97px;
  display: flex;
  flex-direction: column;
  min-height: 374px;
}

.draft-step-number {
  font-weight: var(--medium);
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 28px;
  color: var(--bg-dark-green);
  margin-bottom: 6px;
}

.draft-step-heading {
  font-weight: var(--semi-bold);
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 28px;
  color: #000;
  margin-bottom: 18px;
}

.draft-step-content {
  max-width: 306px;
  font-weight: var(--regular);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 24px;
  color: #000;
  opacity: 0.9;
  flex-grow: 1;
}

.draft-step-image-box {
  width: 100%;
  /*height: 100%;*/
  /*max-height: 170px;*/
  border-radius: 4px;
  margin-bottom: 20px;
}

.return-media-post {
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 16px;
  text-align: center;
  color: #fff;
  display: block;
  margin: 49px 0px 0px;
}

.return-media-post i {
  margin-right: 10px;
}

.return-media-post:hover {
  color: var(--bg-light-green);
  text-decoration: none;
}

/* Footer CSS */
footer {
  flex-shrink: 0;
}

footer {
  padding: 55px 0px 30px;
  background-image: url(../images/bg-footer.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top left;
}

footer .logo-link img {
  margin-bottom: 11px;
}

.sv-copyright {
  font-weight: var(--regular);
  font-size: 11px;
  letter-spacing: 0.09em;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  color: var(--bg-dark-green);
  margin-bottom: 0px;
  opacity: 0.8;
}

.social-link {
  text-align: right;
  margin-bottom: 0px;
}

.social-link li {
}

.social-link li:not(:last-child) {
  margin-right: 25px;
}

.social-link li a {
  font-size: 46px;
  letter-spacing: 0.02em;
  line-height: 27px;
  color: var(--bg-dark-green);
}

.twitter:hover {
  color: var(--twitter-button);
}

.instagram:hover {
  color: var(--instagram-button);
}

.facebook:hover {
  color: var(--facebook-button);
}

.linkedin:hover {
  color: var(--linkedin-button);
}

.youtube:hover {
  color: var(--youtube-button);
}

@media (min-width: 767px) {
  .cc-center {
    height: 100%;
  }
}

@media (min-width: 661px) {
  .full-menu-link {
    display: none;
  }
}

@media (max-width: 1300px) {
  .mccp-home-hero-image img {
    margin-right: 0px;
  }
}

@media (max-width: 992px) {
  /*.landing-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }*/

  .landing-header .logo-link img {
    max-width: 150px;
  }

  /*#mobile-main-menu-btn, 
    #mobile-main-menu-btn.active {
        position: absolute;
        right: 15px;
        top: 24px;
    }*/

  .menu-span {
    width: 30px;
  }

  .home-hero {
    padding: 60px 0px 52px;
  }

  .home-hero::before {
    background-size: cover;
    background-position: right center;
  }

  /*.home-hero::before {
        content: none;
    }*/

  .hero:after,
  .hero:before {
    content: none;
  }

  .main-heading {
    font-size: 40px;
    line-height: 50px;
    max-width: 100% !important;
  }

  .home-hero p {
    font-size: 20px;
    line-height: 28px;
    max-width: 100%;
  }

  .hero p:not(:last-child) {
    margin-bottom: 20px;
  }

  .home-hero p:not(:last-child) {
    margin-bottom: 20px;
  }

  .home-hero p:last-child {
    max-width: 100%;
  }

  .mccp-home-hero-image img {
    max-width: 550px;
    margin: 40px auto;
  }

  .resources {
    padding-bottom: 80px;
  }

  .resources::before {
    top: 60px;
  }

  .gl-page-content {
    margin-top: -60px;
  }

  .box {
    padding: 40px 35px;
    margin-bottom: 20px;
    height: 130px;
  }

  .box i {
    font-size: 40px;
    letter-spacing: 0.02em;
    line-height: 27px;
  }

  .mccp-question h3 {
    margin: 15px 0px 10px;
  }

  .hero.inner [class*="col-"] {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero.inner .row {
    min-height: 250px;
  }

  .hero.inner p {
    max-width: 100%;
  }

  .profile-photo {
    padding: 40px 0px 23px;
  }

  .asset-holder {
    margin-bottom: 30px;
  }

  .social-holder .social-media-wrap {
    padding: 15px;
  }

  .social-holder .social-media-wrap h6 {
    margin-bottom: 2px;
  }

  .resources.inner {
    padding: 40px 0px 40px;
  }

  .section-heading {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  .resources.inner .asset-holder {
    margin-bottom: 20px;
  }

  .asset-holder-box {
    padding: 30px 30px;
    min-height: 220px;
    background-position: calc(100% - 29px) calc(100% - 30px);
  }

  .asset-holder-box h2 {
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 34px;
  }

  .draft-head {
    padding-top: 60px;
    padding-bottom: 95px;
  }

  .draft-head .main-heading {
    margin-bottom: 20px;
  }

  .draft-head p {
    font-size: 20px;
    line-height: 28px;
  }

  .draft-steps-box-holder {
    padding-bottom: 40px;
  }

  .h-101 {
    height: auto !important;
  }

  .draft-step-box {
    padding: 20px;
    position: relative;
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .draft-step-one {
    margin-top: -50px;
  }

  .back-post,
  .back-post:visited {
    top: 0;
    left: 15px;
  }

  .draft-step-content {
    max-width: 100%;
  }

  .return-media-post {
    margin: 10px 0px 0px;
  }

  footer {
    padding: 40px 0px 20px;
    background-size: cover;
  }

  footer .logo-link img {
    margin-bottom: 6px;
  }

  .social-link li:not(:last-child) {
    margin-right: 20px;
  }

  .social-link li a {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  #full-menu {
    height: 100vh;
    top: 0;
  }

  .cc-center {
    position: absolute;
    width: 100%;
    top: calc(50% + 35px);
    left: 50%;
    transform: translate(-50%, calc(-50% - 50px));
  }

  .main-menu li:not(:last-child) {
    margin-right: 4px;
  }

  .hero [class*="col-"] {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .landing-header {
    padding: 15px 0px;
  }

  .landing-header .logo-link img {
    max-width: 120px;
  }

  .main-heading {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 16px;
    line-height: 24px;
  }

  .hero p:not(:last-child) {
    margin-bottom: 15px;
  }

  .home-hero {
    padding: 45px 0px 80px;
  }

  .home-hero p {
    font-size: 16px;
    line-height: 24px;
  }

  .home-hero p:not(:last-child) {
    margin-bottom: 15px;
  }

  .mccp-home-hero-image img {
    max-width: 100%;
    margin: 20px 0px 0px;
  }

  .resources {
    padding-bottom: 60px;
  }

  .mccp-question h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 10px 0px 10px;
  }

  .mccp-question p {
    font-size: 16px;
    line-height: 26px;
  }

  .mccp-question p a {
    display: inline;
  }

  .gl-page-content {
    margin-top: -50px;
  }

  .box {
    padding: 30px 20px;
    height: 100px;
  }

  .box-title {
    font-size: 22px;
    line-height: 25px;
  }

  .box i {
    font-size: 30px;
    letter-spacing: 0.02em;
    line-height: 27px;
  }

  .hero.inner [class*="col-"] {
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .social-holder .social-media-wrap p {
    font-size: 14px;
    line-height: 22px;
  }

  .resources.inner {
    padding: 30px 0px 30px;
  }

  .section-heading {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
  }

  .asset-holder-box {
    padding: 25px 20px;
    min-height: 210px;
    background-size: 55px auto;
    background-position: calc(100% - 19px) calc(100% - 25px);
  }

  .asset-holder-box h2 {
    font-size: 21px;
    line-height: 31px;
  }

  .draft-head {
    padding-bottom: 75px;
  }

  .draft-head .main-heading {
    margin-bottom: 15px;
  }

  .draft-head p {
    font-size: 16px;
    line-height: 24px;
  }

  .draft-step-content {
    font-size: 16px;
    line-height: 24px;
  }

  .draft-step-heading {
    margin-bottom: 15px;
  }

  footer {
    padding: 30px 0px 20px;
    background-size: cover;
    background-position: top center;
  }

  footer .logo-link img {
    margin: 0px auto 6px;
    display: block;
  }

  .sv-copyright {
    text-align: center;
    margin-bottom: 20px;
  }

  .social-link {
    text-align: center;
  }

  .social-link li a {
    font-size: 26px;
  }
}

@media (max-width: 660px) {
  .landing-header .logo-link img {
    max-width: 100px;
  }

  .dropdown {
    display: none;
  }

  .cbo-link.medium {
    font-size: 10px;
  }

  .full-menu-link {
    display: inline-block;
    font-weight: var(--semi-bold);
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--bg-dark-green);
  }
}

.main-menu {
  display: none;
}

.bd_asset_holder_warpper {
  min-height: 210px;
  margin-bottom: 40px;
}

.bd_asset_holder_box_warpper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.bd_asset_holder_box {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: var(--bg-dark-green);
  transition: 0.2s ease-in-out;
}

.bd_asset_holder_box h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%; /* 31.2px */
  max-width: 384px;
  margin-bottom: 10px;
  color: #fff;
  flex-grow: 1;
}

.bd_asset_holder_box i {
  font-size: 28px;
  line-height: normal;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: right;
  opacity: 0.6;
}

/*.bd_asset_holder_box:hover {
  background-color: #38574f;
  transition: 0.2s ease-in-out;
}*/

/*.bd_asset_holder_box:hover i {
    opacity: 1;
}*/

.bd_lang_bar {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 20px;
  padding-inline: 30px;
  background-color: #dde6e5;
}

.bd_lang_list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
}

.bd_lang_list li {
}

.bd_lang_list li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%; /* 20.8px */
  color: var(--bg-dark-green);
  text-decoration: underline;
}

.bd_lang_list li a:hover {
  color: #eb7f00;
  text-decoration: underline !important;
}

.bd_lang_bar span {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%; /* 20.8px */
  color: var(--bg-dark-green);
  display: block;
  margin-bottom: 10px;
}

/*.bd_lang_bar select {
  width: 100%;
  height: 40px;
  border-radius: 2px;
  padding-inline: 15px;
  background-color: #fff;
  border: 1px solid var(--bg-dark-green);
  font-weight: 600;
  font-size: 16px;
  line-height: 38px;
  color: var(--bg-dark-green);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' viewBox='0 0 13 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.81612 6.43359L1.31613 1.93359C0.999719 1.61719 0.89425 1.125 1.07003 0.703125C1.24581 0.28125 1.66769 0 2.12472 0H11.1247C11.5817 0 11.9685 0.28125 12.1442 0.703125C12.32 1.125 12.2146 1.61719 11.8982 1.93359L7.39816 6.43359C6.97628 6.89062 6.238 6.89062 5.81612 6.43359Z' fill='%231E4D44'/%3E%3C/svg%3E%0A");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 15px center;
  outline: none !important;
  box-shadow: none !important;
}*/

.bd_lang_bar select {
    width: 100%;
    border-radius: 2px;
    padding-bottom: 4px;
    padding-inline: 0 20px;
    background-color: transparent;
    border: none;
    border-bottom: 4px solid var(--bg-dark-green);
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    color: var(--bg-dark-green);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.995' height='9.684' viewBox='0 0 14.995 9.684'%3E%3Cpath id='Path_1579' data-name='Path 1579' d='M-8.3-4.486a1.115,1.115,0,0,0,1.584,0l6.375-6.375a1.12,1.12,0,0,0,0-1.589L-1.4-13.509a1.12,1.12,0,0,0-1.589,0L-7.5-8.991l-4.519-4.519a1.12,1.12,0,0,0-1.589,0l-1.059,1.059a1.12,1.12,0,0,0,0,1.589Z' transform='translate(15.002 13.84)' fill='%231E4D44'/%3E%3C/svg%3E%0A");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right center;
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 991px) {
  .bd_asset_holder_warpper {
  }

  .bd_asset_holder_box {
    padding: 25px;
  }

  .bd_lang_bar {
    padding-inline: 25px;
  }

  .bd_lang_list {
    gap: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .bd_asset_holder_warpper {
    min-height: inherit;
    margin-bottom: 30px;
  }

  .bd_asset_holder_box {
    padding: 25px 18px;
  }

  .bd_asset_holder_box h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .bd_asset_holder_box i {
    font-size: 24px;
  }

  .bd_lang_bar {
    padding-inline: 18px;
  }

  .bd_lang_list {
    gap: 10px 15px;
  }

  .bd_lang_bar select {
    background-size: 13px;
  }
}
