:root {
  --ff1: proxima-nova-condensed, sans-serif;
  --ff2: harfang-pro, serif;
  --ff3: proxima-nova, sans-serif;
  --ff4: indivisible, sans-serif;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-med: 600;
  --bold: 700;
  --dark-blue: #20287D;
  --light-blue: #5da8d8;
  --orange: #ff9b0b;
}
html {
  scroll-behavior: smooth;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*  background-color: var(--dark-blue);*/
}

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

header .container,
.wrapper {
  max-width: 1640px;
}

header {
  padding: 0px 15px;
  border-bottom: 1px solid #ffffff;
  background-color: var(--dark-blue);
}

.logo {
  margin: 20px 0;
}

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

.menu-btn {
  display: block;
  width: auto;
  height: 36px;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  right: 0;
  top: 0;
  border-radius: 2px;
  margin-left: auto;
}

.menu-btn:visited,
.menu-btn:focus {
  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;
  cursor: pointer;
  /* background: #001569; */
  background: #ffffff;
  color: inherit;
  font-size: 0;
  transition: 0.35s;
}

.menu-span:before,
.menu-span:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: transform 0.35s;
}

.active .menu-span:before,
.active .menu-span:after,
.active .menu-span {
  background: #fff !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: transparent;
}

.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);
}

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

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

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

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

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

.menu-items li a:hover {
  color: #fff;
  text-decoration: underline;
}

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

.wrapper {
  margin: 30px auto 0;
  padding-top: 130px;
  padding-bottom: 100px;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  /*width: calc(100% - 30px);*/
  width: calc(100% - 30px);
}

.main-menu {
  text-align: right;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: end;
}

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

.menu-link {
  font-size: 26px;
  line-height: 36px;
  color: #fff;
}

.menu-link:hover {
  color: #24E0FF;
}

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

  header .container {
    /*width: 100%;*/
    width: calc(100% - 70px);
  }

  .wrapper {
    width: calc(100% - 100px);
    padding-left: 15px;
    padding-right: 15px;
  }

  .accordion .card-body {
    padding-right: calc(1.25rem + 60px);
  }
}

.hero-content {
  margin-bottom: 58px;
}

.hero-content h1 {
  font-family: var(--ff2);
  font-size: 48px;
  color: #000;
  margin-bottom: calc(0.5rem + 30px);
}

.hero-content p {
  font-family: var(--ff2);
  font-weight: var(--light);
  font-size: 24px;
  line-height: 32px;
  color: #000;
}

.text-legal {
    margin-top: 0;
	max-width: 100%;
	margin-right: 10px;
  }

.sec-heading {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 22px;
  line-height: 36px;
  color: var(--dark-blue);
  text-transform: capitalize;
  /*  text-transform: uppercase;*/
}

.filter-heading {
  margin-bottom: calc(0.5rem + 22px);
}

.df-select {
  border-radius: 0;
  border: none;
  opacity: 0;
  border-bottom: 3px solid;
  font-weight: var(--bold);
  font-size: 18px;
  line-height: 26px;
  color: #434343;
  /*text-transform: uppercase;*/
  padding-left: 0;
  margin-bottom: 30px;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  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='%23ff9a00'/%3E%3C/svg%3E%0A");
  background-position: right center;
  background-repeat: no-repeat;
}

.df-date {
  background-position: calc(100% - 11px) center;
  background-size: 14px 10px;
  background-repeat: no-repeat;
  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='%23ff9a00'/%3E%3C/svg%3E%0A");
}

.df-select:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--orange);
}

.ac-heading {
  margin-bottom: calc(0.5rem + 18px);
}

.action-box {
  /*  background-color: #e5eaec;*/
  background-color: #e8f2f4;
  border-radius: 4px;
  padding: 38px 40px 41px;
  margin-bottom: 45px;
}

.ab-title {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 32px;
  line-height: 40px;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.ab-title span {
  max-width: 960px;
  display: inline-block;
}

.ab-title i {
  font-size: 36px;
  line-height: 42px;
  float: right;
  color: #24E0FF;
}

.action-box .pill-list {
  margin-bottom: calc(1rem + 14px);
}

.action-box .pill-list li,
.tooltip-content .pill-list li {
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-blue);
  background-color: #47e3ff;
  border-radius: 24px;
  padding: 0px 15px;
  text-transform: uppercase;
}

li.list-inline-item.white {
  background-color: #fff;
  line-height: 23px;
  border-radius: 2px;
  color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
}
li.list-inline-item.blue {
  background-color: var(--dark-blue);
  line-height: 23px;
  border-radius: 2px;
  color: #fff;
  border: 1px solid var(--dark-blue);
}

.action-box .pill-list li.active {
  background-color: var(--dark-blue);
}

.ac-details ul {
  border-top: 1px solid #06304933;
  border-bottom: 1px solid #06304933;
  margin: 0;
  padding: 6px 15px 5px;
  margin-bottom: 40px;
}

.ac-details ul li {
  font-weight: var(--regular);
  font-size: 18px;
  line-height: 60px;
  color: var(--dark-blue);
  text-transform: uppercase;
}

.ac-details ul li strong {
  font-weight: var(--semi-med);
  margin-left: 6px;
}

.ac-details ul li i {
  font-size: 16px;
  margin-left: 2px;
}

.ac-details ul li:not(:last-child) {
  margin-right: 17px;
}

.steps {
  display: block;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 0;
}

.steps li {
  display: inline-block;
  /*height: 110px;*/
  height: 90px;
  width: 33.3333%;
  margin: 0;
  padding: 19px 30px;
  font-size: 16px;
  /*line-height: 36px;*/
  text-transform: uppercase;
  position: relative;
}

.steps li h4 {
  display: block;
  font-weight: var(--semi-med);
  font-size: 22px;
  margin-bottom: calc(0.5rem - 15px);
  /*line-height: 36px;*/
}

.steps li h4 i {
  font-size: 20px;
}

.steps li h4 i:hover {
  color: #150b0b;
  /*cursor: pointer;*/
}

.steps li span {
  font-weight: var(--semi-med);
  font-size: 16px;
  line-height: 36px;
  display: none;
}

.steps li:first-child {
  border-radius: 2px 0 0 2px;
}

.steps li:not(:last-child) {
  color: #fff;
}

.steps li:last-child {
  color: var(--dark-blue);
}

/*.steps li:first-child, .steps li:first-child:after*/
.steps li:first-child.c-,
.steps li:first-child.c-:after {
  background-color: #d87474;
}
.steps li.c-57A71D,
.steps li.c-57A71D:after {
  background-color: #57a71d;
  color: #fff;
}
.steps li.c-E7C659,
.steps li.c-E7C659:after {
  background-color: #e7c041;
  color: #fff;
}
.steps li.c-D87474,
.steps li.c-D87474:after {
  background-color: #d87474;
  color: #fff;
}
.steps li.c-FFFFFF,
.steps li.c-FFFFFF:after {
  background-color: #ffffff;
  color: var(--dark-blue);
}

.steps li.c-CAD4D9,
.steps li.c-CAD4D9:after {
  background-color: #cad4d9;
  color: var(--dark-blue);
}

.steps li.c-:nth-child(2),
.steps li.c-:nth-child(2):after {
  background-color: #57a71d;
}

.steps li.c-:last-child {
  background-color: #fff;
}

.steps li:first-child:before {
  /*content: "";*/
  background: transparent;
  background: linear-gradient(
    90deg,
    rgba(216, 116, 116, 1) 0%,
    rgba(216, 116, 116, 1) 38%,
    rgba(87, 167, 29, 1) 38%,
    rgba(87, 167, 29, 1) 100%
  );
  height: 100%;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0px;
}

