@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@font-face {
  font-family: "Palatino_Regular";
  src: url("../fonts/palr45w-webfont.woff2") format("woff2"),
    url("../fonts/palr45w-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Palatino_Bold";
  src: url("../fonts/palab-webfont.woff2") format("woff2"),
    url("../fonts/palab-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Palatino_Bold_Italic";
  src: url("../fonts/Palatino-Bold-Italic.woff2") format("woff2"),
    url("../fonts/Palatino-Bold-Italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Palatino-Italic";
  src: url("../fonts/Palatino-Italic.woff2") format("woff2"),
    url("../fonts/Palatino-Italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  font-optical-sizing: auto;
}

html {
  font-size: 1rem;
}
@media (max-width: 1290px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 1rem;
  }
}

body {
  margin: 0px;
  font-size: 18px;
  line-height: 28px;
  font-family: "Urbanist", sans-serif;
  color: #232323;
}

body::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.1);
}

body::-webkit-scrollbar-thumb {
  outline: 0px solid slategrey;
  background-color: #f60656;
  border-radius: 8px;
}

a {
  color: #cc0b4b;
  text-decoration: none;
  transition: 0.3s all;
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  border: 0;
  outline: none;
  height: auto;
}

.blank-link-btn {
  font-size: 14px;
  color: #232323;
  text-transform: uppercase;
  font-family: "Palatino_Bold";
  position: relative;
  padding-right: 2rem;
  display: inline-block;
}
.blank-link-btn:after {
  background: url(../images/black-search-arrow.svg) center center no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 23px;
  height: 23px;
  background-size: 19px;
  content: "";
}
.blank-link-btn:hover {
  color: #cc0b4b;
}
.blank-link-btn:hover:after {
  animation: bounce 0.8s infinite ease-in-out;
  background-image: url(../images/pink-search-arrow.svg);
}

.link-btn {
  font-size: 0.875rem;
  font-weight: 700;
  padding-right: 1.5rem;
  display: inline-block;
  position: relative;
  line-height: 1;
  transition: 0.3s all;
}
.link-btn:after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.625rem;
  right: 0;
  bottom: 0;
  margin: auto;
  top: 0;
  background: url(../images/pink-right-arrow.svg) center center no-repeat;
  background-size: 0.875rem;
  transition: 0.3s all;
}
.link-btn:hover {
  color: #f60656;
}
.link-btn.white-link-btn {
  color: #ffffff;
}
.link-btn.white-link-btn:after {
  background: url(../images/white-right-arrow.svg) center center no-repeat;
}

figcaption {
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 0.938rem;
  letter-spacing: 0;
  color: #cc0b4b;
}
@media (max-width: 1100px) {
  figcaption {
    margin-top: 0.5rem;
  }
}

.btn,
input[type="submit"] {
  text-decoration: none;
  border: 0;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  transition: 0.3s all;
  background-color: #232323;
  border-radius: 0;
  padding: 10.5px 24px;
  font-family: "Palatino_Bold";
  letter-spacing: 0;
}
.btn:hover,
input[type="submit"]:hover {
  background-color: #f60656;
  color: #ffffff;
}
.pink-btn.btn,
input[type="submit"].pink-btn {
  background: rgb(204, 11, 75);
  background: linear-gradient(
    270deg,
    rgb(204, 11, 75) 0%,
    rgb(246, 6, 86) 100%
  );
  color: #ffffff !important;
  font-size: 14px;
  font-family: "Palatino_Bold";
  border-radius: 0;
  font-weight: normal;
  text-transform: uppercase;
}
.pink-btn.btn:hover,
input[type="submit"].pink-btn:hover {
  background: #232323;
}

.ghost-btn {
  border: 1px solid #f60656;
  display: inline-block;
  text-align: center;
  color: #f60656;
  font-size: 14px;
  font-family: "Palatino_Bold";
  text-transform: uppercase;
  letter-spacing: 0;
  background-color: transparent;
  border-radius: 4px;
}
.ghost-btn.white-ghost {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.ghost-btn.white-ghost:hover {
  background-color: #ffffff !important;
  color: #232323 !important;
}
.ghost-btn.black-ghost {
  border: 1px solid #232323;
  color: #232323;
  background-color: #ffffff;
}
.ghost-btn.black-ghost:hover {
  background-color: #232323;
  color: #ffffff;
}

.round-image-style img {
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.round-image-style video {
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}

strong {
  font-weight: 800;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0 0 1.56rem 0;
  line-height: 1.2;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 1.2rem;
  }
}
.h1 strong,
.h2 strong,
.h3 strong,
.h4 strong,
.h5 strong,
.h6 strong,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 800;
  color: #f60656;
  font-style: italic;
}

h1,
.h1 {
  font-size: 4.37rem;
  line-height: 5rem;
}
@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 3.7rem;
    line-height: 1.2;
  }
}
@media (max-width: 720px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}

h2,
.h2 {
  font-size: 3.12rem;
  line-height: 1.3;
  font-weight: 300;
}
@media (max-width: 720px) {
  h2,
  .h2 {
    font-size: 1.875rem;
  }
}

h3,
.h3 {
  font-size: 2.5rem;
  font-weight: 600;
}

h4,
.h4 {
  font-size: 1.87rem;
}

h5,
.h5 {
  font-size: 1.5rem;
}

h6,
.h6 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1.75rem;
}
@media (max-width: 1100px) {
  p {
    margin: 0 0 1.5rem;
  }
}

sup {
  font-size: 0.6em;
}

.overlay-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

/* Ensure common card/container elements that include .overlay-link are positioned
   so the absolutely-positioned overlay is constrained to the card instead of
   covering the entire page. This prevents clicks anywhere on the page from
   triggering empty href="#" anchors and jumping to the top. */
.grant-alerts__box,
.grants-list-main .grant-alerts__box,
.available-grants .grant-alerts__box,
.grant-siren-card,
.faqs__box,
.resourcesBlock__featured-box,
.service-list .service-list-rp {
  position: relative;
}

.alignleft {
  float: left;
  margin: 0 1.25rem 1.25rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1.25rem 1.25rem;
}

.alignnone {
  float: none;
  margin: 0 0 0.93rem 0px;
  display: block;
}

.aligncenter {
  float: none;
  margin: 0 auto 0.93rem auto;
  display: list-item;
}

.main-body {
  overflow: hidden;
  position: relative;
  clear: both;
  top: 0;
}

sup {
  font-size: 0.6em;
}

table {
  empty-cells: show;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 0.93rem;
  border: 1px solid #232323;
}
table td {
  padding: 0.5em 1em;
  border-width: 0 0 0 1px;
  font-size: inherit;
  margin: 0;
  overflow: visible;
  border-left: 1px solid #232323;
  border-bottom: 1px solid #232323;
}
table td:first-child {
  border-left-width: 0;
}
table th {
  padding: 0.5em 1em;
  border-width: 0 0 0 1px;
  font-size: inherit;
  margin: 0;
  overflow: visible;
  border-left: 1px solid #232323;
  border-bottom: 1px solid #232323;
}
table th:first-child {
  border-left-width: 0;
}

thead {
  text-align: left;
  vertical-align: bottom;
  background-color: #232323;
  color: #232323;
}

ul {
  margin: 0px;
  padding: 0px 0 0.93rem 1.87rem;
}
ul li {
  margin: 0px;
  padding: 0 0 0.625rem;
  list-style-type: disc;
  list-style-position: outside;
}

ol {
  margin: 0px;
  padding: 0px 0 0.56rem 2rem;
}
ol li {
  margin: 0px;
  padding: 0 0 0.625rem;
  list-style-position: outside;
  list-style: decimal;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:focus {
  outline: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
textarea:focus {
  outline: none;
}

.container,
.alignwide {
  width: 76.25rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 1100px) {
  .container,
  .alignwide {
    width: 60rem;
  }
}
@media (max-width: 991px) {
  .container,
  .alignwide {
    width: 50rem;
  }
}
@media (max-width: 720px) {
  .container,
  .alignwide {
    /* width: 93%; */
  }
}

.overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gutenberg Style */
.wp-block-button__link {
  font-family: "Palatino_Regular";
  font-size: 0.875rem;
  border-width: 1px !important;
  padding: 0.625rem 3rem !important;
  letter-spacing: 0.1em;
}
.wp-block-button__link:hover {
  background-color: #232323;
  color: #ffffff;
}

.wp-block-media-text {
  grid-template-columns: 58% 1fr;
}
.wp-block-media-text__media img {
  border-radius: 0.5rem;
}

.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 60%;
}

.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 15%;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding-left: 5.93rem;
}

.text-right {
  text-align: right;
}

.got-grant-image img {
  transform: scale(0.2) translate(0, 31.25rem);
  transition: 0.8s all;
  opacity: 0;
}
.got-grant-image .aos-animate img {
  transform: scale(1) translate(0, 0);
  opacity: 1;
}

.section-title {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 39px;
}
/* @media (max-width: 1290px) {
  .section-title {
    text-align: center;
  }
} */
.section-title > .gradient-heading {
  width: 100%;
  margin: 0 0 -30px;
  padding-bottom: 10px;
}
.section-title-full {
  /* width: 100%; */
  letter-spacing: 0px;
  /* padding-left: 10px; */
}
.section-title-left {
  width: 66.66%;
  padding: 0 2rem 0 31px;
}
@media (max-width: 1290px) {
  .section-title-left {
    width: 100%;
    margin-top: -1rem;
  }
}
.section-title-left h2,
.section-title-left .h2 {
  margin: 0 0 3px;
  line-height: 1em;
  font-weight: normal;
}
.section-title-left .h1,
.section-title-left h1 {
  font-weight: normal;
  line-height: 1em;
  margin: 0;
}
.section-title-right {
  width: 33.33%;
  padding: 0 1rem;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 1290px) {
  .section-title-right {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
}
.section-title-right .ghost-btn.black-ghost {
  margin-bottom: 10px;
}
.section-title-center {
  text-align: center;
  margin-bottom: 61px;
}
.section-title-center h2 {
  letter-spacing: 0px;
  padding-left: 10px;
}
.section-title-center .section-title-left {
  width: 100%;
}
.section-title-center .section-title-left h2 {
  font-size: 60px;
  letter-spacing: 0.025em;
  font-family: "Inter", sans-serif;
  width: 100%;
}
.section-title-center .section-title-right {
  text-align: center;
  width: 100%;
  display: block;
}
.section-title-center .section-title-right p {
  width: 100%;
  max-width: 775px;
  margin: 0 auto;
  color: #889099;
  font-size: 20px;
  letter-spacing: 0;
}
.section-title-center > div {
  width: 100%;
}

.box-style-design {
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  background: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922),
    inset 0px 4px 5px 0px rgba(0, 0, 0, 0.2509803922);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  transform: scale(0.95);
}

.box-listing {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.938rem;
}

.global-gray-box {
  border: 1px solid #ffffff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #f7f7f7;
  width: calc(100% - 2.5rem);
  margin: 0 1.2rem 1.5rem 1.2rem;
  display: inline-block;
}
.global-gray-box .global_centerd_auto_slider::before {
  background: rgb(247, 247, 247);
  background: linear-gradient(
    90deg,
    rgb(247, 247, 247) 0%,
    rgba(247, 247, 247, 0) 100%
  );
  bottom: 23px;
}
.global-gray-box .global_centerd_auto_slider::after {
  background: rgb(247, 247, 247);
  background: linear-gradient(
    270deg,
    rgb(247, 247, 247) 0%,
    rgba(247, 247, 247, 0) 100%
  );
  bottom: 23px;
}

.global-box-style {
  margin-bottom: 1.5rem;
  margin-left: 0.7rem;
  margin-right: 0.7rem;
  border-radius: 8px;
  background: #fbfbfb;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078),
    inset 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922); /* Inset shadow */
}
.global-box-style .grant-alerts__tag {
  padding: 0;
  z-index: 9;
}

.has-medium-font-size {
  font-size: 24px !important;
}

.is-style-outline.wp-block-button__link {
  border-radius: 5px;
  min-width: 380px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-family: "Palatino_Bold";
  padding: 0.9rem !important;
}

.wp-block-separator.is-style-wide {
  border: none;
  border-bottom: 1px solid;
  margin-left: auto;
  margin-right: auto;
  color: #c1c1c1;
  position: relative;
  margin-bottom: 1.8rem;
}
.wp-block-separator.is-style-wide:after {
  content: "";
  width: 2px;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #c1c1c1;
}

.global_centerd_auto_slider {
  position: relative;
}
.global_centerd_auto_slider::before {
  position: absolute;
  content: "";
  width: 10.625rem;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}
.global_centerd_auto_slider::after {
  position: absolute;
  content: "";
  width: 10.625rem;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}
.global_centerd_auto_slider .swiper-button-next,
.global_centerd_auto_slider .swiper-button-prev {
  width: 3.75rem;
  height: 3.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.625rem;
  background-color: #232323;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  transition: all 0.4s;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  border-radius: 0;
}
.global_centerd_auto_slider .swiper-button-next:hover,
.global_centerd_auto_slider .swiper-button-prev:hover {
  background-color: #f60656;
}
.global_centerd_auto_slider .swiper-button-next {
  background-image: url("../images/grant-alert-arrow-next.svg");
  right: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-right: 0;
}
.global_centerd_auto_slider .swiper-button-prev {
  background-image: url("../images/grant-alert-arrow-prev.svg");
  left: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 100%;
  height: 44px;
  width: 44px;
  top: 50%;
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
  background: #232323;
  border: 0;
  font-size: 0;
  transition: all 0.5s;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ffffff;
  right: 40px;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  filter: invert(1);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 19px;
  height: 13px;
  background-size: cover;
  transition: all 0.5s;
}

.swiper-button-prev {
  left: 40px;
}
.swiper-button-prev:after {
  background-image: url("../images/grant-alert-arrow-prev.svg");
}

.swiper-button-next {
  right: 40px;
}
.swiper-button-next:after {
  background-image: url("../images/grant-alert-arrow-next.svg");
}

.top-arrow-hover:hover:after {
  background-image: url(../images/arrow-white-hover.svg);
  transform: rotate(0deg);
}
/* .top-arrow-hover:after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  margin: auto;
  background: url(../images/arrow.svg) center center no-repeat;
  transition: 0.3s all;
  width: 2.06rem;
  height: 2.06rem;
  transform: rotate(-45deg);
  z-index: 99;
} */
.top-arrow-hover .client-stories__title:after {
  display: none;
}

.site-header {
  position: fixed;
  padding: 0;
  width: 100%;
  z-index: 1111;
  box-shadow: none;
  transition: all 0.4s;
  top: 0;
}
.site-header .container {
  width: 100%;
}
.site-header__top {
  padding: 20px 74px 16px 50px;
  /* border-bottom: 1px solid rgba(219, 223, 236, 0.5); */
}
.site-header__top .site-header__top_search.local-grant {
  opacity: 1;
  visibility: visible;
  margin: 0;
  padding: 0;
}

.site-header__top .site-header__top_search.local-grant .search-px::before {
  filter: invert(1);
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="search"] {
  border: 0;
  color: #ffffff;
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="search"]::-moz-placeholder {
  opacity: 1;
  color: #ffffff;
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="search"]::placeholder {
  opacity: 1;
  color: #ffffff;
}
.site-header__top .site-header__top_search.local-grant .search-px::before {
  filter: invert(1);
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="search"] {
  border: 0;
  color: #ffffff;
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="search"]::-moz-placeholder {
  opacity: 1;
  color: #ffffff;
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="search"]::placeholder {
  opacity: 1;
  color: #ffffff;
}
.site-header__top
  .site-header__top_search.local-grant
  .search-px
  input[type="submit"] {
  display: none;
}

.site-header__bottom {
  padding: 25px 60px 25px 50px;
}
.site-header__bottom .container {
  padding: 0;
}
.site-header.sticky {
  background-color: #ffffff;
  top: 0px;
}
.site-header.sticky .header-panel-btn {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: all 0.3s;
  overflow: visible;
  line-height: 1.5;
}
.site-header.sticky .sticky-logo {
  filter: invert(1);
}
.site-header.sticky .main-navigation ul li a {
  color: #232323 !important;
}
.site-header.sticky,
.site-header.panel-header-sticky {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
}
.site-header.sticky .normal-logo,
.site-header.panel-header-sticky .normal-logo,
.site-header.normal-header .normal-logo {
  opacity: 1;
}
.site-header.sticky .sticky-logo,
.site-header.panel-header-sticky .sticky-logo,
.site-header.normal-header .sticky-logo {
  opacity: 1;
}
.site-header.sticky .main-navigation ul li a,
.site-header.panel-header-sticky .main-navigation ul li a,
.site-header.normal-header .main-navigation ul li a {
  color: #ffffff;
}
.site-header.sticky .main-navigation ul li.current-menu-item a,
.site-header.panel-header-sticky .main-navigation ul li.current-menu-item a,
.site-header.normal-header .main-navigation ul li.current-menu-item a {
  font-weight: 600;
}
/* Default placeholder color */
.site-header.normal-header .local-grant input[type="search"]::placeholder,
.site-header.normal-header .local-grant input[type="search"]::-moz-placeholder {
  color: #232323 !important;
}

.site-header.sticky .local-grant input[type="search"]::placeholder,
.site-header.sticky .local-grant input[type="search"]::-moz-placeholder,
.site-header.panel-header-sticky .local-grant input[type="search"]::placeholder,
.site-header.panel-header-sticky
  .local-grant
  input[type="search"]::-moz-placeholder {
  color: #fff;
}

.site-header.sticky .local-grant .search-px:before,
.site-header.panel-header-sticky .local-grant .search-px:before,
.site-header.normal-header .local-grant .search-px:before {
  background-image: url(../images/black-seach-icon.svg);
  display: none;
}
.site-header.sticky .local-grant input[type="submit"],
.site-header.panel-header-sticky .local-grant input[type="submit"],
.site-header.normal-header .local-grant input[type="submit"] {
  background: url("../images/seach-icon.svg") center center no-repeat;
  background-size: 1.5rem;
  transition: background 0.3s ease;
  border: none;
  padding-left: 23px;
  padding-top: 24px;
  cursor: pointer;
}
.site-header.sticky .local-grant input[type="submit"],
.site-header.panel-header-sticky .local-grant input[type="submit"],
.site-header.sticky-header .local-grant input[type="submit"] {
  background: url("../images/seach-icon-blackk.svg") center center no-repeat;
  background-size: 1.5rem;
  transition: background 0.3s ease;
  border: none;
  color: black;
  padding-left: 23px;
  padding-top: 24px;
  cursor: pointer;
}

.site-header.sticky .local-grant input[type="submit"].active,
.site-header.panel-header-sticky .local-grant input[type="submit"].active,
.site-header.normal-header .local-grant input[type="submit"].active {
  background: url("../images/pink-search-arrow.svg") center center no-repeat;
  background-size: 1.5rem;
}

.local-grantt input[type="search"]::placeholder,
.local-grantt input[type="search"]::-moz-placeholder,
.local-grantt input[type="search"]::placeholder,
.local-grantt input[type="search"]::-moz-placeholder {
  color: #fff;
}

.local-grantt .search-px:before,
.local-grantt .search-px:before,
.local-grantt .search-px:before {
  background-image: url(../images/black-seach-icon.svg);
  display: none;
}
.local-grantt input[type="submit"],
.local-grantt input[type="submit"],
.local-grantt input[type="submit"] {
  background: url("../images/seach-icon.svg") center center no-repeat;
  background-size: 1.5rem;
  transition: background 0.3s ease;
  border: none;
  padding-left: 23px;
  padding-top: 24px;
  cursor: pointer;
}
.local-grantt input[type="submit"],
.local-grantt input[type="submit"],
.local-grantt input[type="submit"] {
  background: url("../images/seach-icon-blackk.svg") center center no-repeat;
  background-size: 1.5rem;
  transition: background 0.3s ease;
  border: none;
  color: black;
  padding-left: 23px;
  padding-top: 24px;
  cursor: pointer;
}

.local-grantt input[type="submit"].active,
.local-grantt input[type="submit"].active,
.local-grantt input[type="submit"].active {
  background: url("../images/pink-search-arrow.svg") center center no-repeat;
  background-size: 1.5rem;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children > .sub-menu {
  display: none !important;
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  padding: 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  z-index: 999;
}

.menu-item-has-children:hover > .sub-menu {
  display: block !important;
}

.sub-menu li a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
  color: #000 !important;
  text-decoration: none;
}

.sub-menu li a:hover {
  color: #000 !important;
  font-weight: bold !important;
}
.site-header.normal-header .local-grant .search-field {
  border-bottom: 2px solid #fff;
  color: #fff;
}
.site-header.normal-header .local-grant .search-field::placeholder {
  color: #fff;
  opacity: 0.5 !important;
}

/* When sticky (black theme) */
.site-header.sticky .local-grant .search-field,
.site-header.panel-header-sticky .local-grant .search-field,
.site-header.sticky-header .local-grant .search-field {
  border-bottom: 2px solid #000;
  color: #000;
}

.site-header.sticky .local-grant .search-field::placeholder,
.site-header.panel-header-sticky .local-grant .search-field::placeholder,
.site-header.sticky-header .local-grant .search-field::placeholder {
  color: #000 !important;
  opacity: 0.7 !important;
}
/* Hide the "X" (clear button) inside search input for WebKit browsers (Chrome, Edge, Safari) */
.local-grant .search-field::-webkit-search-decoration,
.local-grant .search-field::-webkit-search-cancel-button,
.local-grant .search-field::-webkit-search-results-button,
.local-grant .search-field::-webkit-search-results-decoration {
  display: none;
}

/* Hide it for Firefox */
.local-grant .search-field[type="search"]::-moz-search-clear {
  display: none;
}

.local-grant .search-field:focus {
  outline: none;
}

.local-grant .search-field {
  transition: border-color 0.3s ease, color 0.3s ease;
}

.site-header.sticky .local-grant:before,
.site-header.panel-header-sticky .local-grant:before,
.site-header.normal-header .local-grant:before {
  background-color: #fff;
}
.site-header.sticky .local-grant:before,
.site-header.panel-header-sticky .local-grant:before,
.site-header.sticky-header .local-grant:before {
  background-color: #000;
}
.site-header.sticky .mobile-items img,
.site-header.panel-header-sticky .mobile-items img,
.site-header.normal-header .mobile-items img {
  filter: brightness(0);
}
.site-header .logo {
  width: 10.75rem;
  position: relative;
  filter: invert(1);
  display: flex;
  align-items: center;
}
.site-header .sticky-logo {
  position: absolute;
  opacity: 0;
  top: 0;
}
@media (max-width: 1100px) {
  .site-header.site-header .container {
    width: 64.25rem;
  }
}
.site-header .head-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1240px) {
  .site-header .head-main {
    padding: 0 1.25rem;
  }
}
.site-header .head-main .head-left {
  display: flex;
  align-items: center;
}
.site-header .local-grant {
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.25rem;
  margin-left: 1.25rem;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1100px) {
  .site-header .local-grant {
    display: none;
  }
}
.site-header .local-grant:before {
  width: 1px;
  height: 2.25rem;
  position: absolute;
  left: 0;
  content: "";
  background-color: #ffffff;
  top: 0;
  bottom: 0;
  margin: auto;
}
.site-header .local-grant input[type="search"] {
  display: inline-block;
  position: relative;
  background: transparent;
  font-family: "Inter", sans-serif;
  border: 0;
  border-bottom: 1px solid #ffffff;
  padding: 0.13rem 1.35rem 0.2rem 0rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: normal;
  min-width: 16.7rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: 0.5s all;
  margin-left: 10px;
}