.steps li:nth-child(2):before {
  /*content: "";*/
  background: transparent;
  background: linear-gradient(
    90deg,
    rgba(87, 167, 29, 1) 0%,
    rgba(87, 167, 29, 1) 38%,
    #fff 38%,
    #fff 100%
  );
  height: 100%;
  width: 40px;
  position: absolute;
  top: 0;
  right: 0px;
}

.steps li:not(:last-child):after {
  content: '';
  height: 40px;
  width: 20px;
  position: absolute;
  top: calc(50% - 20px);
  right: -10px;
  z-index: 1;
}

.steps li:not(:first-child) div:before {
  content: '';
  /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='40' height='110' viewBox='0 0 40 110'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Cpath id='arrow' d='M167.65.5h17.5l22.5,55-22.5,55h-17.5l22.5-55Z' transform='translate(955.35 1978.5)' fill='%23063049'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-2'%3E%3Crect id='Rectangle_863' data-name='Rectangle 863' width='1' height='1' transform='translate(1140 2088)' fill='%23063049'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='arrow-2' data-name='arrow' transform='translate(-1123 -1979)'%3E%3Cpath id='arrow-3' data-name='arrow' d='M167.65.5h17.5l22.5,55-22.5,55h-17.5l22.5-55Z' transform='translate(955.35 1978.5)' fill='%23063049'/%3E%3Cg id='Mask_Group_1' data-name='Mask Group 1' clip-path='url(%23clip-path)'%3E%3Crect id='Rectangle_862' data-name='Rectangle 862' width='1' height='1' transform='translate(1140 1979)' fill='%23063049'/%3E%3C/g%3E%3Cg id='Mask_Group_2' data-name='Mask Group 2' clip-path='url(%23clip-path-2)'%3E%3Cpath id='arrow-4' data-name='arrow' d='M167.65.5h17.5l22.5,55-22.5,55h-17.5l22.5-55Z' transform='translate(955.35 1978.5)' fill='%23063049'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");*/
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='110' viewBox='0 0 40 110'%3E%3Cpath id='Path_1579' data-name='Path 1579' d='M8814,2033h17.757L8854,2088.041,8831.589,2143H8814.16l22.575-54.959Z' transform='translate(-8813.999 -2033)' fill='%23063049'/%3E%3C/svg%3E%0A");
  /*background-image: url('../images/arrow.svg');*/
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 40px;
  position: absolute;
  top: 0;
  left: -15px;
  z-index: 2;
}

.steps li:not(:first-child) {
  padding: 19px 30px 19px 50px;
}

.ac-rm {
  font-weight: var(--semi-med);
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 26px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  background-color: var(--dark-blue);
  border-radius: 2px;
  padding: 0.375rem 41px;
}

.ac-rm:hover {
  background-color: #ff9b0b;
  color: #fff;
}

.df-tooltip {
  display: inline;
  cursor: pointer;
  margin-left: 2px;
}

.home-wrapper {
  background-color: var(--dark-blue);
}

.home-hero {
  padding: 96px 0px 0px;
  position: relative;
}

.hero-question-icon {
    font-size: 26px;
    line-height: 36px;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 30px;
}

.hero-question-icon:hover {
    color: #24E0FF;
}

.df-eyebrow {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 24px;
  line-height: 36px;
  color: #24E0FF;
  margin-bottom: 22px;
}

.home-hero h1 {
  font-family: var(--ff4);
  font-weight: var(--bold);
  font-size: 48px;
  line-height: 64px;
  color: #fff;
  max-width: 583px;
  margin-bottom: 37px;
}

.home-hero h1 span {
  display: inline;
  color: var(--dark-blue);
  padding: 0px 7px 0px 7px;
  margin-left: 7px;
  position: relative;
  background-color: #47e3ff;
}

.home-hero p {
  font-family: var(--ff4);
  font-weight: var(--regular);
  font-size: 20px;
  line-height: 32px;
  text-align: left;
  color: #fff;
  max-width: 670px;
  margin-bottom: 0px;
}

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

.df-home-boxes {
  padding: 40px 0px 150px;
}

.df-home-boxes h6 {
    font-family: var(--ff4);
    font-weight: var(--bold);
    font-size: 20px;
    line-height: 32px;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.df-home-content-box-warpper {
    min-height: 419px;
    margin-bottom: 40px;
}

/* .df-home-content-box-warpper:not(:last-child) {
	margin-bottom: 40px;
} */

.df-home-content-box-warpper .post-link {
    height: 100%;
}

.post-link {
  transition: all 0.2s linear 0s;
}

.post-link:hover {
  text-decoration: none;
}

.df-home-content-box {
  width: 100%;
  height: 100%;
/*   min-height: 419px; */
  border-radius: 4px;
  padding: 36px 60px 51px 40px;
  background-color: #19234a;
  border: 1px solid #fff;
  /*    border-bottom: 10px solid #24E0FF;*/
  display: flex;
  flex-direction: column;
  position: relative;
}

.df-home-content-box::before {
  content: ' ';
  width: calc(100% + 2px);
  height: 10px;
  background-color: #24E0FF;
  border-radius: 0px 0px 4px 4px;
  position: absolute;
  bottom: -1px;
  left: -1px;
}

.df-home-content-box h2 {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 26px;
}

.df-home-content-box p {
  font-family: var(--ff4);
  font-weight: var(--regular);
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  /*    margin-bottom: 0px;*/
  flex-grow: 1;
}

.df-home-content-box span {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 36px;
  color: #24E0FF;
}

.df-home-content-box span i {
  margin-right: 6px;
}

.post-link:hover .df-home-content-box {
  background-color: #fff;
}

.post-link:hover .df-home-content-box p,
.post-link:hover .df-home-content-box h2 {
  color: #19234a;
}

/* .post-link:hover .df-home-content-box:before {
    content: none;
} */

.text-legal {
    width: 100%;
    max-width: 80%;
    margin-top: 40px;
    opacity: 0.8;
}


.df-form {
  max-width: 370px;
  margin-left: auto;
  margin-top: 5px;
}

.df-sign-form-box {
  border-radius: 4px;
  padding: 24px 40px 40px;
  background-color: #fff;
  margin-bottom: 17px;
}

.df-sign-form-box h4 {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: var(--dark-blue);
  position: relative;
  max-width: fit-content;
  padding-bottom: 9px;
  margin-bottom: 0px;
}

.df-sign-form-box h4::before {
  content: ' ';
  width: 100%;
  height: 3px;
  background: var(--dark-blue);
  position: absolute;
  bottom: 0px;
  left: 0;
}

.df-sign-form-box form {
  border-top: 1px solid #eceef7;
  padding-top: 21px;
}

.df-form-group {
  margin-bottom: 11px;
}

.df-form-group label {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 36px;
  color: var(--dark-blue);
  margin-bottom: 2px;
}

.df-form-group .form-control,
.df-form-group .form-control:focus {
  width: 100%;
  height: 50px;
  padding: 0px 15px;
  border-radius: 2px;
  background-color: #e3f0f3;
  border: 1px solid rgba(25, 35, 74, 0.15);
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 49px;
  color: var(--dark-blue);
  outline: 0;
  box-shadow: none;
}

.btn-sign {
  width: 100%;
  height: 50px;
  padding: 0px 15px;
  border-radius: 25px;
  background-color: #24E0FF;
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  color: var(--dark-blue);
  margin-top: 19px;
}

.btn-sign:hover {
  color: #fff;
  background-color: var(--dark-blue);
}

.df-form a {
  font-family: var(--ff4);
  font-weight: var(--medium);
  text-decoration: underline;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 20px;
  text-align: center;
  color: #fff;
  opacity: 0.65;
  display: block;
  width: max-content;
  margin: 0px auto;
}

.df-form a:hover {
  opacity: 1;
}

@media (max-width: 1120px) {
  .ac-details ul li:not(:last-child) {
    margin-right: 18px;
  }

  .ac-details ul li strong {
    margin-left: 4px;
  }

  .ac-details ul li {
    font-size: 16px;
  }
}

@media (max-width: 1090px) {
  .df-home-content-box {
    min-height: 520px;
  }
}

@media (max-width: 1024px) {
  /*.logo {
    margin: 40px 0;
  }*/

  .wrapper {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 40px;
    margin-bottom: calc(0.5rem + 17px);
  }

  .hero-content p {
    font-size: 20px;
    line-height: 32px;
  }
	
  .df-home-content-box-warpper:not(:last-child) {
	margin-bottom: 30px;
  }

  .sec-heading {
    font-size: 20px;
    line-height: 32px;
  }

  .filter-heading {
    margin-bottom: calc(0.5rem + 12px);
  }

  .respo-sec-heading h3 a {
    margin: 0px 15px;
  }

  .df-filter .respo-sec-heading .sec-heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .df-filter .respo-sec-heading .btn-cl-icon {
    margin-top: 15px;
  }

  .respo-sec-heading h3 span {
    top: 0px !important;
  }

  .df-select {
    margin-bottom: 20px;
  }

  .ac-heading {
    margin-bottom: calc(0.5rem + 30px);
  }

  .action-box {
    padding: 35px 30px;
    margin-bottom: 40px;
  }

  .ab-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: calc(0.5rem + 12px) !important;
  }

  .action-box .pill-list {
    margin-bottom: calc(0.5rem + 17px);
  }

  .ac-rm {
    margin-bottom: calc(0.5rem + 17px);
    font-size: 16px;
    width: 100%;
    padding: 0.375rem 30px;
  }

  .ac-details ul {
    padding-top: 10px;
  }

  .ac-details ul li:not(:last-child) {
    margin-right: 25px;
  }

  .ac-details ul li {
    line-height: 24px;
    margin-bottom: 10px;
  }

  .steps {
    margin: 10px 0 0;
  }

  .steps li {
    height: 100px;
    padding: 19px 20px;
  }

  .steps li h4 {
    font-size: 20px;
  }
	
  .df-home-content-box-warpper {
	margin-bottom: 0px;
  }

  .df-home-content-box-warpper:not(:last-child) {
	margin-bottom: 40px;
  }
}