.site-header .local-grant input[type="search"]::-moz-placeholder {
  opacity: 1 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em;
}
.site-header .local-grant input[type="search"]::-moz-placeholder {
  opacity: 1 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em;
}
.site-header .local-grant input[type="search"]::placeholder {
  opacity: 1 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em;
}
.site-header .local-grant input[type="submit"] {
  background-image: url(../images/white-search-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 1.2rem;
  height: 1.2rem;
  background-size: 1.2rem;
  position: absolute;
  right: 4px;
  top: -5px;
  bottom: 0;
  margin: auto;
  border: 0;
  padding: 0;
  font-size: 0;
  min-width: auto;
  transition: 0.3s all;
  background-color: inherit;
}
.site-header .local-grant input[type="submit"]:hover {
  animation: bounce 0.8s infinite ease-in-out;
  background-image: url(../images/pink-search-arrow.svg);
}
.site-header .local-grant .search-active input[type="search"] {
  border-width: 2px;
  border-color: #f60656;
  .site-header .local-grant input[type="submit"]:hover {
    animation: bounce 0.8s infinite ease-in-out;
    background-image: url(../images/pink-search-arrow.svg);
  }
}
.site-header .local-grant .search-px {
  position: relative;
}
.site-header .local-grant .search-px:before {
  background: url(../images/seach-icon.svg) center center no-repeat;
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  bottom: 0.25rem;
  margin: auto;
}
.site-header .main-navigation ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
}
.site-header .main-navigation ul li {
  padding: 0 24px;
  list-style-type: none;
  font-family: "Inter", sans-serif;
}
.site-header .main-navigation ul li:last-child {
  padding-right: 15px;
}
.site-header .main-navigation ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px !important;
  position: relative;
  padding: 7px 0 1px;
  text-transform: uppercase;
  display: block;
}
.site-header .main-navigation ul li a:hover {
  font-weight: bold;
  color: #ffffff;
}
.site-header .main-navigation ul li a:hover:after {
  width: 100%;
}
.site-header .main-navigation ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  /* background: linear-gradient(to right, red, orange, yellow);
   */
  background-color: #f60656;
  width: 0;
  height: 2px;
  position: absolute;
  content: "";
  transition: 0.3s all;
}
.site-header .head-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header .local-grant {
  opacity: 1;
  visibility: visible;
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.site-header .local-grant input[type="search"] {
  min-width: 220px;
}

.site-header .local-grant .search-px {
  position: relative;
}

.site-header .local-grant .search-px::before {
  content: "";
  background: url("../images/seach-icon.svg") center center no-repeat;
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: background 0.3s ease;
}

.site-header .local-grant .search-px.active::before {
  background: url("../images/white-search-arrow.svg") center center no-repeat;
  background-size: 1.5rem;
}

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current-menu-parent > a {
  color: orange;
  position: relative;
}
.home .sticky-panel {
  top: 1410px;
}
@media (max-width: 1290px) {
  .home .sticky-panel {
    top: 1240px;
  }
}

.sticky-panel {
  position: absolute;
  top: 1060px;
  display: flex;
  grid-gap: 1.31rem;
  align-items: center;
  z-index: 11;
  font-size: 0.875rem;
  transform: rotate(-90deg);
  transform-origin: left top;
  white-space: nowrap;
  left: 0.625rem;
}
@media (max-width: 720px) {
  .sticky-panel {
    display: none;
  }
}
.sticky-panel.stopped {
  position: fixed;
}
.sticky-panel .sticky-link {
  width: 3.87rem;
  height: 1px;
  background-color: #ffffff;
}
.sticky-panel .back-to-top {
  position: absolute;
  bottom: -0.563rem;
  left: -3.313rem;
  transform: rotate(90deg);
}

.mobile-search {
  display: none;
}
@media (max-width: 1280px) {
  .mobile-search {
    display: block;
  }
}

.mobile-items {
  display: none;
}
@media (max-width: 1280px) {
  .mobile-items {
    display: flex;
    grid-gap: 1.875rem;
  }
}

.main-menu {
  display: block;
}
@media (max-width: 1280px) {
  .main-menu {
    display: none;
  }
}

@media (max-width: 1280px) {
  .site-header .local-grant {
    display: none;
  }
}
.fa-phone-volume:before,
.fa-volume-control-phone:before {
  padding-right: 10px;
}

.fa-envelope:before {
  padding-right: 10px;
}

/* .fa-phone-volume:hover:before, 
.fa-volume-control-phone:hover:before, 
.fa-envelope:hover:before {
  color: #F60656;
} */
.site-footer__top .col-lg-4 p:hover {
  color: #f60656;
  width: fit-content;
}
.site-footer__top .col-lg-4 p {
  width: fit-content;
}

.divider-footer {
  border-top: 1px solid #e0e0e0;
  width: 50px;
  padding: 0px 20px;
  height: 2px;
  margin: 2.5rem 0;
  border-color: black;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.header-panel-btn {
  position: absolute;
  left: 50px;
  margin: 0 auto;
  top: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  opacity: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s;
}
.header-panel-btn a {
  background-color: #f0f0f0;
  padding: 0.35rem 1.8rem;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Palatino_Bold";
  letter-spacing: 0.1em;
  border-radius: 0 0 0.625rem 0.625rem;
  color: #232323;
  display: inline-block;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  line-height: 1.5;
}
.header-panel-btn.hide-panel-btn {
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* Sticky Panel */
.grants-panel {
  position: fixed;
  z-index: 12;
  width: 100%;
  transform: translate(0px, -338px);
  transition: 0.3s all;
}
.grants-panel.grant-panel-active {
  z-index: 2;
  transform: translate(0px, 0px);
}
.grants-panel.grant-panel-active .panel-btn .disable-panel-btn {
  display: inline-block;
}
.grants-panel .panel-btn {
  position: absolute;
  bottom: -1.625rem;
  width: 100%;
  text-align: center;
  left: 0;
  transition: 0.3s all;
}
.grants-panel .panel-btn a {
  background-color: #f0f0f0;
  padding: 0.35rem 1.8rem;
  font-size: 10px;
  text-transform: uppercase;
  font-family: "Palatino_Bold";
  letter-spacing: 0.1em;
  border-radius: 0 0 0.625rem 0.625rem;
  color: #ffffff;
  display: inline-block;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
.grants-panel .grants-sticky {
  padding: 88px 0 1.1rem 0;
  width: 100%;
  background: linear-gradient(0deg, #f0f0f0 -5.56%, #ffffff 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.grants-panel .grants-sticky .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 50px;
}
.grants-panel .grants-sticky .swiper-slide {
  width: 25rem;
  margin-right: 0;
  padding: 2rem 0.625rem 1rem;
  opacity: 0.2;
  transition: 0.3s all;
}
.grants-panel .grants-sticky .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.grants-panel .grants-sticky .swiper-slide.swiper-slide-next {
  opacity: 1;
}
.grants-panel .grants-sticky .grants-sticky-slider {
  overflow: hidden;
  width: calc(100% - 300px);
  margin-left: 0;
  position: relative;
}
.grants-panel .grants-sticky__headline {
  padding-top: 40px;
  width: 18.81rem;
}
.grants-panel .grants-sticky__headline h5 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  margin-right: 0;
}
.grants-panel .grants-sticky__headline h5 strong {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  font-style: normal;
}
.grants-panel .grants-sticky__headline .link-btn {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding-right: 2rem;
  padding-bottom: 2px;
}
.grants-panel .grants-sticky__headline .link-btn:after {
  background: url(../images/black-search-arrow.svg) center center no-repeat;
  transition: 0.3s all;
  width: 20px;
  height: 20px;
  background-size: 20px;
}
.grants-panel .grants-sticky__headline .link-btn:hover:after {
  background-image: url(../images/right-arrow.svg);
  animation: bounce 0.8s infinite ease-in-out;
}
.grants-panel__navigation {
  padding: 0;
  display: flex;
  align-items: center;
}
.grants-panel__navigation .swiper-button-next,
.grants-panel__navigation .swiper-button-prev {
  position: relative;
  right: auto;
  left: auto;
  top: auto;
  width: 30px;
  height: 30px;
}

.grants-list-main .grant-alerts__box {
  display: flex;
  max-width: 100%;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
}
.grants-list-main .grant-alerts__box h4 {
  font-size: 0.913rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.02rem;
  min-height: unset;
  color: #ffffff;
}
.grants-list-main .grant-alerts__box h4:hover {
  color: #ffffff;
}
.grants-list-main .grant-alerts__box:hover .grant-alerts__price::after {
  transform: rotate(0deg) !important;
  background: url(../images/arrow-pink-hover.svg) center center no-repeat !important;
}
.grants-list-main .grant-alerts__box:hover .grant-alerts__text h4 {
  color: #ffffff;
}
.grants-list-main .grant-alerts__image {
  width: 11.5rem;
  border-radius: 0.5rem;
  position: relative;
  height: 100%;
}
.grants-list-main .grant-alerts__image > img {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.grants-list-main .grant-alerts__text {
  width: 15.31rem;
  padding: 0.4rem 1.75rem 1rem 1.2rem;
}
.grants-list-main .grant-alerts__date {
  font-size: 0.844rem;
  margin-bottom: 0px;
  line-height: normal;
}
.grants-list-main .grant-alerts__price {
  color: #ffffff;
  font-size: 0.688rem;
  letter-spacing: 0.01rem;
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  padding-right: 1.25rem;
}
.grants-list-main .grant-alerts__price label {
  font-size: 1.563rem;
  color: #ffffff;
}
.grants-list-main .grant-alerts__price::after {
  background: url(../images/arrow-pink.svg) center center no-repeat !important;
  width: 1.5rem;
  height: 1.75rem;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg) !important;
}

#page {
  width: 100%;
  position: relative;
  background-color: #ffffff;
  z-index: 1;
}
.site-footer {
  color: #232323;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #000;
}
.site-footer__top {
  padding: 120px 120px 6px;
}
.site-footer__top .col-auto:last-child {
  width: auto;
}
.site-footer__top .col-lg-4 p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #6d737a;
}
.lab-footer {
  visibility: hidden;
}
.site-footer__top .col-lg-4 p.site-footer__email {
  margin-bottom: 26px;
}
.site-footer__top .col-lg-4 p a {
  color: #ffff;
}
.site-footer__top .col-lg-4 p a:hover {
  color: #f60656;
}
.site-footer__top .col-lg-4 p strong {
  color: #363a3d;
}
.site-footer__top .col-lg-4 label {
  margin-bottom: 10px;
  color: #ffff;
}
.site-footer__top label {
  font-weight: 600;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  color: #fff;
}
.contact-label {
  padding-bottom: 10px;
}
.site-footer .footer-logo {
  margin: 0 0 30px;
}
.site-footer a {
  color: #232323;
}
.site-footer .social-icons {
  display: flex;
  padding: 0;
}
.site-footer .social-icons li {
  padding: 0 10px 0 0;
  margin: 0;
  list-style: none;
}

.follow-footer {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.follow-footer span {
  padding-right: 14px;
  font-style: italic;
  color: #fff;
}

.bottom-icon {
  display: flex;
  gap: 10px;
}
/* Base button styles */
.footer-button a {
  display: inline-block;
  text-decoration: none;
  /* margin-right: 5px; */
}

.footer-button a span {
  display: inline-block;
  padding: 5px 10px;
  font-weight: 300;
  transition: all 0.3s ease;
}

.footer-button a:nth-child(-n + 2) span {
  background-color: transparent;
  color: white;
}

.footer-button a:nth-child(-n + 2):hover span {
  color: #f60656;
}

.footer-button a:last-child span {
  background-color: #fff;
  color: #f60656;
}

.footer-button a:last-child:hover span {
  background-color: white;
  color: #f60656;
  font-weight: 500;
}

.follow-footer .social-icons img {
  height: 20px;
  width: 20px;
}
.follow-footer .social-icons li:last-child img {
  height: 20px;
  width: 20px;
}
/* .site-footer .social-icons li a {
  display: flex; */
/* align-items: center;
justify-content: center; */
/* } */
.site-footer .social-icons li a:hover {
}
.site-footer .social-icons li a:hover img {
}
.site-footer__menu {
  padding: 0;
  margin: 0;
}
.site-footer__menu li {
  padding: 0;
  margin: 0 0 10px;
  list-style: none;
  font-size: 16px;
  line-height: 24px;
}
.site-footer__menu li.current-menu-item > a,
.site-footer__menu li.active > a {
  color: #f60656;
  font-weight: 600;
}
.site-footer__menu li a {
  color: #ffff;
}
.site-footer__menu li a:hover {
  color: #f60656;
}
.site-footer .footer-cp {
  color: #ffffff;
  font-size: 14px;
  display: flex;
  font-style: italic;
  letter-spacing: 0.01em;
}
.site-footer .footer-cp span {
  padding: 0 10px;
}
.site-footer .footer-cp label {
  color: #222020;
}
.site-footer .footer-copyright {
  background-color: #000;
  padding: 10px 180px 10px 171px;
}
.site-footer .footer-slider {
  background-color: #232323;
  padding: 37px 0;
  color: #ffffff;
}
.site-footer .footer-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.site-footer .footer-marquee {
  width: 100%;
}
.site-footer .footer-marquee .swiper-slide {
  text-align: center;
  font-size: 1.87rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 1.56rem;
  font-weight: 600;
}
.logo-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.grow-line {
  flex-grow: 1;
  height: 36px;
  border-bottom: 1px solid #f60656;
}
@media (max-width: 1290px) {
  .site-footer .footer-marquee .swiper-slide {
    font-size: 1.6rem;
  }
}
@media (max-width: 720px) {
  .site-footer .footer-marquee .swiper-slide {
    padding: 0;
  }
}
.site-footer .footer-marquee .swiper-slide i {
  font-weight: 200;
}

.two-column-text {
  padding-right: 4.37rem;
  padding-top: 1.5rem;
}
.two-column-text h2 {
  margin-bottom: 1.87rem;
}
.two-column-text p {
  margin-bottom: 3rem;
}

.gradient-heading {
  font-size: 12.5rem;
  font-weight: 600;
  background: linear-gradient(180deg, #e5e5e5 0%, #fdfdfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 4px 4px 5px rgba(255, 255, 255, 0.7);
  line-height: 0.9;
  margin-bottom: -0.938rem;
  margin-left: -0.625rem;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .gradient-heading {
    font-size: 7rem;
  }
}
.gradient-heading.small {
  font-size: 10rem;
}

.small-wrapper {
  width: 63.75rem;
}

.normal-content {
  font-size: 1.12rem;
}
.normal-content p {
  margin-bottom: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}
.normal-content p.has-medium-font-size {
  font-size: 24px !important;
  margin-bottom: 1.1rem;
}
.normal-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.normal-content h3 {
  font-size: 1.87rem;
  font-family: "Palatino_Regular";
  color: #cc0b4b;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 1.063rem;
}
.normal-content a:hover {
  color: #232323;
}

.default-page-headline .inner-hero__bg {
  height: 19rem;
}
@media (max-width: 1290px) {
  .default-page-headline .inner-hero__bg {
    width: 6rem;
  }
}

.pb-date {
  margin: 0 !important;
}
.pb-date p {
  margin-bottom: 1rem;
}
.pb-date a {
  text-decoration: underline;
}
.pb-date a:hover {
  text-decoration: none;
  color: #232323;
}

.breadcrumbs {
  padding: 1.1rem 0 0.625rem 0;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.breadcrumbs .pip {
  padding: 0 4px;
}
.breadcrumbs a {
  color: #232323;
}
.breadcrumbs a:hover {
  color: #f60656;
}
.breadcrumbs span {
  color: #cc0b4b;
}
.breadcrumbs span:hover {
  color: #f60656;
}

.content {
  overflow: auto;
  position: relative;
  width: 100%;
  max-width: 97%;
  height: 33.12rem;
  box-sizing: border-box;
}

.mCSB_scrollTools .mCSB_dragger_bar {
  background-color: #232323 !important;
}
.mCSB_scrollTools .mCSB_draggerRail {
  display: none !important;
}

#background-img {
  transition: 0.5s all; /* Adjust the duration as needed */
  opacity: 1;
}

.fade-out {
  opacity: 0;
}

.padding-container {
  padding-left: calc((100vw - 74.25rem) / 2 + 0.313rem);
}

.clientExp {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 40px;
}
.clientExp .clientExp-background {
  width: 100%;
  height: 14.37rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  background-color: #232323;
}
.clientExp .clientExp-background img {
  filter: blur(90px);
  width: 110%;
  opacity: 0.9;
}
.clientExp .swiper-slide {
  width: 320px;
  padding: 0px;
}
.clientExp .swiper-wrapper {
  transition-timing-function: linear !important;
}
.clientExp__box {
  padding: 20px;
  color: #ffffff;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  height: 320px;
  overflow: hidden;
  transition: 0.3s all;
  border-radius: 6px;
  display: flex;
  align-items: center;
}
.clientExp__box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(28, 29, 32);
  background: linear-gradient(
    260deg,
    rgba(28, 29, 32, 0) 0%,
    rgba(35, 35, 35, 0.6) 100%
  );
}
.clientExp__box blockquote {
  font-weight: 600;
  position: relative;
  z-index: 1;
  line-height: 1.3em;
  margin: 0;
}
.clientExp__box .auther {
  font-weight: 600;
  width: calc(100% - 50px);
  letter-spacing: -0.02em;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 14px;
}
.clientExp__box .auther-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
}
.clientExp__box:hover {
  transform: scale(1.05);
}
.clientExp__text {
  position: absolute;
  z-index: 9;
  bottom: 13px;
  left: 20px;
  right: 20px;
}
.clientExp__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.clientExp__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

.semi {
  opacity: 0;
  animation: fade 2s infinite;
  animation-name: fade;
}

.animated1 {
  animation-delay: 0;
}

.animated2 {
  animation-delay: 400ms;
}

.animated3 {
  animation-delay: 800ms;
}

.animated4 {
  animation-delay: 1200ms;
}

.homeSubscribe {
  width: calc(100% - 2.5rem);
  margin: 0 auto 3.5rem auto;
}
.homeSubscribe__top-section {
  background: url(../images/subscribe-background-new.jpg) center top no-repeat;
  padding: 7rem 3.125rem 3.4rem 3.125rem;
  color: #ffffff;
  border-radius: 20px;
  background-size: cover;
  position: relative;
  box-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 1290px) {
  .homeSubscribe__top-section {
    padding: 7rem 2.125rem 8rem 2.125rem;
  }
}
@media (max-width: 720px) {
  .homeSubscribe__top-section {
    border-radius: 2.5rem;
    padding: 5rem 1rem 8rem 1rem;
  }
}
.homeSubscribe__grantsiren-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 2.87rem;
}
.homeSubscribe__grantsiren-logo img {
  max-width: 36.18rem;
  width: 100%;
}
.homeSubscribe__grantsiren-logo h2 {
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  font-size: 2.5rem;
  margin-bottom: 0;
}
@media (max-width: 1290px) {
  .homeSubscribe__grantsiren-logo h2 {
    margin-top: 1rem;
  }
}
@media (max-width: 991px) {
  .homeSubscribe__grantsiren-logo h2 {
    font-size: 1.8rem;
    max-width: 390px;
    margin: 0 auto;
    letter-spacing: 0;
  }
}
.homeSubscribe__layers {
  display: flex;
  grid-gap: 0.313rem;
  max-width: 36.18rem;
  margin: 0 auto 1.5rem auto;
  position: relative;
}
@media (max-width: 720px) {
  .homeSubscribe__layers {
    margin-bottom: 1.5rem;
  }
}
.homeSubscribe__layers.aos-animate > span {
  transform: translate(0px, 0) !important;
  opacity: 1;
}
.homeSubscribe__layers.aos-animate .wifi {
  opacity: 1;
}
.homeSubscribe__layers > span {
  transition: 0.8s all;
  opacity: 0;
  transition-delay: 0.2s;
}
.homeSubscribe__layers .layer1 {
  transform: translate(0px, 3.125rem);
}
.homeSubscribe__layers .layer2 {
  margin-right: -0.375rem;
  margin-left: 0.188rem;
  transform: translate(0px, -3.12rem);
}
.homeSubscribe__layers .layer3 {
  transform: translate(0px, 3.125rem);
}
.homeSubscribe__layers .layer4 {
  transform: translate(0px, -3.12rem);
}
.homeSubscribe__layers .layer5 {
  margin-top: -1.063rem;
  transform: translate(0px, 3.125rem);
}
.homeSubscribe__layers .layer6 {
  transform: translate(0px, -3.12rem);
}
.homeSubscribe__layers .layer7 {
  margin-top: -1.37rem;
  transform: translate(0px, 3.125rem);
}
.homeSubscribe__layers .layer8 {
  margin: 0 -0.25rem 0 0.313rem;
  transform: translate(0px, -3.12rem);
}
.homeSubscribe__layers .layer9 {
  transform: translate(0px, 3.125rem);
}
.homeSubscribe__layers .layer10 {
  transform: translate(0px, -3.12rem);
}
.homeSubscribe__layers .layer11 {
  width: 1.625rem;
  margin-left: 0.25rem;
  margin-top: 2px;
  opacity: 0;
}
.homeSubscribe__layers .wifi {
  position: absolute;
  left: 62%;
  top: -41%;
  opacity: 0;
  transition: 0.4s all;
  transition-delay: 1s;
}
.homeSubscribe__layers .wifi span {
  position: absolute;
}
.homeSubscribe__layers .wifi .line1 {
  width: 1.18rem;
}
.homeSubscribe__layers .wifi .line2 {
  width: 1.68rem;
  top: -0.5rem;
}
.homeSubscribe__layers .wifi .line3 {
  width: 2rem;
  top: -0.938rem;
  left: 0.188rem;
}
.homeSubscribe__layers .wifi .line4 {
  width: 2.5rem;
  top: -1.43rem;
  left: 0.313rem;
}
.homeSubscribe__flex {
  display: flex;
  max-width: 61.87rem;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .homeSubscribe__flex {
    flex-wrap: wrap;
  }
}
.homeSubscribe__icon-cl {
  width: 50%;
  margin-top: 3rem;
}
@media (max-width: 1290px) {
  .homeSubscribe__icon-cl {
    width: 46%;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .homeSubscribe__icon-cl {
    width: 100%;
    display: none;
  }
}
.homeSubscribe__woman-image {
  margin-left: -44px;
  margin-top: -4px;
  margin-right: -6.5rem;
  margin-bottom: -24px;
}
@media (max-width: 1290px) {
  .homeSubscribe__woman-image {
    margin-left: 0;
    margin-top: -2rem;
    margin-right: -2rem;
    width: 53%;
  }
}
@media (max-width: 991px) {
  .homeSubscribe__woman-image {
    margin-left: 0;
    margin-top: -4rem;
    margin-right: 0;
    width: 100%;
  }
}
.homeSubscribe .icon-mainCl {
  margin-top: 0.75rem;
  width: 80%;
}
.homeSubscribe .icon-mainCl h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  letter-spacing: 0;
}
.homeSubscribe .icon-mainCl .icon-repeat {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.homeSubscribe .icon-mainCl .icon-image {
  width: 1.87rem;
  margin-right: 1.1rem;
}
.homeSubscribe .icon-mainCl .icon-text {
  font-size: 1.12rem;
  line-height: 1.4;
  font-weight: 300;
  width: calc(100% - 3.31rem);
  letter-spacing: 0.01em;
}
.homeSubscribe__bottom-part {
  width: 100%;
}
.homeSubscribe__whiteBox {
  padding: 5.4rem 6.25rem 5.06rem 6.25rem;
  position: relative;
  border-radius: 1rem;
  margin-top: -4.93rem;
  max-width: 55rem;
  background: #f7f7f7;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922) inset;
  font-size: 16px;
  line-height: 1.4;
}
@media (max-width: 1290px) {
  .homeSubscribe__whiteBox {
    margin-top: -8rem;
    padding: 3rem 3rem 6rem 3rem;
  }
}
@media (max-width: 991px) {
  .homeSubscribe__whiteBox {
    padding: 3rem 3rem 12rem 3rem;
  }
}
@media (max-width: 720px) {
  .homeSubscribe__whiteBox {
    padding: 2rem 2rem 1rem 2rem;
  }
}
.homeSubscribe .save-headline {
  position: relative;
}
@media (max-width: 991px) {
  .homeSubscribe .save-headline {
    text-align: center;
    padding-bottom: 1.375rem;
  }
}
@media (max-width: 991px) {
  .homeSubscribe .save-headline p {
    max-width: 282px;
    text-align: left;
    margin: 0 auto;
  }
}
.homeSubscribe .save-headline h3 {
  font-size: 3.75rem;
  letter-spacing: 0;
  font-weight: 800;
  font-style: italic;
  line-height: 0.8;
  margin: 0;
  color: #cc0b4b;
  margin: 0 0 2.1rem 0;
}
@media (max-width: 991px) {
  .homeSubscribe .save-headline h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 720px) {
  .homeSubscribe .save-headline h3 {
    font-size: 9vw;
  }
}
.homeSubscribe .save-headline h3 strong {
  font-size: 6.87rem;
  display: block;
  color: #cc0b4b;
  font-weight: 200;
  font-style: normal;
}
@media (max-width: 1290px) {
  .homeSubscribe .save-headline h3 strong {
    font-size: 5.87rem;
    letter-spacing: -0.04em;
  }
}
@media (max-width: 991px) {
  .homeSubscribe .save-headline h3 strong {
    font-size: 5.3rem;
  }
}
@media (max-width: 720px) {
  .homeSubscribe .save-headline h3 strong {
    font-size: 14vw;
  }
}
.homeSubscribe .save-text {
  max-width: 29.68rem;
}
@media (max-width: 1290px) {
  .homeSubscribe .save-text {
    max-width: 19.68rem;
  }
}
@media (max-width: 991px) {
  .homeSubscribe .save-text {
    max-width: 100%;
    text-align: center;
  }
}
.homeSubscribe .save-text h4 {
  font-weight: 500;
  font-size: 1.87rem;
  margin-bottom: 1rem;
}
@media (max-width: 1290px) {
  .homeSubscribe .save-text h4 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .homeSubscribe .save-text h4 {
    margin-bottom: 1rem;
  }
}
.homeSubscribe .save-text p {
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
@media (max-width: 1290px) {
  .homeSubscribe .save-text p {
    margin-bottom: 2rem;
  }
}
.homeSubscribe .subscribe-btn {
  font-size: 14px;
  padding-right: 2.2rem;
  display: inline-block;
  position: relative;
  line-height: 1;
  color: #232323;
  text-transform: uppercase;
  font-family: "Palatino_Bold";
  transition: none;
  transition: 0.5s all;
}
@media (max-width: 720px) {
  .homeSubscribe .subscribe-btn {
    display: none;
  }
}
.homeSubscribe .subscribe-btn:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 25px;
  right: 0;
  bottom: 0;
  margin: auto;
  top: 0;
  background: url(../images/right-arrow3.svg) center center no-repeat;
  background-size: 20px;
}
.homeSubscribe .subscribe-btn:hover {
  color: #f60656;
}
.homeSubscribe .subscribe-btn:hover:after {
  background-image: url(../images/right-arrow3-white.svg);
  animation: bounce 0.8s infinite ease-in-out;
}
.homeSubscribe__normal {
  position: relative;
}
.homeSubscribe__3d-slide {
  background-color: #ffffff;
  padding: 39px 42px 99px;
  max-width: 380px;
  border: 1px solid #fdc2d6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  margin: 0 auto;
  margin-bottom: 2.18rem;
  position: relative;
  background: linear-gradient(
    to bottom,
    rgb(255, 247, 250) 0%,
    rgb(251, 251, 251) 100%
  );
}
.homeSubscribe__3d-slide.checkout-slide {
  padding: 1.06rem 3.06rem 1.31rem 1.06rem;
}
.homeSubscribe__3d-slide:after {
  content: "";
  width: 1px;
  height: 16.25rem;
  position: absolute;
  top: 0;
  right: 2.37rem;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    184deg,
    rgb(231, 231, 231) 0%,
    rgb(255, 255, 255) 80%
  );
}
.homeSubscribe__3d-slide label {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: right top;
  white-space: nowrap;
  position: absolute;
  color: #e9e9e9;
  font-size: 1.87rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  right: 0.188rem;
  bottom: 0;
  width: 131%;
  line-height: 1;
}
.homeSubscribe__3d-slide .slide3d-headline {
  font-size: 1.87rem;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 7px;
}
.homeSubscribe__3d-slide .slide3d-headline strong {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.homeSubscribe__3d-slide .slide3d-price {
  font-family: "Palatino_Regular";
  letter-spacing: -0.02em;
  display: flex;
  line-height: 0.8;
  margin-bottom: 31px;
  justify-content: center;
  color: #f60656;
  background: linear-gradient(to right, #cc0b4b, #f60656);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.homeSubscribe__3d-slide .slide3d-price .price-item1 {
  font-size: 3.75rem;
  padding-top: 0.5em;
}
.homeSubscribe__3d-slide .slide3d-price .price-item2 {
  font-size: 7.5rem;
  font-weight: 500;
}
.homeSubscribe__3d-slide .slide3d-price .price-item3 {
  font-size: 3.125rem;
  padding-top: 0.7em;
}
.homeSubscribe__3d-slide .slide3d-note {
  font-family: "Palatino_Regular";
  font-size: 14px;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.4em;
}
.homeSubscribe__3d-slide .slide3d-note span {
  color: #f60656;
  font-weight: bold;
}
.homeSubscribe__3d-slide ul {
  padding: 0;
  margin: 19px 0 0;
  min-height: 175px;
  width: 101%;
}
.homeSubscribe__3d-slide ul li {
  list-style-type: none;
  font-size: 16px;
  background: url(../images/check.svg) left top 5px no-repeat;
  padding-left: 25px;
  padding-bottom: 0;
  margin-bottom: 6px;
}
.homeSubscribe__3d-slide ul li i {
  font-size: 70%;
}
.homeSubscribe__3d-slide .btn {
  transition: 0.3s all;
  width: auto;
  margin: 0;
  letter-spacing: 0em;
  line-height: 18px;
  border-radius: 4px;
  padding: 7px 20px;
  text-transform: uppercase;
  position: absolute;
  bottom: 29px;
  left: 35px;
  right: 35px;
}
.homeSubscribe__3d-slide:hover .btn {
  background: linear-gradient(
    to right,
    rgb(204, 11, 75) 0%,
    rgb(246, 6, 86) 100%
  );
}
.homeSubscribe__slider {
  position: relative;
  position: absolute;
  top: -3rem;
  right: 2.5rem;
  width: 31.25rem;
}
@media (max-width: 1290px) {
  .homeSubscribe__slider {
    overflow: hidden;
    width: 35rem;
    right: 1rem;
  }
}
@media (max-width: 991px) {
  .homeSubscribe__slider {
    right: 0;
    position: relative;
    top: auto;
    margin-top: -9rem;
  }
}
@media (max-width: 720px) {
  .homeSubscribe__slider {
    display: none;
  }
}
.homeSubscribe__slider:before {
  content: "";
  position: absolute;
  left: -8.12rem;
  bottom: 3.25rem;
  background: url(../images/radial-bg2.svg) left top no-repeat;
  width: 21.37rem;
  height: 31rem;
  mix-blend-mode: difference;
  background-size: 120%;
}
@media (max-width: 1290px) {
  .homeSubscribe__slider:before {
    background-size: 21rem;
    left: -4.12rem;
  }
}
.homeSubscribe__slider:after {
  content: "";
  position: absolute;
  right: -3.12rem;
  bottom: -8.75rem;
  background: url(../images/radial-bg.svg) center left no-repeat;
  width: 18.87rem;
  height: 26.62rem;
  mix-blend-mode: difference;
  background-size: 130%;
  z-index: -1;
}
@media (max-width: 991px) {
  .homeSubscribe__slider:after {
    right: -0.12rem;
    width: 10.87rem;
    height: 24.62rem;
  }
}
.homeSubscribe__slider .swiper-slide:nth-child(even) .homeSubscribe__3d-slide {
  background: linear-gradient(
    to bottom,
    rgb(251, 251, 251) 0%,
    rgb(255, 247, 250) 100%
  );
}
.homeSubscribe .swiper-3d .swiper-slide-shadow {
  display: none;
}
.homeSubscribe .swiper-slide-active .homeSubscribe__navigation {
  opacity: 1;
}
.homeSubscribe__navigation {
  margin: 0;
  position: absolute;
  bottom: -1.37rem;
  width: 100%;
  left: 0;
  opacity: 0;
}
.homeSubscribe .swiper-slide-active .swiper-button-prev,
.homeSubscribe .swiper-slide-active .swiper-button-next {
  opacity: 1;
}
.homeSubscribe__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 42px;
  height: 40px;
  width: auto;
  right: -36px;
  left: -36px;
}
.homeSubscribe__navigation .swiper-button-prev,
.homeSubscribe__navigation .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  height: 40px !important;
  width: 40px !important;
}
.homeSubscribe__navigation .swiper-button-prev::after,
.homeSubscribe__navigation .swiper-button-next::after {
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
}

.active {
  display: block;
}

.grant-basic,
.grant-catalyst,
.grant-explorer {
  display: none;
}

.benefits__section {
  width: 100%;
  overflow: hidden;
  background: rgb(246, 246, 246);
  background: linear-gradient(180deg, #eeeeee 0%, #ffffff 10%);
  padding: 288px 0 0px 0;
  margin-top: -187px;
}
@media (max-width: 1290px) {
  .benefits__section {
    padding: 11rem 0 4rem 0;
  }
}
@media (max-width: 720px) {
  .benefits__section {
    padding: 13rem 0 3rem 0;
  }
}
.benefits__section .section-title .section-title-left {
  width: 100%;
  margin-bottom: 21px;
}
.benefits__section .section-title .section-title-left h2 {
  font-family: "Inter", sans-serif;
  width: 100%;
  letter-spacing: 0.035em;
  font-weight: normal;
}
.benefits__block {
  width: 100%;
  position: relative;
}
.benefits__block .row {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  position: relative;
  z-index: 1;
}
.benefits__block .row > div {
  padding: 0 10px;
}
@media (max-width: 720px) {
  .benefits__block .row > div {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
}
.benefits__col-left {
  width: 100%;
  margin-bottom: 80px;
}
.benefits__col-right {
  width: 100%;
}
.benefits__q_col {
  width: 25%;
}
@media (max-width: 720px) {
  .benefits__q_col {
    width: 100%;
  }
}
.benefits__box {
  padding: 30px 16px 22px;
  text-align: center;
  border-radius: 0.5rem;
  width: 100%;
  font-size: 1rem;
  line-height: 24px;
  min-height: 280px;
  color: #889099;
  border: 2px solid transparent;
}
@media (max-width: 1290px) {
  .benefits__box {
    padding: 2.5rem 0.25rem;
  }
}
@media (max-width: 720px) {
  .benefits__box {
    padding: 2.8rem 1.25rem;
  }
}
.benefits__box:hover {
  background-color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0901960784) inset;
}
.benefits__box:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.benefits__box > img {
  width: 100%;
  height: 100%;
  max-height: 78px;
  max-width: 78px;
  display: inline-block;
  margin: 0 0 27px;
  filter: grayscale(1);
  opacity: 0.5;
}
@media (max-width: 1290px) {
  .benefits__box > img {
    margin: 0 0 1.2rem;
  }
}
@media (max-width: 720px) {
  .benefits__box > img {
    margin: 0 0 2.2rem;
  }
}
.benefits__box h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #363a3d;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.benefits__box h4 span {
  font-size: 18px;
  font-weight: normal;
}
.benefits__box p {
  margin: 0;
  letter-spacing: 0.01em;
}
.benefits__vert_box {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.benefits__img {
  width: 49.4%;
  height: 380px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.benefits__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.benefits__img h4 {
  position: absolute;
  bottom: 0;
  right: 143px;
  color: #ffffff;
  margin: 0;
  font-size: 2.5rem;
  line-height: 0.7em;
  letter-spacing: -0.02em;
}
.benefits__img .count {
  position: absolute;
  bottom: -3px;
  right: -9px;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  line-height: 0.7em;
  font-weight: 700;
}
.benefits__content {
  right: -100px;
  position: relative;
  z-index: 2;
  background: #fff;
  margin-right: -37px;
  width: 45.45%;
  font-family: "Palatino_Regular";
  font-size: 24px;
  line-height: 32px;
  padding: 24px 30px 19px;
  letter-spacing: -0.02em;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 4px 20px 20px rgba(35, 35, 35, 0.05);
}
@media (max-width: 991px) {
  .benefits__content {
    padding: 2rem 1.6rem 3.5rem 1.6rem;
  }
}
@media (max-width: 720px) {
  .benefits__content {
    letter-spacing: 0.01rem;
    font-style: italic;
    line-height: 1.35em;
    font-size: 1.4rem;
    padding: 3rem 1.6rem 3.5rem 1.6rem;
  }
}
.benefits__content p {
  margin: 0 0 12px;
}
@media (max-width: 720px) {
  .benefits__content p {
    margin: 0 0 0.8rem;
  }
}
.benefits__content label {
  color: #232323;
  font-size: 1.125rem;
  font-family: "Urbanist", sans-serif;
  font-style: normal;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-cat-content {
  padding: 6rem 0 4.4rem 0;
}
.service-cat-content .container {
  width: 63.25rem;
}
.service-cat-content .cat-content-shorter {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-cat-content .cat-content-shorter p {
  letter-spacing: -0.02em;
}
.service-cat-content .cat-content-shorter .cat-text {
  width: 100%;
  margin-top: 1.25rem;
}
.service-cat-content .cat-content-shorter .cat-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.service-cat-content .cat-content-shorter .cat-text h2 span {
  color: #f60656;
}
.service-cat-content .cat-content-shorter .cat-image {
  width: 39%;
  border-radius: 1rem;
  overflow: hidden;
}
.service-cat-content .cat-content-shorter .cat-image img {
  border-radius: 1rem;
  width: 100%;
}
.service-cat-content .pink-line {
  margin-top: 1rem;
}

.service-grant-alerts {
  position: relative;
}
.service-grant-alerts:before {
  width: 637px;
  height: 502px;
  opacity: 0.4;
  position: absolute;
  top: auto;
  right: 0;
  content: "";
  border-radius: 50%;
  filter: blur(300px);
  z-index: -1;
  left: 0;
  margin: 0 auto;
  bottom: -18rem;
}

.our-services {
  padding: 0;
}
.our-services ul {
  margin: 0;
  padding: 0;
}
.our-services ul li {
  list-style-type: none;
  padding: 0;
}
.our-services .container {
  position: relative;
}
/* .our-services .container:before {
  position: absolute;
  left: -14rem;
  content: "";
  width: 36.25rem;
  height: 36.25rem;
  background: url(../images/ellipse11.png) center center no-repeat;
  z-index: -1;
  mix-blend-mode: difference;
  background-size: 51rem;
  opacity: 0.5;
} */
/* .our-services .container:after {
  position: absolute;
  right: -7rem;
  content: "";
  width: 36.25rem;
  height: 36.25rem;
  background: url(../images/ellipse11.png) center center no-repeat;
  z-index: -1;
  mix-blend-mode: difference;
  background-size: 51rem;
  top: 0;
  opacity: 0.6;
} */
.our-services .gradient-heading {
  font-size: 9.375rem;
  margin: 0 0 -30px;
  padding-bottom: 30px;
}
.our-services__box {
  padding: 1.18rem;
  max-width: 61.25rem;
  margin: 0 auto;
  background-color: #fbfbfb;
  box-shadow: 0 0.25rem 0.93rem rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078),
    0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922) inset;
}
.our-services__box:hover .our-services__btn::after {
  background-image: url(../images/hover-arrow.svg);
  transform: rotate(-45deg);
}
.our-services__box:hover .our-services__image img {
  transform: scale(1.1);
}
.our-services__image {
  max-width: 23.75rem;
  width: 100%;
  overflow: hidden;
  min-height: 23rem;
  position: relative;
  border-radius: 8px;
}
.our-services__image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: 0px 4px 80px 0px rgba(0, 0, 0, 0.8) inset;
}
.our-services__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all;
  border-radius: 8px;
  min-height: 23rem;
}
.our-services__text {
  width: calc(100% - 23.75rem);
  padding-left: 3.125rem;
  font-size: 1.125rem;
  padding-right: 2%;
}
.our-services__text label {
  font-size: 0.875rem;
  font-style: italic;
  font-family: "Palatino_Regular";
}
.our-services__text h3 {
  font-size: 2.4rem;
  letter-spacing: 0;
  font-weight: 300;
  margin: 0 0 1rem 0;
}
.our-services__text h4 {
  font-family: "Palatino_Regular";
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.93rem 0;
}
.our-services__btn {
  font-size: 1.12rem;
  position: relative;
  padding-right: 2.81rem;
  padding-bottom: 0;
  display: inline-block;
  margin-top: 1rem;
}
.our-services__btn:before {
  content: "";
  width: calc(100% - 2.81rem);
  height: 1px;
  background-color: #f60656;
  position: absolute;
  bottom: 0;
}
.our-services__btn::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 0;
  top: 0;
  margin: 0 auto;
  margin: auto;
  background: url(../images/arrow.svg) center center no-repeat;
  transition: 0.3s all;
  width: 2.06rem;
  height: 2.06rem;
  transition: 0.3s all;
}
.our-services__btn:hover {
  color: #f60656;
}
.our-services__btn:hover:after {
  background-image: url(../images/hover-arrow.svg);
}