@media (max-width: 883px) {
  .steps li {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 15px;
    position: relative;
    border-radius: 0px !important;
  }

  .steps li:not(:first-child) {
    padding: 15px 15px;
  }

  .steps li:first-child:before,
  .steps li:nth-child(2):before,
  .steps li:not(:last-child):after {
    content: none;
  }

  .steps li:not(:first-child) div:before {
    content: none;
  }

  .steps li {
    font-size: 14px;
  }

  .steps li h4 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .logo {
    margin: 20px 0;
    max-width: 200px;
  }

  #full-menu {
    height: 100vh;
    top: 0;
  }

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

  .wrapper {
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .hero-content {
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 30px;
  }
	
  .df-home-content-box-warpper:not(:last-child) {
	margin-bottom: 25px;
  }

  .sec-heading {
    font-size: 16px;
    line-height: 28px;
  }

  .filter-heading {
    margin-bottom: 15px;
  }

  .df-select {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .filters {
    margin-bottom: 20px;
  }

  .ac-heading {
    margin-bottom: 20px;
  }

  .action-box {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .ab-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .action-box .pill-list {
    margin-bottom: 20px;
  }

  .action-box .pill-list li {
    font-size: 12px;
    text-align: center;
  }

  .action-box .pill-list li:not(:last-child) {
    margin-right: 0px;
  }

  .ac-details ul {
    padding: 10px 0px 0px;
  }

  .ac-details ul li {
    display: block;
    width: 100%;
  }
}

@media (max-width: 520px) {
  #dfMap text {
    font-size: 0.8em !important;
  }
}

.df-map-content {
  padding-bottom: 120px;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  color: #ff9b0a;
  background: #ffffff42;
  z-index: 999;
}
#loader {
  position: relative;
  top: 50%;
  left: 50%;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #212529;
  background: #fff;
  border: 0;
  border-bottom: 3px solid #ff9b0a;
  border-radius: 0px;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder:focus-visible,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus {
  outline: none !important;
  box-shadow: none !important;
}

.bootstrap-select > .dropdown-toggle:after {
  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='%23ff9a00'/%3E%3C/svg%3E%0A");
  border: none;
  width: 15px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.bootstrap-select > .dropdown-toggle.btn-light {
  background-color: #fff !important;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom: 3px solid #ff9b0a !important;
  border-radius: 0 !important;
  border-top: none;
  border-left: none;
  border-right: none;
}

div#dfMap {
  margin-top: 70px;
  margin-bottom: 96px;
}

.coverage-box {
  padding: 18px 30px;
  border-radius: 2px;
  text-transform: uppercase;
}

.coverage-box span {
  font-family: var(--ff1);
  font-weight: var(--regular);
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.coverage-box h4 {
  font-family: var(--ff1);
  font-weight: var(--semi-med);
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 0px;
}

.coverage-box h4 span {
  font-size: 26px;
  line-height: 24px;
}

.popover {
  border: 0;
  max-width: 370px;
}
.popover-footer {
  background-color: var(--dark-blue);
  height: 25px;
  border-radius: 0px 0px 5px 5px;
}
.popover-header:before {
  border: 0px !important;
}
.popover-body {
  background: #e6eaec;
  border-radius: 5px 5px 0px 0px;
  text-transform: capitalize;
}
.popover-body p {
  font-weight: 600;
  font-size: 16px;
}
.popover-body h4 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 16px;
}
.popover-body {
  background: #eaf2f4;
  border: 1px solid #b8c4cb;
  border-bottom: 0px;
  font-family: var(--ff1);
  color: var(--dark-blue);
  color: #063049;
}
.popover .arrow {
  display: none;
}
.sub-heading {
  text-transform: uppercase;
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 30px;
}
.bluebar {
  background-color: var(--dark-blue);
  height: 25px;
  border-radius: 0px 0px 5px 5px;
  margin: 0px;
  position: relative;
  margin-left: -13px;
  margin-right: -13px;
  margin-bottom: -13px;
}

.greenbar {
  /*   background-color: #57a71d; */
  background-color: #00c48d;
  height: 25px;
  border-radius: 0px 0px 5px 5px;
  margin: 0px;
  position: relative;
  margin-left: -13px;
  margin-right: -13px;
  margin-bottom: -13px;
}
.redbar {
  /*   background-color: #cb7977; */
  background-color: #de1616;
  height: 25px;
  border-radius: 0px 0px 5px 5px;
  margin: 0px;
  position: relative;
  margin-left: -13px;
  margin-right: -13px;
  margin-bottom: -13px;
}

.tooltip-content {
  width: 100%;
  height: auto;
  padding: 15px 20px 20px 25px;
  text-transform: capitalize;
  font-size: 16px;
  background-color: #eaf2f4;
  border-radius: 4px 4px 0px 0px;
}

.tooltip-content h5 {
  text-transform: uppercase;
  font-family: var(--ff1);
  font-size: 18px;
  line-height: 27px;
  color: #063049;
  margin-bottom: 6px;
  /*   margin-bottom: 5px; */
}

.tooltip-content p {
  font-weight: 600;
  font-family: var(--ff1);
  font-size: 15px;
  line-height: 24px;
  color: #063049;
  margin-bottom: 17px;
}

.tooltip-content .pill-list {
  margin-bottom: 0px;
  margin-top: 7px;
}

.tooltip-content .pill-list li {
  font-family: var(--ff1);
  font-weight: var(--medium);
  font-size: 16px;
  padding: 0px 14px 0px 15px;
  background-color: #47e3ff;
  color: var(--dark-blue);
  font-weight: 500;
}

.tooltip-content .pill-list li:not(:last-child) {
  margin-right: 6px;
}
.highcharts-text-outline {
  font-weight: normal !important;
}
.tooltip-footer {
  padding: 15px 0px 10px;
  /*    padding: 10px; */
  background-color: #19234a;
  border-radius: 0px 0px 4px 4px;
}
/* 
.highcharts-name-maine,
.highcharts-name-massachusetts,
.highcharts-name-new-hampshire,
.highcharts-name-puerto-rico,
.highcharts-name-rhode-island {
  fill: #19234A ;
}

.highcharts-name-connecticut,
.highcharts-name-new-york,
.highcharts-name-vermont {
  fill: #19234A ;
}

.highcharts-name-delaware,
.highcharts-name-new-jersey,
.highcharts-name-pennsylvania {
  fill: #19234A ;
}

.highcharts-name-maryland,
.highcharts-name-north-carolina,
.highcharts-name-south-carolina,
.highcharts-name-virginia,
.highcharts-name-west-virginia {
  fill: #19234A ;   
}

.highcharts-name-louisiana,
.highcharts-name-mississippi,
.highcharts-name-texas {
  fill: #19234A ; 
}

.highcharts-name-kentucky,
.highcharts-name-michigan,
.highcharts-name-ohio,
.highcharts-name-tennessee {
  fill: #19234A ; 
}

.highcharts-name-illinois,
.highcharts-name-indiana,
.highcharts-name-wisconsin {
  fill: #19234A ; 
}

.highcharts-name-arkansas,
.highcharts-name-iowa,
.highcharts-name-minnesota,
.highcharts-name-missouri,
.highcharts-name-nebraska,
.highcharts-name-north-dakota,
.highcharts-name-south-dakota {
  fill: #19234A ; 
}

.highcharts-name-alaska,
.highcharts-name-arizona,
.highcharts-name-california,
.highcharts-name-hawaii,
.highcharts-name-idaho,
.highcharts-name-montana,
.highcharts-name-nevada,
.highcharts-name-oregon,
.highcharts-name-washington {
  fill: #19234A ;
}

.highcharts-name-colorado,
.highcharts-name-kansas,
.highcharts-name-new-mexico,
.highcharts-name-oklahoma,
.highcharts-name-utah,
.highcharts-name-wyoming {
  fill: #19234A ;
}

.highcharts-name-alabama,
.highcharts-name-florida,
.highcharts-name-georgia {
  fill: #19234A ;
}

.highcharts-data-label text {
    color: #fff !important;
    fill: #fff !important;
} */

/*  Map Page CSS  */
.single-hero {
  padding: 50px 0px 36px;
  background-color: var(--dark-blue);
  position: relative;
}

.single-hero h1 {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 0px;
  padding-bottom: 4px;
}

.single-hero p {
  font-family: var(--ff4);
  font-weight: var(--regular);
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  max-width: 570px;
  margin: 28px auto 12px;
}

.single-hero span {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 18px;
  line-height: 30px;
  display: block;
  text-align: center;
  color: #24E0FF;
  margin-bottom: 0px;
}

span#showhide {
  cursor: pointer;
}

span#showhide:hover {
  opacity: 0.8;
}

.df-filter {
  padding: 40px 35px;
  background-color: #c2f6ff;
  transition: all 0.5s ease 0s;
}

.df-filter .sec-heading {
  font-family: var(--ff4);
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  color: var(--dark-blue);
  opacity: 0.77;
  margin-bottom: 0px;
  text-transform: none;
}

.df-filter-select {
  max-width: 1170px;
  margin: 0px auto 0px 10.9844px;
}

.df-filter-select li {
  width: 273px;
}

.df-filter-select li:not(:last-child) {
  margin-right: 22.5px;
}

.multiselect {
  padding: 1px 2px 4px;
  background-color: transparent !important;
  border-bottom: 3px solid var(--dark-blue) !important;
  border-bottom-left-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 18px;
  line-height: 34px;
  color: var(--dark-blue) !important;
  overflow: hidden;
}

.multiselect.dropdown-toggle:after {
  right: 1px;
  top: 14px;
  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_1752' data-name='Path 1752' 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='%2319234a'/%3E%3C/svg%3E%0A");
}

.page-template-t-sunburst .df-filter-select,
.page-template-t-group-analysis .df-filter-select {
  max-width: 575px;
  margin: 0px auto;
}
.page-template-t-education-sunburst .df-filter-select {
  max-width: 875px;
  margin: 0px auto;
}

.df-filter-select .lbl {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: var(--dark-blue);
  opacity: 0.77;
  margin-bottom: 0px;
  width: 100%;
}

.multiselect.dropdown-toggle:after {
  top: auto;
  bottom: 18px;
}

.df-filter-five .df-filter-select {
    max-width: 1270px;
}

.df-filter-five .df-filter-select li {
    width: 235px;
}

.df-filter-five .df-filter-select li:not(:last-child) {
    margin-right: 20px;
}

.df-filter-five .multiselect-selected-text {
    font-size: 14px;
}

div#dfMap2 {
  margin-top: 60px;
  margin-bottom: 74px;
}

.page-template-t-sunburst .ac-heading {
  margin-bottom: calc(0.5rem + 8px);
}

.tracker-hero {
  padding: 50px 0px 55px;
}

.tracker-hero span {
  font-size: 16px;
  margin-top: 21px;
}

.track-posts {
  padding: 76px 0px 150px;
}

.track-posts .sub-heading {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  line-height: 28px;
  color: var(--dark-blue);
  text-transform: capitalize;
  margin-bottom: 17px;
}

.track-post-image {
  width: 100%;
  min-height: 200px;
  background-color: #47e3ff;
  border-radius: 4px 4px 0px 0px;
}