.stack-cards {
  --stack-cards-gap: 2.5rem;
}

.stack-cards__item {
  position: relative;
  position: sticky;
  top: 6.25rem;
}

.why-grantwriters {
  padding: 0;
}
.why-grantwriters__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .subscriber-section.subscriber-layout2 .subscriber2-flex .subscriber2-image {
    display: none;
  }

  .our-services .gradient-heading {
    font-size: 7rem;
  }
  .why-grantwriters__row {
    flex-wrap: wrap;
  }
}
.why-grantwriters__left {
  padding: 0 3% 14px 0;
  width: 40%;
  font-size: 16px;
}
@media (max-width: 1290px) {
  .why-grantwriters__left {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .why-grantwriters__left {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .why-grantwriters__left {
    padding: 2.5rem 5% 2rem 0;
  }
}
.why-grantwriters__left p {
  margin-bottom: 2.6rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .why-grantwriters__left p {
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .why-grantwriters__left p {
    font-size: 18px;
  }
}
.why-grantwriters__left h2 {
  line-height: 1.2em;
  font-weight: normal;
  margin: 0 0 13px;
}
@media (max-width: 720px) {
  .why-grantwriters__left h2 {
    font-size: 1.875rem;
  }
}
.why-grantwriters__right {
  width: 57.6%;
  position: relative;
}
@media (max-width: 1290px) {
  .why-grantwriters__right {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .why-grantwriters__right {
    width: 100%;
  }
}
.why-grantwriters__right_img {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.why-grantwriters__right img {
  width: 100%;
  border-radius: 0.5rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.why-grantwriters__right label,
.why-grantwriters__right .play-video {
  position: absolute;
  right: -50px;
  bottom: 30px;
  background: #ffffff;
  color: #f60656;
  font-style: italic;
  font-size: 16px;
  padding: 22px 24px;
  min-width: 374px;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0 4px 74px rgba(0, 0, 0, 0.1);
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-grantwriters__right .play-video {
  font-size: 20px;
  font-style: italic;
  font-family: "Palatino_Bold";
  color: #232323;
}
.why-grantwriters__right .play-video > img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.why-grantwriters__right:hover .play-video:after {
  transform: scale(1.2);
}
@media (max-width: 720px) {
  .why-grantwriters .ghost-btn,
  .why-grantwriters .pink-btn {
    width: 100%;
  }
}

.got-grant-image {
  background: linear-gradient(
    to right,
    rgb(87, 87, 87) 0%,
    rgb(35, 35, 35) 100%
  );
  border-radius: 12px;
  border: 0;
}

.got-grant-qa {
  color: #ffffff;
  padding: 54px 0 29px 0;
  margin-bottom: 91px;
}
@media (max-width: 991px) {
  .got-grant-qa {
    padding-bottom: 0;
  }
}
.got-grant-qa .why-grantwriters__row {
  position: relative;
  min-height: 450px;
}
@media (max-width: 1290px) {
  .got-grant-qa .why-grantwriters__row {
    flex-wrap: wrap;
    text-align: center;
  }
}
.got-grant-qa .why-grantwriters__right {
  padding-right: 0;
  margin-left: 6px;
  margin-bottom: -54px;
  margin-top: -65px;
  width: 47.2%;
}
@media (max-width: 1290px) {
  .got-grant-qa .why-grantwriters__right {
    width: 100%;
  }
}
.got-grant-qa .why-grantwriters__right img {
  width: auto;
}
@media (max-width: 1290px) {
  .got-grant-qa .why-grantwriters__right img {
    max-width: 600px;
  }
}
.got-grant-qa .why-grantwriters__right label {
  right: auto;
  bottom: 80px;
  left: -60px;
}
.got-grant-qa .why-grantwriters__left {
  padding-left: 0;
  padding-bottom: 5px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: 300;
  padding-right: 100px;
  width: 49%;
}
@media (max-width: 1290px) {
  .got-grant-qa .why-grantwriters__left {
    width: 100%;
  }
}
.got-grant-qa .why-grantwriters__left h2 {
  line-height: 1em;
  margin-bottom: 10px;
  letter-spacing: 0;
  font-weight: 300;
}
.got-grant-qa .why-grantwriters__left p {
  margin-bottom: 50px;
  line-height: 1.35;
  letter-spacing: 0;
}
@media (max-width: 1290px) {
  .got-grant-qa .why-grantwriters__left p {
    max-width: 490px;
    margin: 0 auto 1.8rem auto;
  }
}

.about-block {
  margin-top: 0;
  margin-bottom: 40px;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
@media (max-width: 1290px) {
  .about-block {
    margin-top: 0;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .about-block {
    padding-bottom: 0;
  }
}
.about-block .why-grantwriters__row {
  position: relative;
}
@media (max-width: 991px) {
  .about-block .why-grantwriters__row .why-grantwriters__right {
    display: none;
  }
}
.about-block .why-grantwriters__row .why-grantwriters__left {
  padding: 0 3% 11px 0;
}
@media (max-width: 991px) {
  .about-block .why-grantwriters__row .why-grantwriters__left {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .about-block .why-grantwriters__row h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 720px) {
  .about-block .why-grantwriters__row h2 {
    font-size: 1.875rem;
  }
}

.video-block {
  margin-top: 0;
  margin-bottom: 119px;
}
.video-block h2 {
  margin-bottom: 11px;
  letter-spacing: -0.02em;
}
.video-block h2 span {
  font-weight: 900;
}
@media (max-width: 991px) {
  .video-block .why-grantwriters__row {
    flex-direction: column-reverse;
  }
}
@media (max-width: 991px) {
  .video-block .why-grantwriters__left {
    padding: 3.5rem 5% 2rem 0;
  }
}
.video-block .why-grantwriters__left p {
  margin-bottom: 7px;
}
.video-block .why-grantwriters__left .btn {
  margin-top: 35px;
}
.video-block .why-grantwriters__right {
  border-radius: 12px;
  border: 0px solid #ffffff;
  min-height: 420px;
}
.video-block .why-grantwriters__right_img {
  height: 100%;
  position: absolute;
}
@media (max-width: 720px) {
  .video-block .why-grantwriters__right img {
    height: 30rem;
  }
}

.leader-block {
  background-color: #f7f7f7;
  padding: 5.2rem 1.87rem 5.18rem 1.87rem;
  width: 100%;
  margin: 2rem auto 5rem auto;
}
@media (max-width: 1100px) {
  .leader-block {
    margin: 2rem auto;
    padding: 6rem 3.4rem 6.18rem 3.4rem;
  }
}
.leader-block .container {
  width: 68rem;
}
.leader-block__row {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 1100px) {
  .leader-block__row {
    flex-wrap: wrap;
  }
}
.leader-block__img-tag {
  overflow: hidden;
  margin-bottom: 0.5rem;
  display: inline-block;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  border-width: 1px;
}
.leader-block__img {
  margin: 0;
  width: 42%;
}
@media (max-width: 1100px) {
  .leader-block__img {
    width: 100%;
  }
}
.leader-block__img img {
  max-width: 24rem;
  width: 100%;
}
@media (max-width: 1100px) {
  .leader-block__img img {
    height: 30rem;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.leader-block__img label {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.leader-block__img h4 {
  font-weight: 300;
}
.leader-block__text {
  padding-bottom: 0;
  width: 48%;
  font-style: italic;
}
@media (max-width: 1100px) {
  .leader-block__text {
    margin-top: 1.25rem;
    padding: 0 7%;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .leader-block__text {
    padding: 0;
  }
}
.leader-block__text p {
  margin-bottom: 2rem;
}
.leader-block__text h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-style: normal;
  letter-spacing: -0.02em;
}
.leader-block__text h2 span {
  color: #cc0b4b;
}
.leader-block__text label {
  font-style: normal;
  color: #c1c1c1;
  font-weight: 400;
}
.leader-block__text h4 {
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

.we-write-grants {
  padding: 3.43rem 0 4.2rem 0;
  position: relative;
}
.we-write-grants__img {
  position: relative;
  text-align: left;
  display: inline-block;
  width: 100%;
  max-width: 70rem;
  margin: 0 auto 6rem auto;
}
.we-write-grants__img .wwg-overlap {
  position: absolute;
  right: 0;
  top: 0;
  width: 42.6rem;
  height: 33.5rem;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.we-write-grants__img .wwg-text {
  background-color: #ffffff;
  padding: 2.5rem 6.5rem 2rem 6.5rem;
  font-size: 20px;
  margin-top: 6.8rem;
  position: relative;
  max-width: 42.5rem;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    inset 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: 2px solid #ffffff;
  margin-left: 1.5rem;
}
.we-write-grants__img .wwg-text h2 {
  font-size: 40px;
  margin-bottom: 0.8rem;
}
.we-write-grants__img .wwg-text h2 span {
  color: #cc0b4b;
}
.we-write-grants__text {
  padding-bottom: 0;
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 1.3;
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
}
.we-write-grants__text .wwg-layer3 {
  width: 66%;
}
.we-write-grants__text .wwg-layer2 {
  width: 33%;
  margin-top: 0;
  padding-left: 1.5rem;
  position: relative;
  right: -50px;
}
.we-write-grants__text .wwg-layer2:before {
  content: "";
  width: 1px;
  height: 352px;
  background-color: #c1c1c1;
  position: absolute;
  left: -57px;
  top: 0;
  content: "";
}
.we-write-grants__text .wwg-layer2 h3 {
  margin-bottom: 1rem;
}
@media (max-width: 1100px) {
  .we-write-grants__text {
    margin-top: 3rem;
  }
}
@media (max-width: 991px) {
  .we-write-grants__text {
    margin-top: 2rem;
  }
}
.we-write-grants__text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.56rem;
}
.we-write-grants__text h2 span {
  color: #cc0b4b;
}
.we-write-grants__text h3 {
  font-size: 1.9rem;
  max-width: 24.75rem;
  margin-bottom: 1.7rem;
}
@media (max-width: 1100px) {
  .we-write-grants__text h3 {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 991px) {
  .we-write-grants__text h3 {
    max-width: 28rem;
  }
}
.we-write-grants .genres-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .we-write-grants .genres-items .genres-item-rp {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.we-write-grants .genres-items .genres-item-rp:last-child {
  max-width: 24rem;
}
@media (max-width: 1100px) {
  .we-write-grants .genres-items .genres-item-rp:last-child ul {
    -moz-column-count: 2;
    column-count: 2;
  }
}
.we-write-grants .genres-items .gen-left-box {
  width: 69%;
}
.we-write-grants .genres-items ul.gen-twocl {
  -moz-column-count: 2;
  column-count: 2;
  width: 100% !important;
}
.we-write-grants .genres-items ul {
  width: 50%;
  padding: 0;
  margin: 0;
}
@media (max-width: 1100px) {
  .we-write-grants .genres-items ul {
    width: 100%;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (max-width: 991px) {
  .we-write-grants .genres-items ul {
    -moz-column-count: 2;
    column-count: 2;
  }
}
.we-write-grants .genres-items ul li {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding-bottom: 0.5rem;
}
@media (max-width: 1100px) {
  .we-write-grants .genres-items ul li {
    padding-bottom: 0.4rem;
  }
}
.we-write-grants .genres-items ul:first-child li {
  width: 50%;
}
.we-write-grants .genres-items ul:last-child {
  width: 27%;
}
.we-write-grants .genres-items .genres-headline {
  color: #cc0b4b;
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 1rem;
  width: 100%;
  margin: 0;
  display: inline-block;
}
@media (max-width: 1100px) {
  .we-write-grants .genres-items .genres-headline {
    padding-bottom: 0;
    width: 100%;
  }
}
.we-write-grants__sticky {
  position: sticky;
  top: 8.75rem;
  min-height: 40vw;
}
.we-write-grants__sticky > img {
  border-radius: 2.5rem 0 0 2.5rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.3s all;
  position: absolute;
}
.we-write-grants__sticky > img.active {
  opacity: 1;
}

.includes {
  padding: 0;
  margin-bottom: 1.8rem;
}
@media (max-width: 1100px) {
  .includes {
    -moz-column-count: 2;
    column-count: 2;
    max-width: 36.25rem;
  }
}
.includes li {
  list-style-type: none;
  padding-bottom: 0.9rem;
}
@media (max-width: 1100px) {
  .includes li {
    padding-bottom: 0.5rem;
  }
}

.client-stories {
  padding: 4.68rem 0 2rem 0;
  width: calc(100% - 2.5rem);
  background-color: #f7f7f7;
  border-radius: 20px;
}
@media (max-width: 1100px) {
  .client-stories {
    padding: 5.2rem 0 4.68rem 0;
  }
}
.client-stories .gradient-heading {
  font-size: 10rem;
  text-shadow: 1px 1px 2px rgb(245, 245, 245),
    1px -2px 2px rgba(191, 191, 191, 0.2);
}
@media (max-width: 991px) {
  .client-stories .gradient-heading {
    font-size: 6.8rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1100px) {
  .client-stories .container {
    width: 100%;
  }
}
.client-stories .ghost-btn {
  margin-bottom: 0.5rem;
  width: 100%;
}
@media (max-width: 1100px) {
  .client-stories .ghost-btn {
    margin-top: 2.1rem;
  }
}
.client-stories .overlay-link {
  z-index: 99;
}
.client-stories-slider {
  margin-top: 1.063rem;
  position: relative;
}
.client-stories-slider .swiper-slide {
  width: auto;
}
.client-stories-slider::before {
  position: absolute;
  content: "";
  width: 10.625rem;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}
.client-stories-slider::after {
  position: absolute;
  content: "";
  width: 10.625rem;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}
.client-stories-slider .swiper-button-next,
.client-stories-slider .swiper-button-prev {
  width: 3.75rem;
  height: 5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.625rem;
  background-color: #232323;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
.client-stories-slider .swiper-button-next::after,
.client-stories-slider .swiper-button-prev::after {
  display: none;
}
.client-stories-slider .swiper-button-next:hover,
.client-stories-slider .swiper-button-prev:hover {
  background-color: #f60656;
}
.client-stories-slider .swiper-button-next {
  background-image: url("../images/grant-alert-arrow-next.svg");
  right: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.client-stories-slider .swiper-button-prev {
  background-image: url("../images/grant-alert-arrow-prev.svg");
  left: 0;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.client-stories .client_wins__headline {
  margin-bottom: 2.1rem;
}
@media (max-width: 1100px) {
  .client-stories .client_wins__headline {
    padding: 0;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  .client-stories .client_wins__headline {
    margin-bottom: 2.3rem;
  }
}
.client-stories .client_wins__headline h2 {
  padding-left: 0;
}
.client-stories .client_wins__headline h3 {
  padding-left: 0;
}
@media (max-width: 991px) {
  .client-stories .client_wins__headline h3 {
    font-size: 3.7rem;
    padding-top: 0.5rem;
  }
}
.client-stories .swiper-horizontal {
  overflow: hidden;
  padding: 0 0 1.563rem 0.75rem;
}
@media (max-width: 1100px) {
  .client-stories .swiper-horizontal {
    padding: 0;
  }
}
.client-stories .col-md-4 {
  justify-content: end;
  display: flex;
}
.client-stories .swiper-slide {
  height: auto;
}
@media (max-width: 1100px) {
  .client-stories .swiper-slide {
    width: 23.5rem;
    margin: 0 1rem;
  }
}
@media (max-width: 991px) {
  .client-stories .swiper-slide {
    margin: 0 0.5rem;
  }
}
@media (max-width: 1100px) {
  .client-stories .text-right {
    text-align: center;
  }
}
.client-stories .grant-alerts__date {
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: #232323;
  font-style: italic;
  font-family: "Palatino_Bold";
}
.client-stories .grant-alerts__date .newg {
  color: #232323;
  font-weight: 500;
}
.client-stories__box {
  transition: 0.5s all;
  max-width: 100%;
  overflow: hidden;
  width: 23.75rem;
  margin-top: 0;
  position: relative;
}
.client-stories__box:hover {
  transform: scale(1.01);
}
.client-stories__box:hover .client-stories__title::after {
  background-image: url(../images/arrow-white-hover.svg);
  transform: rotate(0deg);
}
.client-stories__box:hover .client-stories__image > img {
  transform: scale(1.1);
}
.client-stories__box:hover .client-stories__text p {
  color: #cc0b4b;
}
.client-stories__text {
  font-size: 1.12rem;
  line-height: 1.3;
  padding: 1.25rem 1.25rem 0.2rem 1.25rem;
}
@media (max-width: 991px) {
  .client-stories__text {
    font-size: 1rem;
  }
}
.client-stories__text .tag-ctc {
  margin-bottom: 11px;
}
.client-stories__text h4 {
  margin: 0 0 0.625rem 0;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.client-stories__text p {
  margin-bottom: 1.12rem;
}
.client-stories__text .link-btn {
  font-size: 1.12rem;
  /* position: absolute; */
  bottom: 1rem;
}
.client-stories__image {
  position: relative;
  overflow: hidden;
}
.client-stories__image > img {
  height: 13.25rem;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: 0.3s all;
}
.client-stories__image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(35, 35, 35, 0.4);
  z-index: 9;
}
.client-stories__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 22px 15px 18px;
  padding-right: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 9;
}
.client-stories__title h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  padding-left: 1.25rem;
  width: 15rem;
}
.client-stories__title .badge-img {
  width: 3.125rem;
  height: 3.125rem;
}
.client-stories__title .badge-img img {
  width: 100%;
}
.client-stories__title::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  margin: auto;
  background: url(../images/arrow.svg) center center no-repeat;
  transition: 0.3s all;
  width: 2.06rem;
  height: 2.06rem;
  transform: rotate(-45deg);
}

.grey-round-box {
  padding: 4.3rem 0;
  width: calc(100% - 2.5rem);
  margin: 1.25rem;
  border-radius: 5rem;
  background: #f7f7f7;
  position: relative;
  display: inline-block;
}

.resources-articles .swiper-horizontal {
  padding-bottom: 2rem;
}
.resources-articles .client-stories__text {
  padding-bottom: 2.1rem;
}
.resources-articles .client-stories__text h4 {
  margin: 0 0 0.625rem 0;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  font-weight: 300;
  width: 90%;
  text-transform: capitalize;
}

.trusted-partner {
  padding: 0;
  margin-top: 46px;
  margin-bottom: 134px;
}
@media (max-width: 720px) {
  .trusted-partner {
    padding: 1rem 0 3rem 0;
  }
}
.trusted-partner__flex h2 {
  margin: 0 0 38px;
  font-size: 1.875rem;
  color: #cc0b4b;
  line-height: 1;
  text-align: center;
}
@media (max-width: 720px) {
  .trusted-partner__flex h2 {
    font-size: 1.87rem;
    width: 100%;
    margin: 0 0 2.5rem 0;
    text-align: center;
  }
}
.trusted-partner__flex h2 strong {
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media (max-width: 720px) {
  .trusted-partner__flex h2 strong {
    font-size: 1.87rem;
  }
}
.trusted-partner .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.trusted-partner .swiper-slide {
  text-align: center;
  font-size: 2.063rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 1rem;
}
.trusted-partner .swiper-slide img {
  opacity: 0.7;
}
.trusted-partner .trustedSwiper {
  position: relative;
}
.trusted-partner .trustedSwiper::before {
  background: linear-gradient(
    to right,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  left: 0;
}
.trusted-partner .trustedSwiper::after {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 100%
  );
  right: 0;
}
.trusted-partner .trustedSwiper:after,
.trusted-partner .trustedSwiper::before {
  content: "";
  width: 350px;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 2;
}
@media (max-width: 720px) {
  .trusted-partner .trustedSwiper .swiper-slide img {
    max-height: 2.1rem;
  }
}

.experience-block {
  width: calc(100% - 80px);
  margin: 0 40px;
  border-radius: 20px;
  padding: 91px 0 86px;
  margin-bottom: 102px;
}
@media (max-width: 991px) {
  .experience-block {
    margin-top: 20px;
  }
}
.experience-block h2 {
  margin: 0 0 3px 0;
  color: #cc0b4b;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 720px) {
  .experience-block h2 {
    text-align: center;
  }
}
.experience-block h2 strong {
  font-weight: 600;
  color: #cc0b4b;
  font-style: normal;
}
.experience-block .experience-imagebox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.experience-block .experience-imagebox img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.experience-block__main-row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .experience-block__main-row {
    flex-wrap: wrap;
  }
}
.experience-block__col-7 {
  width: 57%;
}
@media (max-width: 1290px) {
  .experience-block__col-7 {
    width: 63%;
  }
}
@media (max-width: 991px) {
  .experience-block__col-7 {
    width: 100%;
  }
}
.experience-block__col-5 {
  width: 54.5%;
}
@media (max-width: 1290px) {
  .experience-block__col-5 {
    width: 35%;
  }
}
@media (max-width: 991px) {
  .experience-block__col-5 {
    width: 100%;
  }
}
.experience-block__graybox {
  padding: 24px 20px 0 0;
  text-align: center;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 720px) {
  .experience-block__graybox {
    padding-bottom: 2rem;
  }
}
.experience-block__funds .number {
  font-size: 4.37rem;
  font-weight: 600;
  background: linear-gradient(90.77deg, #cc0b4b 2.2%, #f60656 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
@media (max-width: 720px) {
  .experience-block__funds .number {
    font-size: 3.125rem;
    margin-bottom: 1rem;
  }
}
.experience-block__row {
  margin-top: 53px;
}
.experience-block__row p {
  margin-bottom: 0;
  font-family: "Palatino_Bold";
}
@media (max-width: 720px) {
  .experience-block__row .col-md-4 {
    margin-bottom: 2rem;
  }
}
.experience-block__number {
  font-weight: 100;
  font-size: 3.75rem;
  color: #232323;
  line-height: 1;
  margin-bottom: 10px;
}
.experience-block__number p {
  font-family: "Palatino_Bold";
}
.experience-block__imagebox {
  height: 100%;
  padding: 42px 51px;
  color: #ffffff;
  font-size: 1.87rem;
  font-weight: 600;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 0;
  height: 380px;
}
@media (max-width: 1290px) {
  .experience-block__imagebox {
    padding: 2rem 1.5rem;
    font-size: 1.7rem;
  }
}
@media (max-width: 991px) {
  .experience-block__imagebox {
    padding: 2rem 3.5rem;
    font-size: 1.7rem;
    height: 24rem;
    margin-top: 1.2rem;
  }
}
@media (max-width: 720px) {
  .experience-block__imagebox {
    padding: 2rem 1.7rem;
  }
}
.experience-block__imagebox span {
  max-width: 300px;
  display: inline-block;
  line-height: 1.2;
  position: relative;
}
@media (max-width: 720px) {
  .experience-block__imagebox span {
    max-width: 11.62rem;
  }
}
.experience-block__disagree-text {
  position: absolute;
  bottom: 45px;
  right: 49px;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.75);
  text-align: right;
  line-height: 0.9;
  display: inline-block;
  letter-spacing: 0;
}
@media (max-width: 1290px) {
  .experience-block__disagree-text {
    right: 2.125rem;
  }
}
@media (max-width: 720px) {
  .experience-block__disagree-text {
    bottom: 3rem;
  }
}

.inner-shadow {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25) inset;
  background: #eeeeee;
}

.grant-alerts {
  width: 100%;
  overflow: hidden;
  margin-bottom: 68px;
}
.grant-alerts__slider-cover {
  position: relative;
  /* padding-bottom: 69px; */
  font-family: "urbanist", sans-serif;
}
.grant-alerts__slider {
  overflow: visible;
}
.grant-alerts .swiper-slide {
  width: 380px;
}

.grant-card {
  width: 380px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.grant-card:hover label {
  background: #cc0b4b;
  color: #ffffff;
}
.grant-card:hover label::before,
.grant-card:hover label::after {
  filter: invert(1);
}
.grant-card:hover .grant-card__arrow {
  transform: rotate(45deg);
}
.grant-card:hover .grant-card__arrow path {
  fill: #ffffff;
}
.grant-card label {
  position: absolute;
  left: 30px;
  top: 24px;
  font-family: "Palatino_Bold_Italic";
  font-size: 15px;
  background: #edeff6;
  color: #232323;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.5px 17px;
  letter-spacing: 0;
  transition: all 0.5s;
}
.grant-card label::after,
.grant-card label::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  background: url(../images/grant-cards-label-star.svg) no-repeat center center;
}
.grant-card label::before {
  margin-right: 10px;
}
.grant-card label::after {
  margin-left: 10px;
}
.grant-card__bg {
  position: relative;
  padding: 0 0 110.53%;
  z-index: -1;
}
.grant-card__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgb(35, 35, 35) 100%
  );
  height: 90%;
  transition: all 0.5s;
  z-index: 1;
}
.grant-card__bg > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.grant-card__arrow {
  position: absolute;
  right: 33px;
  top: 28px;
  transition: all 0.5s;
}
.grant-card__arrow path {
  transition: all 0.5s;
}
.grant-card__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 30px 19px;
  color: #ffffff;
}
.grant-card__text .date {
  color: #ffffff;
  font-size: 16px;
  font-family: "Palatino_Bold_Italic";
  margin: 0 0 -1px;
  padding: 0 0 9px;
}
.grant-card__text .date img {
  margin-right: 6px;
  position: relative;
  top: 4px;
}
.grant-card__text p {
  font-size: 20px;
  line-height: 1.3em;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.grant-card__text span {
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  display: block;
  margin: 0 0 -7px;
}
.grant-card__text h3 {
  margin: 0;
  font-family: "Palatino_Bold";
  line-height: 1em;
  letter-spacing: 0.01em;
}

.inner-hero {
  color: #ffffff;
  padding: 0 1.25rem;
  position: relative;
  margin-top: 4.5rem;
  display: inline-block;
  width: 100%;
}
.inner-hero label {
  font-family: "Palatino_Regular";
  font-size: 24px;
  font-style: italic;
  font-weight: normal;
  letter-spacing: 0.04rem;
}
.inner-hero__bg {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 3rem 0 3rem;
  height: 31rem;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-position: center center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: 2px solid #ffffff;
  animation: scaleAnimation 3s ease-in-out forwards;
}
.inner-hero__bg:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
}
.inner-hero__flex {
  max-width: 65rem;
  margin: 0 auto 0 auto;
  font-size: 1.87rem;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}
.inner-hero__flex h1 {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  max-width: 100%;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 0.2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-hero__flex h1:after,
.inner-hero__flex h1:before {
  background-size: 14px !important;
  content: "";
  width: 1.5rem;
  height: 1.563rem;
  display: inline-block;
}
.inner-hero__flex h1:before {
  background: url(../images/star.svg) center center no-repeat;
  margin-right: 1rem;
}
.inner-hero__flex h1:after {
  background: url(../images/star.svg) center center no-repeat;
  margin-left: 1rem;
}
.inner-hero__flex p {
  max-width: 43rem;
  margin: 0 auto;
}
.inner-hero__flex .column-text {
  color: #e4e3e3;
  line-height: 1.3;
}
.inner-hero__animation {
  position: absolute;
  text-align: center;
  width: 10rem;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-hero__animation .round-text {
  position: absolute;
  width: 10rem;
  -webkit-animation: rotation-right 8s infinite linear;
}
.inner-hero__animation .round-arrow img {
  width: 4.31rem;
}
.inner-hero__animation.white-version {
  bottom: -37px;
  z-index: 1;
}
.inner-hero__animation.black-version {
  bottom: -35px;
  background: none;
}
.inner-hero__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.inner-hero__video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.hero-shadow {
  box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.19);
  border: 3px solid #ffffff;
  width: calc(100% - 2.3rem);
  height: 30rem;
  border-radius: 20px;
  position: absolute;
  top: 3px;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: none;
}

.round-arrow {
  width: 68px;
  height: 68px;
  background: url(../images/round-circle.svg) center center no-repeat;
  opacity: 0;
}

.round-arrow-main {
  z-index: 11;
  width: 160px;
  height: 160px;
  background-image: url(../images/round-circle.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  left: 0;
  margin: -5rem auto 0 auto;
  cursor: pointer;
  background-size: 68px;
  transition: 0.3s all;
}
.round-arrow-main:hover {
  background-image: url(../images/round-circle-hover.svg);
  transform: rotate(45deg);
}
.round-arrow-main a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.inner-hero__bg.remove-overlay:after {
  display: none;
}

.page-id-98 .inner-hero__bg:after,
.page-id-100 .inner-hero__bg:after {
  display: none;
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opactiy: 0;
  }
}
@keyframes rd-layer1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rd-layer2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rd-layer3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slidein {
  from {
    background-position: top;
    background-size: 155%;
  }
  to {
    background-position: -6.25rem 0px;
    background-size: 100%;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(-5px, 0px);
  }
}
@keyframes scaleAnimation {
  0% {
    background-size: 115%;
  }
  100% {
    background-size: 100%; /* Final scaled size */
  }
}
/* Service Category Fix */
.page-id-139 .inner-hero__flex p {
  max-width: 58rem;
  margin: 0 auto;
  letter-spacing: 0;
}

.page-id-140 .inner-hero__flex p {
  max-width: 54rem !important;
}
.page-id-140 .inner-hero__bg:after {
  opacity: 0.5;
}

.home-hero {
  color: #ffffff;
  padding: 0;
  display: inline-block;
  width: 100%;
  margin-top: 0;
}
.home-hero__bg {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 97px 0;
  height: 100vh;
  display: flex;
  align-items: end;
  border-radius: 0;
  background-position: center center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1290px) {
  .home-hero__bg {
    padding: 2.188rem 0 6.1rem 3rem;
  }
}
@media (max-width: 991px) {
  .home-hero__bg {
    padding-left: 0;
  }
}
@media (max-width: 720px) {
  .home-hero__bg {
    border-radius: 0 0 2.5rem 2.5rem;
    padding-bottom: 2.7rem;
    height: 93vh;
  }
}
.home-hero__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-hero__video:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  opacity: 0.6;
  content: "";
}
.home-hero__video:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  opacity: 0.4;
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.home-hero__video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.home-hero__flex h1 {
  margin-bottom: 29px;
  margin-top: 0;
  max-width: 650px;
  font-size: 60px;
  line-height: 1.15em;
  font-family: "Public Sans", sans-serif;
}
@media (max-width: 991px) {
  .home-hero__flex h1 {
    max-width: 33rem;
  }
}
.home-hero__flex label {
  font-weight: normal;
  font-size: 1.5rem;
  font-family: "Palatino_Regular";
  letter-spacing: 0;
  margin-bottom: 23px;
}
.home-hero ul {
  padding: 0;
  margin: 0;
  display: flex;
}
@media (max-width: 720px) {
  .home-hero ul {
    flex-wrap: wrap;
    padding: 8px 0 0 0;
  }
}
.home-hero ul li {
  font-size: 1.125rem;
  position: relative;
  padding-right: 39px;
  margin-right: 19px;
  list-style-type: none;
  padding-bottom: 0;
  font-family: "Source Sans 3", sans-serif;
}
@media (max-width: 720px) {
  .home-hero ul li {
    padding-left: 1.8rem;
    padding-right: 0;
    width: 100%;
    font-size: 16px;
  }
}
/* .home-hero ul li:first-child::before {
  content: "";
  position: absolute;
  right: 200;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.938rem;
  height: 0.938rem;
  background: url(../images/star.svg) center center no-repeat;
} */
.home-hero ul li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.938rem;
  height: 0.938rem;
  background: url(../images/star.svg) center center no-repeat;
}
@media (max-width: 720px) {
  .home-hero ul li:after {
    right: auto;
    left: 0;
  }
}
.home-hero ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.home-hero ul li:last-child:after {
  display: none;
}
@media (max-width: 720px) {
  .home-hero ul li:last-child:after {
    display: block;
  }
}

.client_wins {
  padding: 3.125rem 0 3.125rem 0;
  overflow: hidden;
  margin-top: 0;
}
@media (max-width: 1100px) {
  .client_wins {
    padding: 2rem 0 4rem 0;
  }
}
@media (max-width: 991px) {
  .client_wins {
    padding: 1rem 0 4rem 0;
  }
}
.client_wins .gradient-heading {
  font-size: 9.375rem;
}
@media (max-width: 991px) {
  .client_wins .container {
    width: 100%;
  }
}
.client_wins__slider {
  position: relative;
}
.client_wins__slider::before {
  position: absolute;
  content: "";
  width: 10.625rem;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}
.client_wins__slider::after {
  position: absolute;
  content: "";
  width: 10.625rem;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}
.client_wins-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.client_wins-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0.6rem 0.6rem 0.8rem 0.6rem;
}
.client_wins-slider .swiper-button-next,
.client_wins-slider .swiper-button-prev {
  width: 3.75rem;
  height: 3.8rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.625rem;
  background-color: #232323;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  transition: all 0.4s;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.client_wins-slider .swiper-button-next:hover,
.client_wins-slider .swiper-button-prev:hover {
  background-color: #f60656;
}
.client_wins__headline {
  margin-bottom: 2.81rem;
}
@media (max-width: 1100px) {
  .client_wins__headline {
    text-align: center;
    padding: 0 5%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 991px) {
  .client_wins__headline {
    padding: 0;
  }
}
.client_wins__headline h2 {
  margin: 0 0 10px;
  padding-left: 1.93rem;
  line-height: 1;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 1100px) {
  .client_wins__headline h2 {
    font-size: 2.5rem;
  }
}
.client_wins__headline h2 span {
  color: #cc0b4b;
}
.client_wins__headline h3 {
  font-size: 5rem;
  color: #cc0b4b;
  margin: 0;
  padding-left: 1.93rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.client_wins__headline p {
  max-width: 666px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}
.client_wins__headline .col-lg-5 {
  font-size: 1.12rem;
  padding-left: 7.063rem;
  font-weight: 500;
  font-style: italic;
}
.client_wins__headline .col-lg-5 p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .client_wins__headline .col-lg-5 {
    padding: 0.813rem 1.563rem 1.563rem 1.563rem;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .client_wins__headline .col-lg-5 p {
    max-width: 34.37rem;
    margin: 0 auto;
  }
}
.client_wins__box {
  background-color: #ffffff;
  max-width: 17.5rem;
  position: relative;
  height: 17.5rem;
  border-radius: 8px;
  padding: 1.8rem 1.8rem 1.5rem 1.8rem;
  color: #ffffff;
  transition: 0.3s all;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  background-size: cover !important;
  background-position: center center !important;
}
.client_wins__box:hover {
  transform: scale(1.03);
}
.client_wins__box:hover .grant-alerts__price::after {
  background-image: url(../images/hover-arrow.svg);
  transform: rotate(-45deg);
}
.client_wins__box:hover .grant-alerts__image img {
  transform: scale(1.1);
}
.client_wins__box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(176deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.client_wins__image {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.client_wins__image > img {
  width: 100%;
  height: 17.813rem;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all;
}
.client_wins__text {
  padding: 1rem 1.43rem;
}
.client_wins h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  margin: 0;
}
.client_wins__price {
  color: #ffffff;
  font-size: 0.75rem;
  font-family: "Urbanist", sans-serif;
  margin-top: 10px;
  position: relative;
  font-style: italic;
  line-height: normal;
}
.client_wins__price label {
  font-family: "Palatino_Bold";
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  width: 100%;
  font-style: normal;
  margin-top: 3px;
}
.client_wins__navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.18rem;
}
.client_wins__navigation .swiper-button-prev,
.client_wins__navigation .swiper-button-next {
  position: static;
  width: 2.56rem;
  margin: 0 0.313rem;
}
.client_wins__navigation .swiper-button-prev:after,
.client_wins__navigation .swiper-button-next:after {
  display: none;
}
.client_wins__navigation .swiper-button-prev img,
.client_wins__navigation .swiper-button-next img {
  border-radius: 2rem;
}
.client_wins__navigation .swiper-button-prev:hover img,
.client_wins__navigation .swiper-button-next:hover img {
  background-color: #f1f5f9;
}

.company-accolades {
  padding-top: 0 !important;
}
.company-accolades:before {
  right: auto !important;
  left: 0;
  opacity: 0.4 !important;
}
.company-accolades h2 {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
@media (max-width: 1100px) {
  .company-accolades h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.company-accolades h2 strong {
  font-weight: 300;
  font-style: normal;
  color: #cc0b4b;
  display: block;
  font-size: 4.375rem;
}
.company-accolades .sticky-content__floating {
  background: none;
  padding: 0;
}
.company-accolades .company-image {
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.company-accolades .image-caption {
  color: #cc0b4b;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  margin-top: 1rem;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
.company-accolades .company-accolades-rp {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 2.18rem;
  padding-bottom: 2.18rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.company-accolades .company-accolades-rp h3 {
  color: #cc0b4b;
  font-size: 1.81rem;
  font-family: "Palatino_Regular";
  letter-spacing: 1px;
}
.company-accolades .company-accolades-rp p {
  line-height: 1.5;
}
.company-accolades .company-accolades-rp:last-child {
  border: 0;
  margin-bottom: 0;
}
.company-accolades .company-accolades-rp p:last-child {
  margin-bottom: 0;
}
.company-accolades .sticky-content__row {
  justify-content: space-between;
}
.company-accolades .sticky-content__left {
  width: 49%;
  padding-right: 0;
}
@media (max-width: 1100px) {
  .company-accolades .sticky-content__left {
    width: 100%;
    max-width: 100%;
  }
}
.company-accolades .sticky-content__left img {
  width: 100%;
  height: 36.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .company-accolades .sticky-content__left img {
    height: 30rem;
  }
}
.company-accolades .sticky-content__text {
  width: 41%;
  margin-top: 9.3rem;
}
@media (max-width: 1100px) {
  .company-accolades .sticky-content__text {
    width: 100%;
    margin-top: 1.5rem;
  }
}

.contact-block {
  padding: 0;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.contact-block__mapbox {
  border-radius: 2.5rem;
  padding: 10.31rem 4.06rem 4.06rem 8.125rem;
  position: relative;
  height: 100%;
}
.contact-block__mapbox:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  opacity: 0.6;
  border-radius: 2.5rem;
}
.contact-block__mapbox h2 {
  color: #ffffff;
  letter-spacing: -2px;
  font-size: 3.18rem;
  font-weight: 300;
  margin-bottom: 2.62rem;
}
.contact-block .ct-form-box h2 {
  font-size: 30px;
  margin-bottom: 4px;
}
.contact-block .ct-form-box h3 {
  color: #cc0b4b;
  font-size: 47px;
}
.contact-block__flex {
  align-items: center;
  display: flex;
  margin-bottom: 0;
}

.contact-block__text {
  width: 45%;
  padding-right: 4rem;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.contact-block__text h2 {
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.contact-block__text p {
  max-width: 490px;
}
.contact-block__image {
  width: 55%;
}
.contact-block__image img,
.contact-block__image video {
  border-radius: 20px;
}
.contact-block__over {
  position: relative;
  z-index: 9;
}
.contact-block__icon-flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 2.8rem;
}
.contact-block .container {
  width: 100%;
}
.contact-block .contact-info {
  padding-left: 2.5rem;
  font-weight: 300;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left top 4px;
  width: 100%;
  font-weight: 500;
  font-size: 1.12rem;
  margin-bottom: 19px;
  max-width: 16.25rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.contact-block .contact-info a {
  color: #232323;
}
.contact-block .contact-info a:hover {
  color: #f60656;
}
.contact-block .contact-info label {
  font-size: 1.37rem;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.contact-block .contact-info p {
  margin: 0;
}
.contact-block .contact-info.contact-block__address {
  background-image: url(../images/contact-address-pink.svg);
}
.contact-block .contact-info.contact-block__call {
  background-image: url(../images/contact-call-pink.svg);
}
.contact-block .contact-info.contact-block__email {
  background-image: url(../images/contact-email-pink.svg);
}
.contact-block__form {
  padding-left: 5.06rem;
}
.contact-block__video {
  width: 49.2%;
  position: relative;
}
.contact-block__video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 87%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.video-container .contact-block__flex {
  align-items: normal;
}
.video-container .contact-block__image img {
  width: 88%;
}
.video-container .contact-block__text {
  padding-left: 7.5%;
  padding-top: 5.7%;
  padding-bottom: 10%;
}

.client-stories .ghost-btn {
  background: none;
}

.faq-resources-block {
  margin-bottom: 2rem;
}

.services-partner {
  margin: 0 0 75px 0;
  position: relative;
}
@media (max-width: 1290px) {
  .services-partner {
    margin-bottom: 3rem;
  }
}
@media (max-width: 991px) {
  .services-partner {
    margin-bottom: 1rem;
  }
}
.services-partner .section-title {
  margin-bottom: 27px;
  text-align: left;
}
@media (max-width: 991px) {
  .services-partner .section-title {
    margin-bottom: 0;
  }
}
.services-partner .section-title h2.gradient-heading {
  letter-spacing: 0;
  /* padding-left: 10px; */
}
.services-partner .section-title .section-title-left h2 {
  line-height: 1.2em;
}
.services-partner .section-title-left {
  padding-left: 2rem;
  width: 57%;
}
@media (max-width: 991px) {
  .services-partner .section-title-left {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 720px) {
  .services-partner .section-title-left {
    margin-top: 0;
  }
}
.services-partner .section-title-left h3 {
  max-width: 30.25rem;
  text-transform: none;
}
@media (max-width: 991px) {
  .services-partner .section-title-left h3 {
    max-width: 33.25rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 720px) {
  .services-partner .section-title-left h3 {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1290px) {
  .services-partner .gradient-heading {
    font-size: 12.5rem;
  }
}
@media (max-width: 991px) {
  .services-partner .gradient-heading {
    font-size: 10rem;
    margin-left: -3rem;
  }
}
@media (max-width: 720px) {
  .services-partner .gradient-heading {
    font-size: 22vw;
    margin-left: 0;
  }
}
.services-partner .section-title-right {
  width: 43%;
  padding-top: 30px;
  padding-left: 29px;
}
.services-partner .section-title-right p {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
}
@media (max-width: 1290px) {
  .services-partner .section-title-right {
    width: 43%;
    padding-top: 17px;
    text-align: left;
    margin-top: -3rem;
  }
}
@media (max-width: 991px) {
  .services-partner .section-title-right {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
}
@media (max-width: 720px) {
  .services-partner .service-list {
    padding-top: 1rem;
  }
}
.services-partner .service-list .service-list-rp {
  border-bottom: 1px solid #d9d9d9;
  padding: 41px 40px 42px;
  position: relative;
  font-family: "Palatino_Regular";
  transition: 0.4s all;
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp {
    display: flex;
    padding: 1.2rem 0;
  }
}
@media (max-width: 720px) {
  .services-partner .service-list .service-list-rp {
    padding: 1.8rem 0 3.1rem 0;
  }
}
.services-partner .service-list .service-list-rp h4 {
  margin: 0 0 9px 0;
  font-weight: 300;
  color: #232323;
  transition: 0.4s all;
}
.services-partner .service-list .service-list-rp p {
  margin: 0;
  letter-spacing: 0;
}
@media (max-width: 991px) {
  .services-partner .service-list .service-list-rp p {
    line-height: 1.3;
  }
}
.services-partner .service-list .service-list-rp .overlay-link {
  z-index: 99;
}
.services-partner .service-list .service-list-rp .service-image {
  position: absolute;
  right: 15.2rem;
  transition: 0.3s all;
  transform: scale(0) rotate(-11deg);
  z-index: 9;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 17.68rem;
  height: 21.2rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp .service-image {
    position: static;
    transform: scale(1) rotate(0);
    height: auto;
    width: 39%;
    padding-right: 1rem;
  }
}
@media (max-width: 720px) {
  .services-partner .service-list .service-list-rp .service-image {
    display: none;
  }
}
.services-partner .service-list .service-list-rp .service-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp .service-image img {
    height: 11.2rem;
    border-radius: 8px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .services-partner .service-list .service-list-rp .service-image img {
    height: 7.2rem;
  }
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp .service-text {
    width: 80%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
  }
}
@media (max-width: 991px) {
  .services-partner .service-list .service-list-rp .service-text {
    padding-right: 3rem;
  }
}
@media (max-width: 720px) {
  .services-partner .service-list .service-list-rp .service-text {
    width: 90%;
  }
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp .service-text h4 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .services-partner .service-list .service-list-rp .service-text h4 {
    font-size: 1.5rem;
  }
}
.services-partner .service-list .service-list-rp.service-active {
  padding-left: 73px;
  font-family: "Palatino_Bold";
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp.service-active {
    padding-left: 0;
  }
}
.services-partner .service-list .service-list-rp.service-active h4 {
  color: #cc0b4b;
  font-weight: 600;
}
.services-partner .service-list .service-list-rp.service-active:after {
  background-image: url(../images/pink-arrow-hover.svg);
  transform: rotate(45deg);
}
.services-partner .service-list .service-list-rp.service-active .service-image {
  transform: scale(1) rotate(-15deg);
}
@media (max-width: 1290px) {
  .services-partner
    .service-list
    .service-list-rp.service-active
    .service-image {
    transform: scale(1) rotate(0);
  }
}
.services-partner .service-list .service-list-rp:nth-child(1) .service-image {
  bottom: auto;
}
.services-partner .service-list .service-list-rp:nth-child(4) .service-image {
  top: auto;
}
.services-partner .service-list .service-list-rp::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: -2.25rem;
  bottom: 0;
  margin: auto;
  background: url(../images/pink-arrow.svg) center center no-repeat;
  transition: 0.3s all;
  width: 23px;
  height: 23px;
}
@media (max-width: 1290px) {
  .services-partner .service-list .service-list-rp::after {
    top: 0;
    right: 0;
    background-image: url(../images/hover-arrow.svg);
    transform: rotate(-45deg);
  }
}
@media (max-width: 720px) {
  .services-partner .service-list .service-list-rp::after {
    bottom: auto;
    top: 31px;
    right: 10px;
  }
}
.services-partner .service-list .service-list-rp:last-child {
  border-bottom: 0;
}

.faqs {
  padding: 0 0 6.25rem 0;
}
.faqs__headline {
  padding: 0;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0;
  display: inline-block;
  width: 100%;
}
.faqs__headline h2 {
  padding-top: 100px;
  font-size: 2.5rem;
  margin: 0 0 0 0;
  line-height: 1;
  letter-spacing: -0.02em;
}
.faqs__headline h3 {
  font-size: 3.125rem;
  margin: 0 0 23px 0;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.faqs__headline .grey-line {
  margin-top: 21px;
  background: #c1c1c1;
}
.faqs__headline .grey-line:before,
.faqs__headline .grey-line:after {
  background: #c1c1c1;
}
.faqs__accordion {
  border-top: 1px solid #d9d9d9;
  padding-top: 18px;
}
.faqs__filters {
  margin-bottom: 20px;
  margin-top: 18px;
  position: relative;
}
.faqs__filters .active-element {
  position: absolute;
  width: 100px;
  background-color: #ffffff;
  top: 3px;
  left: 0;
  transition: left 0.3s ease-in-out;
  bottom: 3px;
  display: inline-block;
  z-index: 1;
  border-radius: 70px;
  opacity: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922) inset;
  border: 2px solid #ffffff;
}
.faqs__filters .active-element.active-slide-pt {
  opacity: 1;
}
.faqs__filters ul {
  display: flex;
  align-items: center;
  padding: 2px 4px;
  margin: 0;
  border-radius: 6.25rem;
  background: linear-gradient(90deg, #cc0b4b 0%, #f60656 100%);
  justify-content: space-between;
}
.faqs__filters ul li {
  list-style-type: none;
  padding: 0 0.313rem;
  position: relative;
  z-index: 1;
}
.faqs__filters ul li a {
  padding: 0.6rem 2rem;
  color: #ffffff;
  display: inline-block;
  font-family: "Palatino_Regular";
  border-radius: 6.25rem;
  text-align: center;
  font-size: 14px;
}
.faqs__filters ul li.fq-active a {
  color: #232323;
}
.faqs .faqs__box {
  border-radius: 8px;
  background: #fbfbfb;
}
.faqs .faqs__box .faqs__text {
  font-size: 16px;
}
.faqs .pink-line {
  background-color: #c1c1c1;
}
.faqs .pink-line:after,
.faqs .pink-line:before {
  background-color: #c1c1c1;
}

.faqs__box {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid #ffffff;
  position: relative;
  transition: 0.3s all;
  margin-bottom: 0.93rem;
  border-radius: 0.5rem;
}
.faqs__box:hover {
  background-color: #ffffff;
}
.faqs__box .faqs__title {
  cursor: pointer;
  padding: 3.68rem 2.7rem 3.43rem 2.7rem;
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faqs__box .faqs__title h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
  transition: 0.3s all;
}
.faqs__box .faqs__text {
  display: none;
  margin-top: -2.18rem;
  padding: 0 2.81rem;
}
.faqs__box:after {
  position: absolute;
  right: 1.25rem;
  font-weight: 700;
  top: 1.25rem;
  content: "+";
  font-size: 1.25rem;
  color: #232323;
}
.faqs__box.faq-active {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff !important;
}
.faqs__box.faq-active:after {
  content: "-";
}
.faqs__box.faq-active .faqs__title h4 {
  font-weight: 700;
}

.faq-resources- .client-stories-slider::before,
.client-stories .client-stories-slider::before {
  background: rgb(247, 247, 247);
  background: linear-gradient(
    90deg,
    rgb(247, 247, 247) 0%,
    rgba(247, 247, 247, 0) 100%
  );
}
.faq-resources- .client-stories-slider::after,
.client-stories .client-stories-slider::after {
  background: rgb(247, 247, 247);
  background: linear-gradient(
    270deg,
    rgb(247, 247, 247) 0%,
    rgba(247, 247, 247, 0) 100%
  );
}

.faq-listing-page .faqs__box {
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
  max-height: 185px;
  background: #fbfbfb;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1019607843),
    0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078) inset;
}
.faq-listing-page .faqs__box.faq-active {
  /* Allow the active FAQ to expand to fit its content instead of being clipped */
  max-height: none;
}
.faq-listing-page .faqs__box:hover {
  background: #f5f5f5;
}
.faq-listing-page .faqs__box.faq-active:after {
  color: #cc0b4b;
}

.faqBlock {
  padding: 79px 0 0 0;
  width: calc(100% - 80px);
  margin: 0 40px;
  border-radius: 20px;
  background: #f7f7f7;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078) inset;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media (max-width: 1290px) {
  .faqBlock {
    padding: 4.3rem 0 0 2rem;
  }
}
@media (max-width: 720px) {
  .faqBlock {
    border-radius: 2.5rem;
    padding: 3rem 1rem;
  }
}
.faqBlock .black-ghost {
  background: none;
}
.faqBlock .container {
  position: relative;
  z-index: 9;
}
@media (max-width: 720px) {
  .faqBlock .container {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.faqBlock .gradient-heading {
  margin-left: -0.25rem;
  text-shadow: 1px 1px 2px rgb(245, 245, 245),
    1px -2px 2px rgba(191, 191, 191, 0.2);
}
@media (max-width: 991px) {
  .faqBlock .gradient-heading {
    font-size: 11rem;
  }
}
@media (max-width: 720px) {
  .faqBlock .gradient-heading {
    font-size: 25vw;
  }
}
.faqBlock .section-title {
  margin-bottom: 34px;
  text-align: left;
}
@media (max-width: 991px) {
  .faqBlock .section-title {
    text-align: center;
  }
}
.faqBlock .section-title .section-title-full {
  margin-bottom: -12px;
}
.faqBlock .section-title-left {
  padding-left: 33px;
  margin-left: 0;
  margin-top: 0;
  width: 60%;
}
@media (max-width: 1290px) {
  .faqBlock .section-title-left {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .faqBlock .section-title-left {
    width: 100%;
    margin-top: -1.8rem;
  }
}
.faqBlock .section-title-left h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.036em;
}
.faqBlock .section-title-right {
  width: 40%;
  padding-right: 19px;
  text-align: center;
}
@media (max-width: 1290px) {
  .faqBlock .section-title-right {
    width: 50%;
    text-align: right;
    margin-top: -1rem;
  }
}
@media (max-width: 991px) {
  .faqBlock .section-title-right {
    width: 100%;
    margin: 0;
    display: none;
  }
}
.faqBlock .section-title-right .btn {
  margin-bottom: 0;
}
.faqBlock .faqs__accordion {
  border: 0;
  padding: 0;
}
.faqBlock .faqs__accordion .col-lg-6:nth-child(1) {
  width: 56%;
}
.faqBlock .faqs__accordion .col-lg-6:nth-child(2) {
  width: 44%;
  overflow: hidden;
}
.faqBlock .faqs__accordion .col-lg-6:nth-child(2) img {
  bottom: -14px;
  margin-bottom: -45px;
  position: relative;
}
.faqBlock .faqBlock-image {
  text-align: right;
  margin-bottom: -1.25rem;
}
@media (max-width: 991px) {
  .faqBlock .faqBlock-image {
    text-align: center;
    height: 30rem;
    overflow: hidden;
  }
}
.faqBlock .faqBlock-image .btn {
  display: none;
}
@media (max-width: 991px) {
  .faqBlock .faqBlock-image .btn {
    display: inline-block;
    margin-bottom: 2rem;
  }
}
.faqBlock-left {
  padding-bottom: 2rem;
}
.faqBlock .faqs__box {
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1019607843),
    0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fbfbfb;
  border: 2px solid #fbfbfb;
  margin-bottom: 10px;
}
.faqBlock .faqs__box:after {
  right: 19px;
  left: auto;
  top: 7px;
}
.faqBlock .faqs__box .faqs__title {
  padding: 1.56rem 1.31rem 1.56rem 2rem;
  height: auto;
  min-height: auto;
  text-align: left;
  width: 100%;
  display: inline-block;
}
.faqBlock .faqs__box .faqs__title h4 {
  text-align: left;
}
.faqBlock .faqs__box .faqs__text {
  margin-top: 0;
  padding: 0 30px 10px 33px;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.faqBlock .faqs__box .faqs__text p {
  letter-spacing: 0.015em;
}
.faqBlock .faqs__box.faq-active {
  background: #ffffff;
}
.faqBlock .faqs__box.faq-active .faqs__title h4 {
  color: #cc0b4b;
}

.resources-block {
  margin-bottom: 119px;
}
.resources-block .section-title {
  margin-bottom: 56px;
}
.resources-block .section-title .section-title-left {
  padding: 0;
}
.resources-block .section-title .section-title-left h2 {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.044em;
  font-size: 50px;
  margin-left: -2px;
}
.resources-block .section-title .ghost-btn.black-ghost {
  margin-bottom: -6px;
}
.resources-block .grant-card__text {
  padding: 30px 30px 30px 20px;
}
.resources-block .grant-card__text p {
  line-height: 1.2em;
  letter-spacing: 0;
}
.resources-block .grant-card label {
  left: 20px;
  top: 19px;
}
.resources-block .grant-card__arrow {
  right: 24px;
  top: 23px;
}

.sticky-content {
  padding: 9rem 0 2rem 0;
  width: 100%;
  position: relative;
}
.sticky-content:before {
  width: 237px;
  height: 502px;
  opacity: 0.4;
  background: #f60656;
  position: absolute;
  top: 0;
  bottom: -2rem;
  margin: auto;
  right: 0;
  content: "";
  border-radius: 50%;
  filter: blur(300px);
  z-index: -1;
}
@media (max-width: 1100px) {
  .sticky-content {
    padding: 6.5em 0 2rem 0;
  }
}
.sticky-content__video {
  position: relative;
}
.sticky-content__row {
  display: flex;
  width: 100%;
}
@media (max-width: 1100px) {
  .sticky-content__row {
    flex-wrap: wrap;
  }
}
.sticky-content__left {
  width: 51%;
  padding-right: 7.25rem;
  font-size: 1.5rem;
  letter-spacing: 0;
}
@media (max-width: 1100px) {
  .sticky-content__left {
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
    max-width: 36.87rem;
    margin: 0 auto;
  }
}
.sticky-content__left h2 {
  font-size: 2.62rem;
  line-height: 1.2;
  max-width: 20.62rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  margin-top: -7px;
}
@media (max-width: 1100px) {
  .sticky-content__left h2 {
    font-size: 2.5rem;
    max-width: 100%;
    margin-bottom: 0.9rem;
  }
}
.sticky-content__left h2 strong {
  font-weight: 300;
  font-style: normal;
  color: #cc0b4b;
}
.sticky-content__text {
  width: 49%;
}
@media (max-width: 1100px) {
  .sticky-content__text {
    width: 100%;
    margin-top: 2.813rem;
  }
}
.sticky-content__text img {
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 1100px) {
  .sticky-content__text img {
    height: 30rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.sticky-content__text h5 {
  color: #232323;
  font-size: 1.87rem;
  font-style: italic;
  letter-spacing: 0;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.sticky-content__text p {
  margin-bottom: 1.8rem;
}
.sticky-content__image {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 3rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.sticky-content__floating {
  line-height: 1.3;
  position: sticky;
  top: 8.75rem;
  border-radius: 0;
  letter-spacing: 0;
}

.pink-line {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  position: relative;
  margin-top: 2.18rem;
  margin-bottom: 1rem;
}
.pink-line::after,
.pink-line:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  background-color: #d9d9d9;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pink-line:before {
  left: 0;
}
.pink-line::after {
  right: 0;
}

.subscriber-section {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: top;
}
.subscriber-section .subscriber-text {
  padding: 0 5.62rem 2.56rem 5.62rem;
  text-align: center;
  color: #ffffff;
  border-radius: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.subscriber-section h3 {
  font-size: 2.31rem;
  color: #ffffff;
  margin: 1.56rem 0 2.43rem 0;
  font-weight: 400;
}
.subscriber-section h3 strong {
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
}
.subscriber-section.subscriber-layout2 .subscriber-text {
  padding-bottom: 0;
}
.subscriber-section.subscriber-layout2 .subscriber2-flex {
  position: relative;
}
.subscriber-section.subscriber-layout2 .subscriber2-flex::before {
  content: "";
  background: url(../images/bg9.png) center right no-repeat;
  width: 51rem;
  height: 400px;
  position: absolute;
  left: 28%;
  top: 0;
}
.subscriber-section.subscriber-layout2 .subscriber2-flex .subscriber2-text {
  padding-top: 3rem;
}
.subscriber-section.subscriber-layout2 .subscriber2-flex .subscriber2-text p {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
.subscriber-section.subscriber-layout2
  .subscriber2-flex
  .subscriber2-text
  .ghost-btn {
  min-width: 24.5rem;
}
.subscriber-section.subscriber-layout2 .subscriber2-flex .subscriber2-image {
  max-width: 32.37rem;
  position: relative;
  margin-top: 1rem;
}
.subscriber-section.subscriber-layout3 {
  padding: 0;
  margin: 0;
  vertical-align: top;
}
.subscriber-section.subscriber-layout3 .subscriber-text {
  padding: 4rem 5.62rem 0 5.62rem;
  letter-spacing: -0.02em;
  border-radius: 0;
}
.subscriber-section.subscriber-layout3 .subscriber-text strong {
  font-style: italic;
}
.subscriber-section.subscriber-layout3 .subscriber2-image {
  padding-top: 2rem;
}
.subscriber-section.subscriber-layout3 .subscriber2-image img {
  max-width: 328px;
}
.subscriber-section.subscriber-layout3 .subscriber2-flex .subscriber2-text {
  max-width: 59.62rem;
  font-size: 35px;
}
.subscriber-section.subscriber-layout3 .subscriber2-flex .subscriber2-text img {
  max-width: 24rem;
}
.subscriber-section.subscriber-layout3 .subscriber2-flex .subscriber2-text p {
  margin-bottom: 2rem;
}
.subscriber-section.subscriber-layout3
  .subscriber2-flex
  .subscriber2-text
  .ghost-btn {
  min-width: 380px;
}
.subscriber-section .subscriber2-flex {
  display: flex;
  max-width: 62.62rem;
  margin: 0 auto;
  justify-content: space-between;
}
.subscriber-section .subscriber2-flex .subscriber2-text {
  text-align: left;
  max-width: 23.75rem;
  font-size: 1.5rem;
}
.subscriber-section .subscriber2-flex .subscriber2-text img {
  max-width: 18.12rem;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
}
.subscriber-section .subscriber2-flex .subscriber2-text p {
  margin-bottom: 1rem;
}
.subscriber-section .subscriber2-flex .subscriber2-image {
  max-width: 26.37rem;
}

.firefox .sticky-content:before {
  opacity: 0.1;
  width: 437px;
  height: 1032px;
}
.firefox .company-accolades::before {
  opacity: 0.1 !important;
}
.firefox .we-write-grants::before {
  opacity: 0.1 !important;
}

.service-detail-middle-section {
  padding: 7rem 0 3rem 0;
  position: relative;
}
.service-detail-middle-section:before {
  width: 647px;
  height: 582px;
  opacity: 0.15;
  background: #f60656;
  position: absolute;
  top: 0;
  margin: auto;
  right: 0;
  content: "";
  border-radius: 50%;
  filter: blur(300px);
  z-index: -1;
}
.service-detail-middle-section .service-detail-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.service-detail-middle-section .service-detail-content p {
  width: 100%;
  line-height: 1.4;
  margin-bottom: 1.8rem;
}
.service-detail-middle-section .ser-detail-stickybox {
  /* padding: 2.8rem 4rem 3rem 3.5rem; */
  position: sticky;
  top: 8rem;
}
.service-detail-middle-section .ser-detail-stickybox h3 {
  font-size: 1.875rem;
  font-family: "Palatino_Regular";
  font-weight: normal;
  padding: 2.8rem 4rem 0 3.5rem;

  letter-spacing: 0;
  margin-bottom: 2px;
}
.service-detail-middle-section .ser-detail-stickybox p {
  margin-bottom: 2rem;
  padding: 0 4rem 0 3.5rem;
}
.service-detail-middle-section .ser-detail-stickybox .btn {
  width: 100%;
}
.service-detail-middle-section .ser-detail-stickybox .reg-step2 {
  display: none;
}

.available-grants .grant-alerts__box {
  width: 100%;
  max-width: 100%;
  margin-bottom: 8px;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  background: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843),
    inset 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.available-grants .grant-alerts__box h4 {
  line-height: 1.3;
  letter-spacing: 0;
  font-size: 14px;
}
.available-grants .grant-alerts__box:hover h4 {
  color: #cc0b4b;
}
.available-grants .grant-alerts__box:hover .grant-alerts__text:after {
  background-image: url(../images/pink-arrow-hover.svg);
  transform: rotate(45deg);
}
.available-grants .grant-alerts__box .grant-alerts__date {
  margin-bottom: 3px;
  color: #232323;
  font-family: "Palatino-Italic";
  font-size: 12px;
  font-style: normal;
}
.available-grants .grant-alerts__box .grant-alerts__image {
  width: 32%;
  border-radius: 0.5rem 0 0 0.5rem;
  height: auto;
}
.available-grants .grant-alerts__box .grant-alerts__text {
  width: 68%;
  padding: 0.7rem 4rem 0.5rem 1rem;
}
.available-grants .grant-alerts__box .grant-alerts__text::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 15px;
  margin: auto;
  background: url(../images/pink-arrow.svg) center center no-repeat;
  transition: 0.3s all;
  width: 1.6rem;
  height: 1.6rem;
}
.available-grants .grant-alerts__box .grant-alerts__price {
  margin-top: 8px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0;
}
.available-grants .grant-alerts__box .grant-alerts__price label {
  font-size: 25px;
}
.available-grants .grant-alerts__box .grant-alerts__price:after {
  display: none;
}
.available-grants .btn {
  width: 100%;
  margin-top: 2rem;
}

.faqs-items {
  margin-top: 3rem;
  position: relative;
}
.faqs-items h2 {
  letter-spacing: -0.02em;
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 46px !important;
  padding-bottom: 20px;
}
.faqs-items:before {
  content: "";
  background: url(../images/faq-item-bg.png) center center no-repeat;
  width: 391px;
  height: 100%;
  position: absolute;
  left: -200px;
  top: 0;
  z-index: -1;
  mix-blend-mode: difference;
  background-size: cover;
}
.faqs-items:after {
  content: "";
  background: url(../images/faq-item-bg.png) center center no-repeat;
  width: 391px;
  height: 100%;
  position: absolute;
  right: -200px;
  top: 0;
  z-index: -1;
  mix-blend-mode: difference;
  background-size: cover;
}
.faqs-items .faqs__box {
  margin-bottom: 0.563rem;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1019607843),
    inset 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  background: #fbfbfb;
  border-radius: 4px;
}
.faqs-items .faqs__box:after {
  top: 0.5rem;
}
.faqs-items .faqs__box .faqs__title {
  padding: 1.5rem 2rem;
  min-height: auto;
  text-align: left;
  justify-content: flex-start;
}
.faqs-items .faqs__box .faqs__title h4 {
  text-align: left;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  width: 78%;
  margin: 0;
}
.faqs-items .faqs__box .faqs__text {
  margin-top: 0;
  padding: 0 2rem;
}
.faqs-items .faqs__box p {
  width: 100%;
}
.faqs-items .btn {
  width: 100%;
  margin-top: 2.5rem;
}

.successes-block {
  width: 100%;
  margin: 0;
  position: relative;
  display: inline-block;
  margin-top: -1.25rem;
}
.successes-block .container {
  max-width: 1020px;
}
.successes-block__bg {
  padding: 5rem;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.successes-block__bg:before {
  content: "";
  width: 100%;
  height: calc(100% - 314px);
  background: rgb(204, 11, 75);
  background: linear-gradient(
    262deg,
    rgb(204, 11, 75) 0%,
    rgb(246, 6, 86) 43%,
    rgb(204, 11, 75) 100%
  );
  border-radius: 0;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.successes-block__bg:after {
  content: "";
  width: 100%;
  height: calc(100% - 314px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}
.successes-block__bg .experience-block__number {
  color: #ffffff;
  font-weight: 500;
}
.successes-block__bg .experience-block__number sup {
  font-size: 51%;
  margin-right: 0.5rem;
}
.successes-block__headline {
  margin-bottom: 3rem;
}
.successes-block__headline .gradient-heading {
  text-shadow: none;
  background: linear-gradient(180deg, #cc0b4b 1000%, rgba(0, 0, 0, 0) 0%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0.25rem 1.25rem rgba(225, 9, 81, 0.76);
  opacity: 0.7;
  letter-spacing: 0;
  margin-bottom: -2.5rem;
}
.successes-block__headline h3 {
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  font-weight: 300;
  position: relative;
  z-index: 9;
}
.successes-block__number-row {
  position: relative;
  z-index: 9;
}
.successes-block__number-row p {
  font-family: "Palatino_Bold";
  font-size: 20px;
}
.successes-block__quote {
  position: relative;
  text-align: left;
  display: inline-block;
  width: 100%;
  margin-top: 4rem;
  z-index: 1;
}
.successes-block__quote-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 36.25rem;
  height: 23.75rem;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.successes-block__quote-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
}
.successes-block__quote-text {
  padding: 3.5rem 3rem 2.8rem 3rem;
  font-family: "Palatino-Italic";
  font-size: 20px;
  color: #232323;
  letter-spacing: 0;
  margin-top: 6rem;
  position: relative;
  max-width: 36.25rem;
  z-index: 1;
  line-height: 1.2;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
}
.successes-block__quote-text .auther {
  color: #cecbcb;
  font-size: 1.125rem;
  display: inline-block;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
}
.successes-block__quote-text p {
  margin-bottom: 2.5rem;
}

.explore-services {
  width: calc(100% - 2.5rem);
  margin: 1.25rem;
  position: relative;
  display: inline-block;
}
.explore-services .gradient-heading {
  /* text-align: center; */
  font-size: 160px;
  padding-bottom: 10px;
  /* margin-left: 10.375rem; */
}
.explore-services__item {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
}
.explore-services__box {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.explore-services__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.explore-services__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.explore-services__bg-image:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.5;
  position: absolute;
}
.explore-services__flex {
  width: 473px;
  position: relative;
  text-align: center;
}
.explore-services__flex h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1.1;
  max-width: 283px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.explore-services__flex .ghost-btn {
  min-width: 381px;
}
.explore-services .text-version h4 {
  color: #232323;
  max-width: 100%;
  margin-bottom: 20px;
}
.explore-services .text-version p {
  font-size: 16px;
  font-weight: 400;
}
.explore-services .text-version .btn {
  border-color: #232323;
  color: #232323;
}

.challenge-block {
  width: 100%;
  padding: 14px 0;
}
.challenge-block__headline {
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  margin-left: -80px;
}
.challenge-block__headline h3 {
  font-weight: 300;
  margin-bottom: 7px;
  padding-left: 1.2rem;
  margin-top: -2rem;
}
.challenge-block__headline p {
  padding-left: 1.2rem;
}
.challenge-block .gradient-heading {
  background: linear-gradient(180deg, #b78383 0%, #b34964 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0.25rem 0.25rem rgba(233, 222, 222, 0.8);
  opacity: 0.1;
  line-height: 1.3;
  margin-bottom: -4.938rem;
}
.challenge-block__items {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.challenge-block__items:before {
  width: 600px;
  height: 600px;
  opacity: 0.15;
  background: #f60656;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  border-radius: 50%;
  filter: blur(300px);
  z-index: -1;
}
.challenge-block__box {
  padding: 2rem 3rem;
  text-align: center;
  border-radius: 0.5rem;
  width: 48%;
  margin: 0 1%;
  margin-bottom: 1.2rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
}
.challenge-block__box h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  font-family: "Palatino_Regular";
}
.challenge-block__box p {
  font-size: 17px;
  letter-spacing: 0.01rem;
}
.challenge-block__icon {
  margin-bottom: 1rem;
}
.challenge-block__icon img {
  width: 60px;
}
.challenge-block .qoute-block {
  display: flex;
  align-items: center;
  margin: 5rem 0 2rem 0;
}
.challenge-block .qoute-block__image {
  width: 48%;
  position: relative;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  overflow: hidden;
}
.challenge-block .qoute-block__image img {
  width: 100%;
  border-radius: 0.5rem;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
.challenge-block .qoute-block__text {
  width: 56%;
  padding: 3.5rem 4.2rem 3rem 5.5rem;
  position: relative;
  margin-left: -3.5rem;
  font-size: 20px;
  letter-spacing: -0.02em;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  background: #fcfcfc;
  border-radius: 8px;
  font-family: "Palatino-Italic";
}
.challenge-block .qoute-block__text:before {
  background: url(../images/ellipse11.png) center center no-repeat;
  content: "";
  width: 190px;
  height: 280px;
  position: absolute;
  right: -80px;
  top: -1.25rem;
  bottom: 0;
  margin: 0 auto;
  background-size: 270px;
  mix-blend-mode: difference;
  z-index: -1;
}
.challenge-block .qoute-block__text p {
  line-height: 1.2;
}
.challenge-block .qoute-block__text label {
  letter-spacing: -0.02em;
  font-weight: 600;
  font-family: "Palatino_Regular";
}
.challenge-block .qoute-block__number {
  font-size: 2.5rem;
  position: absolute;
  bottom: -4px;
  display: flex;
  color: #ffffff;
  font-weight: 600;
  align-items: self-end;
  left: 1.25rem;
  line-height: 1;
}
.challenge-block .qoute-block__year {
  font-size: 6.25rem;
  letter-spacing: -0.02em;
  opacity: 50%;
  color: #ffffff;
  font-weight: 900;
  line-height: 0.8;
  margin-right: 0.5rem;
}

.small-container {
  max-width: 1040px;
}

.medium-container {
  max-width: 1220px;
}

.service-detail-middle-section blockquote {
  border: 0 !important;
  padding: 2.5rem 3rem 3rem 3rem !important;
  margin: 0 0 1rem 0 !important;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 0%,
    rgb(244, 244, 244) 100%
  );
  font-weight: 600;
  font-size: 1.5rem;
  color: #232323;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.service-detail-middle-section blockquote:before {
  display: none;
}
.service-detail-middle-section blockquote p {
  margin: 0;
}

.single-qoute-block .qoute-block {
  margin-top: 0;
}

.custom-searchbar {
  margin: 5rem 0 3rem 0;
  display: inline-block;
  width: 100%;
}
.custom-searchbar .custom-search {
  position: relative;
  width: 100%;
}
.custom-searchbar .custom-search:before {
  background: url(../images/black-seach-icon.svg) center center no-repeat;
  background-size: 1.81rem;
  width: 1.93rem;
  height: 2.93rem;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  bottom: 0.25rem;
  margin: auto;
}
.custom-searchbar .custom-search .custom-input input[type="text"] {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #232323;
  color: #232323;
  padding: 1rem 1.25rem 1rem 2.3rem;
  font-weight: 600;
  line-height: normal;
  min-width: 11.37rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: 0.5s all;
  width: 100%;
}
.custom-searchbar
  .custom-search
  .custom-input
  input[type="text"]::-moz-placeholder {
  color: #232323 !important;
}
.custom-searchbar .custom-search .custom-input input[type="text"]::placeholder {
  color: #232323 !important;
}
.custom-searchbar .custom-search .custom-button input[type="submit"] {
  background: url(../images/black-search-arrow.svg) center center no-repeat;
  width: 1.93rem;
  height: 1.93rem;
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 0;
  padding: 0;
  font-size: 0;
  min-width: auto;
  transition: 0.3s all;
  background-size: 1.5rem;
}
.custom-searchbar .custom-search .custom-button input[type="submit"]:hover {
  right: 0;
}

.box-style {
  background-color: #f7f7f7;
  padding: 2rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

.featured-grant {
  margin: 2rem 0 4.5rem 0;
}
.featured-grant .gradient-heading {
  padding-left: 3rem;
}
.featured-grant .section-title-left {
  width: 100%;
  margin-top: -1rem;
}
.featured-grant__box {
  display: flex;
  padding: 2.5rem;
  position: relative;
  margin-bottom: 4.5rem;
  position: relative;
}
.featured-grant__box:before {
  position: absolute;
  left: -14rem;
  bottom: -5rem;
  content: "";
  width: 36.25rem;
  height: 36.25rem;
  background: url(../images/ellipse11.png) center center no-repeat;
  z-index: -1;
  mix-blend-mode: difference;
  background-size: 51rem;
}
.featured-grant__image {
  width: 42%;
  overflow: hidden;
  border-radius: 0.5rem;
}
.featured-grant__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.featured-grant__text {
  width: 57%;
  padding-left: 3rem;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.featured-grant__text .new-grant {
  font-size: 1.875rem;
  font-style: italic;
  font-weight: 700;
  color: #f60656;
  font-family: "Palatino_Regular";
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5rem;
}
.featured-grant__text h4 {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1rem;
}
.featured-grant__text table {
  border: 0;
  width: 100%;
}
.featured-grant__text table td {
  border: 0;
  padding: 0.375rem 0;
}
.featured-grant__text table tr td:last-child {
  text-align: right;
}
.featured-grant__text .pricetag {
  color: #f60656;
  font-family: "Palatino_Regular";
  font-size: 2.5rem;
  line-height: 0.9;
  font-weight: 700;
}
.featured-grant__btns {
  margin-top: 2.5rem;
}
.featured-grant__btns .btn {
  margin-right: 0.5rem;
}
.featured-grant__btns .btn:last-child {
  margin-right: 0;
}

.grant-listing {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.938rem;
}
.grant-listing .grant-alerts__box {
  margin-bottom: 1.5rem;
  margin-left: 0.87rem;
  margin-right: 0.87rem;
}

.ex-grant-pink {
  background-color: #f60656;
  padding: 5rem 0 0 0;
  margin-top: 5rem;
  overflow: hidden;
}
.ex-grant-pink .row {
  align-items: flex-end;
}
.ex-grant-pink .ex-grant-form-img {
  margin-bottom: -1.563rem;
}
.ex-grant-pink .ex-grant-form-col {
  text-align: center;
  padding-bottom: 4rem;
}
.ex-grant-pink .ex-grant-form-col img {
  margin: 0 auto;
  max-width: 24.37rem;
}

.resource-box h4,
.client-story-box h4 {
  margin: 1.125rem 0;
}
.resource-box .date,
.client-story-box .date {
  font-size: 0.87rem;
}
.resource-box .link-btn,
.client-story-box .link-btn {
  font-size: 1.125rem;
  position: absolute;
  bottom: 1.5rem;
}
.resource-box:hover .link-btn:after,
.client-story-box:hover .link-btn:after {
  right: -5px;
}
.resource-box .grant-alerts__text,
.client-story-box .grant-alerts__text {
  position: relative;
}
.resource-box .client-badge,
.client-story-box .client-badge {
  position: absolute;
  top: -4rem;
  right: 0;
}
.resource-box .client-badge img,
.client-story-box .client-badge img {
  max-width: 5.625rem;
}
.resource-box .date .newg,
.client-story-box .date .newg {
  font-weight: normal;
  font-style: normal;
}

.resource-box .grant-alerts__text {
  padding-bottom: 3rem;
}

.client-story-box h4 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-top: 0.438rem;
  margin-bottom: 0.5rem;
}
.client-story-box p {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.client-story-box .grant-alerts__text {
  min-height: 14rem;
}

.resource-list-headline {
  padding: 4rem 0 2rem 0;
  text-align: center;
  font-size: 1.125rem;
}
.resource-list-headline h3 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
}
.resource-list-headline h2 {
  margin: 0 0 1rem 0;
  font-size: 5rem;
  line-height: 1;
}
.resource-list-headline h2 span {
  color: #cc0b4b;
}
.resource-list-headline .pink-line {
  margin-top: 2rem;
}

.resource-filter {
  margin: 4.2rem 0 0 0;
}
.resource-filter ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
.resource-filter ul li {
  padding: 0 0.2rem;
  list-style-type: none;
}
.resource-filter ul li a {
  border: 1px solid #cc0b4b;
  padding: 0.8rem 2.7rem;
  color: #cc0b4b;
  border-radius: 6.25rem;
  display: inline-block;
  font-size: 1rem;
  font-family: "Palatino_Regular";
}
.resource-filter ul li a:hover {
  background-color: #cc0b4b;
  color: #ffffff;
}
.resource-filter ul li.resource-filter-active a {
  background-color: #cc0b4b;
  color: #ffffff;
}

.gray-area {
  background-color: #f7f7f7;
  padding: 6rem 0;
  margin-top: 5rem;
}
.gray-area .gradient-heading {
  text-shadow: 1px 1px 2px rgb(245, 245, 245),
    1px -2px 2px rgba(191, 191, 191, 0.2);
}
.gray-area .section-title-left h2 {
  color: #232323;
}

.section-title-right.line-layer {
  display: flex;
  align-items: end;
  position: relative;
  padding-bottom: 0.938rem;
}
.section-title-right.line-layer:before {
  position: absolute;
  width: 6rem;
  height: 1px;
  content: "";
  left: -7.125rem;
  bottom: 2.25rem;
  margin: 0 auto;
  background: rgb(246, 6, 86);
  background: linear-gradient(
    86deg,
    rgb(246, 6, 86) 0%,
    rgb(236, 154, 12) 100%
  );
}

.sectionCl {
  padding: 6rem 0;
}

.resource-detail-middle {
  position: relative;
  padding: 4rem 0;
}
.resource-detail-middle:before {
  width: 327px;
  height: 632px;
  opacity: 0.3;
  background: #f60656;
  position: absolute;
  top: -2rem;
  margin: auto;
  content: "";
  border-radius: 50%;
  filter: blur(300px);
  z-index: -1;
  left: 0;
}
.resource-detail-middle .tag-ctc {
  font-family: "Palatino-Italic";
  font-size: 18px;
  margin-bottom: 6px;
}
.resource-detail-middle .resource-detail-flex {
  display: flex;
}
.resource-detail-middle .resource-detail-flex .sticky-social-share {
  width: 6.25rem;
}
.resource-detail-middle .resource-detail-flex .resource-detail-text {
  width: 46.87rem;
  line-height: 1.4;
  font-weight: 500;
}
.resource-detail-middle .resource-detail-flex .resource-detail-text h2 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 7px;
}
.resource-detail-middle .resource-detail-flex .resource-detail-text h3 {
  font-size: 1.875rem;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}
.resource-detail-middle .resource-detail-flex .resource-detail-text p {
  margin-bottom: 1.5rem;
}

.sticky-social-share ul {
  padding: 0;
  margin: 0;
  position: sticky;
  top: 5rem;
}
.sticky-social-share ul li {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0.5rem;
}
.sticky-social-share ul li a {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  border: 1px solid #232323;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-social-share ul li a:hover {
  background-color: #f60656;
  border-color: #f60656;
}
.sticky-social-share ul li a:hover img {
  filter: brightness(0) invert(1);
}

.detail-date {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: "Palatino-Italic";
}
.detail-date .detail-date {
  display: flex;
  align-items: center;
}
.detail-date .author {
  background: url(../images/star2.svg) right center no-repeat;
  padding-right: 2.3rem;
  margin-right: 1.4rem;
  background-size: 1rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.detail-date .author .auther-img {
  margin-right: 0.7rem;
}
.detail-date .author .auther-img img {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.large-p {
  font-size: 1.5rem;
  font-weight: 500;
}

.detail-tags {
  margin-top: 5.3rem;
  position: relative;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-tags:before {
  position: absolute;
  height: 1px;
  content: "";
  left: 0;
  top: 0;
  margin: 0 auto;
  background: #c1c1c1;
  width: 980px;
  max-width: 100%;
}
.detail-tags .tags a {
  color: #232323;
  padding: 0.625rem 1.68rem;
  border-radius: 0.375rem;
  margin-right: 0.563rem;
  display: inline-block;
  gap: 5px;
  font-size: 1rem;
  font-weight: 600;
  background: #fbfbfb;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
.detail-tags .tags a:hover {
  background-color: #ffffff;
}

.social-share {
  padding: 0;
}
.social-share ul {
  padding: 0;
  margin: 0;
  display: flex;
}
.social-share ul li {
  padding: 0 1rem;
  margin: 0;
  list-style-type: none;
}
.social-share ul li a:hover {
  opacity: 0.4;
}
.social-share ul li a img {
  height: 1.438rem;
}

.related-resources {
  background: none !important;
  padding-top: 0;
}
.related-resources .gradient-heading {
  text-shadow: 0px 0.25rem 0.25rem rgba(255, 255, 255, 0.8);
}

.headlines h2 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.02em;
}
.headlines h3 {
  font-size: 80px;
  font-weight: 300;
  color: #cc0b4b;
  line-height: 1;
  letter-spacing: -0.02em;
}

.font-24 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.additional-resources {
  padding: 7rem 0 3rem 0;
  position: relative;
}
.additional-resources:before {
  width: 237px;
  height: 502px;
  opacity: 0.7;
  background: #f60656;
  position: absolute;
  top: 0;
  bottom: -2rem;
  margin: auto;
  right: 0;
  content: "";
  border-radius: 50%;
  filter: blur(300px);
  z-index: -1;
}
.additional-resources .grant-alerts__box {
  max-width: 23.4rem;
}
.additional-resources .tag-ctc {
  margin-bottom: 14px;
}
.additional-resources .grant-alerts__text h4 {
  font-weight: 400;
  letter-spacing: 0;
}
.additional-resources .grant-alerts__price {
  z-index: 9;
}
.additional-resources .grant-alerts__tag {
  margin-top: 12px;
  padding: 0px;
}
.additional-resources .grant-alerts__image:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #232323;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.archive-pagination {
  padding: 0 0 1rem 0;
  font-family: "Palatino_Regular";
  letter-spacing: 0.01em;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 2rem;
}
.archive-pagination__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archive-pagination__showing {
  display: flex;
  font-family: "Palatino_Bold";
}
.archive-pagination__showing:before {
  position: absolute;
  content: "";
  top: 0.25rem;
  left: 0;
  height: 0.938rem;
  width: 2px;
  background-color: #232323;
}

/* Mobile menu overlay (slides in from left) */
/* =====================================
   MOBILE MENU OVERLAY BASE STYLES
===================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.mobile-menu-overlay .mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 300ms ease;
}

.mobile-menu-overlay .mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(-110%);
  transition: transform 400ms cubic-bezier(0.2, 0.9, 0.2, 1);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  pointer-events: auto;
}
.mobile-menu-overlay.active .mobile-menu-backdrop {
  opacity: 1;
}
.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-logo-link img {
  height: 28px;
}
.close-mobile-menu {
  background: transparent;
  border: none;
  font-size: 1rem;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mobile-menu-topbar {
  background: #2d0b0f;
  color: #fff;
  padding: 0.6rem 0;
}
.mobile-menu-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-topbar .mobile-menu-welcome {
  padding-left: 1.25rem;
  font-size: 0.95rem;
}
.mobile-menu-topbar .mobile-menu-signin {
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #f7cbd1;
  font-weight: 600;
  cursor: pointer;
}
.mobile-menu-signin .signin-icon {
  width: 18px;
  height: 18px;
  background-image: url("../images/signin-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.mobile-menu-content {
  padding: 1.25rem 0;
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.mobile-menu-links li {
  margin: 0;
  /* Change mobile menu list item background from grey to white */
  background-color: #ffffff;
}

.mobile-menu-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 1.1rem 0; */
  /* padding-right: 2rem; */
  color: #222;
  font-size: 1.125rem;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.mobile-menu-overlay .mobile-menu-links li a {
  display: block !important;
  justify-content: flex-start !important;
  color: #222 !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
}

.mobile-menu-links li a::after {
  display: none;
}

@media (max-width: 1280px) {
  .mobile-menu-content .mobile-menu-items li a:hover {
    color: #f60656 !important;
  }
}
.mobile-menu-contact {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  background-color: white;
  color: #666;
}
.mobile-menu-contact .talk {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #111;
}
.mobile-menu-contact .contact-links {
  color: #555;
  display: flex;
  justify-content: space-between;
}
.mobile-menu-contact a {
  color: #f60656;
  text-decoration: none;
}
.mobile-nav ul li {
  padding: 0 !important;
}

.mobile-menu-footer {
  background-color: #e2e2e2;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}
.mobile-menu-footer a {
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu-footer a:hover {
  color: #f60656;
}

.mobile-menu-panel::-webkit-scrollbar {
  width: 6px;
}
.mobile-menu-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

@media (min-width: 1280px) {
  .mobile-menu-overlay {
    display: none;
  }
}
.archive-pagination__showing label {
  font-family: "Palatino_Regular";
  font-weight: 700;
}
.archive-pagination__showing .list-by,
.archive-pagination__showing .filter-by {
  position: relative;
  padding-left: 1rem;
  margin-left: 0.8rem;
  display: flex;
}
.archive-pagination__showing .list-by label,
.archive-pagination__showing .filter-by label {
  margin-right: 0.2rem;
}
.archive-pagination__showing .list-by .custom-select::after,
.archive-pagination__showing .filter-by .custom-select::after {
  content: "";
  width: 0.5rem;
  height: 0.25rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/triangle.svg) center center no-repeat;
  margin: auto;
}
.archive-pagination__showing .list-by .custom-select select,
.archive-pagination__showing .filter-by .custom-select select {
  border: 0;
  padding-right: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.archive-pagination__number span {
  padding: 0 2px;
  font-style: italic;
}
.archive-pagination__number span a {
  color: #232323;
}
.archive-pagination__number span a:hover {
  color: #cc0b4b;
}
.archive-pagination__number .pg-active {
  color: #cc0b4b;
  font-weight: bold;
  font-style: normal;
}
.archive-pagination__number .pg-prev {
  color: #cc0b4b;
  font-weight: bold;
  font-style: normal;
}

.resource-intro .cat-content-shorter .cat-text h2 {
  margin-bottom: 0;
}
.resource-intro h3 {
  font-size: 60px;
  font-weight: normal;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.resource-intro h3 span {
  color: #cc0b4b;
}
.resource-intro .cat-content-shorter p {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.4;
  width: 101%;
}

.single-headline .container {
  position: relative;
  z-index: 1;
}

.detail-badge-over {
  position: relative;
}

.detail-badge {
  position: absolute;
  right: 4rem;
  bottom: -5rem;
}
.detail-badge img {
  max-width: 9.375rem;
}

.remove-rounds {
  border-radius: 0;
  width: 100%;
}

.single-client_stories .detail-sub-headline {
  margin-bottom: 0.625rem;
  color: #232323;
}
.single-client_stories .detail-date {
  margin-bottom: 1.5rem;
  padding-bottom: 1.9rem;
  border-bottom: 1px solid #cdcdcd;
}
.single-client_stories .detail-date .author {
  padding-right: 0;
  background: none;
  margin-right: 0;
}
.single-client_stories .detail-date .auther-name {
  margin-right: 16px;
}

.exterior-links {
  background: #fbfbfb;
  padding: 2.1rem 5rem 2.1rem 3rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922),
    inset 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.exterior-links h2 {
  font-size: 30px;
  margin-bottom: 19px !important;
}
.exterior-links ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
.exterior-links ul li {
  width: 100%;
  padding-bottom: 5px;
  list-style-type: none;
}

.wp-block-quote {
  background: rgb(204, 11, 75);
  background: linear-gradient(86deg, rgb(204, 11, 75) 0%, rgb(246, 6, 86) 100%);
  padding: 57px 58px 21px 61px;
  position: relative;
  border: 0;
  font-size: 1.875rem;
  color: #ffffff;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 2.5rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922),
    inset 0px 4px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.wp-block-quote p {
  margin: 0;
}
.wp-block-quote:before {
  position: absolute;
  left: 15px;
  top: 15px;
  background: url(../images/left-quote.svg) center center no-repeat;
  width: 65px;
  height: 55px;
  content: "";
}
.wp-block-quote:after {
  position: absolute;
  right: 17px;
  bottom: 14px;
  background: url(../images/right-quote.svg) center center no-repeat;
  width: 95px;
  height: 75px;
  content: "";
}

.black-color {
  color: #232323 !important;
}

.quote-carousel {
  margin: 5rem 0;
  position: relative;
}
.quote-carousel:before {
  content: "";
  background: rgb(247, 247, 247);
  background: linear-gradient(
    185deg,
    rgb(247, 247, 247) 0%,
    rgb(255, 255, 255) 100%
  );
  width: 100%;
  height: 25rem;
  position: absolute;
  top: 5rem;
  left: 0;
}
.quote-carousel .swiper-slide-active .quote-carousel__flex {
  opacity: 1;
}
.quote-carousel__flex {
  position: relative;
  display: inline-block;
  width: 100%;
  opacity: 0;
  transition: 0.3s all;
}
.quote-carousel__text {
  background-color: #ffffff;
  box-shadow: 1.25rem 0.25rem 1.25rem rgba(0, 0, 0, 0.05);
  padding: 4.3rem 3rem 2.5rem 3.2rem;
  border-radius: 0.5rem;
  width: 36.25rem;
  margin-top: 10rem;
  position: relative;
  z-index: 1;
}
.quote-carousel__text h4 {
  font-size: 1.188rem;
  font-style: italic;
  font-family: "Palatino_Regular";
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.quote-carousel__text span {
  color: #cecbcb;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.quote-carousel__text .star-review {
  width: 100%;
}
.quote-carousel__image {
  position: absolute;
  width: 36.25rem;
  height: 23.75rem;
  right: 0;
  top: 0;
}
.quote-carousel__image img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.quote-carousel__navigation {
  position: absolute;
  display: flex;
  bottom: 2rem;
  right: 2rem;
}
.quote-carousel__navigation .swiper-button-next,
.quote-carousel__navigation .swiper-button-prev {
  width: 2.5rem;
  position: static;
  margin: 0 0.313rem;
  opacity: 0.4;
  transition: 0.3s all;
}
.quote-carousel__navigation .swiper-button-next:hover,
.quote-carousel__navigation .swiper-button-prev:hover {
  opacity: 1;
}
.quote-carousel__navigation .swiper-button-next:after,
.quote-carousel__navigation .swiper-button-next:before,
.quote-carousel__navigation .swiper-button-prev:after,
.quote-carousel__navigation .swiper-button-prev:before {
  display: none;
}
.quote-carousel__navigation .swiper-button-next img,
.quote-carousel__navigation .swiper-button-prev img {
  width: 2.5rem;
}

.page-404 {
  padding: 8rem 0 5.2rem 0;
  position: relative;
  text-align: center;
}
.page-404:before {
  width: 217px;
  height: 482px;
  opacity: 0.3;
  background: #fd00ff;
  position: absolute;
  top: 0;
  bottom: -2rem;
  margin: auto;
  left: 8%;
  content: "";
  border-radius: 50%;
  filter: blur(190px);
  z-index: -1;
}
.page-404::after {
  width: 217px;
  height: 482px;
  opacity: 0.3;
  background: #fd00ff;
  position: absolute;
  top: 0;
  bottom: -35rem;
  margin: auto;
  right: 8%;
  content: "";
  border-radius: 50%;
  filter: blur(190px);
  z-index: -1;
}
.page-404 .page-not-found-image {
  width: 100%;
  margin-bottom: 2.8rem;
}
.page-404 .page-not-found-text {
  margin-bottom: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.page-404 .page-not-found-btn {
  max-width: 381px;
  margin: 0 auto;
}
.page-404 .page-not-found-btn .btn {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.page-not-found {
  font-size: 1rem;
}

.gray_pt_box {
  background: #f7f7f7;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2509803922),
    0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078) inset;
  width: calc(100% - 2.5rem);
  margin: 0 1.2rem 1rem 1.2rem;
  padding: 8rem 5rem 4rem 5rem;
  border-radius: 20px;
  display: inline-block;
}

.related-links-for-404 h3:hover a {
  color: #232323;
}
.related-links-for-404 .rl-box {
  border-bottom: 1px solid rgba(35, 35, 35, 0.1490196078);
  min-height: 146px;
  width: 95%;
  margin-bottom: 1.5rem;
}
.related-links-for-404 .rl-box:last-child {
  border: 0;
  margin-bottom: 0;
}
.related-links-for-404 .rl-box ul {
  padding: 0;
  margin: -9px 0 0 0;
}
.related-links-for-404 .rl-box ul li {
  width: 100%;
  list-style-type: none;
  padding-bottom: 1rem;
}
.related-links-for-404 .rl-box ul li a {
  font-size: 1.2rem;
  font-family: "Palatino_Regular";
  color: #cc0b4b;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.sitemap-Cl {
  font-size: 1rem;
  padding-bottom: 2rem;
}

.additional-content {
  border-top: 1px solid rgba(35, 35, 35, 0.1490196078);
  padding-top: 2.5rem;
}
.additional-content h2 {
  font-weight: 300;
  margin-bottom: 2rem;
}
.additional-content .rl-box {
  margin-bottom: 3rem;
}
.additional-content .rl-box ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.additional-content .rl-box ul li {
  width: 33%;
  padding-bottom: 6px;
}
.additional-content .rl-box ul li a {
  font-size: 1rem;
}
.additional-content .rl-box ul li a i {
  font-family: "Palatino_Regular";
  font-weight: normal;
  font-style: normal;
  display: block;
}
.additional-content .cs-links ul {
  max-width: 740px;
}
.additional-content .cs-links ul li {
  width: 50%;
}

.grant-siren-cards {
  background-size: cover;
  background-position: center;
}
.grant-siren-cards .row {
  margin: 0;
}
.grant-siren-cards .row > div {
  padding: 40px;
  background: rgba(35, 35, 35, 0.4);
  position: relative;
  height: 580px;
  color: #ffffff;
  transition: all 1s;
}
@media (max-width: 1100px) {
  .grant-siren-cards .row > div {
    height: 512px;
    background: #ffffff;
    color: #232323;
    padding: 50px 52px;
  }
}
@media (max-width: 991px) {
  .grant-siren-cards .row > div {
    padding: 30px;
    height: 481px;
  }
}
@media (max-width: 720px) {
  .grant-siren-cards .row > div {
    height: 390px;
    padding: 50px 25px;
  }
}
@media (max-width: 1100px) {
  .grant-siren-cards .row > div:nth-child(1)::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 100%
    );
  }
  .grant-siren-cards .row > div:nth-child(1)::after {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgb(0, 0, 0) 100%
    );
  }
  .grant-siren-cards .row > div:nth-child(2)::after {
    background: linear-gradient(
      to right,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .grant-siren-cards .row > div:nth-child(3)::before {
    background: linear-gradient(
      to bottom,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}
.grant-siren-cards .row > div:hover {
  background: #ffffff;
  color: #232323;
}
.grant-siren-cards .row > div:hover .grant-siren-card__arrow {
  transform: rotate(45deg);
}
.grant-siren-cards .row > div:hover .grant-siren-card__arrow path {
  fill: #232323;
  stroke: #232323;
}
.grant-siren-cards .row > div:hover .grant-siren-card__caps {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}
.grant-siren-cards .row > div::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 720px) {
  .grant-siren-cards .row > div::before {
    display: none;
  }
}
.grant-siren-cards .row > div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}
@media (max-width: 720px) {
  .grant-siren-cards .row > div::after {
    background: linear-gradient(
      to right,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
  }
}

.grant-siren-card {
  height: 100%;
  position: relative;
}
.grant-siren-card h4 {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .grant-siren-card h4 {
    width: 95%;
    margin-bottom: 26px;
  }
}
.grant-siren-card h5 {
  font-size: 24px;
  font-family: "Palatino_Bold";
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .grant-siren-card h5 {
    margin-bottom: 23px;
  }
}
.grant-siren-card p {
  font-size: 16px;
}
.grant-siren-card p:last-child {
  margin: 0;
}
.grant-siren-card__arrow {
  position: absolute;
  right: 0;
  top: 0;
  transition: all 1s;
}
@media (max-width: 1100px) {
  .grant-siren-card__arrow {
    transform: rotate(45deg);
  }
}
.grant-siren-card__arrow path {
  transition: all 1s;
}
@media (max-width: 1100px) {
  .grant-siren-card__arrow path {
    fill: #232323;
    stroke: #232323;
  }
}
.grant-siren-card__text {
  position: absolute;
  bottom: 0;
}
.grant-siren-card__caps {
  transition: all 1s;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #232323;
}
@media (max-width: 1100px) {
  .grant-siren-card__caps {
    opacity: 1;
    visibility: visible;
    max-height: none;
  }
}

.envelope,
.msg {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.msg {
  animation-name: floatingc;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.sms {
  animation-name: floatingb;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes floating {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, 0px);
  }
}
@keyframes floatingb {
  from {
    transform: translate(0, 0px);
  }
  65% {
    transform: translate(0, 25px);
  }
  to {
    transform: translate(0, 0px);
  }
}
@keyframes floatingc {
  from {
    transform: translate(0, 0px);
  }
  40% {
    transform: translate(0, 15px);
  }
  to {
    transform: translate(0, 0px);
  }
}
.pricing__blocks {
  overflow: hidden;
}
@media (max-width: 1100px) {
  .pricing__blocks {
    overflow: hidden;
  }
}
.pricing__blocks .row {
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 1100px) {
  .pricing__blocks .row {
    flex-wrap: nowrap;
    margin: 0;
  }
}
.pricing__blocks .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1100px) {
  .pricing__blocks .row > div {
    padding: 0;
  }
}
@media (max-width: 720px) {
  .pricing__blocks .row > div {
    padding-bottom: 30px;
  }
}
.pricing__blocks .container {
  position: relative;
}
@media (max-width: 1100px) {
  .pricing__blocks .container {
    width: 620px;
  }
}
@media (max-width: 720px) {
  .pricing__blocks .container {
    width: 420px;
  }
}
.pricing__blocks .container .swiper {
  overflow: visible;
}
.pricing__blocks .container .swiper .swiper-slide {
  height: auto;
}
.pricing__blocks .container .bell {
  position: absolute;
}
@media (max-width: 1100px) {
  .pricing__blocks .container .bell {
    display: none;
  }
}
.pricing__blocks .container .bell-1 {
  left: -115px;
  top: 99px;
}
.pricing__blocks .container .bell-2 {
  right: -64px;
  top: 260px;
}

.pricing__block {
  height: 100%;
  border-radius: 16px;
  border: 2px solid #ffffff;
  box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(
    to bottom,
    rgb(255, 247, 250) 0%,
    rgb(251, 251, 251) 100%
  );
  padding: 36px 40px 103px 40px;
  position: relative;
}
@media (max-width: 720px) {
  .pricing__block {
    padding-bottom: 133px;
  }
}
.pricing__block .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 30px;
  font-weight: 600;
  color: rgba(35, 35, 35, 0.1);
  position: absolute;
  right: -2px;
  top: 0;
  letter-spacing: -0.03em;
  padding: 21px 4px 0 1px;
  line-height: normal;
}
.pricing__block .vertical-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.05;
}
.pricing__block label {
  font-size: 30px;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: -0.03em;
}
@media (max-width: 1100px) {
  .pricing__block label {
    display: block;
    text-align: center;
    padding-bottom: 5px;
  }
}
@media (max-width: 720px) {
  .pricing__block label {
    text-align: left;
  }
}
.pricing__block h2 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.8em;
  margin: 0 0 12px;
}
@media (max-width: 1100px) {
  .pricing__block h2 {
    display: block;
    text-align: center;
  }
}
@media (max-width: 720px) {
  .pricing__block h2 {
    text-align: left;
  }
}
.pricing__block .price {
  font-family: "Palatino_Regular";
  font-size: 120px;
  color: #f60656;
  line-height: 1em;
  margin-bottom: 2px;
}
.pricing__block .price sup {
  font-size: 0.42em;
  position: relative;
  top: -0.93em;
}
.pricing__block .price sup:nth-child(1) {
  font-size: 0.5em;
  top: -0.65em;
}
.pricing__block .text .text-center {
  border-bottom: 1px solid rgba(35, 35, 35, 0.05);
  margin-bottom: 5px;
}
.pricing__block .text .text-center p {
  font-family: "Palatino_Regular";
  font-size: 14px;
  margin-bottom: 13px;
  line-height: 1.5em;
}
.pricing__block .text .text-center p strong {
  color: #f60656;
}
.pricing__block .text ul {
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .pricing__block .text ul {
    max-width: 299px;
    width: 100%;
  }
}
.pricing__block .text ul li {
  padding: 0 0 6px 27px;
  margin: 0;
  list-style: none;
  font-size: 16px;
  background: url(../images/pink-tick.svg) no-repeat top 3px left;
}
.pricing__block .btn-block {
  position: absolute;
  bottom: 22px;
  left: 21px;
  right: 18px;
}
@media (max-width: 1100px) {
  .pricing__block .btn-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: 58px;
    right: 58px;
  }
}
@media (max-width: 720px) {
  .pricing__block .btn-block {
    left: 25px;
    right: 25px;
    bottom: 60px;
  }
}
.pricing__block .btn-block .btn {
  line-height: normal;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  padding: 13px 10px;
  border-radius: 4px;
  width: 100%;
}
@media (max-width: 1100px) {
  .pricing__block .btn-block .btn {
    width: calc(100% - 80px);
    font-weight: normal;
    font-family: "Palatino_Regular";
    padding: 16px 10px;
  }
  .pricing__block .btn-block .btn br {
    display: none;
  }
}
@media (max-width: 720px) {
  .pricing__block .btn-block .btn {
    width: calc(100% - 0px);
  }
}
.pricing__block .btn-block .btn:hover {
  background: linear-gradient(
    to right,
    rgb(204, 11, 75) 0%,
    rgb(246, 6, 86) 100%
  );
}
.pricing__block .btn-block .pricing-slider-prev,
.pricing__block .btn-block .pricing-slider-next {
  display: none;
  height: 50px;
  width: 30px;
  border-radius: 4px;
  background: #232323;
  border: 0;
  font-size: 0;
}
.pricing__block .btn-block .pricing-slider-prev:hover,
.pricing__block .btn-block .pricing-slider-next:hover {
  background: linear-gradient(
    to right,
    rgb(204, 11, 75) 0%,
    rgb(246, 6, 86) 100%
  );
}
@media (max-width: 1100px) {
  .pricing__block .btn-block .pricing-slider-prev,
  .pricing__block .btn-block .pricing-slider-next {
    display: block;
  }
}
@media (max-width: 720px) {
  .pricing__block .btn-block .pricing-slider-prev,
  .pricing__block .btn-block .pricing-slider-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -90px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media (max-width: 720px) {
  .pricing__block .btn-block .pricing-slider-prev img,
  .pricing__block .btn-block .pricing-slider-next img {
    width: 25px;
  }
}
@media (max-width: 720px) {
  .pricing__block .btn-block .pricing-slider-prev {
    left: -80px;
  }
}
.pricing__block .btn-block .pricing-slider-next {
  transform: rotate(180deg);
}
@media (max-width: 720px) {
  .pricing__block .btn-block .pricing-slider-next {
    left: 80px;
  }
}
.pricing__block .save-label {
  position: absolute;
  right: 56px;
  top: -7px;
}

.pricing-block-section {
  position: relative;
  margin-bottom: 99px;
}
.pricing-block-section .envelope {
  position: absolute;
  left: 87px;
  top: 59px;
}
.pricing-block-section .sms {
  position: absolute;
  left: 231px;
  top: 331px;
  width: 100px;
}
.pricing-block-section .msg {
  position: absolute;
  left: 30px;
  bottom: 130px;
  width: 130px;
}
.pricing-block-section .container {
  width: 1320px;
}
.pricing-block-section__background {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 100px 0 100px 150px;
  min-height: 600px;
}
.pricing-block-section__background::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.pricing-block-section__background > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -2;
}
.pricing-block-section__content {
  color: #ffffff;
  width: 480px;
}
.pricing-block-section__content .grant-logo {
  width: 446px;
  margin-bottom: 12px;
}
.pricing-block-section__content .grant-logo > img {
  width: 100%;
}
.pricing-block-section__content h3 {
  line-height: 1.25em;
  margin-bottom: 24px;
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  letter-spacing: 0.025em;
  font-size: 30px;
}
.pricing-block-section__content label {
  font-family: "Palatino_Regular";
  font-size: 18px;
  margin: 0 0 2px;
}
.pricing-block-section__content p {
  font-size: 16px;
  line-height: 24px;
}
.pricing-block-section__content .btn {
  margin-top: 9px;
}

.pricing-slider-home__cover {
  position: absolute;
  right: 0;
  top: 107px;
  width: 44.3%;
}
.pricing-slider-home__cover > .swiper-button-prev,
.pricing-slider-home__cover > .swiper-button-next {
  top: auto;
  bottom: -64px;
}
.pricing-slider-home__cover > .swiper-button-prev {
  left: 262px !important;
  right: auto !important;
}
.pricing-slider-home__cover > .swiper-button-next {
  left: 337px !important;
  right: auto !important;
}

.pricing-slider-home .swiper-slide {
  width: 380px;
  height: auto;
}

.serious-grant {
  padding: 129px 0 0;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .serious-grant {
    padding: 80px 0 0;
  }
}
@media (max-width: 991px) {
  .serious-grant {
    padding: 101px 0 0;
  }
}
@media (max-width: 720px) {
  .serious-grant {
    padding: 82px 0 0;
  }
}
.serious-grant .container {
  position: relative;
  display: inline-block;
}
@media (max-width: 1100px) {
  .serious-grant .container {
    width: 1000px;
  }
}
@media (max-width: 720px) {
  .serious-grant .container {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .serious-grant .container > .we-cover-all {
    display: none;
  }
}
.serious-grant .container::before {
  content: "";
  position: absolute;
  width: 637px;
  height: 502px;
  opacity: 0.4;
  background: #f60656;
  top: auto;
  right: auto;
  border-radius: 50%;
  filter: blur(200px);
  z-index: -1;
  left: -180px;
  margin: 0 auto;
  bottom: -180px;
}
@media (max-width: 1100px) {
  .serious-grant .container::before {
    bottom: 630px;
    left: 0;
    filter: blur(200px);
    right: 0;
  }
}
@media (max-width: 720px) {
  .serious-grant .container::before {
    height: 402px;
  }
}
.serious-grant h2 {
  width: 100%;
  max-width: 810px;
  margin: 0 auto 64px;
  font-size: 50px;
  line-height: 60px;
}
@media (max-width: 991px) {
  .serious-grant h2 {
    padding: 0 90px;
    margin-bottom: 98px;
  }
}
@media (max-width: 720px) {
  .serious-grant h2 {
    font-size: 30px;
    padding: 0;
    line-height: 40px;
    margin-bottom: 46px;
  }
}
.serious-grant h2 strong {
  font-weight: 600;
}
.serious-grant__counters {
  margin-bottom: 139px;
}
@media (max-width: 1100px) {
  .serious-grant__counters {
    margin-bottom: 235px;
  }
}
@media (max-width: 991px) {
  .serious-grant__counters {
    padding: 0 80px;
    margin-bottom: 156px;
  }
}
@media (max-width: 720px) {
  .serious-grant__counters {
    padding: 0;
  }
}
.serious-grant__counters h3 {
  font-family: "Palatino_Regular";
  color: #f60656;
  font-size: 60px;
  margin: 0 0 3px;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .serious-grant__counters h3 {
    margin: 0 0 6px;
  }
}
.serious-grant__counters p {
  margin: 0;
  font-size: 24px;
  font-family: "Palatino_Bold";
  letter-spacing: -0.02em;
}
@media (max-width: 1100px) {
  .serious-grant__counters p {
    line-height: 1.1em;
  }
}
@media (max-width: 720px) {
  .serious-grant__counters p {
    width: 74%;
    margin: auto;
  }
}
.serious-grant__counters p em {
  font-weight: normal;
  font-family: "Palatino_Regular";
}
@media (max-width: 991px) {
  .serious-grant__counters .col-md-4 {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media (max-width: 720px) {
  .serious-grant__counters .col-md-4 {
    width: 100%;
    margin-bottom: 43px;
  }
}
.serious-grant__we-cover__inner {
  width: 780px;
  float: right;
}
@media (max-width: 1100px) {
  .serious-grant__we-cover__inner {
    float: none;
    text-align: center;
    margin: auto;
    width: 780px;
  }
}
@media (max-width: 991px) {
  .serious-grant__we-cover__inner {
    width: 580px;
  }
}
@media (max-width: 720px) {
  .serious-grant__we-cover__inner {
    width: 100%;
  }
}
.serious-grant__we-cover__inner h3 {
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  margin: 0 0 20px;
}
@media (max-width: 1100px) {
  .serious-grant__we-cover__inner h3 {
    text-align: left;
    width: 310px;
    float: right;
    margin-bottom: 211px;
    margin-right: -32px;
    clear: both;
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .serious-grant__we-cover__inner h3 {
    margin-bottom: 219px;
    margin-right: -135px;
  }
}
@media (max-width: 720px) {
  .serious-grant__we-cover__inner h3 {
    margin-bottom: 140px;
    margin-right: 36px;
    font-size: 30px;
    line-height: 40px;
    width: 209px;
    padding: 0;
  }
}
.serious-grant__we-cover__inner h3 span {
  color: #f60656;
}

.sectors {
  margin-bottom: 112px;
}
@media (max-width: 1100px) {
  .sectors {
    margin-left: auto;
    margin-right: auto;
    width: 580px;
    max-width: 100%;
    margin-bottom: 42px;
    display: inline-block;
  }
}
@media (max-width: 720px) {
  .sectors {
    margin-bottom: 70px;
    width: 420px;
    padding: 0 20px;
  }
}
.sectors .row {
  margin-left: -10px;
  margin-right: -10px;
}
.sectors .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1100px) {
  .sectors .row > div {
    width: 50%;
    padding: 10px;
  }
}

.sector {
  text-align: center;
  border-radius: 6px;
  border: 2px solid #ffffff;
  box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.25),
    0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding: 43px 0 48px;
  background: #ffffff;
}
@media (max-width: 720px) {
  .sector {
    padding: 29px 0 32px;
  }
}
.sector span {
  font-size: 30px;
  line-height: normal;
  font-weight: 200;
}
.sector__icon {
  margin-bottom: 18px;
}

.affordable__block {
  width: 100%;
  max-width: 680px;
  float: right;
  padding: 100px 95px 95px 100px;
  background: #b63961;
  border-radius: 20px;
  color: #ffffff;
  margin-bottom: 74px;
}
@media (max-width: 1100px) {
  .affordable__block {
    margin-left: auto;
    margin-right: auto;
    float: none;
    max-width: 780px;
    margin-bottom: 102px;
    text-align: left;
  }
}
@media (max-width: 991px) {
  .affordable__block {
    max-width: 580px;
  }
}
@media (max-width: 720px) {
  .affordable__block {
    padding: 80px 27px;
    max-width: 100%;
    border-radius: 0;
    margin-bottom: 0px;
  }
}
.affordable__block h4 {
  font-family: "Palatino_Regular";
  font-weight: normal;
}
@media (max-width: 720px) {
  .affordable__block h4 {
    line-height: 40px;
    margin-bottom: 26px;
  }
}
.affordable__block p {
  font-size: 20px;
  line-height: 24px;
}
.affordable__block p:last-child {
  margin-bottom: 0;
}

.we-cover-all {
  position: absolute;
  bottom: 0;
  left: -212px;
  width: 889px;
  max-width: none;
}
@media (max-width: 1100px) {
  .we-cover-all {
    left: -160px;
    right: 0;
    margin: auto;
    width: 817px;
    z-index: -1;
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .we-cover-all {
    left: -200px;
    right: 0;
    margin: auto;
    width: 817px;
    z-index: -1;
    max-width: none;
  }
}
@media (max-width: 720px) {
  .we-cover-all {
    left: -310px;
    right: 0;
    margin: auto;
    width: 707px;
    z-index: -1;
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .serious-grant__we-cover__inner-top {
    position: relative;
  }
}
.serious-grant__we-cover__inner-top .we-cover-all {
  display: none;
}
@media (max-width: 1100px) {
  .serious-grant__we-cover__inner-top .we-cover-all {
    display: block;
  }
}

.serious-grant__we-cover__heading {
  display: inline-block;
  width: 100%;
}
@media (max-width: 720px) {
  .serious-grant__we-cover__heading {
    max-width: 420px;
    margin: auto;
  }
}

.testimonials {
  background: #fff7fa;
  padding: 158px 0 92px;
  margin-top: -68px;
}
@media (max-width: 1100px) {
  .testimonials {
    overflow: hidden;
    margin-top: -75px;
    padding-bottom: 65px;
  }
}
@media (max-width: 991px) {
  .testimonials {
    padding-bottom: 83px;
  }
}
@media (max-width: 720px) {
  .testimonials {
    padding-bottom: 70px;
  }
}
.testimonials label {
  font-style: italic;
  font-family: "Palatino-Italic";
  font-size: 20px;
}
@media (max-width: 720px) {
  .testimonials .container {
    width: 420px;
  }
}
.testimonials__block {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 720px) {
  .testimonials__block {
    flex-wrap: wrap;
  }
}
.testimonials__title {
  margin: 0 0 52px;
}
@media (max-width: 1100px) {
  .testimonials__title {
    margin: 0 0 60px;
  }
}
@media (max-width: 991px) {
  .testimonials__title {
    margin: 0 0 37px;
  }
}
@media (max-width: 720px) {
  .testimonials__title {
    margin: 0 0 31px;
  }
}
.testimonials__title h2 {
  letter-spacing: 0.02em;
}
.testimonials__title h2 strong {
  color: #232323;
  font-style: normal;
}
.testimonials__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 720px) {
  .testimonials__img {
    margin: 0 auto 50px;
  }
}
.testimonials__text {
  width: calc(100% - 180px);
  padding-left: 20px;
}
@media (max-width: 720px) {
  .testimonials__text {
    width: calc(100% - 0px);
    padding-left: 0px;
    padding: 0 27px;
  }
}
.testimonials__text p {
  font-size: 20px;
  font-family: "Palatino-Italic";
  line-height: 28px;
  font-style: italic;
}
@media (max-width: 1100px) {
  .testimonials__text p {
    width: 95%;
  }
}
@media (max-width: 991px) {
  .testimonials__text p {
    width: 100%;
    margin-bottom: 28px;
  }
}
.testimonials__oth {
  margin-top: -15px;
}
@media (max-width: 720px) {
  .testimonials__oth {
    margin-top: -20px;
  }
}
.testimonials__oth label {
  font-family: "Urbanist", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  padding: 0 0 3px;
}
.testimonials__stars {
  display: inline-block;
  width: 100%;
}
.testimonials__stars img {
  display: block;
}
.testimonials__2 {
  margin: 0;
  padding: 98px 0;
}
@media (max-width: 720px) {
  .testimonials__2 {
    padding: 78px 0;
  }
}

.pink-bg {
  background: #f60656;
  color: #ffffff;
}

.two-col-never-miss {
  padding: 130px 0 110px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .two-col-never-miss {
    margin: 0;
    padding: 78px 0 86px;
  }
}
@media (max-width: 720px) {
  .two-col-never-miss {
    padding-bottom: 81px;
  }
}
@media (max-width: 1100px) {
  .two-col-never-miss .container {
    width: 620px;
  }
}
@media (max-width: 720px) {
  .two-col-never-miss .container {
    width: 420px;
  }
}
.two-col-never-miss .bell {
  display: none;
}
@media (max-width: 1100px) {
  .two-col-never-miss .bell {
    display: block;
  }
}
.two-col-never-miss .row {
  align-items: center;
}
.two-col-never-miss__img {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 4px rgba(35, 35, 35, 0.05);
}
.two-col-never-miss .col-lg-5 {
  position: relative;
  font-size: 16px;
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-5 {
    width: 100%;
  }
}
.two-col-never-miss .col-lg-5 .msg {
  display: none;
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-5 .msg {
    display: block;
    position: absolute;
    right: -174px;
    top: -56px;
  }
}
@media (max-width: 991px) {
  .two-col-never-miss .col-lg-5 .msg {
    right: -31px;
  }
}
@media (max-width: 720px) {
  .two-col-never-miss .col-lg-5 .msg {
    right: 6px;
  }
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-5 .bell {
    display: block;
    position: absolute;
    right: -217px;
    top: 251px;
    transform: rotate(-17deg);
    width: 127px;
  }
}
@media (max-width: 991px) {
  .two-col-never-miss .col-lg-5 .bell {
    right: -70px;
  }
}
@media (max-width: 720px) {
  .two-col-never-miss .col-lg-5 .bell {
    right: 0;
    left: 0;
    margin: auto;
    bottom: -220px;
    width: 117px;
  }
}
.two-col-never-miss .col-lg-5 h2 {
  line-height: 60px;
  margin-bottom: 10px;
  margin-top: 20px;
}
@media (max-width: 720px) {
  .two-col-never-miss .col-lg-5 h2 {
    line-height: 40px;
    width: 97%;
    margin-bottom: 14px;
  }
}
.two-col-never-miss .col-lg-5 p {
  line-height: 24px;
  margin-bottom: 24px;
  width: 94%;
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-5 p {
    width: 100%;
  }
}
.two-col-never-miss .col-lg-5 p:last-child {
  margin-bottom: 0;
}
.two-col-never-miss .col-lg-5 p em {
  color: #cc0b4b;
  font-weight: 600;
}
.two-col-never-miss .col-lg-5 .envelope {
  position: absolute;
  top: -96px;
  left: -110px;
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-5 .envelope {
    top: -46px;
    left: -144px;
  }
}
@media (max-width: 991px) {
  .two-col-never-miss .col-lg-5 .envelope {
    left: -36px;
  }
}
@media (max-width: 720px) {
  .two-col-never-miss .col-lg-5 .envelope {
    left: -31px;
    top: -57px;
  }
}
.two-col-never-miss .col-lg-5 .sms {
  position: absolute;
  top: 157px;
  left: -88px;
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-5 .sms {
    top: 288px;
    left: -190px;
  }
}
@media (max-width: 991px) {
  .two-col-never-miss .col-lg-5 .sms {
    left: -82px;
  }
}
@media (max-width: 720px) {
  .two-col-never-miss .col-lg-5 .sms {
    left: auto;
    right: -16px;
    top: 212px;
  }
}
.two-col-never-miss .col-lg-7 {
  position: relative;
}
@media (max-width: 1100px) {
  .two-col-never-miss .col-lg-7 {
    display: none;
  }
}
.two-col-never-miss .col-lg-7 .msg {
  position: absolute;
  right: -62px;
  bottom: -83px;
}

.subscriber-vt-block {
  width: 100%;
  margin: 5rem 0;
}
.subscriber-vt-block .subscriber-vt-bg {
  background-size: cover;
  background-position: center center;
  padding: 2.5rem 5rem 0 5rem;
  border: 2px solid #ffffff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.2509803922);
  overflow: hidden;
}
.subscriber-vt-block .subscriber-vt-text {
  padding: 0 1rem;
}
.subscriber-vt-block .subscriber-vt-text img {
  max-width: 310px;
  margin-bottom: 1.5rem;
}
.subscriber-vt-block .subscriber-vt-text .btn {
  margin-top: 0.8em;
  width: 100%;
}
.subscriber-vt-block .subscriber-vt-image {
  margin-top: 3rem;
} /*# sourceMappingURL=style.css.map */

.custom-sidebar {
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

.custom-sidebar.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-sidebar {
  display: flex;
  align-items: center;
  position: fixed;
  top: 690px;
  left: 0;
  margin-left: 5px;
  background: transparent !important;
  transform: rotate(-90deg);
  transform-origin: left top;
  padding: 10px 20px;
  font-size: 14px;
  z-index: 9999;
  white-space: nowrap;
  color: #f60656;
  z-index: 4;
}

.custom-sidebar a {
  color: #f60656;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
}
.custom-sidebar .cta {
  color: #000;
  padding-left: 10px;
  font-size: 17px;
}
.custom-sidebar .cta i {
  color: black;
  padding: 13px 6px;
  align-items: center;
  justify-content: center;
  background: #f5f2ed;
  margin-right: -5px;
  border-radius: 100%;
  font-size: 17px;
}

.custom-sidebar hr {
  margin: 5px 0;
  border: 0;
  border-top: 1px solid #ccc;
  border-color: #f60656 !important;
}

.testimonial-layout {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 80px auto;
  position: relative;
  overflow: hidden;
}

.testimonial-left {
  flex: 1 1 500px;
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
  left: 200px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 50px;
  overflow: hidden;
}

.testimonial-slider {
  transition: transform 0.5s ease;
}

.testimonial-text {
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  border-left: 3px solid #c63c2e;
  padding-left: 20px;
  margin: 0;
}

.testimonial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  border-radius: 100%;
  height: 44px;
  width: 44px;
  top: 50%;
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
  background: #232323;
  border: 0;
  font-size: 0;
  transition: all 0.5s;
}

.arrow-btn:hover {
  background: #ffff;
}

button#prevBtn {
  position: absolute;
  top: 255px;
}

button#nextBtn {
  position: absolute;
  top: 256px;
  left: 90px;
}

.count {
  font-size: 14px;
  font-style: italic;
  color: #666;
}

.testimonial-right {
  flex: 1 1 500px;
  text-align: center;
}

.image-wrap {
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s ease;
}

.client-info {
  margin-top: 15px;
  margin-left: 346px;
}

.client-info h4 {
  color: #999;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}

.stars {
  color: #f1c40f;
  letter-spacing: 2px;
  font-size: 16px;
  visibility: hidden;
}

@media (max-width: 768px) {
  .testimonial-layout {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-left {
    margin-bottom: 0;
    left: 0;
  }

  .testimonial-card {
    padding: 30px;
  }

  .client-info {
    margin-left: 0;
  }
}

.animating-image-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.animat-image {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: right; /* Start scaling from the right */
  transform: scaleX(0); /* Start hidden (scaleX zero) */
  animation: slideExpandRTL 1.2s ease forwards;
}

@keyframes slideExpandRTL {
  to {
    transform: scaleX(1); /* Scale back to full width */
  }
}

.services-partner-subscribe {
  margin: 0 0 35px 0;
  position: relative;
}

.resources-block .section-title .gradient-heading {
  letter-spacing: 0px;
  padding-left: 10px;
}

.page-grant-sire {
  margin: 30px 0 15px 0;
}

.experience-block__number span {
  transition: all 0.2s ease-in-out;
}

.container-faqs {
  padding: 0;
  margin-top: 95px;
  margin-bottom: 120px;
}

.alerts-modified {
  margin-bottom: 650px !important;
}

.gradient-text {
  font-size: 64px;
  font-weight: bold;
  background: linear-gradient(to left, #cc0b4b, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero__flex p {
  max-width: 580px;
  font-size: 24px;
  font-weight: 300;
}
.bold-text {
  font-weight: 700;
}

.zfbtnSubmit {
  background-color: #f60656 !important;
}

@media (max-width: 1290px) {
  .why-grantwriters__right label,
  .why-grantwriters__right .play-video {
    display: none;
  }
  .why-grantwriters__right.aos-init.aos-animate {
    display: none;
  }

  .default-page-headline .inner-hero__bg {
    width: 100% !important;
  }

  .faqs__filters {
    display: none;
  }
}

@media (max-width: 1100px) {
  .pricing-slider-home__cover {
    right: 200px;
  }
  .pricing-block-section__content {
    display: none;
  }
}

@media (max-width: 991px) {
  .home-hero__flex h1 {
    font-size: 40px;
  }
  .home-hero__flex span {
    font-size: 40px;
  }
  .home-hero__flex p {
    font-size: 20px;
  }
  .home-hero ul li {
    font-size: 16px;
  }
  .testimonial-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-footer__top {
    padding: 120px 30px 6px;
  }

  .blank-link-btn {
    font-size: 12px !important;
  }

  .our-services__text p {
    font-size: 1rem;
  }

  .our-services__text h4 {
    font-size: 1.3rem;
  }
  .our-services__text h3 {
    font-size: 2rem;
  }
  .why-grantwriters__right label,
  .why-grantwriters__right .play-video {
    display: none;
  }
  .got-grant-qa .why-grantwriters__right img {
    display: none;
  }
  .got-grant-qa .why-grantwriters__left {
    padding: 0 25px;
    min-height: 106px;
  }
  .gradient-heading {
    font-size: 5rem;
  }

  .home-hero__flex h1 {
    font-size: 40px;
  }
  .home-hero__flex p {
    font-size: 20px;
  }
  .home-hero ul li {
    font-size: 14px;
  }
  .bold-text {
    font-size: 20px !important;
  }
  .testimonial-right {
    display: none;
  }
  .testimonial-card {
    padding: 0 30px;
  }

  .testimonial-left {
    flex: 1 1 120px !important;
  }
  .resources-block .section-title .section-title-left {
    padding-top: 16px;
  }

  .resources-block .section-title .section-title-left h2 {
    font-size: 24px !important;
  }

  .inner-hero__bg {
    animation: none !important;
  }
  .our-services__image {
    display: none !important;
  }
  .our-services__text {
    width: 100% !important;
  }
}
@media (max-width: 720px) {
  .why-grantwriters .ghost-btn,
  .why-grantwriters .pink-btn {
    width: 50% !important;
    font-size: 12px;
  }
  .trusted-partner {
    padding: 0 !important;
  }
  .trusted-partner {
    margin-bottom: 70px !important;
  }
  .video-block {
    margin-bottom: 30px !important;
  }

  .testimonial-layout {
    margin: 0 !important;
  }

  .benefits__block .row > div {
    padding: 0 1rem;
    margin-bottom: 0 !important;
  }
  .benefits__section {
    padding: 13rem 0 0rem 0 !important;
  }
}
@media (max-width: 600px) {
  .test {
    display: none !important;
  }
  .services-partner-subscribe {
    margin: 35px 0 35px 0;
  }

  .subscriber-section.subscriber-layout2
    .subscriber2-flex
    .subscriber2-text
    .ghost-btn {
    min-width: 15.5rem;
  }
  .subscriber-section .subscriber-text {
    padding: 0 5.62rem 2.56rem 0.62rem;
  }
}

@media (max-width: 475px) {
  .inner-hero__flex h1 {
    margin: 0 0 5px 0;
    font-size: 2.5rem;
  }
  .gradient-heading {
    font-size: 3rem !important;
  }
  .home-hero__flex h1 {
    font-size: 35px;
  }
  .home-hero__flex p {
    font-size: 18px;
  }
  .home-hero ul li {
    font-size: 12px;
  }
  .bold-text {
    font-size: 18px !important;
  }
  .site-header__bottom {
    padding: 25px 40px 25px 30px;
  }
  .why-grantwriters .ghost-btn,
  .why-grantwriters .pink-btn {
    width: 30% !important;
    font-size: 10px !important;
  }

  .experience-block h2 {
    font-size: 1.24rem;
  }
  .experience-block .conatiner {
    padding: 0;
  }
  .experience-block__funds .number {
    font-size: 2rem;
  }

  .experience-block__graybox {
    font-size: 0.943rem;
  }
  .experience-block__number {
    font-size: 2.5rem;
  }
  .section-title-left h2 {
    font-size: 1.5rem;
  }

  .section-title-left h3.h1 {
    font-size: 1.5rem;
  }

  .benefits__box {
    padding: 0rem 1.25rem;
  }

  .pricing-block-section__background > img {
    display: none;
  }

  .pricing-slider-home .swiper-slide {
    width: 360px;
  }

  .section-title > .gradient-heading {
    margin: 0 0 -12px;
    padding-bottom: 10px;
  }

  .inner-hero__flex p{
    font-size: 1.5rem;
    margin: 0;
  }
  .subscriber-vt-block .subscriber-vt-text img {
    max-width: 100%;
  }
  .faqs-items:after {
    display: none;
  }

  .service-detail-middle-section .service-detail-content h2 {
    text-align: center;
    font-size: 1.5rem;
  }
  .subscriber-vt-block .subscriber-vt-text .btn {
    font-size: 12px;
  }
  .service-detail-middle-section {
    padding: 3rem 0 3rem 0;
  }
  .inner-hero__bg {
    padding: 0 0 0 0;
  }
  .successes-block .container {
    width: 100% !important;
  }

  .successes-block__quote-image {
    display: none;
  }
  .successes-block__quote-text {
    margin-top: 0;
    width: 100% !important;
  }

  .successes-block__headline h3 {
    font-size: 1.5rem;
    margin-top: 27px;
  }

  .successes-block__bg {
    padding: 3rem 0 3.5rem 0;
  }

  .challenge-block .qoute-block__image {
    display: none;
  }

  .challenge-block .qoute-block__text {
    width: 100%;

    margin-left: 0;
  }

  .challenge-block__box {
    width: 100%;
  }

  .challenge-block__headline {
    margin-left: 0;
  }

  .challenge-block__headline h3 {
    margin-top: 4rem;
  }
  .challenge-block__items {
    flex-direction: column;
  }
  .small-container {
    /* max-width: 1040px; */
    width: 100%;
  }
  .challenge-block__items:before {
    display: none;
  }

  .challenge-block .qoute-block__text:before {
    display: none;
  }
  .challenge-block__headline p {
    font-size: 1.5rem;
    padding-left: 0;
  }
  .challenge-block__headline h3 {
    font-size: 1.5rem;
    padding-left: 0;
  }

  .explore-services__box {
    width: 100%;
  }

  .explore-services__box {
    flex-direction: column;
  }
  .explore-services__flex .ghost-btn {
    min-width: 250px;
  }

  .we-write-grants__img .wwg-text {
    padding: 2.5rem 0.5rem 2rem 0.5rem}
    .we-write-grants__text
 {
display: none;
}


.site-footer .footer-copyright {
    padding: 10px 0 10px 0;
}

.site-footer .footer-cp {
    color: #ffffff;
    font-size: 12px;
  }
  .site-footer__menu li {
    padding: 0;
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 12px;}

    .site-footer__top .col-lg-4 label {
    font-size: 16px;}
    .site-footer__top .col-lg-4 p {
    font-size: 12px;
    line-height: 12px;}

    .upadted-list{
      padding-left: 0;
    }
    .site-footer {
      height: 90vh;
    }

    .inner-hero__animation .round-text {
    display: none;}
    .round-arrow-main {
    display: none;}
}