.track-post-content {
  background-color: #1b2347;
  padding: 48px 60px 57px 40px;
  border-radius: 0px 0px 4px 4px;
  min-height: 398px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.track-post-content::before {
  content: ' ';
  width: 0;
  height: 10px;
  background-color: #24E0FF;
  border-radius: 0px 0px 4px 4px;
  position: absolute;
  bottom: -1px;
  left: 0px;
}

.track-post-content h2 {
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 16px;
}

.track-post-content p {
  font-family: var(--ff4);
  font-weight: var(--regular);
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  flex-grow: 1;
}

.track-post-content span {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #24E0FF;
}

.post-link:hover .track-post-content::before {
  width: 100%;
}

.page-template-t-tracker .track-post-image img {
  border-radius: 4px 4px 0px 0px;
}

.df-password {
  padding: 200px 0px;
}

/*  Faq's Page CSS  */
.faq-hero {
  padding-top: 96px;
}

.faq-hero .df-eyebrow {
  margin-bottom: 19px;
}

.faq-hero h1 {
  font-family: var(--ff4);
  font-weight: var(--bold);
  font-size: 36px;
  line-height: 48px;
  color: #fff;
  max-width: 690px;
  margin-bottom: 24px;
}

.faq-hero p {
  font-family: var(--ff4);
  font-weight: var(--regular);
  font-size: 22px;
  line-height: 36px;
  text-align: left;
  color: #fff;
  max-width: 970px;
  margin-bottom: 36px;
}

.faq-hero p a {
  color: #24E0FF;
  font-weight: var(--medium);
  text-decoration: underline;
}

.df-faqs {
  padding: 60px 0px 117px;
}

.accordion .card {
  border: 1px solid #fff;
  border-radius: 4px !important;
}

.accordion > .card:not(:last-of-type) {
  margin-bottom: 33px;
}

.accordion > .card > .card-header,
.accordion > .card:not(:last-of-type),
.accordion > .card:not(:first-of-type) {
  border: none;
}

.accordion > .card > .card-header {
  padding: 0px;
  border-radius: 4px;
  background: #d9eaed;
}

.accordion .btn-link {
  display: block;
  width: 100%;
  font-family: var(--ff4);
  font-weight: var(--semi-med);
  font-size: 26px;
  line-height: 36px;
  color: var(--dark-blue);
  position: relative;
  padding: 27px 100px 28px 40px;
  text-align: left;
}

.accordion .btn-link:focus {
  box-shadow: none;
}

.accordion .btn-link:after {
  content: '+';
  font-family: var(--ff4);
  font-size: 28px;
  color: #000;
  position: absolute;
  top: calc(50% - 5px);
  right: 33px;
  line-height: 12px;
  width: 17px;
  height: 17px;
  transition: 0.2s ease-in-out;
  transform: rotate(90deg);
}

.accordion .btn-link.collapsed:after {
  transform: rotate(0deg);
  transition: 0.2s ease-in-out;
}

.accordion .btn-link,
.accordion .btn-link:hover,
.accordion .btn-link:focus,
.accordion .btn-link:visited {
  border: none;
  text-decoration: none;
}

.accordion .btn-link:hover {
  background: #ffffff;
}

.accordion .btn-link:hover:after {
  color: #24E0FF;
}

.accordion .card-body {
  padding-top: 30px;
  padding-left: 40px;
}

.accordion .card-body p {
  font-family: var(--ff4);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 36px;
  color: var(--dark-blue);
  opacity: 0.8;
}

.accordion .card-body ul {
  margin-bottom: 20px;
}

.accordion .card-body ul li {
  font-family: var(--ff4);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 34px;
  color: var(--dark-blue);
  opacity: 0.8;
}

.accordion .card-body ul li:not(:last-child) {
  margin-bottom: 10px;
}

/*  Modal CSS  */
/*.df-analysis-modal {
  background-color: rgb(255 255 255 / 50%);
}*/

.df-analysis-modal .modal-dialog {
  max-width: 970px;
  margin: 0px auto;
}

.df-analysis-modal .modal-content {
  border-radius: 4px;
  border-color: var(--dark-blue);
}

.df-analysis-modal .modal-body {
  padding: 35px 60px 91px 40px;
  position: relative;
}

.df-analysis-modal .modal-body:before {
  content: " ";
  width: 100%;
  height: 20px;
  border-radius: 0px 0px 2px 2px;
  background-color: var(--dark-blue);
  position: absolute;
  bottom: -1px;
  left: 0px;
}

.df-analysis-modal .modal-body .close {
  font-size: 26px;
  color: var(--dark-blue);
  text-shadow: none;
  opacity: 1;
  position: absolute;
  top: 19px;
  right: 17px;
}

.df-analysis-modal .modal-body h3 {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 24px;
  line-height: 36px;
  color: var(--dark-blue);
  margin-bottom: 23px;
}

.df-analysis-modal .modal-body p {
  font-size: 18px;
  line-height: 28px;
  max-width: 100%;
  color: var(--dark-blue);
  margin-bottom: 30px;
}

.df-modal-margin h3 {
  margin-bottom: 18px !important;
}

.df-analysis-modal .modal-body a {
  font-family: var(--ff4);
  font-weight: var(--medium);
  text-decoration: underline;
  font-size: 16px;
  line-height: 36px;
  color: #24E0FF;
}

.df-analysis-modal .modal-body a:hover {
  color: var(--dark-blue);
  text-decoration: none;
}

/*  REQUSET ACCESS PAGE CSS  */
.access-hero {
    padding: 96px 0px 110px;
}

.access-hero .df-eyebrow {
    margin-bottom: 23px;
}

.access-hero h1 {
    font-family: var(--ff4);
    font-weight: var(--bold);
    font-size: 36px;
    line-height: 48px;
    color: #fff;
    max-width: 586px;
    margin-bottom: 24px;
}

.access-hero p {
    font-family: var(--ff4);
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 36px;
    color: #fff;
    max-width: 540px;
    margin-bottom: 21px;
}

.access-hero p span {
    font-weight: var(--medium);
}

.access-hero p a {
    color: #24E0FF;
    font-weight: var(--semi-med);
    text-decoration: underline;
}

.access-hero .df-form {
    max-width: 470px;
}

.access-hero .df-sign-form-box form {
    padding-top: 25px;
}

.df-sign-form-box .nf-form-title {
    display: none;
}

.nf-before-form-content {
    display: none;
}

.nf-form-content {
    padding: 0px !important;
}

.nf-field-container {
    margin-bottom: 15px !important;
}

.nf-form-content .label-above .nf-field-label {
    margin-bottom: 6px !important;
}

.nf-field-label span,
.nf-field-label label,
.listradio-wrap .nf-field-element label {
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 28px !important;
    color: var(--dark-blue);
}

.nf-field-label span {
    font-weight: var(--semi-med) !important;
}

.nf-field-label label span {
    color: var(--dark-blue);
}

.listradio-wrap .nf-field-element label {
    line-height: 20px !important;
}

.nf-field input {
    width: 100% !important;
    height: 50px !important;
    padding: 0px 15px !important;
    border-radius: 2px !important;
    background: #e3f0f3 !important;
    border: 1px solid !important;
  border-color: rgba(25, 35, 74, 0.15) !important;
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 50px !important;
    color: var(--dark-blue) !important;
}

.nf-field .nf-pass .ninja-forms-field {
  border-color: rgba(25, 35, 74, 0.15) !important;
}

/* .nf-field .listmultiselect-wrap select {
    width: 100% !important;
    height: auto !important;
    padding: 10px 15px !important;
    border-radius: 2px !important;
    background: #e3f0f3 !important;
    border: 1px solid rgba(25, 35, 74, 0.15) !important;
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 50px !important;
    color: var(--dark-blue) !important;
}

.nf-field .listmultiselect-wrap select option {
    padding-bottom: 10px !important;
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 40px !important;
}

.nf-field select {
    width: 100% !important;
    height: 50px !important;
    padding: 0px 15px !important;
    border-radius: 2px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='9.656' viewBox='0 0 15 9.656'%3E%3Cpath id='Path_1755' data-name='Path 1755' d='M-8.25-4.5l-6.375-6.375a1.085,1.085,0,0,1-.328-.8,1.085,1.085,0,0,1,.328-.8l1.078-1.031a1.085,1.085,0,0,1,.8-.328,1.085,1.085,0,0,1,.8.328l4.5,4.5,4.5-4.5a1.085,1.085,0,0,1,.8-.328,1.085,1.085,0,0,1,.8.328l1.078,1.031a1.085,1.085,0,0,1,.328.8,1.085,1.085,0,0,1-.328.8L-6.656-4.5a1.085,1.085,0,0,1-.8.328A1.085,1.085,0,0,1-8.25-4.5Z' transform='translate(14.953 13.828)' fill='%2319234a'/%3E%3C/svg%3E%0A") !important;
    background-size: 14px !important;
    background-repeat: no-repeat !important;
    background-position: center right 15px !important;
    background-color: #e3f0f3 !important;
    border: 1px solid rgba(25, 35, 74, 0.15) !important;
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 50px !important;
    color: var(--dark-blue) !important;
}

.nf-field select option {
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 50px !important;
} */

.nf-field-description, 
.nf-field-description p {
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 20px !important;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.nf-field textarea {
    width: 100% !important;
    height: 150px !important;
    padding: 10px 15px !important;
    border-radius: 2px !important;
    background: #e3f0f3 !important;
    border: 1px solid rgba(25, 35, 74, 0.15) !important;
    font-family: var(--ff4);
    font-weight: var(--medium) !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: var(--dark-blue) !important;
}

input[type=radio] {
    height: 20px !important;
    margin-right: 0px !important;
}

.list-radio-wrap .nf-field-element ul li {
    display: inline-block !important;
    margin-bottom: 0px !important;
    margin-right: 10px !important;
}

.listradio-wrap .nf-field-element label:after {
    width: 20px !important;
    height: 20px !important;
    background: #e3f0f3 !important;
    border: 1px solid rgba(25, 35, 74, 0.15) !important;
}

.listradio-wrap .nf-field-element label:before {
    width: 12px !important;
    height: 12px !important;
    top: 5px !important;
    left: -26px !important;
    background: var(--dark-blue) !important;
}

.checkbox-container.label-right .field-wrap {
    display: block !important;
}

.checkbox-container.label-right .field-wrap .nf-field-label {
    margin-bottom: 20px;
}

.checkbox-container.label-right .field-wrap .nf-field-label label {
    line-height: 20px !important;
}

.checkbox-wrap .nf-field-label label:after,
.checkbox-wrap .nf-field-label label:before {
    width: 20px !important;
    height: 20px !important;
    border-radius: 2px !important;
    left: -28px !important;
    top: 4px !important;
}

.checkbox-wrap .nf-field-label label:after {
    border-color: rgba(25, 35, 74, 0.15) !important;
    background: #e3f0f3 !important;
}

.checkbox-wrap .nf-field-label label:before {
    font-size: 14px !important;
    line-height: 20px;
    text-align: center;
    color: var(--dark-blue) !important;
}

.nf-form-content select.ninja-forms-field:not([multiple]) {
    padding: 1px 2px 4px !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 3px solid var(--dark-blue) !important;
    border-bottom-left-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
    font-family: var(--ff4) !important;
    font-weight: var(--semi-med) !important;
    font-size: 18px !important;
    line-height: 34px !important;
    color: var(--dark-blue) !important;
    overflow: hidden !important;
}

.nf-form-content .list-select-wrap .nf-field-element > div {
    padding: 1px 2px 4px !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 3px solid var(--dark-blue) !important;
    border-bottom-left-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
    font-family: var(--ff4) !important;
    font-weight: var(--semi-med) !important;
    font-size: 18px !important;
    line-height: 34px !important;
    color: var(--dark-blue) !important;
    overflow: hidden !important;
}

.nf-form-content .list-select-wrap > div div:after {
	content: " " !important;
	width: 15px !important;
	height: 10px !important;
	right: 1px !important;
	bottom: 18px !important;
	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_1752' data-name='Path 1752' 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='%2319234a'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat !important;
	background-position: center center !important;
}


.submit-container {
    margin-bottom: 0px !important;
}

input[type=submit] {
    width: 100%;
    height: 50px;
    border: none !important;
    border-radius: 29px !important;
    background: #24E0FF !important;
    font-weight: var(--semi-med) !important;
    font-size: 24px !important;
    color: var(--dark-blue) !important;
    margin-top: 10px !important;
}

input[type=submit]:hover {
    color: #fff !important;
    background: var(--dark-blue) !important;
}


/*  RESOURCES PAGE CSS  */
.resource-hero {
    padding: 51px 0px 45px;
}

.single-hero.resource-hero h1 {
    font-weight: var(--bold);
	line-height: 48px;
    max-width: 628px;
    margin-inline: auto;
}

.single-hero.resource-hero p {
    margin: 24px auto 21px;
}

.single-hero.resource-hero span {
    font-size: 16px;
}

.df-resources-warpper {
    padding-top: 60px;
    padding-bottom: 85px;
}

.df-res-formatted {
    padding-bottom: 80px;
}

.df-res-formatted h2 {
    font-family: var(--ff3);
    font-weight: var(--bold);
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 34px;
    margin-bottom: 26px;
    max-width: 1070px;
    color: var(--dark-blue);
}

.df-res-formatted p {
    font-family: var(--ff4);
    font-weight: var(--regular);
	font-size: 20px;
/*     font-size: 22px; */
    line-height: 160%;
/*     line-height: 36px; */
/*     max-width: 1070px; */
    margin-bottom: 0px;
    color: var(--dark-blue);
}

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

.df-res-formatted ul {
    margin-top: 20px;
    padding-left: 34px;
    max-width: 1070px;
    margin-bottom: 20px;
}

.df-res-formatted ul li {
    font-family: var(--ff4);
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0px;
    color: var(--dark-blue);
}

.df-res-formatted ul li:not(:last-child) {
    margin-bottom: 8px;
}

.df-resources-posts {
    padding-bottom: 49px;
}

.df-resources-posts .df-eyebrow {
    font-weight: var(--semi-med);
    font-size: 20px;
    color: #24E0FF;
    margin-bottom: 32px;
}

.df-resources-post-box-warpper {
    margin-bottom: 26px;
}

.df-resources-post-box {
    padding-top: 32px;
/*     padding-top: 25px; */
    padding-bottom: 36px;
    padding-inline: 20px;
    background-color: transparent;
    border-bottom: 1px solid rgb(25 35 74 / 20%);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    transition: padding-inline 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
/*  margin-bottom: 26px;
    align-items: end; */
}

/*.df-resources-post-box:last-child {
    border-bottom: none;
}*/

.df-resources-post-box:before {
  content: " ";
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
  background-color: var(--dark-blue);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.df-resources-post-box-content {
    width: 100%;
    max-width: 920px;
    margin-right: auto;
}

.dfr-date {
    font-family: var(--ff1);
    font-weight: var(--semi-med);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 12px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.df-resources-post-title {
    font-family: var(--ff4);
    font-weight: var(--semi-med);
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.df-resources-post-title a {
    color: var(--dark-blue);
}

.df-resources-post-box-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 18px;
    display: flex;
    gap: 30px;
}

.df-resources-post-box-content ul li {
    font-family: var(--ff1);
    font-weight: var(--semi-med);
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-blue);
    opacity: 0.6;
    text-transform: uppercase;
}

.df-resources-post-box-content ul li.dfr-type {
    background-color: #47e3ff;
    border-radius: 24px;
    padding: 0px 15px;
    text-transform: uppercase;
    opacity: 1;
}

.df-resources-post-box-content p {
    font-family: var(--ff4);
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-blue);
    margin-bottom: 0;
}

.df-resources-post-box-content p:not(:last-child) {
    margin-bottom: 18px;
}

.df-resources-post-link {}

.df-resources-post-link a,
.df-resources-post-link i {
    font-size: 28px;
    line-height: 40px;
    color: var(--dark-blue);
}

.df-resources-post-box:hover {}

.df-resources-post-box:hover .df-resources-post-title a {
    color: #24E0FF;
    text-decoration: none;
}

.df-resources-post-box:hover .df-resources-post-link a {
    color: #24E0FF;
    text-decoration: none;
}

.df-resources-post-box:hover {
    padding-inline: 30px;
    border-bottom: none;
    text-decoration: none;
    transition: padding-inline 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.df-resources-post-box:hover:before {
    opacity: 1;
    transition: opacity 0.2s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.df-resources-post-box:hover .df-resources-post-box-content * {
    color: #fff !important;
}

.df-resources-post-box:hover .df-resources-post-link i {
    color: #24E0FF;
}

.df-resources-post-box.df-no-hover:hover {
  padding-inline: 20px;
    border-bottom: 1px solid rgb(25 35 74 / 20%);
}

.df-resources-post-box.df-no-hover:hover:before {
  opacity: 0;
}

.df-resources-post-box.df-no-hover:hover .df-resources-post-box-content * {
    color: var(--dark-blue) !important;
}

.df-resources-post-box.df-no-hover:hover .df-resources-post-link i {
    color: var(--dark-blue);
}


.df-rp-below-text {}

.df-rp-below-text p {
    font-family: var(--ff4);
    font-weight: var(--regular);
    font-size: 22px;
    line-height: 36px;
    max-width: 1070px;
    margin-bottom: 0px;
    color: var(--dark-blue);
}

.df-rp-below-text p:not(:last-child) {
    margin-bottom: 20px;
}


/*  Footer CSS  */
.desktop-footer {
  padding: 60px 0px;
  background-color: #fff;
  border-top: 1px solid rgb(25 35 74 / 50%);
}

.footer-menu {
  margin-bottom: 30px;
}

.footer-menu li {
  position: relative;
}

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

.footer-menu li:not(:last-child):before {
  content: '/';
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 13px;
  line-height: 25px;
  color: var(--dark-blue);
  position: absolute;
  top: 0px;
  right: -17px;
}

.footer-menu li a {
  font-family: var(--ff4);
  font-weight: var(--medium);
  font-size: 13px;
  line-height: 23px;
  text-align: left;
  color: var(--dark-blue);
}

.desktop-footer p {
  font-family: var(--ff4);
  font-weight: var(--regular);
  font-size: 13px;
  line-height: 24px;
  color: var(--dark-blue);
  opacity: 0.8;
  max-width: 421px;
}

.highcharts-label text {
  font-weight: normal !important;
}

@media (max-width: 1640px) {
  .df-filter-five .df-filter-select {
    max-width: 1200px;
  }

  .df-filter-five .df-filter-select li {
    width: 220px;
  }
}

@media (max-width: 1560px) {
  .df-filter-select {
    margin: 0px auto 0px;
  }
  
  .df-filter-five .df-filter-select li {
    width: 200px;
  }

  /*.df-filter-select li:not(:last-child) {
    margin-right: 15.5px;
  }*/
}

@media (max-width: 1410px) {
  .df-filter-select li:not(:last-child) {
    margin-right: 15.5px !important;
  }
}

@media (max-width: 1390px) {
  .df-filter {
    padding: 40px 0px;
  }
}

@media (max-width: 1280px) {
  .df-filter {
    padding: 30px 0px;
  }

  .df-filter-select {
    max-width: fit-content;
    display: block;
  }

  .df-filter-select li {
    min-width: calc(50% - 9.5px);
    margin-bottom: 10px;
  }

  .df-filter-select li:nth-child(2n) {
    margin-right: 0px !important;
  }
}

.respo-sec-heading {
  display: none;
}

.desktop-sec-heading {
  position: absolute;
  top: 4px;
  left: 15px;
}

.desktop-sec-heading-2 {
    position: absolute;
    top: 4px;
    right: 15px;
}

.df-filter-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}

.df-c1,
.df-c2 {
  display: flex;
  flex-direction: column;
}

.respo-sec-heading {
  display: none;
}

.btn-cl-icon {
    display: block;
    width: 150px;
    height: 40px;
    padding: 0 20px;
    border-radius: 30px;
    border: 1px solid var(--dark-blue);
    background-color: transparent;
    font-weight: var(--bold);
    font-size: 18px;
    line-height: 38px;
    color: var(--dark-blue);
    margin-left: auto;
}

.btn-cl-icon i {
    float: right;
    font-size: 16px;
    line-height: 38px;
}

.btn-cl-icon:hover {
    color: #fff;
    background-color: var(--dark-blue);
    text-decoration: none;
}

@media (min-width: 1280px) {
  .df-c1 {
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    max-width: 80px;
  }

  .df-c2 {
    -ms-flex: 0 0 calc(100% - 230px);
    flex: 0 0 calc(100% - 230px);
    max-width: calc(100% - 230px);
  }

  .df-c3 {
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    max-width: 150px;
  }
}

@media (min-width: 1560px) {
  .df-c1 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .df-c2 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}

@media (max-width: 1560px) {
  .df-c2 .df-filter-select {
    max-width: inherit;
    display: block;
  }

  .df-c2 .df-filter-select li {
    min-width: calc(50% - 9.5px);
    margin-bottom: 10px;
  }

  .df-c2 .df-filter-select li:not(:last-child) {
    margin-right: 15.5px !important;
  }

  .df-c2 .df-filter-select li:nth-child(2n) {
    margin-right: 0px !important;
  }
	
  .df-c2 .multiselect-container li {
    width: max-content;
  }
}

@media (max-width: 1380px) {
  .desktop-sec-heading,
  .desktop-sec-heading-2 {
    display: none;
  }

  .respo-sec-heading {
    display: block;
  }
}

@media (max-width: 1200px) {
	.df-c2 .df-filter-select {
		max-width: fit-content;
	}
}

@media (max-width: 992px) {
  .home-hero {
    padding: 70px 0px 0px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 62px;
    line-height: 80px;
    margin-bottom: 25px;
  }

  .home-hero h1 span {
    padding: 0px 15px 0px 5px;
  }

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

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

  .df-form {
    margin-top: 40px;
    margin-right: auto;
  }

  .df-home-boxes {
    padding: 40px 0px 40px;
  }

  .df-home-content-box {
    min-height: 350px;
    margin-bottom: 40px;
  }

  .df-home-content-box h2 br {
    display: none;
  }

  .faq-hero {
    padding-top: 70px;
  }

  .faq-hero p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .faq-hero h1 {
    margin-bottom: 20px;
  }

  .df-faqs {
    padding: 40px 0px 80px;
  }

  .accordion > .card:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .accordion .btn-link {
    padding: 27px 60px 28px 30px;
    line-height: 32px;
  }

  .accordion .btn-link:after {
    right: 20px;
    top: calc(50% - 8px);
  }

  .accordion .card-body {
    padding-top: 20px;
    padding-left: 30px;
    padding-right: calc(1.25rem + 40px);
  }

  .accordion .card-body p {
    font-size: 20px;
    line-height: 30px;
  }

  .accordion .card-body ul li {
    font-size: 20px;
    line-height: 30px;
  }

  .df-analysis-modal .modal-dialog {
    margin: 40px 10px;
  }

  .df-analysis-modal .modal-body {
    padding: 30px 40px 70px;
  }

  .df-analysis-modal .modal-body p {
    margin-bottom: 25px;
  }

  .df-analysis-modal .modal-body h3 {
    margin-bottom: 15px !important;
  }

  .df-analysis-modal .modal-body .close {
    font-size: 24px;
  }

  .access-hero {
    padding: 70px 0px;
  }
  
  .access-hero h1 {
    max-width: inherit;
    margin-bottom: 20px;
  }
  
  .access-hero p {
    font-size: 20px;
    line-height: 30px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .df-resources-warpper {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .df-res-formatted {
    padding-bottom: 55px;
  }

  .df-res-formatted h2 {
    margin-bottom: 22px;
    max-width: inherit;
  }

  .df-res-formatted p {
    font-size: 20px;
    line-height: 32px;
  }
	
  .df-res-formatted ul {
	padding-left: 30px;
  }

  .df-res-formatted ul li {
	font-size: 20px;
	line-height: 32px;
  }
	
  .df-res-formatted ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .df-resources-posts {
    padding-bottom: 25px;
  }

  .df-resources-posts .df-eyebrow {
	font-size: 24px;
    margin-bottom: 20px;
  }

  .df-resources-post-box-warpper {
      margin-bottom: 25px;
  }

  .df-resources-post-box {
    padding-bottom: 30px;
  }

  .df-resources-post-box-content {
    max-width: 90%;
    margin-right: auto;
  }

  .df-resources-post-title {}

  .df-resources-post-box-content ul {
    margin-bottom: 10px;
    gap: 25px;
  }
	
  .df-rp-below-text p {
    font-size: 20px;
    line-height: 32px;
  }

  .desktop-footer {
    padding: 40px 0px 30px;
  }

  .footer-menu {
    margin-bottom: 20px;
  }

  .desktop-footer p {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .main-menu li:not(:last-child) {
    margin-right: 10px !important;
  }

  .home-hero {
    padding: 50px 21px 0px;
  }
  
  .hero-question-icon {
    font-size: 24px;
    line-height: 34px;
    top: 15px;
    right: 15px;
  }

  .df-eyebrow {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .home-hero h1 {
    font-size: 50px;
    line-height: 66px;
    margin-bottom: 15px;
  }
	
  .home-hero h1 br {
	display: none;
  }

  .home-hero p {
    font-size: 18px;
    line-height: 26px;
  }

  .home-hero p:not(:last-child) {
  }

  .df-form {
    margin-top: 30px;
  }

  .df-sign-form-box {
    padding: 20px 20px 30px;
  }

  .df-sign-form-box h4 {
    font-size: 16px;
    line-height: 22px;
  }

  .df-sign-form-box form {
    padding-top: 15px;
  }

  .df-form-group label {
    font-size: 14px;
    line-height: 30px;
  }

  .df-home-boxes {
    padding: 30px 21px 40px;
  }

  .df-home-content-box {
    padding: 25px 20px 30px;
    margin-bottom: 30px;
  }

  .df-home-content-box h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 15px;
  }

  .df-home-content-box p {
    font-size: 16px;
    line-height: 24px;
  }

  .df-home-content-box span {
    font-size: 14px;
    line-height: 24px;
  }

  .faq-hero {
    padding: 50px 21px 10px;
  }

  .faq-hero .df-eyebrow {
    margin-bottom: 15px;
  }

  .faq-hero h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .faq-hero p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .df-faqs {
    padding: 30px 0px 60px;
  }

  .accordion > .card:not(:last-of-type) {
    margin-bottom: 20px;
  }

  .accordion .btn-link {
    font-size: 21px;
    line-height: 30px;
    padding: 20px;
  }

  .accordion .btn-link:after {
    right: 15px;
    content: none;
  }

  .accordion .card-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .accordion .card-body p {
    font-size: 18px;
    line-height: 26px;
  }

  .accordion .card-body ul {
    padding-left: 30px;
    margin-bottom: 15px;
  }

  .accordion .card-body ul li {
    font-size: 18px;
    line-height: 26px;
  }

  .accordion .card-body ul li:not(:last-child) {
    margin-bottom: 7px;
  }

  .df-analysis-modal .modal-body {
    padding: 30px 20px 40px;
  }

  .df-analysis-modal .modal-body .close {
    font-size: 18px;
    top: 12px;
    right: 12px;
  }

  .df-analysis-modal .modal-body h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 12px !important;
  }

  .df-analysis-modal .modal-body p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .df-modal-margin > * {
    margin-bottom: 20px;
  }

  .access-hero {
    padding: 50px 21px;
  }

  .access-hero .df-eyebrow {
    margin-bottom: 15px;
  }

  .access-hero h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .access-hero p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .df-resources-warpper {
    padding-top: 55px;
    padding-bottom: 20px;
  }

  .df-res-formatted {
    padding-bottom: 40px;
  }

  .df-res-formatted h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
  }

  .df-res-formatted p {
    font-size: 18px;
    line-height: 30px;
  }
	
  .df-res-formatted p:not(:last-child) {
    margin-bottom: 15px;
  }
	
  .df-res-formatted ul {
    margin-top: 15px;
    padding-left: 25px;
  }

  .df-res-formatted ul li {
    font-size: 18px;
    line-height: 30px;
  }

  .df-res-formatted ul li:not(:last-child) {
    margin-bottom: 4px;
  }

  .df-resources-posts {
    padding-bottom: 20px;
  }

  .df-resources-posts .df-eyebrow {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .df-resources-post-box {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-inline: 10px;
    flex-direction: column;
  }

  .df-resources-post-box:hover {
    padding-inline: 20px;
  }

  .df-resources-post-box-content {
    max-width: 100%;
  }

  .df-resources-post-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  .df-resources-post-box-content ul {
    margin-bottom: 15px;
    gap: 15px;
  }

  .df-resources-post-box-content ul li {
    font-size: 16px;
    line-height: 24px;
  }

  .df-resources-post-box-content p {
    font-size: 16px;
    line-height: 24px;
    max-width: 90%;
  }
	
  .df-resources-post-box-content p:not(:last-child) {
    margin-bottom: 15px;
  }

  .df-resources-post-link {
    position: absolute;
    bottom: 28px;
    right: 10px;
  }

  .df-resources-post-link a,
  .df-resources-post-link i {
    font-size: 24px;
    line-height: 30px;
  }
	
  .df-rp-below-text {
    padding-bottom: 40px;
  }
	
  .df-rp-below-text p {
    font-size: 18px;
    line-height: 30px;
  }
	
  .df-rp-below-text p:not(:last-child) {
    margin-bottom: 15px;
  }

  .desktop-footer {
    padding: 40px 21px 30px;
  }

  .footer-menu {
    margin-bottom: 15px;
    text-align: center;
  }

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

  .footer-menu li {
    text-align: center;
  }

  .footer-menu li:not(:last-child):before {
    right: -14px;
  }

  .footer-menu li a {
    text-align: center;
  }

  .desktop-footer p {
    text-align: center;
  }

  .df-filter-select li {
    min-width: 100% !important;
    margin-right: 0px !important;
  }

  .df-c2 .df-filter-select li {
    margin-right: 0px !important;
  }

  .btn-cl-icon {
    width: 100%;
  }
}

#showhide {
  cursor: pointer;
}
.multiselect-selected-text {
  text-overflow: clip;
  white-space: nowrap;
  display: inherit;
  overflow: hidden;
  max-width: 93%;
  font-size: 15px;
}
.point-selected {
  fill: #47e3ff !important;
}

input[type='checkbox'] {
  accent-color: #00c48d;
}
.df-filter.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 25px 35px;
}

.sticky-margin {
  margin-top: 150px;
}

.heading-entities {
  font-size: 18px;
}

li.list-inline-item.Favorable {
  background-color: #00c48d;
  color: #fff;
}

li.list-inline-item.Unfavorable {
  background-color: #de1616;
  color: #fff;
}

.hideme {
  display: none;
}

.fa-info-circle {
  cursor: pointer;
}

i.fas.fa-info-circle:hover {
  opacity: 0.9;
}

li.multiselect-item.multiselect-all a {
  color: #00c48d;
}

input[type='radio'] {
  accent-color: #00c48d;
}
.highcharts-point {
  stroke: #fff !important;
}



a.btn-thankyou {
    opacity: 1;
    margin-top: 19px;
    font-size: 17px;
    text-decoration: none !important;
    padding-top: 12px;
    color: #333 !important;
    padding-left: 30px;
    padding-right: 30px;
}
a.btn-thankyou:hover {
  color: #fff !important;
}

.df-form .alert-info a {
    color: #0c5460;
    margin-top: 8px;
    font-size: 14px;
    font-weight: var(--semi-med);
    opacity: 1;
}

.df-form .alert-info a:hover {
    text-decoration: none;
}





.resource-hero .df-eyebrow {
    font-size: 16px;
    margin-bottom: 8px;
}

@media (min-width: 767px) {
	.single-hero.resource-hero h1 {
		/* font-size: 48px; */
		font-size: 52px;
		line-height: 58px;
	}
}

.df-resources-post-title {
	font-size: 25px;
}

.df-resources-post-link i {
	font-size: 22px;
}



.df_parent_category {
    font-weight: var(--bold);
    font-size: 20px;
    color: #00D0F0;    
	margin-top: 35px;
    margin-bottom: 20px;
    font-family: var(--ff4);
    line-height: 36px;
    text-transform: uppercase;
}

.df_child_category {
    font-weight: var(--semi-med);
    font-size: 18px;
    color: #00D0F0;
    margin-top: 45px;
    margin-bottom: 10px;
    font-family: var(--ff4);
    line-height: 36px;
}