@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;800&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@400;700&display=swap");
*,
:after,
:before {
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #3A4A49;
  max-width: 100%;
  transition: all 0.5s;
}
body.menu-toggle {
  width: 100%;
}

p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 15px;
  line-height: 1.5;
}
@media (max-width: 1440px) {
  p {
    font-size: 18px;
  }
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all 0.5s;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol li {
  list-style: inherit;
}

button {
  outline: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.primary-btn {
  display: inline-block;
  background-color: #009F92;
  color: #46EBDD;
  text-transform: uppercase;
  padding: 12px 20px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  text-decoration: none !important;
}
@media (max-width: 1440px) {
  .primary-btn {
    font-size: 26px;
  }
}
.primary-btn.bg-green {
  color: #ffffff !important;
}
.primary-btn:hover {
  opacity: 0.7;
}
.primary-btn.icon-btn {
  background: transparent;
  padding: 5px 0;
  font-size: 22px;
  padding-left: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  margin-right: 20px;
}
@media (max-width: 1440px) {
  .primary-btn.icon-btn {
    font-size: 20px;
  }
}
.primary-btn.icon-btn .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.primary-btn.icon-btn.text-yellow:after {
  background-color: #EBC72F;
}
.primary-btn.icon-btn.text-oceanblue:after {
  background-color: #46EBDD;
}
.primary-btn.icon-btn.text-light-blue:after {
  background-color: #46EBDD;
}
.primary-btn.icon-btn.text-lightblue:after {
  background-color: #78D3FF;
}
.primary-btn.icon-btn.text-orange:after {
  background-color: #EB7C46;
}
.primary-btn.icon-btn::after {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  transform: scaleX(0);
  height: 1px;
  bottom: -1px;
  left: 20px;
  background-color: #3A4A49;
}
.primary-btn.icon-btn:hover {
  opacity: 1;
}
.primary-btn.icon-btn:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.5s ease-out;
}

.container {
  max-width: 1396px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container.container-fulid-right {
  max-width: 100%;
}
.container.container-fulid-right .col-left {
  padding-left: calc((100% - 1396px + 30px) / 2);
}
@media (max-width: 1440px) {
  .container.container-fulid-right .col-left {
    padding-left: 45px;
  }
}
@media (max-width: 1199px) {
  .container.container-fulid-right .col-left {
    padding-left: calc((100% - 900px + 30px) / 2);
  }
}
@media (max-width: 991px) {
  .container.container-fulid-right .col-left {
    padding-left: calc((100% - 700px + 30px) / 2);
  }
}
@media (max-width: 767px) {
  .container.container-fulid-right .col-left {
    padding-left: calc((0% + 40px) / 2);
  }
}
.container.container-fulid-left {
  max-width: 100%;
}
.container.container-fulid-left .col-right {
  padding-right: calc((100% - 1396px + 30px) / 2);
}
@media (max-width: 1440px) {
  .container.container-fulid-left .col-right {
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .container.container-fulid-left .col-right {
    padding-right: calc((100% - 900px + 30px) / 2);
  }
}
@media (max-width: 991px) {
  .container.container-fulid-left .col-right {
    padding-right: calc((100% - 700px + 30px) / 2);
  }
}
@media (max-width: 767px) {
  .container.container-fulid-left .col-right {
    padding-right: calc((0% + 40px) / 2);
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.news-detail-container {
  max-width: 1000px;
}
@media (max-width: 1199px) {
  .container.news-detail-container {
    max-width: 850px;
  }
}
@media (max-width: 991px) {
  .container.news-detail-container {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .container.news-detail-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.box-container {
  max-width: 1396px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1440px) {
  .box-container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 1199px) {
  .box-container {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  .box-container {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .box-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 767px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.row.align-items-center {
  align-items: center;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.lg-w {
  max-width: 960px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

h1 {
  font-size: 52px;
  margin: 0 0 20px 0;
  line-height: 1.16;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

h2 {
  font-size: 44px;
  line-height: 1.24;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 39px;
  line-height: 1.16;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

h4,
h5,
h6 {
  font-size: 31px;
  line-height: 1.25;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.main-title {
  font-size: 52px;
  line-height: 1.16;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}
@media (max-width: 1440px) {
  .main-title {
    font-size: 42px;
  }
}
@media (max-width: 1199px) {
  .main-title {
    font-size: 36px;
  }
}

.title {
  font-size: 44px;
  line-height: 1.24;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}
@media (max-width: 1440px) {
  .title {
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .title {
    font-size: 32px;
  }
}

.small-title {
  font-size: 31px !important;
  line-height: 1.16;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}
@media (max-width: 1199px) {
  .small-title {
    font-size: 26px !important;
  }
}

.sub-title {
  font-size: 24px;
  line-height: 1.16;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.text-center {
  text-align: center !important;
}

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

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

main {
  padding-top: 240px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1440px) {
  main {
    padding-top: 210px;
  }
}
@media (max-width: 1199px) {
  main {
    padding-top: 190px;
  }
}
@media (max-width: 991px) {
  main {
    padding-top: 140px;
  }
}
@media (max-width: 767px) {
  main {
    padding-top: 140px;
  }
}
@media (max-width: 575px) {
  main {
    padding-top: 175px;
  }
}

body.logged-in main {
  padding-top: 215px;
}
@media (max-width: 1440px) {
  body.logged-in main {
    padding-top: 188px;
  }
}
@media (max-width: 1199px) {
  body.logged-in main {
    padding-top: 165px;
  }
}
@media (max-width: 991px) {
  body.logged-in main {
    padding-top: 120px;
  }
}
@media (max-width: 780px) {
  body.logged-in main {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  body.logged-in main {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  body.logged-in main {
    padding-top: 140px;
  }
}
body.logged-in .select2-container--open .select2-dropdown {
  top: 70px;
}
@media (max-width: 1440px) {
  body.logged-in .select2-container--open .select2-dropdown {
    top: 66px;
  }
}
@media (max-width: 991px) {
  body.logged-in .select2-container--open .select2-dropdown {
    top: 53px;
  }
}
@media (max-width: 780px) {
  body.logged-in .select2-container--open .select2-dropdown {
    top: 64px;
  }
}
@media (max-width: 575px) {
  body.logged-in .select2-container--open .select2-dropdown {
    top: 64px;
  }
}
body.logged-in .select2-container--open .select2-dropdown.select2-dropdown--above {
  top: 35px;
}
@media (max-width: 780px) {
  body.logged-in .select2-container--open .select2-dropdown.select2-dropdown--above {
    top: 45px;
  }
}

.space-bottom-sec {
  margin-bottom: 100px;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .space-bottom-sec {
    margin-bottom: 40px;
  }
}

.space-top-sec {
  margin-top: 100px;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .space-top-sec {
    margin-top: 40px;
  }
}

.space-top-bottom {
  margin: 100px 0;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .space-top-bottom {
    margin: 40px 0;
  }
}

.btn-top-space {
  margin-top: 120px !important;
}
@media (max-width: 991px) {
  .btn-top-space {
    margin-top: 50px !important;
  }
}

.text-center p {
  text-align: center !important;
}

section ul {
  position: relative;
}
section ul li {
  padding-left: 20px;
  position: relative;
}
section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: bold;
  width: 8px;
  height: 8px;
  background: #009F92;
  border-radius: 100%;
}

.content-detail li > span {
  display: none;
}

.space-p-top {
  padding-top: 90px;
}
@media only screen and (max-width: 991px) {
  .space-p-top {
    padding-top: 45px;
  }
}

.space-p-bottom {
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .space-p-bottom {
    padding-bottom: 35px;
  }
}

.space-p-both {
  padding-top: 90px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .space-p-both {
    padding-top: 45px;
    padding-bottom: 35px;
  }
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #ffffff !important;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

html {
  -webkit-tap-highlight-color: transparent !important;
}

.primary-btn.text-green {
  color: #3A4A49;
}

.flac-link.flac-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: 0 !important;
  padding: 5px 0;
  padding-left: 20px;
  color: #3A4A49 !important;
  font-weight: 600;
  font-size: 22px;
}
@media only screen and (max-width: 1440px) {
  .flac-link.flac-btn {
    font-size: 20px;
  }
}
.flac-link.flac-btn::before {
  content: "+";
  position: absolute;
  left: 0;
}
.flac-link.flac-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 20px;
  background-color: #3A4A49;
  transition: all 0s;
}
.flac-link.flac-btn:hover::after {
  width: calc(100% - 20px);
  transition: all 0.5s;
}

@media (max-width: 767px) {
  iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}

.cli-bar-message {
  color: #3A4A49;
  font-size: 16px !important;
}
@media only screen and (max-width: 767px) {
  .cli-bar-message {
    font-size: 14px !important;
    margin-bottom: 15px;
  }
}

a#wt-cli-settings-btn {
  color: #3A4A49 !important;
  text-decoration: underline !important;
  text-decoration-color: #009F92 !important;
  transition: all 0.5s;
  border: 0 !important;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-size: 16px !important;
}
@media only screen and (max-width: 767px) {
  a#wt-cli-settings-btn {
    font-size: 14px !important;
  }
}
a#wt-cli-settings-btn:hover {
  color: #009F92 !important;
}

#wt-cli-accept-btn {
  color: #fff !important;
  font-family: "Roboto Condensed", sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  background: #3A4A49 !important;
  opacity: 1;
  transition: all 0.5s;
  font-size: 16px !important;
  padding: 15px 25px !important;
}
@media only screen and (max-width: 767px) {
  #wt-cli-accept-btn {
    font-size: 14px !important;
  }
}
#wt-cli-accept-btn:hover {
  opacity: 0.7;
}

main section p a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
main section p a:hover {
  color: #009F92;
}
main section p a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}

.bg-white {
  background-color: #ffffff;
}

.bg-green {
  background-color: #3A4A49;
}

.bg-light-green {
  background-color: #006B62;
}

.bg-light-gary1 {
  background-color: #8A8F9D;
}

.bg-light-gary2 {
  background-color: #979797;
}

.bg-light-gary3 {
  background-color: #D8D8D8;
}

.bg-light-gary4 {
  background-color: #F4F4F5;
}

.bg-light-gary5 {
  background-color: #e3e3e7;
}

.bg-light-gary6 {
  background-color: #BCBCBC;
}

.bg-light-gary7 {
  background-color: #EBEBEB;
}

.bg-red {
  background-color: #FF0000;
}

.bg-light-blue {
  background-color: #46EBDD;
}

.bg-sky {
  background-color: rgba(70, 235, 221, 0.2);
}

.bg-dark-blue {
  background-color: #009F92;
}

.bg-yellow {
  background-color: #EBC72F;
}

.bg-light-black {
  background-color: #2E2E2E;
}

.bg-light-black1 {
  background-color: #1E1E1E;
}

.bg-black {
  background-color: black;
}

.text-white {
  color: #ffffff;
}

.text-green {
  color: #3A4A49;
}

.text-light-green {
  color: #006B62;
}

.text-light-gary1 {
  color: #8A8F9D;
}

.text-light-gary2 {
  color: #979797;
}

.text-light-gary3 {
  color: #D8D8D8;
}

.text-light-gary4 {
  color: #F4F4F5;
}

.text-light-gary5 {
  color: #e3e3e7;
}

.text-light-gary6 {
  color: #BCBCBC;
}

.text-light-gary7 {
  color: #EBEBEB;
}

.text-red {
  color: #FF0000;
}

.text-light-blue {
  color: #46EBDD;
}

.text-dark-blue {
  color: #009F92;
}

.text-yellow {
  color: #EBC72F;
}

.text-light-black {
  color: #2E2E2E;
}

.text-light-black1 {
  color: #1E1E1E;
}

.text-black {
  color: black;
}

.text-oceanblue {
  color: #46EBDD;
}

.bg-oceanblue {
  background-color: #46EBDD;
}

.bg-yellow {
  background-color: #EBC72F;
}

.text-orange {
  color: #EB7C46;
}

.bg-orange {
  background-color: #EB7C46;
}

.text-lightblue {
  color: #78D3FF;
}

.bg-lightblue {
  background-color: #78D3FF;
}

.header-sec {
  position: fixed;
  background-color: #3A4A49;
  padding-top: 25px;
  padding-bottom: 25px;
  transition: all 0.5s;
  top: 0;
  width: 100%;
  padding-bottom: 0;
  z-index: 99;
}
@media (max-width: 991px) {
  .header-sec {
    padding-bottom: 20px;
  }
}
.header-sec.sticky-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  -webkit-animation: bar 1s ease;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0px 11px 2px #2E2E2E;
}
.header-sec.sticky-header .logo-col {
  display: none;
}
@media (max-width: 991px) {
  .header-sec.sticky-header .logo-col {
    display: block;
  }
}
.header-sec.sticky-header .logo-col img {
  max-width: 100px;
}
.header-sec.sticky-header .top-menu-col {
  display: none;
}
@media (max-width: 991px) {
  .header-sec.sticky-header .top-menu-col {
    display: block;
  }
}
@media (max-width: 575px) {
  .header-sec.sticky-header .top-menu-col {
    display: none;
  }
}
.header-sec.sticky-header .bottom-menu-col .navbar .nav-list {
  padding-top: 0;
}
.header-sec.sticky-header .row {
  align-items: center;
}
.header-sec.sticky-header .navbar .nav-list > li .sub-menu li a {
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .header-sec {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.header-sec .row {
  display: flex;
  flex-flow: wrap;
}
@media (max-width: 991px) {
  .header-sec .row {
    align-items: center;
  }
}
@media (max-width: 575px) {
  .header-sec .row {
    align-items: flex-end;
    justify-content: space-between;
  }
}
.header-sec .logo-col {
  width: 250px;
}
@media (max-width: 575px) {
  .header-sec .logo-col {
    width: 230px;
  }
}
.header-sec .logo-col img {
  max-width: 197px;
  display: block;
  width: 100%;
}
.header-sec .top-menu-col {
  padding-top: 20px;
  width: calc(100% - 250px);
}
@media (max-width: 991px) {
  .header-sec .top-menu-col {
    padding-top: 0;
    width: calc(100% - 325px);
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .header-sec .top-menu-col {
    display: none;
  }
}
.header-sec .top-menu-col .navbar .menu-primary-menu-container .menu-top-menu-container .nav-list li a {
  padding-bottom: 0;
}
.header-sec .top-menu-col .navbar .menu-primary-menu-container .menu-top-menu-container .nav-list li.btn.menu-item a {
  padding-bottom: 7px;
}
.header-sec .top-menu-col .col-inner {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .header-sec .top-menu-col .navbar {
    display: none;
  }
}
.header-sec .top-menu-col .navbar .nav-list .menu-item {
  padding-right: 30px;
}
@media (max-width: 1440px) {
  .header-sec .top-menu-col .navbar .nav-list .menu-item {
    padding-right: 20px;
  }
}
.header-sec .top-menu-col .navbar .nav-list .menu-item.current-page-ancestor a {
  color: #46EBDD;
}
.header-sec .top-menu-col .navbar .nav-list .menu-item a {
  text-transform: capitalize;
}
.header-sec .top-menu-col .navbar .nav-list .menu-item a:hover {
  color: #46EBDD;
  opacity: 1;
}
.header-sec .top-menu-col .search-wrap .icon {
  cursor: pointer;
}
.header-sec .top-menu-col .search-wrap .icon .close-icon {
  display: none;
}
.header-sec .top-menu-col .search-wrap .icon.active {
  position: relative;
  z-index: 1;
}
.header-sec .top-menu-col .search-wrap .icon.active .search-icon {
  display: none;
}
.header-sec .top-menu-col .search-wrap .icon.active .close-icon {
  display: block;
}
.header-sec .top-menu-col .search-wrap .icon img {
  filter: invert(100%) sepia(15%) saturate(7429%) hue-rotate(176deg) brightness(114%) contrast(103%);
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.header-sec .top-menu-col .search-wrap .icon img:hover {
  filter: invert(83%) sepia(55%) saturate(505%) hue-rotate(108deg) brightness(95%) contrast(94%);
}
@media (max-width: 991px) {
  .header-sec .top-menu-col .search-wrap .icon img {
    width: 30px;
    height: 30px;
  }
}
.header-sec .top-menu-col .search-wrap .search-form {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 894px;
  background: #3A4A49;
}
.header-sec .top-menu-col .search-wrap .search-form.active {
  display: block;
}
.header-sec .top-menu-col .search-wrap .search-form input {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #ffffff;
  border: none;
  border-bottom: 1px solid #979797;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0 30px 10px;
}
@media (max-width: 1199px) {
  .header-sec .top-menu-col .search-wrap .search-form input {
    font-size: 20px;
    background-position: left 5px;
  }
}
.header-sec .top-menu-col .search-wrap .search-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
}
.header-sec .top-menu-col .search-wrap .search-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
}
.header-sec .top-menu-col .search-wrap .search-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
}
.header-sec .top-menu-col .search-wrap .search-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
}
.header-sec .top-menu-col .search-wrap .search-form .submit-btn {
  position: absolute;
  top: 7px;
  left: 0;
  background: transparent;
  padding: 0;
}
@media (max-width: 1199px) {
  .header-sec .top-menu-col .search-wrap .search-form .submit-btn {
    top: 5px;
  }
}
.header-sec .top-menu-col .search-wrap .search-form .submit-btn:hover img {
  filter: invert(80%) sepia(89%) saturate(360%) hue-rotate(101deg) brightness(697%) contrast(290%);
}
.header-sec .top-menu-col .search-wrap .search-form .submit-btn img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(2);
}
.header-sec .bottom-menu-col {
  width: 100%;
}
@media (max-width: 991px) {
  .header-sec .bottom-menu-col {
    display: none;
  }
}
.header-sec .bottom-menu-col .navbar .nav-list {
  justify-content: space-between;
  gap: 10px;
  padding-top: 65px;
}
@media (max-width: 1440px) {
  .header-sec .bottom-menu-col .navbar .nav-list {
    padding-top: 45px;
  }
}
@media (max-width: 1199px) {
  .header-sec .bottom-menu-col .navbar .nav-list {
    padding-top: 25px;
  }
}
.header-sec .bottom-menu-col .navbar .nav-list .menu-item a {
  text-transform: uppercase;
  font-size: 20px;
}
@media (max-width: 1440px) {
  .header-sec .bottom-menu-col .navbar .nav-list .menu-item a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .header-sec .bottom-menu-col .navbar .nav-list .menu-item a {
    font-size: 14px;
  }
}
.header-sec .mobile-btn {
  display: none;
  width: 75px;
}
@media (max-width: 991px) {
  .header-sec .mobile-btn {
    display: block;
  }
}
@media (max-width: 575px) {
  .header-sec .mobile-btn {
    width: calc(100% - 230px);
    width: -moz-fit-content;
    width: fit-content;
  }
}
.header-sec .mobile-btn .mobile-toggle-btn .icon-bar {
  width: 35px;
  transition: all 0.2s;
  background-color: #ffffff;
  height: 3px;
  display: block;
  border-radius: 3px;
  border-radius: 3px;
  margin: 0 0 0 auto;
}
.header-sec .mobile-btn .mobile-toggle-btn .icon-bar + .icon-bar {
  margin-top: 6px;
}
.header-sec .mobile-btn .mobile-toggle-btn.active .icon-bar.middle-bar {
  opacity: 0;
}
.header-sec .mobile-btn .mobile-toggle-btn.active .icon-bar.top-bar {
  transform: rotate(45deg);
  transform-origin: 4px 90%;
}
.header-sec .mobile-btn .mobile-toggle-btn.active .icon-bar.bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 15% 90%;
}
.header-sec .mobile-menu-wrap {
  z-index: 9999999999;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100vh;
  padding-top: 30px;
  background-color: #F4F4F5;
  transition: all 0.5s;
  left: -100%;
  bottom: 0;
  overflow: auto;
}
.header-sec .mobile-menu-wrap.active {
  left: 0;
  z-index: 9999999999;
}
.header-sec .mobile-menu-wrap .navbar .nav-list {
  display: block;
}
.header-sec .mobile-menu-wrap .navbar .nav-list .menu-item {
  position: relative;
}
.header-sec .mobile-menu-wrap .navbar .nav-list .menu-item a {
  font-size: 20px;
  color: #006B62;
  text-transform: uppercase;
  border-top: 1px solid #e3e3e7;
  padding: 12px 20px;
}
.header-sec .mobile-menu-wrap .navbar .nav-list .menu-item > .sub-menu {
  background-color: #EBEBEB;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar .nav-list .menu-item > .sub-menu {
    overflow: initial;
  }
}
.header-sec .mobile-menu-wrap .navbar .nav-list .menu-item.menu-item-has-children.active > .sub-menu {
  max-height: 100vh;
}
.header-sec .mobile-menu-wrap .navbar .nav-list .menu-item.menu-item-has-children::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  right: 0;
  top: 0;
  background-image: url("../images/down-arrow-green.svg");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transition: all 0.5s;
}
.header-sec .mobile-menu-wrap .navbar .nav-list .menu-item.menu-item-has-children.active::before {
  transform: rotate(180deg);
}
.header-sec .mobile-menu-wrap .search-close-wrap {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
}
.header-sec .mobile-menu-wrap .close-icon {
  width: 50px;
  padding: 0 5px;
}
.header-sec .mobile-menu-wrap .close-icon img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 0 0 auto;
  filter: invert(62%) sepia(0%) saturate(1163%) hue-rotate(206deg) brightness(94%) contrast(112%);
}
.header-sec .mobile-menu-wrap .search-form {
  width: calc(100% - 50px);
}
.header-sec .mobile-menu-wrap .search-form .form {
  position: relative;
}
.header-sec .mobile-menu-wrap .search-form input {
  border: 1px solid #e3e3e7;
  width: 100%;
  padding: 9px 45px 9px 15px;
  border-radius: 24px;
  font-size: 19px;
  font-family: "Roboto Condensed", sans-serif;
}
.header-sec .mobile-menu-wrap .search-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #BCBCBC;
}
.header-sec .mobile-menu-wrap .search-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #BCBCBC;
}
.header-sec .mobile-menu-wrap .search-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #BCBCBC;
}
.header-sec .mobile-menu-wrap .search-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #BCBCBC;
}
.header-sec .mobile-menu-wrap .search-form .submit-btn {
  position: absolute;
  top: 11px;
  right: 20px;
  background: transparent;
  padding: 0;
}
.header-sec .mobile-menu-wrap .search-form .submit-btn:hover img {
  opacity: 0.7;
}
.header-sec .mobile-menu-wrap .search-form .submit-btn img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-sec .mobile-menu-wrap .navbar-bottom {
  background-color: #46EBDD;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom {
    margin-top: 15px;
  }
}
.header-sec .mobile-menu-wrap .navbar-bottom.navbar .nav-list .menu-item a {
  text-transform: capitalize;
  border: none;
  padding-bottom: 0;
  color: #3A4A49;
}
.header-sec .mobile-menu-wrap .navbar-bottom.navbar .nav-list .menu-item.btn {
  padding-right: 0;
  margin-bottom: 10px;
  margin-top: 0;
}
.header-sec .mobile-menu-wrap .navbar-bottom.navbar .nav-list .menu-item.btn a {
  border-radius: 0;
  padding: 20px 20px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom.navbar .menu-top-menu-container ul.nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom.navbar .menu-top-menu-container ul.nav-list li:first-child {
    order: 2;
  }
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom.navbar .menu-top-menu-container ul.nav-list li:nth-child(2) {
    order: 3;
  }
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom.navbar .menu-top-menu-container ul.nav-list li:nth-child(3) {
    order: 4;
  }
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom.navbar .menu-top-menu-container ul.nav-list li:nth-child(4) {
    order: 5;
  }
}
@media (max-width: 991px) {
  .header-sec .mobile-menu-wrap .navbar-bottom.navbar .menu-top-menu-container ul.nav-list li:last-child {
    order: 1;
    width: 100%;
  }
}
.header-sec .navbar .nav-list {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.header-sec .navbar .nav-list .menu-item a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  display: block;
  padding-bottom: 20px;
}
@media (max-width: 1440px) {
  .header-sec .navbar .nav-list .menu-item a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .header-sec .navbar .nav-list .menu-item a {
    font-size: 14px;
  }
}
.header-sec .navbar .nav-list .menu-item a:hover {
  opacity: 1;
  color: #EBC72F;
}
.header-sec .navbar .nav-list .menu-item.btn {
  padding-right: 20px;
}
.header-sec .navbar .nav-list .menu-item.btn a {
  text-transform: uppercase;
  color: #3A4A49 !important;
  border-radius: 4px;
  background-color: #EBC72F;
  font-size: 20px;
  font-weight: 700;
  padding: 7px 11px;
  line-height: 1;
}
.header-sec .navbar .nav-list .menu-item.btn a:hover {
  color: #3A4A49;
  background-color: #46EBDD;
}
.header-sec .navbar .nav-list .menu-item.current-menu-item a {
  color: #EBC72F;
}
.header-sec .navbar .nav-list .menu-item-has-children ul {
  display: none !important;
  transition: 0.3s all;
  -moz-column-gap: 45px;
       column-gap: 45px;
  padding: 12px 0;
}
@media (max-width: 1600px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul {
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
}
@media (max-width: 1320px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul {
    padding: 4px 0;
  }
}
.header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu {
  display: flex;
  position: absolute;
  align-items: initial;
  justify-content: center;
  width: 100%;
  left: 0;
  background-color: #e3e3e7;
  margin-top: 0px;
  z-index: 1;
  height: 60px;
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu {
    align-items: center;
    padding: 30px 0;
    display: none !important;
    top: 100px;
  }
}
@media (max-width: 767px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu {
    -moz-column-gap: 5px;
         column-gap: 5px;
    flex-direction: column;
    align-items: baseline;
    padding: 80px 0;
    top: 90px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu {
    padding: 0;
  }
}
.header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li {
  position: relative;
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li {
    background-color: #EBEBEB;
  }
}
.header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
  content: "/";
  display: inline-block;
  position: absolute;
  right: 0;
  right: -25px;
  top: 4px;
}
@media (max-width: 1600px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
    right: -20px;
  }
}
@media (max-width: 1440px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
    top: 0;
  }
}
@media (max-width: 1320px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
    right: -15px;
    top: 2px;
  }
}
@media (max-width: 1199px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
    top: 4px;
    right: -14px;
  }
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
    top: 16px;
  }
}
@media (max-width: 767px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:after {
    display: none;
  }
}
.header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li a {
  color: #3A4A49;
  font-size: 19px;
  line-height: 36px;
  text-transform: initial;
}
@media (max-width: 1440px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li a {
    font-size: 17px;
    line-height: 30px;
  }
}
@media (max-width: 1320px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li a {
    font-size: 16px;
    line-height: 36px;
  }
}
@media (max-width: 1199px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li a {
    font-size: 14px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li a {
    font-size: 16px;
    line-height: 26px;
  }
}
.header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li a:hover {
  color: #EBC72F;
}
.header-sec .navbar .nav-list .menu-item-has-children ul.sub-menu li:last-child:after {
  display: none;
}
.header-sec .navbar .nav-list .menu-item-has-children:hover ul {
  display: flex !important;
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children:hover ul {
    display: none !important;
    padding: 0;
  }
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children.active ul {
    padding: 40px 0;
  }
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children.active ul.sub-menu {
    display: flex !important;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .header-sec .navbar .nav-list .menu-item-has-children.active ul.sub-menu li {
    width: 100%;
  }
}

.header-sec.sticky-header .navbar .nav-list .menu-item a {
  padding-bottom: 0;
}

.sub-header {
  background-color: #e3e3e7;
  padding: 12px 0;
}
@media (max-width: 1440px) {
  .sub-header {
    padding: 15px 0 10px;
  }
}
.sub-header ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .sub-header ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
.sub-header ul li {
  position: relative;
}
.sub-header ul li::after {
  content: "/";
  color: #3A4A49;
  font-size: 19px;
  display: inline-block;
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .sub-header ul li::after {
    padding-right: 12px;
    padding-left: 10px;
  }
}
@media (max-width: 575px) {
  .sub-header ul li::after {
    display: none;
  }
}
.sub-header ul li:last-child:after {
  display: none;
}
.sub-header ul li a {
  color: #3A4A49;
  font-size: 19px;
  line-height: 36px;
}
@media (max-width: 991px) {
  .sub-header ul li a {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .sub-header ul li a {
    font-size: 14px;
    line-height: 24px;
  }
}
.sub-header ul li a:hover {
  color: #EBC72F;
}
.sub-header .policy-subheader ul li:after {
  content: "|";
}

@keyframes bar {
  0% {
    top: -100px;
  }
  100% {
    top: 0%;
  }
}
main .page_submenu {
  background-color: #e3e3e7;
}
@media (max-width: 991px) {
  main .page_submenu {
    background-color: #e3e3e7;
  }
}
main .page_submenu .sub-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  left: 0;
  background-color: #e3e3e7;
  margin-top: 0px;
  z-index: 99;
  height: auto;
  min-height: 60px;
  -moz-column-gap: 45px;
       column-gap: 45px;
  max-width: 1396px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  flex-flow: wrap;
  margin-right: auto;
  margin-top: 6px;
}
@media (max-width: 1440px) {
  main .page_submenu .sub-menu {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 1199px) {
  main .page_submenu .sub-menu {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  main .page_submenu .sub-menu {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  main .page_submenu .sub-menu {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  main .page_submenu .sub-menu {
    position: relative;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 0 10px;
  }
}
@media (max-width: 767px) {
  main .page_submenu .sub-menu {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
main .page_submenu .sub-menu li {
  padding-left: 0;
  position: relative;
}
main .page_submenu .sub-menu li::before {
  display: none;
}
@media (max-width: 991px) {
  main .page_submenu .sub-menu li {
    width: 100%;
    border-top: 1px solid #808080;
    padding: 2px 0;
  }
}
main .page_submenu .sub-menu li:first-child {
  border-top: 0;
}
main .page_submenu .sub-menu li::after {
  content: "/";
  display: inline-block;
  position: absolute;
  right: 0;
  right: -25px;
  top: 4px;
}
@media (max-width: 1600px) {
  main .page_submenu .sub-menu li::after {
    right: -28px;
  }
}
@media (max-width: 991px) {
  main .page_submenu .sub-menu li::after {
    display: none;
  }
}
main .page_submenu .sub-menu li:last-child::after {
  display: none;
}
main .page_submenu .sub-menu li.current-menu-item a {
  color: #009F92;
  text-decoration: underline;
}
main .page_submenu .sub-menu li a {
  color: #3A4A49;
  font-size: 19px;
  line-height: 36px;
  text-transform: initial;
}
@media (max-width: 991px) {
  main .page_submenu .sub-menu li a {
    font-size: 20px;
    text-transform: uppercase;
  }
}
@media (max-width: 767px) {
  main .page_submenu .sub-menu li a {
    font-size: 14px;
    line-height: 24px;
  }
}
main .page_submenu .sub-menu li a:hover {
  color: #009F92;
  text-decoration: underline;
}

.footer-sec {
  background-color: #3A4A49;
  padding-top: 40px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 1199px) {
  .footer-sec {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .footer-sec {
    padding-bottom: 0;
  }
}
.footer-sec .back-to-top {
  opacity: 0;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 3.94rem;
  bottom: 100px;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: 0.7s all;
  animation: fade-animation 0.7s ease-in-out;
}
@media (max-width: 991px) {
  .footer-sec .back-to-top {
    right: 2.3rem;
  }
}
@media (max-width: 767px) {
  .footer-sec .back-to-top {
    right: 1rem;
    bottom: 50px;
  }
}
.footer-sec .back-to-top.show {
  opacity: 1;
  pointer-events: painted;
}
.footer-sec .back-to-top .icon {
  display: block;
  width: 50px;
  height: 48px;
}
.footer-sec .back-to-top .dashicons {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #000000;
  color: #ffffff;
  line-height: 45px;
}
.footer-sec .col-left .navbar {
  margin-top: 20px;
}
.footer-sec .col-left .navbar .nav-list .menu-item a {
  font-weight: 700;
}
@media (max-width: 575px) {
  .footer-sec .col-right {
    border-top: 1px solid #006B62;
    margin-top: 35px;
    padding-top: 35px;
  }
}
.footer-sec .col-right .navbar .nav-list {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer-sec .col-right .navbar .nav-list {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .footer-sec .col-right .navbar .nav-list {
    flex-flow: column;
  }
  .footer-sec .col-right .navbar .nav-list::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .footer-sec .col-right .navbar .nav-list .menu-item::before {
    display: none;
  }
}
.footer-sec .col-right .navbar .nav-list .menu-item a {
  text-transform: uppercase;
  font-size: 21px;
}
@media (max-width: 1440px) {
  .footer-sec .col-right .navbar .nav-list .menu-item a {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .footer-sec .col-right .navbar .nav-list .menu-item a {
    text-transform: capitalize;
    color: #46EBDD;
  }
}
.footer-sec .logo-wrap img {
  max-width: 180px;
  display: block;
}
.footer-sec .lable {
  font-weight: 700;
}
.footer-sec .address-wrap {
  margin-top: 40px;
}
.footer-sec .address-wrap .lable {
  margin-bottom: 0;
  text-transform: uppercase;
}
.footer-sec .notes {
  margin-top: 20px;
  max-width: 510px;
}
.footer-sec .notes p {
  font-style: italic;
  font-weight: 300;
}
.footer-sec .btn-wrap {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-top: 25px;
}
@media (max-width: 575px) {
  .footer-sec .btn-wrap {
    margin-top: 15px;
  }
}
.footer-sec .btn-wrap .btn {
  text-align: right;
}
@media (max-width: 767px) {
  .footer-sec .btn-wrap .btn {
    text-align: left;
  }
}
.footer-sec .btn-wrap .btn .link {
  font-size: 21px;
  color: #3A4A49;
  font-family: "Roboto Condensed", sans-serif;
  background-color: #46EBDD;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .footer-sec .btn-wrap .btn .link {
    padding: 5px 10px;
  }
}
@media (max-width: 575px) {
  .footer-sec .btn-wrap .btn .link {
    color: #46EBDD;
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-weight: 700;
  }
}
.footer-sec .btn-wrap .btn .link:hover {
  opacity: 0.7;
}
.footer-sec .social-wrap {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .footer-sec .social-wrap {
    background-color: #1E1E1E;
    padding-top: 35px;
    padding-bottom: 35px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.footer-sec .social-wrap ul {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer-sec .social-wrap ul {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .footer-sec .social-wrap ul {
    justify-content: center;
    gap: 20px 30px;
  }
}
.footer-sec .social-wrap ul li a {
  display: block;
}
.footer-sec .social-wrap ul li a:hover {
  opacity: 0.7;
}
.footer-sec .social-wrap ul li a img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 575px) {
  .footer-sec .social-wrap ul li a img {
    width: 30px;
    height: 30px;
  }
}

.copyright-sec {
  background-color: #2E2E2E;
  padding-top: 15px;
  padding-bottom: 15px;
}
.copyright-sec .col-right .col-inner {
  text-align: right;
}
@media (max-width: 767px) {
  .copyright-sec .col-right .col-inner {
    text-align: left;
    padding-top: 15px;
  }
}
@media (max-width: 575px) {
  .copyright-sec .col-right .col-inner {
    padding-top: 25px;
  }
}
.copyright-sec .col-right .col-inner p {
  font-size: 17px;
}
.copyright-sec .navbar .nav-list {
  gap: 10px 30px;
}
.copyright-sec .navbar .nav-list .menu-item::before {
  right: -15px;
}
@media (max-width: 991px) {
  .copyright-sec .navbar .nav-list .menu-item {
    gap: 10px 20px;
  }
}
.copyright-sec .navbar .nav-list .menu-item a {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

footer {
  overflow-x: clip;
  position: relative;
  z-index: 3;
  padding-top: 0px;
}
footer .row {
  display: flex;
  flex-flow: wrap;
}
footer .col {
  width: 50%;
}
@media (max-width: 767px) {
  footer .col {
    width: 100%;
  }
}
footer p {
  font-size: 19px;
  font-family: "Roboto Condensed", sans-serif;
  color: #ffffff;
}
@media (max-width: 1440px) {
  footer p {
    font-size: 18px;
  }
}
footer .navbar .nav-list {
  display: flex;
  flex-flow: wrap;
  gap: 10px 40px;
}
@media (max-width: 1199px) {
  footer .navbar .nav-list {
    gap: 10px 30px;
  }
}
footer .navbar .nav-list .menu-item {
  position: relative;
}
footer .navbar .nav-list .menu-item::before {
  content: "";
  position: absolute;
  right: -20px;
  background-color: #ffffff;
  height: 17px;
  width: 2px;
  top: 8px;
}
@media (max-width: 1199px) {
  footer .navbar .nav-list .menu-item::before {
    right: -15px;
  }
}
footer .navbar .nav-list .menu-item:first-child {
  padding-left: 0;
}
footer .navbar .nav-list .menu-item:last-child {
  border-right: 0;
}
footer .navbar .nav-list .menu-item:last-child::before {
  display: none;
}
footer .navbar .nav-list .menu-item a {
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 19px;
}
@media (max-width: 1440px) {
  footer .navbar .nav-list .menu-item a {
    font-size: 18px;
  }
}
footer .navbar .nav-list .menu-item a:hover {
  opacity: 0.7;
}

@keyframes fade-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero-sec {
  overflow: hidden;
}
.hero-sec .row {
  display: flex;
  flex-flow: wrap;
}
.hero-sec .col-left {
  width: 35%;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .hero-sec .col-left {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .hero-sec .col-left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero-sec .col-left {
    background-color: #46EBDD;
  }
}
@media (max-width: 575px) {
  .hero-sec .col-left {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.hero-sec .col-left .col-inner {
  min-width: calc(100% + 120px);
  z-index: 2;
}
@media (max-width: 1440px) {
  .hero-sec .col-left .col-inner {
    min-width: calc(100% + 80px);
  }
}
@media (max-width: 767px) {
  .hero-sec .col-left .col-inner {
    min-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero-sec .col-left .col-inner {
    text-align: center;
  }
}
.hero-sec .col-left .col-inner::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 0, 0 120%);
          clip-path: polygon(100% 0, 0 0, 0 120%);
  background-color: #46EBDD;
  width: 139%;
  height: 300%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero-sec .col-left .col-inner::before {
    display: none;
  }
}
.hero-sec .col-left .col-inner .desc {
  max-width: 305px;
}
@media (max-width: 767px) {
  .hero-sec .col-left .col-inner .desc {
    max-width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .hero-sec .col-left .col-inner .title {
    text-align: center;
    margin-bottom: 0;
  }
}
.hero-sec .col-left .col-inner .primary-btn {
  margin-top: 20px;
}
.hero-sec .col-right {
  width: 65%;
  padding-right: 0;
}
@media (max-width: 991px) {
  .hero-sec .col-right {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .hero-sec .col-right {
    width: 100%;
    padding-left: 0;
  }
}
.hero-sec .col-right .col-inner {
  height: 100%;
}
.hero-sec .col-right .note {
  font-size: 12px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  text-align: right;
  padding-right: 15px;
  padding-top: 10px;
  padding-left: 20px;
  color: #3A4A49;
}
@media (max-width: 767px) {
  .hero-sec .col-right .note {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}
.hero-sec .col-right .img-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 42%;
  height: calc(100% - 60px);
  width: calc(100% + 15px);
  left: -15px;
}
@media (max-width: 991px) {
  .hero-sec .col-right .img-wrap {
    padding-bottom: 80%;
  }
}
@media (max-width: 767px) {
  .hero-sec .col-right .img-wrap {
    padding-bottom: 57%;
    width: 100%;
    left: 0;
  }
}
.hero-sec .col-right .img-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.policy-campaigns-sec {
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  .policy-campaigns-sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .policy-campaigns-sec {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .policy-campaigns-sec {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .policy-campaigns-sec {
    background-color: rgba(138, 143, 157, 0.1);
  }
}
.policy-campaigns-sec > div {
  padding-top: 120px;
  padding-bottom: 148px;
}
@media (max-width: 1440px) {
  .policy-campaigns-sec > div {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.policy-campaigns-sec .main-title {
  margin-bottom: 45px;
}
.policy-campaigns-sec .img-with-content-row {
  display: flex;
  flex-flow: wrap;
}
.policy-campaigns-sec .img-with-content-row .col {
  width: 50%;
}
@media (max-width: 767px) {
  .policy-campaigns-sec .img-with-content-row .col {
    width: 100%;
  }
}
.policy-campaigns-sec .img-with-content-row .content-col {
  background-color: rgba(138, 143, 157, 0.1);
  padding: 50px 40px;
}
@media (max-width: 767px) {
  .policy-campaigns-sec .img-with-content-row .content-col {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .policy-campaigns-sec .img-with-content-row .content-col {
    padding: 35px 20px;
  }
}
@media (max-width: 991px) {
  .policy-campaigns-sec .img-with-content-row .content-col {
    padding: 35px 20px 15px;
  }
}
.policy-campaigns-sec .img-with-content-row .content-col .desc {
  max-width: 500px;
}
@media (max-width: 767px) {
  .policy-campaigns-sec .img-with-content-row .content-col .desc {
    max-width: 100%;
  }
}
.policy-campaigns-sec .img-with-content-row .content-col .primary-btn {
  margin-top: 55px;
}
@media (max-width: 1199px) {
  .policy-campaigns-sec .img-with-content-row .content-col .primary-btn {
    margin-top: 40px;
  }
}
.policy-campaigns-sec .img-with-content-row .img-col {
  padding-right: 0;
}
@media (max-width: 767px) {
  .policy-campaigns-sec .img-with-content-row .img-col {
    padding-left: 0;
  }
}
.policy-campaigns-sec .img-with-content-row .img-col .col-inner {
  height: 100%;
}
.policy-campaigns-sec .img-with-content-row .img-col .col-inner .img-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 64%;
  height: 100%;
}
@media (max-width: 767px) {
  .policy-campaigns-sec .img-with-content-row .img-col .col-inner .img-wrap {
    padding-bottom: 80%;
  }
}
.policy-campaigns-sec .img-with-content-row .img-col .col-inner img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-left-right-block .content-block-content {
  background-color: #F4F4F5;
}
.content-left-right-block .content-block-content .policy-banner .col-left {
  width: 38%;
}
.content-left-right-block .content-block-content .policy-banner .col-right {
  width: 62%;
}
.content-left-right-block .content-block-content .policy-banner .col-right .col-inner img {
  height: 100%;
}
.content-left-right-block .content-block-content .col-right .col-inner img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.legal-rights-sec {
  position: relative;
  z-index: 1;
}
.legal-rights-sec .row {
  display: flex;
  flex-flow: wrap;
}
.legal-rights-sec .col-left {
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  padding-top: 62px;
  padding-bottom: 88px;
  width: 55%;
}
@media (max-width: 767px) {
  .legal-rights-sec .col-left {
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
  }
}
@media (max-width: 991px) {
  .legal-rights-sec .col-left {
    padding-top: 45px;
    padding-bottom: 120px;
  }
}
.legal-rights-sec .col-left .col-inner {
  max-width: 84%;
}
@media (max-width: 767px) {
  .legal-rights-sec .col-left .col-inner {
    max-width: 100%;
  }
  .legal-rights-sec .col-left .col-inner .content-wrap {
    text-align: center;
  }
  .legal-rights-sec .col-left .col-inner .main-title {
    text-align: center;
  }
}
.legal-rights-sec .col-left .primary-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .legal-rights-sec .col-left .primary-btn {
    margin-top: 30px;
  }
}
.legal-rights-sec .col-right {
  padding-top: 62px;
  padding-bottom: 88px;
  width: 45%;
}
@media (max-width: 767px) {
  .legal-rights-sec .col-right {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .legal-rights-sec .col-right {
    padding-top: 45px;
    padding-bottom: 80px;
  }
}
.legal-rights-sec .col-right .col-inner {
  max-width: 490px;
  margin: 0 0 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .legal-rights-sec .col-right .col-inner {
    max-width: 100%;
  }
}
.legal-rights-sec .col-right .main-title {
  font-size: 64px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}
@media (max-width: 1440px) {
  .legal-rights-sec .col-right .main-title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .legal-rights-sec .col-right .main-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .legal-rights-sec .col-right .main-title {
    text-align: center;
  }
}

.news-section {
  position: relative;
  z-index: 1;
}
.news-section > div {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .news-section > div {
    padding-top: 55px;
    padding-bottom: 53px;
  }
}
.news-section.casebook-sec {
  background-color: rgba(70, 235, 221, 0.09);
  padding-top: 0;
}
.news-section .main-title {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .news-section .main-title {
    text-align: center;
    margin-bottom: 32px;
  }
}
.news-section .description-wrap {
  margin-bottom: 20px;
  max-width: 1396px;
  padding-right: 30px;
}
@media only screen and (max-width: 1440px) {
  .news-section .description-wrap {
    max-width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1199px) {
  .news-section .description-wrap {
    max-width: 900px;
  }
}
@media only screen and (max-width: 991px) {
  .news-section .description-wrap {
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .news-section .description-wrap {
    max-width: 100%;
    padding-right: 15px;
  }
}
.news-section .small-title {
  margin-top: 20px;
}
@media only screen and (max-width: 1600px) {
  .news-section .small-title {
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 1400px) {
  .news-section .small-title {
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 768px) {
  .news-section .small-title {
    font-size: 20px !important;
  }
}
.news-section .small-title a:hover {
  text-decoration: underline;
}
.news-section .col-left {
  padding-right: 0;
}
.news-section .btn-wrap {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .news-section .btn-wrap {
    text-align: center;
    margin-top: 25px;
  }
}
.news-section .news-slider {
  padding-bottom: 90px;
}
@media (max-width: 767px) {
  .news-section .news-slider {
    padding-bottom: 0px;
  }
}
.news-section .news-slider .item-inner {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin-right: 80px;
}
@media (max-width: 991px) {
  .news-section .news-slider .item-inner {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .news-section .news-slider .item-inner {
    margin-right: 40px;
  }
}
.news-section .news-slider .item-inner .news-img {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding-bottom: 44%;
}
@media (max-width: 767px) {
  .news-section .news-slider .item-inner .news-img {
    flex: auto;
    width: 100%;
    padding-bottom: 85%;
  }
}
.news-section .news-slider .item-inner .news-img img,
.news-section .news-slider .item-inner .news-img a {
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 5px;
  transition: all 0.5s;
  position: absolute;
}
.news-section .news-slider .item-inner .news-img:hover img {
  transform: scale(1.1);
}
.news-section .news-slider .item-inner .content-wrap {
  flex: 1;
}
@media (max-width: 767px) {
  .news-section .news-slider .item-inner .content-wrap {
    width: 100%;
    flex: auto;
  }
}
@media (max-width: 767px) {
  .news-section .news-slider .item-inner .content-wrap .small-title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .news-section .news-slider .item-inner .content-wrap .desc {
    display: none;
  }
}
.news-section .news-slider .slick-list {
  padding-left: 0 !important;
}
.news-section .news-slider .slick-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 70px;
  filter: invert(24%) sepia(31%) saturate(267%) hue-rotate(127deg) brightness(96%) contrast(87%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .news-section .news-slider .slick-arrow {
    display: none;
  }
}
.news-section .news-slider .slick-arrow:hover {
  opacity: 0.7;
}
.news-section .news-slider .slick-arrow.nextArrow {
  left: 90px;
}
.news-section .news-slider span {
  font-size: 0;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
}
.news-section .news-slider span.prevArrow {
  background-image: url("../images/arrow-left.svg");
}
.news-section .news-slider span.nextArrow {
  background-image: url("../images/arrow-right.svg");
}

.pila-sec {
  position: relative;
  z-index: 1;
}
.pila-sec a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.pila-sec a:hover {
  color: #009F92;
}
.pila-sec a.primary-btn {
  display: inline-block;
  color: #ffffff;
}
.pila-sec > div {
  padding-top: 80px;
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .pila-sec > div {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.pila-sec .img-wrap img {
  max-width: 230px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .pila-sec .img-wrap img {
    max-width: 160px;
  }
}
.pila-sec .content-wrap {
  max-width: 960px;
  margin: 45px auto 0;
}
.pila-sec .bottom-row {
  display: flex;
  flex-flow: wrap;
  margin-top: 65px;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .pila-sec .bottom-row {
    margin-top: 35px;
  }
}
.pila-sec .bottom-row .col {
  width: 50%;
}
@media (max-width: 767px) {
  .pila-sec .bottom-row .col {
    width: 100%;
  }
}
.pila-sec .bottom-row .col .col-inner {
  padding: 25px 38px;
  background-color: #3A4A49;
  height: 100%;
}
@media (max-width: 991px) {
  .pila-sec .bottom-row .col .col-inner {
    padding: 20px 25px;
  }
}
.pila-sec .bottom-row .col .col-inner .sub-title {
  font-size: 39px;
  text-transform: none;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .pila-sec .bottom-row .col .col-inner .sub-title {
    font-size: 32px;
  }
}
.pila-sec .bottom-row .col .col-inner .primary-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .pila-sec .bottom-row .col .col-inner .primary-btn {
    margin-top: 33px;
  }
}
.pila-sec .bottom-row .block-border:after {
  width: 96%;
  left: 24px;
}
@media (max-width: 1440px) {
  .pila-sec .bottom-row .block-border:after {
    width: 95%;
  }
}
@media (max-width: 1199px) {
  .pila-sec .bottom-row .block-border:after {
    width: 93.7%;
  }
}
@media (max-width: 991px) {
  .pila-sec .bottom-row .block-border:after {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .pila-sec .bottom-row .block-border:after {
    width: 95%;
  }
}
@media (max-width: 600px) {
  .pila-sec .bottom-row .block-border:after {
    width: 94%;
  }
}
@media (max-width: 480px) {
  .pila-sec .bottom-row .block-border:after {
    width: 92%;
  }
}
@media (max-width: 400px) {
  .pila-sec .bottom-row .block-border:after {
    width: 91%;
  }
}

.volunteer-sec {
  position: relative;
  z-index: 1;
}
.volunteer-sec a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.volunteer-sec a:hover {
  color: #009F92;
}
.volunteer-sec a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.volunteer-sec a.primary-btn::before {
  display: none;
}
.volunteer-sec .row {
  display: flex;
  flex-flow: wrap;
}
.volunteer-sec .content-wrap p {
  font-size: 27px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .volunteer-sec .content-wrap p {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .volunteer-sec .content-wrap p {
    font-size: 22px;
  }
}
.volunteer-sec .col-left {
  padding-top: 45px;
  padding-bottom: 60px;
  width: 43%;
}
@media (max-width: 767px) {
  .volunteer-sec .col-left {
    width: 100%;
    padding-bottom: 20px;
  }
}
.volunteer-sec .col-left .col-inner {
  max-width: 100%;
}
@media (max-width: 767px) {
  .volunteer-sec .col-left .col-inner .content-wrap {
    text-align: center;
  }
  .volunteer-sec .col-left .col-inner .main-title {
    text-align: center;
  }
}
.volunteer-sec .col-left .primary-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .volunteer-sec .col-left .primary-btn {
    margin-top: 30px;
  }
}
.volunteer-sec .col-right {
  width: 57%;
  padding: 0;
  -webkit-clip-path: polygon(20% -40%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% -40%, 100% 0%, 100% 100%, 0% 100%);
  margin-bottom: -1px;
}
@media (max-width: 1199px) {
  .volunteer-sec .col-right {
    margin-bottom: 0;
  }
}
.volunteer-sec .col-right img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}
@media (max-width: 767px) {
  .volunteer-sec .col-right img {
    -o-object-position: 50% 25%;
       object-position: 50% 25%;
  }
}
@media (max-width: 767px) {
  .volunteer-sec .col-right {
    width: 100%;
    -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.volunteer-sec .col-right .col-inner {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 48%;
}
@media (max-width: 767px) {
  .volunteer-sec .col-right .col-inner {
    padding-bottom: 65%;
  }
}

.content-left-right-block {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
}
@media (max-width: 991px) {
  .content-left-right-block {
    margin-bottom: 40px;
  }
}
.content-left-right-block .content-block-content {
  background-color: #46EBDD;
}
.content-left-right-block .content-block-content.bg-oceanblue {
  background-color: #46EBDD;
}
.content-left-right-block .content-block-content.bg-yellow {
  background-color: #EBC72F;
}
.content-left-right-block .content-block-content.bg-orange {
  background-color: #EB7C46;
}
.content-left-right-block .content-block-content.bg-lightblue {
  background-color: #78D3FF;
}
.content-left-right-block .content-block-content p a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.content-left-right-block .content-block-content p a:hover {
  color: #009F92;
}
.content-left-right-block .content-block-content p a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.content-left-right-block .content-block-content p a.primary-btn::before {
  display: none;
}
.content-left-right-block .row {
  display: flex;
  flex-flow: wrap;
}
.content-left-right-block .row .col-left {
  padding-top: 80px;
  padding-bottom: 60px;
  width: 41%;
}
@media (max-width: 991px) {
  .content-left-right-block .row .col-left {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.content-left-right-block .row .col-left .content-wrap {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .content-left-right-block .row .col-left .content-wrap {
    padding-top: 0;
  }
}
.content-left-right-block .row .col-right {
  width: 59%;
  padding: 0;
  -webkit-clip-path: polygon(20% -40%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% -40%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 991px) {
  .content-left-right-block .row .col-right {
    width: 100%;
    -webkit-clip-path: initial;
            clip-path: initial;
  }
}
.content-left-right-block .row .col-right .col-inner {
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .content-left-right-block .row .col-right .col-inner {
    height: 380px;
  }
}
@media (max-width: 575px) {
  .content-left-right-block .row .col-right .col-inner {
    height: 300px;
  }
}
.content-left-right-block .row .col-right .col-inner.policy-banner .col-inner img {
  height: 100%;
}
.content-left-right-block .row .col-right .col-inner .poster-img {
  height: 100%;
}
.content-left-right-block .row .col-right .col-inner .poster-img.video-bg {
  position: relative;
  height: 100%;
  max-height: 580px;
}
.content-left-right-block .row .col-right .col-inner .poster-img.video-bg::before {
  content: "";
  background-color: rgba(30, 30, 30, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
}
.content-left-right-block .row .modal {
  z-index: 10000;
  /* 1 */
  /*    top: 0;*/
  left: 0;
  right: 0;
  margin: 0 auto;
  visibility: hidden;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: none;
  position: fixed;
  top: 50%;
  transform: translate(0px, -50%);
}
.content-left-right-block .row .modal-header,
.content-left-right-block .row .modal-content {
  padding: 1em;
}
.content-left-right-block .row .modal-body .modal-content iframe {
  min-height: 350px;
}
@media (max-width: 767px) {
  .content-left-right-block .row .modal-body .modal-content iframe {
    min-height: 300px;
  }
}
.content-left-right-block .row .modal.is-visible {
  display: block;
  visibility: visible;
}
.content-left-right-block .row .modal.is-visible {
  visibility: visible;
}
@media (max-width: 991px) {
  .content-left-right-block .row .modal.is-visible {
    top: 50%;
  }
}
.content-left-right-block .row .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.content-left-right-block .row .modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.content-left-right-block .row .modal-wrapper {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  height: 70%;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  top: 50%;
  transform: translate(0px, -50%) !important;
}
@media (max-width: 991px) {
  .content-left-right-block .row .modal-wrapper {
    width: 80%;
    height: 80%;
  }
}
@media (max-width: 767px) {
  .content-left-right-block .row .modal-wrapper {
    height: 62%;
  }
}
@media (max-width: 575px) {
  .content-left-right-block .row .modal-wrapper {
    width: 90%;
  }
}
.content-left-right-block .row .modal-wrapper .modal-body {
  height: 94%;
}
@media (max-width: 991px) {
  .content-left-right-block .row .modal-wrapper .modal-body {
    height: 93%;
  }
}
@media (max-width: 767px) {
  .content-left-right-block .row .modal-wrapper .modal-body {
    height: 91%;
  }
}
.content-left-right-block .row .modal-wrapper .modal-body .modal-content {
  height: 100%;
}
@media (max-width: 991px) {
  .content-left-right-block .row .modal-wrapper .modal-body .modal-content {
    height: 99%;
  }
}
@media (max-width: 767px) {
  .content-left-right-block .row .modal-wrapper .modal-body .modal-content {
    height: 100%;
  }
}
.content-left-right-block .row .modal-wrapper .modal-body .modal-content iframe {
  height: 98%;
}
@media (max-width: 480px) {
  .content-left-right-block .row .modal-wrapper .modal-body .modal-content iframe {
    height: 95%;
  }
}
.content-left-right-block .row .modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.content-left-right-block .row .modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.content-left-right-block .row .modal-header {
  position: relative;
}
.content-left-right-block .row .modal-close {
  position: absolute;
  top: 30%;
  right: 1%;
  padding: 1em;
  color: #000;
  background: none;
  border: 0;
}
.content-left-right-block .row .modal-close::after {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
}
.content-left-right-block .row .modal-close .icon-close.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentcolor;
  float: right;
}
.content-left-right-block .row .modal-close:hover {
  color: #777;
}
.content-left-right-block .row .modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.content-left-right-block .row .modal-content > *:first-child {
  margin-top: 0;
}
@media (max-width: 991px) {
  .content-left-right-block .row .modal-content > *:first-child {
    min-height: 100%;
  }
}
.content-left-right-block .row .modal-content > *:last-child {
  margin-bottom: 0;
}
.content-left-right-block .row .modal-content .html5-video-container .video-stream {
  width: 100% !important;
}
@media (max-width: 991px) {
  .content-left-right-block .row .play-button-pause,
  .content-left-right-block .row .play-button-wrapper {
    position: absolute;
    top: 0;
  }
}
@media (max-width: 991px) {
  .content-left-right-block .row .play-button-pause img,
  .content-left-right-block .row .play-button-wrapper img {
    width: 65px;
    height: 65px;
  }
}
.content-left-right-block video {
  width: 100%;
  height: 100%;
  z-index: 9;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-left-right-block .play-button-pause.pause + .play-button-wrapper {
  display: none;
  transition: 0.4s all;
}
.content-left-right-block .play-button-wrapper {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 999;
  display: inline-block;
}
@media (max-width: 991px) {
  .content-left-right-block .play-button-wrapper {
    top: 50% !important;
  }
}
.content-left-right-block .play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.content-left-right-block .play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #fff;
  stroke: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translate(0px, -50%);
  z-index: 99;
  pointer-events: none;
}
.content-left-right-block .play-button-wrapper .play-gif img {
  width: 100px !important;
  height: 100px !important;
}
@media (max-width: 767px) {
  .content-left-right-block .play-button-wrapper .play-gif img {
    width: 70px !important;
    height: 70px !important;
  }
}
.content-left-right-block video,
.content-left-right-block iframe {
  width: 100%;
  min-height: 670px;
}
.content-left-right-block .loader-ajax-news {
  position: fixed;
  top: 0;
  left: 0;
  background: #eee;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  text-align: center;
  /* bottom: 0; */
}
.content-left-right-block .loader-ajax-news img {
  top: 70%;
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.meet-our-volunteers {
  padding-top: 62px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .meet-our-volunteers {
    padding-top: 40px;
  }
}
.meet-our-volunteers h2 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 110px;
}
@media (max-width: 991px) {
  .meet-our-volunteers h2 {
    margin-bottom: 50px;
  }
}
.meet-our-volunteers .row {
  display: flex;
  -moz-column-gap: 38px;
       column-gap: 38px;
  justify-content: center;
}
@media (max-width: 991px) {
  .meet-our-volunteers .row {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
  }
}
.meet-our-volunteers .row .block-border {
  background-color: #F4F4F5;
  padding: 30px;
  height: 100%;
  position: relative;
}
.meet-our-volunteers .row .block-border a {
  color: #3A4A49;
}
.meet-our-volunteers .row .block-border:first-child, .meet-our-volunteers .row .block-border:last-child {
  width: 40%;
  max-width: 400px;
}
@media (max-width: 991px) {
  .meet-our-volunteers .row .block-border:first-child, .meet-our-volunteers .row .block-border:last-child {
    width: 100%;
    max-width: 100%;
  }
}
.meet-our-volunteers .row .block-border:first-child h2, .meet-our-volunteers .row .block-border:last-child h2 {
  text-align: left;
}
.meet-our-volunteers .row .block-border:nth-child(2) {
  width: 50%;
  max-width: 480px;
  background-color: #3A4A49;
  padding: 40px;
  margin-top: -50px;
}
@media (max-width: 1199px) {
  .meet-our-volunteers .row .block-border:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .meet-our-volunteers .row .block-border:nth-child(2) {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}
.meet-our-volunteers .row .block-border:nth-child(2) h2 {
  font-size: 37px;
  line-height: 48px;
  color: #46EBDD;
  text-align: left;
}
@media (max-width: 1440px) {
  .meet-our-volunteers .row .block-border:nth-child(2) h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
.meet-our-volunteers .row .block-border:nth-child(2) p {
  font-size: 26px;
  line-height: 36px;
  color: #ffffff;
}
@media (max-width: 1440px) {
  .meet-our-volunteers .row .block-border:nth-child(2) p {
    font-size: 20px;
    line-height: 24px;
  }
}
.meet-our-volunteers .row .block-border:nth-child(2) .partner-detail {
  margin-top: 120px;
  padding-bottom: 20px;
}
@media (max-width: 1440px) {
  .meet-our-volunteers .row .block-border:nth-child(2) .partner-detail {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .meet-our-volunteers .row .block-border:nth-child(2) .partner-detail {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .meet-our-volunteers .row .block-border:nth-child(2) .partner-detail {
    margin-top: 40px;
  }
}
.meet-our-volunteers .row .block-border::before {
  content: "";
  display: inline-block;
  background-color: #3A4A49;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  height: 127px;
  left: 0;
}
.meet-our-volunteers .row .block-border h2 {
  font-size: 31px;
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  .meet-our-volunteers .row .block-border h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.meet-our-volunteers .row .block-border p {
  font-size: 24px;
  line-height: 34px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
@media (max-width: 1440px) {
  .meet-our-volunteers .row .block-border p {
    font-size: 20px;
    line-height: 24px;
  }
}
.meet-our-volunteers .row .block-border .partner-detail {
  margin-top: 100px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 1440px) {
  .meet-our-volunteers .row .block-border .partner-detail {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .meet-our-volunteers .row .block-border .partner-detail {
    margin-top: 40px;
  }
}
.meet-our-volunteers .row .block-border .partner-detail .partner-img {
  position: relative;
}
.meet-our-volunteers .row .block-border .partner-detail .partner-img::before {
  content: "";
  background-color: #3A4A49;
}
.meet-our-volunteers .row .block-border .partner-detail .partner-img:after {
  content: "";
  background-color: #3A4A49;
  display: block;
}
.meet-our-volunteers .row .block-border .partner-detail .partner-img img {
  width: 140px;
  height: 140px;
  border-radius: 140px;
  border: 5px solid #ffffff;
}
@media (max-width: 767px) {
  .meet-our-volunteers .row .block-border .partner-detail .partner-img img {
    width: 120px;
    height: 120px;
  }
}
.meet-our-volunteers .volunteer-btn {
  padding: 100px 0 45px;
  text-align: center;
}
@media (max-width: 991px) {
  .meet-our-volunteers .volunteer-btn {
    padding: 60px 0 20px;
  }
}

.support-sec > div {
  padding-top: 54px;
  padding-bottom: 61px;
}
.support-sec .row {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.support-sec .row .col {
  width: 50%;
}
@media (max-width: 767px) {
  .support-sec .row .col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .support-sec .row .content-col .main-title,
  .support-sec .row .content-col .desc {
    text-align: center;
  }
}
.support-sec .row .content-col .col-inner {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .support-sec .row .content-col .col-inner {
    padding-left: 0px;
  }
}
.support-sec .row .img-col img {
  display: block;
  max-width: 516px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .support-sec .row .img-col img {
    max-width: 310px;
    margin: 10px auto 0;
  }
}
.support-sec .row .img-col .btn-wrap {
  text-align: center;
}
.support-sec .row .img-col .primary-btn {
  display: none;
}
@media (max-width: 767px) {
  .support-sec .row .img-col .primary-btn {
    display: inline-block;
    margin-top: 30px;
  }
}
.support-sec .row .primary-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .support-sec .row .primary-btn {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .support-sec .row .primary-btn {
    display: none;
  }
}
.support-sec .space-60 .content-col .col-inner {
  padding-left: 0;
}

.support-section .campaign-blocks.support-sec .title-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;
}
.support-section .campaign-blocks.support-sec .row {
  row-gap: 30px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: initial;
}
@media (max-width: 1440px) {
  .support-section .campaign-blocks.support-sec .row {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 1199px) {
  .support-section .campaign-blocks.support-sec .row {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.support-section .campaign-blocks.support-sec .row > div {
  width: 48%;
}
@media (max-width: 991px) {
  .support-section .campaign-blocks.support-sec .row > div {
    width: 100%;
  }
}
.support-section .campaign-blocks.support-sec .row > div .block-image-box .block-content h3 {
  font-weight: 600;
}
@media (max-width: 767px) {
  .support-section .campaign-blocks.support-sec .row > div .block-image-box .block-content .primary-btn {
    display: inline-block;
  }
}

.heading-sec > div {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .heading-sec > div {
    padding-top: 60px;
    padding-bottom: 25px;
  }
}
.heading-sec .desc {
  max-width: 847px;
  margin: 0 auto;
}
.heading-sec .btn-wrap {
  margin-top: 40px;
}

.opportunities-volunteer {
  padding: 75px 0;
}
.opportunities-volunteer h2 {
  text-align: center;
}
@media (max-width: 575px) {
  .opportunities-volunteer h2 {
    font-size: 34px;
  }
}
.opportunities-volunteer p {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 5px 0 40px;
}
@media (max-width: 767px) {
  .opportunities-volunteer p {
    padding: 5px 0 30px;
  }
}
.opportunities-volunteer span {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.opportunities-volunteer span a {
  position: relative;
}
.opportunities-volunteer span a::before {
  content: "+";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: -20px;
}
.opportunities-volunteer span a.learn-btn {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  text-decoration: underline;
  font-family: "Poppins", sans-serif;
}
.opportunities-volunteer span a.learn-btn:hover {
  text-decoration: none;
  color: #EBC72F;
}
.opportunities-volunteer span a.learn-btn:hover::before {
  color: #EBC72F;
}

.bono-referral .bono-banner-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: 0 auto;
  padding: 75px 0 230px;
}
@media (max-width: 1440px) {
  .bono-referral .bono-banner-section {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 1199px) {
  .bono-referral .bono-banner-section {
    max-width: 100%;
    padding: 70px 0 150px;
  }
}
@media (max-width: 991px) {
  .bono-referral .bono-banner-section {
    padding: 40px 0 80px;
  }
}
.bono-referral .bono-banner-section > div {
  display: flex;
  background-color: #3A4A49;
}
.bono-referral .bono-banner-section .referral-left-banner {
  width: 36.5%;
}
@media (max-width: 991px) {
  .bono-referral .bono-banner-section .referral-left-banner {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .bono-referral .bono-banner-section .referral-left-banner img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .bono-referral .bono-banner-section .referral-left-banner img {
    max-height: 440px;
  }
}
.bono-referral .bono-banner-section .referral-right-content {
  width: 63.5%;
  flex-direction: column;
  padding: 30px 44px 38px;
}
@media (max-width: 991px) {
  .bono-referral .bono-banner-section .referral-right-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .bono-referral .bono-banner-section .referral-right-content {
    padding: 32px 20px 32px;
  }
}
@media (max-width: 767px) {
  .bono-referral .bono-banner-section .referral-right-content h3 {
    font-size: 32px;
  }
}
.bono-referral .bono-banner-section .referral-right-content p {
  color: #ffffff;
  max-width: 500px;
}
.bono-referral .bono-banner-section .referral-right-content a {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.bono-referral .bono-banner-section.bono-custom-sec {
  padding: 30px 0;
}
.bono-referral .bono-banner-section.bono-custom-sec .referral-left-banner img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .bono-referral .bono-banner-section.bono-custom-sec .referral-left-banner img {
    height: 300px;
  }
}

.block-border {
  position: relative;
}
.block-border:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10px;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.block-border.blue-dark::after {
  background-color: #46EBDD;
}
.block-border.yello-dark::after {
  background-color: #EBC72F;
}
.block-border.blue-light::after {
  background-color: #78D3FF;
}
.block-border.orange-light::after {
  background-color: #EB7C46;
}
.block-border.border-oceanblue::after {
  background-color: #46EBDD;
}
.block-border.border-yellow:after {
  background-color: #EBC72F;
}
.block-border.border-orange:after {
  background-color: #EB7C46;
}
.block-border.border-lightblue:after {
  background-color: #78D3FF;
}

.campaign-blocks {
  padding: 40px 0 80px;
}
@media (max-width: 767px) {
  .campaign-blocks {
    padding: 30px 0 60px;
  }
}
.campaign-blocks .row {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 70px;
}
@media (max-width: 1200px) {
  .campaign-blocks .row {
    -moz-column-gap: 70px;
         column-gap: 70px;
    row-gap: 60px;
  }
}
.campaign-blocks .row > div {
  width: 46%;
  padding: 0;
}
@media (max-width: 991px) {
  .campaign-blocks .row > div {
    width: 100%;
    margin: 0 50px;
  }
}
@media (max-width: 767px) {
  .campaign-blocks .row > div {
    margin: 0 30px;
  }
}
.campaign-blocks .block-border .block-image-box {
  background-color: #F4F4F5;
  height: 100%;
}
.campaign-blocks .block-border .block-img img {
  width: 100%;
}
.campaign-blocks .block-border .block-content {
  padding: 35px;
}
@media (max-width: 991px) {
  .campaign-blocks .block-border .block-content {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .campaign-blocks .block-border .block-content h3 {
    font-size: 30px;
    line-height: 38px;
  }
}
.campaign-blocks .block-border .block-content p {
  margin: 15px 0 60px;
}
@media (max-width: 991px) {
  .campaign-blocks .block-border .block-content p {
    margin: 10px 0 30px;
  }
}

.news-hero-section a:not(.reset-news) {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.news-hero-section a:not(.reset-news):hover {
  color: #009F92;
}
.news-hero-section a:not(.reset-news).primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.news-hero-section .news-hero-main {
  position: relative;
}
.news-hero-section .news-hero-main::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 0, -100% 120%);
          clip-path: polygon(100% 0, 0 0, -100% 120%);
  background-color: #46EBDD;
  width: 50%;
  height: 220%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .news-hero-section .news-hero-main::before {
    height: 130%;
  }
}
@media (max-width: 575px) {
  .news-hero-section .news-hero-main::before {
    height: 100%;
  }
}
.news-hero-section .news-hero-main h1 {
  text-align: center;
}
@media (max-width: 767px) {
  .news-hero-section .news-hero-main h1 {
    font-size: 42px;
    line-height: 52px;
  }
}
.news-hero-section .news-hero-main .news-hero-content {
  padding-left: calc((100% - 1396px + 30px) / 2);
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 56px;
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-hero-content {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.news-hero-section .news-hero-main .news-hero-content .filter {
  padding-top: 70px;
  text-align: center;
  width: 630px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-hero-content .filter {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .news-hero-section .news-hero-main .news-hero-content .filter {
    width: 450px;
  }
}
@media (max-width: 480px) {
  .news-hero-section .news-hero-main .news-hero-content .filter {
    width: 340px;
    padding-top: 10px;
  }
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-top {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-top p {
  font-size: 17px;
  line-height: 30px;
  color: #3A4A49;
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-top a {
  font-size: 15px;
  line-height: 30px;
  color: #979797;
  font-family: "Roboto", sans-serif;
  position: relative;
  text-transform: uppercase;
  padding-right: 18px;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-top a:hover {
  color: #000000;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-top a:hover::after {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-top a:after {
  content: "";
  background-image: url("../images/close-grey.png");
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 39%;
  transform: translate(0, -50%);
  right: 0;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down {
  padding-bottom: 60px;
  text-align: initial;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 {
  width: 100% !important;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection {
  border: 0;
  outline: 0;
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 630px;
  z-index: 1;
  background-color: #3A4A49;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s;
  padding: 18px 20px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1440px) {
  .news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    font-size: 16px;
    line-height: 26px;
  }
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
  content: "";
  background-image: url(../images/down-arrow-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 100%;
  transform: translate(0, -20%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
    width: 20px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
    transform: translate(0, -50%);
    width: 20px;
  }
}
@media (max-width: 480px) {
  .news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
    right: 12px;
    width: 18px;
    height: 16px;
  }
}
.news-hero-section .news-hero-main .news-hero-content .filter .filter-drop-down .select2 .selection .select2-selection__arrow b {
  border: 0;
}
.news-hero-section .news-hero-main .news-content-block {
  background-color: rgba(138, 143, 157, 0.2);
  margin: 55px 0 75px;
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-content-block {
    background-color: #F4F4F5;
  }
}
@media (max-width: 767px) {
  .news-hero-section .news-hero-main .news-content-block {
    margin: 40px 30px;
  }
}
.news-hero-section .news-hero-main .news-content-block .row {
  display: flex;
  flex-wrap: wrap;
}
.news-hero-section .news-hero-main .news-content-block .row .block-image {
  width: 47%;
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-content-block .row .block-image {
    width: 100%;
  }
}
.news-hero-section .news-hero-main .news-content-block .row .block-image img {
  width: 100%;
  height: 100%;
}
.news-hero-section .news-hero-main .news-content-block .row .block-content {
  width: 53%;
  padding: 42px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .news-content-block .row .block-content {
    padding: 30px;
    width: 100%;
  }
}
.news-hero-section .news-hero-main .news-content-block .row .block-content h2 {
  font-weight: bold;
  color: #009F92;
  margin-bottom: 0;
}
.news-hero-section .news-hero-main .news-content-block .row .block-content span.date {
  font-size: 19px;
  line-height: 27px;
  padding: 6px 0;
  display: block;
}
.news-hero-section .news-hero-main .news-content-block .row .block-content h3 {
  max-width: 610px;
  line-height: 40px;
  margin-bottom: 15px;
}
.news-hero-section .news-hero-main .news-content-block .row .block-content p {
  max-width: 500px;
}
.news-hero-section .news-hero-main .news-content-block .row .block-content a {
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.news-hero-section .news-hero-main .loader-ajax-news {
  position: absolute;
  top: 40%;
  transform: translate(0px, -50%);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .news-hero-section .news-hero-main .loader-ajax-news {
    top: 25%;
  }
}
.news-hero-section .news-hero-main .loader-ajax-news::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 100%;
  display: inline-block;
  top: 50%;
  transform: translate(0px, -50%);
  margin: auto;
  height: 100%;
  left: 0;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content {
  width: 85%;
  margin: 0 auto;
  padding-left: initial;
  padding-bottom: 90px;
}
@media (max-width: 1199px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content {
    width: 90%;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search {
  padding-bottom: 35px;
  padding-top: 30px;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 5px;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: initial;
  margin-right: initial;
}
@media (max-width: 767px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row {
    flex-direction: column;
    row-gap: 30px;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div {
  width: 48%;
}
@media (max-width: 767px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div {
    width: 100%;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div input {
  width: 100%;
  background-color: #F4F4F5;
  color: #3A4A49;
  font-size: 22px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  border: 0;
  outline: 0;
  height: 66px;
  padding-left: 20px;
  padding-right: 60px;
}
@media (max-width: 1440px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div input {
    font-size: 18px;
    line-height: 26px;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div input::-webkit-input-placeholder,
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div input:-moz-placeholder {
  color: #3A4A49;
  font-size: 22px;
  line-height: 33px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div:before {
  content: "";
  background-image: url("../images/search-bar-icon-grey.svg");
  background-size: 23px 23px;
  display: inline-block;
  width: 23px;
  height: 23px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-search > .row > div .loader-search {
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  right: 50px;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters {
  padding-top: 15px;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 5px;
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row {
  display: flex;
}
@media (max-width: 991px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row {
    flex-direction: column;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .filter {
  padding-top: 0;
}
@media (max-width: 991px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .filter {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .filter .filter-drop-down {
    padding-bottom: 50px;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
  width: 100%;
  padding: 16px 20px;
}
@media (max-width: 480px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    padding: 16px 12px;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .col-filter-type,
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .col-filter-cat {
  width: 41%;
  display: flex;
}
@media (max-width: 991px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .col-filter-type,
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .col-filter-cat {
    width: 100%;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .col-filter-date {
  width: 16.8%;
  padding-right: 0;
  display: flex;
}
@media (max-width: 991px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .row .col-filter-date {
    width: 100%;
    padding-right: 15px;
  }
}
.news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .loader-ajax-news {
  top: 85%;
}
@media (max-width: 1199px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .loader-ajax-news {
    top: 65%;
  }
}
@media (max-width: 991px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .loader-ajax-news {
    top: 45%;
  }
}
@media (max-width: 767px) {
  .news-hero-section.publication-section .news-hero-main .news-hero-content .publication-filters .loader-ajax-news {
    top: 50%;
  }
}

body .select2-container--open .select2-dropdown {
  top: 40px;
  border: 0;
}
@media (max-width: 1440px) {
  body .select2-container--open .select2-dropdown {
    top: 36px;
  }
}
@media (max-width: 991px) {
  body .select2-container--open .select2-dropdown {
    top: 23px;
  }
}
@media (max-width: 575px) {
  body .select2-container--open .select2-dropdown {
    top: 22px;
  }
}
body .select2-container--open .select2-dropdown.select2-dropdown--above {
  top: 0px;
}
body .select2-container--open .select2-dropdown .select2-results ul li {
  background-color: #3A4A49;
  color: #BCBCBC;
  padding-left: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid #BCBCBC;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 25px;
  font-weight: 600;
  font-size: 22px;
}
body .select2-container--open .select2-dropdown .select2-results ul li:first-child {
  border-top: 1px solid #BCBCBC;
}
body .select2-container--open .select2-dropdown .select2-results ul li:last-child {
  border-bottom: 0px solid #BCBCBC;
}
body .select2-container--open .select2-dropdown .select2-results ul li:hover {
  color: #46EBDD;
}

.news-event-list-section {
  padding-bottom: 170px;
}
@media (max-width: 1199px) {
  .news-event-list-section {
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .news-event-list-section {
    padding-bottom: 40px;
  }
}
.news-event-list-section .row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 1440px) {
  .news-event-list-section .row {
    row-gap: 30px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .news-event-list-section .row {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
.news-event-list-section .row.news-content-block-slider > div {
  width: 100% !important;
}
.news-event-list-section .row > div {
  width: 31%;
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .news-event-list-section .row > div {
    width: 47%;
  }
}
@media (max-width: 767px) {
  .news-event-list-section .row > div {
    width: 70%;
    margin: 0 auto;
    justify-content: center;
  }
}
@media (max-width: 670px) {
  .news-event-list-section .row > div {
    width: 80%;
    margin: 0 auto;
    justify-content: center;
  }
}
.news-event-list-section .row .slick-list {
  padding-left: 0 !important;
  padding-right: 470px !important;
}
@media only screen and (max-width: 1440px) {
  .news-event-list-section .row .slick-list {
    padding-right: 360px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .news-event-list-section .row .slick-list {
    padding-right: 300px !important;
  }
}
@media only screen and (max-width: 991px) {
  .news-event-list-section .row .slick-list {
    padding-right: 250px !important;
  }
}
@media only screen and (max-width: 575px) {
  .news-event-list-section .row .slick-list {
    padding-right: 150px !important;
  }
}
@media only screen and (max-width: 480px) {
  .news-event-list-section .row .slick-list {
    padding-right: 50px !important;
  }
}
.news-event-list-section .row .slick-list .slick-track {
  display: flex;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .news-event-list-section .row .slick-list .slick-track {
    margin-bottom: 0;
  }
}
.news-event-list-section .row .slick-list .slick-track .slick-slide {
  height: auto;
}
.news-event-list-section .row .slick-arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 70px;
  filter: invert(24%) sepia(31%) saturate(267%) hue-rotate(127deg) brightness(96%) contrast(87%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .news-event-list-section .row .slick-arrow {
    display: none;
  }
}
.news-event-list-section .row .slick-arrow:hover {
  opacity: 0.7;
}
.news-event-list-section .row .slick-arrow.nextArrow {
  left: 90px;
}
.news-event-list-section .row .prevArrow {
  font-size: 0;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/arrow-left.svg");
}
.news-event-list-section .row .nextArrow {
  font-size: 0;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/arrow-right.svg");
}
.news-event-list-section .row .news-btn {
  width: 100%;
  justify-content: center;
  padding-top: 100px;
}
@media (max-width: 1199px) {
  .news-event-list-section .row .news-btn {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .news-event-list-section .row .news-btn {
    padding-top: 20px;
  }
}
.news-event-list-section .news-list-item {
  background-color: #F4F4F5;
  padding: 30px 30px 75px;
  transition: 0.5s all ease-out;
  height: 100%;
}
.news-event-list-section .news-list-item a {
  color: #3A4A49;
}
.news-event-list-section .news-list-item p a:not(.reset-news) {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.news-event-list-section .news-list-item p a:not(.reset-news):hover {
  color: #009F92;
}
.news-event-list-section .news-list-item p a:not(.reset-news).primary-btn {
  display: inline-block;
  color: #3A4A49;
}
@media (max-width: 1199px) {
  .news-event-list-section .news-list-item {
    padding: 20px 20px 55px;
  }
}
@media (max-width: 575px) {
  .news-event-list-section .news-list-item {
    padding: 20px 20px 35px;
  }
}
.news-event-list-section .news-list-item:hover {
  background-color: #46EBDD;
}
.news-event-list-section .news-list-item:hover .date, .news-event-list-section .news-list-item:hover .small-title, .news-event-list-section .news-list-item:hover .sub-title, .news-event-list-section .news-list-item:hover p {
  color: #3A4A49;
}
.news-event-list-section .news-list-item a {
  text-decoration: none;
}
@media (max-width: 767px) {
  .news-event-list-section .news-list-item a .news-item-img img {
    width: 100%;
  }
}
.news-event-list-section .news-list-item a .news-item-content h2 {
  font-weight: bold;
  color: #009F92;
  margin-bottom: 0;
  padding: 15px 0 0;
}
.news-event-list-section .news-list-item a .news-item-content span.date {
  font-size: 19px;
  line-height: 27px;
  padding: 6px 0;
  display: block;
  color: #3A4A49;
}
.news-event-list-section .news-list-item a .news-item-content h3 {
  max-width: 610px;
  line-height: 40px;
  margin-bottom: 15px;
  margin-top: 4px;
  color: #3A4A49;
  text-decoration: none !important;
  font-size: 26px !important;
  line-height: 36px !important;
}
@media (max-width: 575px) {
  .news-event-list-section .news-list-item a .news-item-content h3 {
    font-size: 22px !important;
    line-height: 30px !important;
  }
}
.news-event-list-section .news-list-item a .news-item-content p {
  max-width: 500px;
  font-size: 19px;
  line-height: 27px;
  color: #3A4A49;
}
.news-event-list-section .news-list-item .news-item-img img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 575px) {
  .news-event-list-section .news-list-item .news-item-img img {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .news-event-list-section.publication-list-section .listing-posts > div {
    flex-direction: column;
  }
}
.news-event-list-section.bulletin-list .listing-posts {
  row-gap: 30px;
}
.news-event-list-section.bulletin-list .listing-posts .col {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199px) {
  .news-event-list-section.bulletin-list .listing-posts .col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-event-list-section.bulletin-list .listing-posts .col .news-list-item .news-item-content .sub-title, .news-event-list-section.bulletin-list .listing-posts .col .news-list-item .news-item-content .date {
  display: inline;
}
.news-event-list-section.bulletin-list .listing-posts .col .news-list-item .news-item-content .date {
  font-size: 18px;
  display: inline;
  font-weight: 400;
  color: #009F92;
  text-transform: capitalize;
}
.news-event-list-section.bulletin-list .listing-posts .col .news-list-item .news-item-content p {
  display: none;
}
.news-event-list-section.bulletin-list .listing-posts .col-12 {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199px) {
  .news-event-list-section.bulletin-list .listing-posts .col-12 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item {
  width: 100%;
  background-color: transparent !important;
  padding: 0 !important;
  border-bottom: 1px solid #D8D8D8;
  transition: all 0.5s;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item a .news-item-img {
  display: none;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item a .news-item-content .sub-title {
  font-size: 18px;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item a .news-item-content .sub-title .date {
  font-size: 18px;
  display: inline;
  font-weight: 400;
  color: #009F92;
  text-transform: capitalize;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item a .news-item-content .small-title {
  margin-top: 0;
  font-size: 20px !important;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item:hover .news-item-content .sub-title {
  color: #009F92;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item:hover .news-item-content .sub-title .date {
  color: #009F92;
}
.news-event-list-section.bulletin-list .listing-posts .news-list-item:hover .news-item-content .small-title {
  color: #009F92;
}

.news-fix-block {
  padding: 80px 0 100px;
}
@media (max-width: 991px) {
  .news-fix-block {
    padding: 60px 0 60px;
  }
}
.news-fix-block .desc {
  max-width: 960px;
  margin: 0 auto;
}
.news-fix-block .news-event-list-section {
  padding-top: 40px;
  padding-bottom: initial;
}
.news-fix-block .btn-wrap {
  padding: 80px 0 60px;
}
@media (max-width: 767px) {
  .news-fix-block .btn-wrap a.primary-btn {
    font-size: 18px;
    line-height: 24px;
  }
}

.content_section .news-detail-content {
  padding: 30px 0 20px;
}
.content_section .news-detail-content .news-detail-container .small-title, .content_section .news-detail-content .news-detail-container .sub-title {
  margin-top: 0;
}
.content_section .news-detail-content .news-detail-container .text p:last-child {
  margin-bottom: 0;
}

.single-news-events .news-detail-content h3 {
  color: #3A4A49;
}
.single-news-events .news-detail-content h4,
.single-news-events .news-detail-content h5,
.single-news-events .news-detail-content h6 {
  font-size: 31px;
  line-height: 1.25;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  font-style: normal;
  color: #3A4A49;
}
.single-news-events .news-detail-content table {
  margin-bottom: 20px;
}

.breadcrumb-section {
  padding: 15px 0;
}
.breadcrumb-section .news-detail-container {
  max-width: 1396px;
}
@media (max-width: 1440px) {
  .breadcrumb-section .news-detail-container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 1199px) {
  .breadcrumb-section .news-detail-container {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-section .news-detail-container {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section .news-detail-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.breadcrumb-section ul {
  display: flex;
  align-items: center;
}
.breadcrumb-section ul li {
  position: relative;
  padding: 0 12px;
}
.breadcrumb-section ul li::before {
  display: none;
}
@media (max-width: 991px) {
  .breadcrumb-section ul li {
    line-height: 18px;
  }
}
.breadcrumb-section ul li:after {
  content: ">";
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 53%;
  right: -5px;
  transform: translate(0px, -50%);
}
.breadcrumb-section ul li:first-child {
  padding-left: 0;
}
.breadcrumb-section ul li:last-child {
  padding-right: 0;
}
.breadcrumb-section ul li:last-child:after {
  display: none;
}
.breadcrumb-section ul li:last-child a {
  text-decoration: none;
  color: #009F92;
}
@media (max-width: 991px) {
  .breadcrumb-section ul li:last-child a {
    line-height: normal;
  }
}
.breadcrumb-section ul li a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.breadcrumb-section ul li a:hover {
  color: #009F92;
}
.breadcrumb-section ul li a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}

.news-detail-banner {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .news-detail-banner {
    margin-bottom: 40px;
  }
}
.news-detail-banner a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.news-detail-banner a:hover {
  color: #009F92;
}
.news-detail-banner a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.news-detail-banner a.primary-btn::before {
  display: none;
}
.news-detail-banner .banner-content {
  padding: 65px 0 90px;
}
@media (max-width: 991px) {
  .news-detail-banner .banner-content {
    padding: 50px 0 60px;
  }
}
.news-detail-banner .banner-content span.date {
  font-size: 20px;
}
.news-detail-banner .banner-content h3 {
  line-height: 52px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .news-detail-banner .banner-content h3 {
    font-size: 32px;
    line-height: 42px;
  }
}
.news-detail-banner .banner-content .post-cat {
  font-weight: 600;
  color: #009F92;
}

.news-detail-content {
  padding: 40px 0 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .news-detail-content {
    padding: 30px 0 0;
  }
}
.news-detail-content h2 {
  margin-bottom: 15px;
}
.news-detail-content h3 {
  text-transform: capitalize;
  color: #009F92;
  margin-bottom: 15px;
}
.news-detail-content p {
  font-size: 19px;
  line-height: 27px;
}
.news-detail-content p.text {
  margin-bottom: 30px;
}
.news-detail-content a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.news-detail-content a:hover {
  color: #009F92;
}
.news-detail-content a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.news-detail-content .text + p {
  margin-bottom: 40px;
}
.news-detail-content .text p:first-child,
.news-detail-content .text p:last-child {
  margin-bottom: 30px;
}
.news-detail-content h4 {
  font-style: italic;
  font-size: 34px;
  line-height: 42px;
  color: #009F92;
  font-weight: 300;
  margin: 10px 0;
  letter-spacing: 0.2px;
}
@media (max-width: 991px) {
  .news-detail-content h4 {
    font-size: 26px;
    line-height: 36px;
    margin: 10px 0 20px;
  }
}
@media (max-width: 767px) {
  .news-detail-content iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}

.news-video {
  padding: 50px 0 70px;
}
@media (max-width: 991px) {
  .news-video {
    padding: 40px 0 40px;
  }
}
.news-video .video_poster_image {
  width: 100%;
  min-height: 670px;
}
@media (max-width: 1199px) {
  .news-video .video_poster_image {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .news-video .video_poster_image {
    min-height: 340px;
  }
}
.news-video video,
.news-video iframe {
  width: 100%;
  min-height: 670px;
}
@media (max-width: 1199px) {
  .news-video video,
  .news-video iframe {
    min-height: 100%;
  }
}
.news-video .col-inner {
  position: relative;
  text-align: center;
}
.news-video .col-inner:after {
  background-color: rgba(30, 30, 30, 0.6);
  content: "";
  width: 85%;
  height: 98%;
  top: 0;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .news-video .col-inner:after {
    width: 100%;
  }
}
.news-video video {
  width: 85%;
  min-height: 670px;
}
@media (max-width: 1440px) {
  .news-video video {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .news-video video {
    min-height: 480px;
  }
}
@media (max-width: 991px) {
  .news-video video {
    min-height: 380px;
  }
}
@media (max-width: 575px) {
  .news-video video {
    min-height: 300px;
  }
}
.news-video .play-button-wrapper {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 1199px) {
  .news-video .play-button-wrapper {
    top: 50%;
  }
}

.image-with-text .content-detail a {
  position: relative;
  color: #3A4A49;
  display: inline-block;
}
.image-with-text .content-detail a:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #009F92;
  transition: all 0.2s;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 1;
}
.image-with-text .content-detail a:hover {
  color: #009F92;
}
.image-with-text .content-detail a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.image-with-text .content-detail a.primary-btn::before {
  display: none;
}
.image-with-text .content-detail p {
  font-size: 19px;
  line-height: 27px;
}
.image-with-text .content-detail .row {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .image-with-text .content-detail .row {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.image-with-text .content-detail .row .img-block {
  width: 48%;
}
@media (max-width: 991px) {
  .image-with-text .content-detail .row .img-block {
    width: 100%;
    padding-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .image-with-text .content-detail .row .img-block img {
    width: 100%;
  }
}
.image-with-text .content-detail .row .text-block {
  width: 50%;
}
@media (max-width: 991px) {
  .image-with-text .content-detail .row .text-block {
    width: 100%;
  }
}
.image-with-text .news-detail-container .content-detail > .row {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .image-with-text .news-detail-container .content-detail > .row {
    margin-bottom: 25px;
  }
}

.list-sec {
  padding-bottom: 200px;
}
@media (max-width: 1440px) {
  .list-sec {
    padding-bottom: 150px;
  }
}
@media (max-width: 1199px) {
  .list-sec {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .list-sec {
    padding-bottom: 60px;
  }
}
.list-sec ul {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .list-sec ul {
    margin-top: 30px;
  }
}
.list-sec ul li {
  font-size: 19px;
  line-height: 27px;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .list-sec ul li {
    margin-bottom: 10px;
  }
}
.list-sec ul li span {
  color: #009F92;
  padding-right: 15px;
}

.news-video .icon-close.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentcolor;
  float: right;
}
.news-video .modal {
  z-index: 10000;
  /* 1 */
  /*    top: 0;*/
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50%;
  transform: translate(0px, -50%);
}
.news-video .modal.is-visible {
  visibility: visible;
}
.news-video .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.news-video .modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.news-video .modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 50%;
  transform: translate(0px, -50%) !important;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  height: 70%;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}
@media (max-width: 991px) {
  .news-video .modal-wrapper {
    top: 50%;
    transform: translate(0, -50%) !important;
    width: 80%;
    height: 60%;
  }
}
@media (max-width: 767px) {
  .news-video .modal-wrapper {
    height: 50%;
  }
}
@media (max-width: 575px) {
  .news-video .modal-wrapper {
    width: 90%;
  }
}
.news-video .modal-wrapper .modal-body {
  height: 95%;
}
@media (max-width: 767px) {
  .news-video .modal-wrapper .modal-body {
    height: 93%;
  }
}
.news-video .modal-wrapper .modal-body .modal-content {
  height: 100%;
}
.news-video .modal-wrapper .modal-body .modal-content iframe {
  height: 98%;
}
@media (max-width: 480px) {
  .news-video .modal-wrapper .modal-body .modal-content iframe {
    height: 95%;
  }
}
.news-video .modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.news-video .modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.news-video .modal-header,
.news-video .modal-content {
  padding: 1em;
}
.news-video .modal-content iframe {
  min-height: 350px;
}
@media (max-width: 767px) {
  .news-video .modal-content iframe {
    min-height: 300px;
  }
}
.news-video .modal-header {
  position: relative;
}
.news-video .modal-close {
  position: absolute;
  top: 30%;
  right: 1%;
  padding: 1em;
  color: #000;
  background: none;
  border: 0;
}
.news-video .modal-close:hover {
  color: #777;
}
.news-video .modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.news-video .modal-content > *:first-child {
  margin-top: 0;
}
@media (max-width: 991px) {
  .news-video .modal-content > *:first-child {
    min-height: 100%;
  }
}
.news-video .modal-content > *:last-child {
  margin-bottom: 0;
}
.news-video .news-video video,
.news-video iframe {
  width: 100%;
  min-height: 670px;
}
.news-video .loader-ajax-news {
  position: fixed;
  top: 0;
  left: 0;
  background: #eee;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  text-align: center;
  /* bottom: 0; */
}
.news-video .loader-ajax-news img {
  top: 70%;
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.news-video .poster-img.video-bg {
  position: relative;
  height: 100%;
}
.news-video .poster-img.video-bg::before {
  content: "";
  background-color: rgba(30, 30, 30, 0.6);
  width: 100%;
  height: 99%;
  position: absolute;
}
@media (max-width: 991px) {
  .news-video .poster-img.video-bg::before {
    height: 98.5%;
  }
}

body main.modal-visible {
  position: initial;
}
body main.modal-visible .content-left-right-block {
  position: initial;
}

.page-id-1677 h3 {
  color: #3A4A49;
}
.page-id-1677 h4 {
  font-style: normal;
  color: #3A4A49;
  font-weight: 600;
}

.news-detail-content .news-detail-container h1,
.news-detail-content .news-detail-container h2,
.news-detail-content .news-detail-container h3,
.news-detail-content .news-detail-container h4,
.news-detail-content .news-detail-container h5,
.news-detail-content .news-detail-container h6 {
  margin-top: 45px;
  margin-bottom: 20px;
}

/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
.area-of-work {
  padding: 60px 0 80px;
}
@media (max-width: 991px) {
  .area-of-work {
    padding: 40px 0;
  }
}
.area-of-work .area-text p {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}
.area-of-work .tabbing-sec {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec {
    margin: 40px 15px;
  }
}
.area-of-work .tabbing-sec .tabs {
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  background: white;
  width: 100%;
  height: auto;
  border-radius: 5px;
  min-width: 300px;
  background-color: #F4F4F5;
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs {
    flex-wrap: wrap;
  }
}
.area-of-work .tabbing-sec .tabs input[name=tab-control] {
  display: none;
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs .content {
    display: none;
  }
}
.area-of-work .tabbing-sec .tabs .content section h2,
.area-of-work .tabbing-sec .tabs ul li label {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 18px;
  color: #428BFF;
}
.area-of-work .tabbing-sec .tabs ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  width: 50%;
  background-color: #3A4A49;
  padding: 30px 40px 70px;
}
@media (max-width: 1440px) {
  .area-of-work .tabbing-sec .tabs ul {
    padding: 20px 20px 40px;
  }
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs ul {
    width: 100%;
    padding: 20px;
  }
}
.area-of-work .tabbing-sec .tabs ul li {
  box-sizing: border-box;
  flex: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 0;
  text-align: left;
  position: relative;
  transition: all 0.4s;
}
.area-of-work .tabbing-sec .tabs ul li::before {
  display: none;
}
@media (max-width: 1199px) {
  .area-of-work .tabbing-sec .tabs ul li {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs ul li {
    padding: 8px 0;
  }
}
@media (max-width: 1250px) {
  .area-of-work .tabbing-sec .tabs ul li label {
    line-height: initial;
  }
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs ul li label {
    background-color: transparent !important;
  }
}
@media (max-width: 1250px) {
  .area-of-work .tabbing-sec .tabs ul li br {
    display: none !important;
  }
}
.area-of-work .tabbing-sec .tabs ul li:hover span {
  color: #EBC72F;
}
.area-of-work .tabbing-sec .tabs ul li:hover:after {
  content: "";
  background-image: url("../images/active-arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 42px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: -64px;
}
@media (max-width: 1440px) {
  .area-of-work .tabbing-sec .tabs ul li:hover:after {
    width: 36px;
    height: 30px;
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs ul li:hover:after {
    right: -54px;
    width: 32px;
    height: 25px;
  }
}
.area-of-work .tabbing-sec .tabs ul li.active:after {
  content: "";
  background-image: url("../images/active-arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 42px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  right: -64px;
}
@media (max-width: 1440px) {
  .area-of-work .tabbing-sec .tabs ul li.active:after {
    width: 36px;
    height: 30px;
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs ul li.active:after {
    right: -54px;
    width: 32px;
    height: 25px;
  }
}
.area-of-work .tabbing-sec .tabs ul li.active span {
  color: #EBC72F;
}
.area-of-work .tabbing-sec .tabs ul li span {
  font-size: 31px;
  line-height: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.4s;
}
@media (max-width: 1440px) {
  .area-of-work .tabbing-sec .tabs ul li span {
    font-size: 24px;
    line-height: 40px;
  }
}
@media (max-width: 1199px) {
  .area-of-work .tabbing-sec .tabs ul li span {
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs ul li span {
    font-size: 22px;
    line-height: 30px;
  }
}
.area-of-work .tabbing-sec .tabs ul li label {
  transition: all 0.3s ease-in-out;
  color: #929daf;
  padding: 5px auto;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.area-of-work .tabbing-sec .tabs ul li label br {
  display: none;
}
.area-of-work .tabbing-sec .tabs ul li label svg {
  fill: #929daf;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.area-of-work .tabbing-sec .tabs ul li label:hover, .area-of-work .tabbing-sec .tabs ul li label:focus, .area-of-work .tabbing-sec .tabs ul li label:active {
  outline: 0;
  color: #bec5cf;
}
.area-of-work .tabbing-sec .tabs ul li label:hover svg, .area-of-work .tabbing-sec .tabs ul li label:focus svg, .area-of-work .tabbing-sec .tabs ul li label:active svg {
  fill: #bec5cf;
}
.area-of-work .tabbing-sec .tabs .content {
  width: 50%;
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs .content {
    width: 100%;
  }
}
.area-of-work .tabbing-sec .tabs .content section {
  display: none;
  padding: 50px 50px 50px;
  animation-name: content;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .area-of-work .tabbing-sec .tabs .content section {
    padding: 20px 20px 30px;
  }
}
.area-of-work .tabbing-sec .tabs .content section p {
  height: 100%;
  display: flex;
}
.area-of-work .tabbing-sec .tabs .content section h2 {
  color: #428BFF;
  display: none;
}
.area-of-work .tabbing-sec .tabs .content section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #428BFF;
  margin-top: 5px;
  left: 1px;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
  cursor: default;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg {
  fill: #428BFF;
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) a.icon-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
  cursor: default;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg {
  fill: #428BFF;
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) a.icon-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
  cursor: default;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg {
  fill: #428BFF;
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) a.icon-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
  cursor: default;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg {
  fill: #428BFF;
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) a.icon-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
  cursor: default;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label svg {
  fill: #428BFF;
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
    background: rgba(0, 0, 0, 0.08);
  }
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(5):checked ~ .content > section:nth-child(5) {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(5):checked ~ .content > section:nth-child(5) a.icon-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@media (max-width: 1250px) {
  .area-of-work .tabbing-sec .tabs ul li label {
    white-space: initial;
  }
  .area-of-work .tabbing-sec .tabs ul li label br {
    display: initial;
  }
  .area-of-work .tabbing-sec .tabs ul li label svg {
    height: 1.5em;
  }
}
@media (max-width: 750px) {
  .area-of-work .tabbing-sec .tabs ul li label {
    padding: 5px;
    border-radius: 5px;
  }
  .area-of-work .tabbing-sec .tabs .content {
    margin-top: 20px;
  }
  .area-of-work .tabbing-sec .tabs .content section h2 {
    display: block;
  }
}

.area-of-work .tabbing-sec .tabs input[name=tab-control]:nth-of-type(6):checked ~ .content > section:nth-child(6) {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.page-header .half-bg-color {
  position: relative;
}
.page-header .half-bg-color::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 0, -20% 120%);
          clip-path: polygon(100% 0, 0 0, -20% 120%);
  background-color: #46EBDD;
  width: 50%;
  height: 230%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-header .what-we-do {
  padding-top: 90px;
  padding-bottom: 70px;
}
.page-header .what-we-do.space-p-top {
  padding-top: 90px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 991px) {
  .page-header .what-we-do.space-p-top {
    padding-top: 45px;
  }
}
.page-header .what-we-do.space-p-bottom {
  padding-bottom: 70px;
  padding-top: 0px;
}
@media only screen and (max-width: 991px) {
  .page-header .what-we-do.space-p-bottom {
    padding-bottom: 35px;
  }
}
.page-header .what-we-do.space-p-both {
  padding-top: 90px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .page-header .what-we-do.space-p-both {
    padding-top: 45px;
    padding-bottom: 35px;
  }
}
.page-header .what-we-do.no-space {
  padding-top: 0px;
  padding-bottom: 0px;
}
.page-header .what-we-do.no-space .news-detail-container .what-we-do-content .we-do-text {
  padding-top: 0px;
}
.page-header .what-we-do.nocolor.text-left {
  text-align: left;
}
.page-header .what-we-do.nocolor.text-left h1, .page-header .what-we-do.nocolor.text-left h2, .page-header .what-we-do.nocolor.text-left h3, .page-header .what-we-do.nocolor.text-left h4, .page-header .what-we-do.nocolor.text-left h5, .page-header .what-we-do.nocolor.text-left h6 {
  text-align: left;
}
.page-header .what-we-do.nocolor.text-left .we-do-text {
  text-align: left;
}
.page-header .what-we-do.nocolor.text-right {
  text-align: right;
}
.page-header .what-we-do.nocolor.text-right h1, .page-header .what-we-do.nocolor.text-right h2, .page-header .what-we-do.nocolor.text-right h3, .page-header .what-we-do.nocolor.text-right h4, .page-header .what-we-do.nocolor.text-right h5, .page-header .what-we-do.nocolor.text-right h6 {
  text-align: right;
}
.page-header .what-we-do.nocolor.text-right .we-do-text {
  text-align: right;
}
.page-header .what-we-do.nocolor.text-right .we-do-text p {
  text-align: right !important;
}
@media (max-width: 991px) {
  .page-header .what-we-do {
    padding-top: 45px;
    padding-bottom: 35px;
  }
}
.page-header .what-we-do .what-we-do-content {
  position: relative;
  z-index: 1;
}
.page-header .what-we-do .what-we-do-content .title-wrap {
  margin-bottom: 100px;
}
@media (max-width: 1440px) {
  .page-header .what-we-do .what-we-do-content .title-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .page-header .what-we-do .what-we-do-content iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}
.page-header .what-we-do .we-do-text {
  text-align: center;
  max-width: 969px;
  margin: 0 auto;
}
.page-header .what-we-do .we-do-text p:nth-child(2) {
  margin-bottom: 30px;
}
.page-header .what-we-do .we-do-text p:nth-child(3) {
  margin-bottom: 50px;
}
.page-header .what-we-do .we-do-text a {
  margin-top: 5px;
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.page-header .what-we-do .we-do-text a:hover {
  color: #009F92;
}
.page-header .what-we-do .we-do-text a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.page-header .what-we-do .we-do-text a.primary-btn::before {
  display: none;
}
.page-header .what-we-do .news-detail-container .what-we-do-content .title-wrap {
  margin-bottom: 0px;
}
.page-header .what-we-do .news-detail-container .what-we-do-content .title-wrap:empty {
  margin: 0;
}
.page-header .what-we-do .news-detail-container .what-we-do-content .we-do-text {
  padding-top: 70px;
  margin: 0px auto 0;
}
.page-header .what-we-do .news-detail-container .what-we-do-content .we-do-text:empty {
  margin: 0;
}
.page-header .what-we-do .news-detail-container .what-we-do-content .we-do-text h3 {
  font-weight: 600;
}
@media (max-width: 1199px) {
  .page-header .what-we-do .news-detail-container .what-we-do-content .we-do-text h3 {
    font-size: 31px;
  }
}
@media (max-width: 991px) {
  .page-header .what-we-do .news-detail-container .what-we-do-content .we-do-text {
    padding-top: 20px;
    margin: 0px auto 0;
  }
}
.page-header .what-we-do .news-detail-container .what-we-do-content .we-do-text p {
  text-align: left;
  margin-bottom: 15px;
}

.image_grid .news-detail-container .content-detail .row {
  display: flex;
  margin: 0 auto;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 100px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .image_grid .news-detail-container .content-detail .row {
    margin-top: 40px;
    margin-bottom: 30px;
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 575px) {
  .image_grid .news-detail-container .content-detail .row {
    row-gap: 15px;
  }
}

.vision-mision-sec {
  padding: 70px 0 80px;
}
@media (max-width: 991px) {
  .vision-mision-sec {
    padding: 40px 0 50px;
  }
}
.vision-mision-sec a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.vision-mision-sec a:hover {
  color: #009F92;
}
.vision-mision-sec a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.vision-mision-sec a.primary-btn::before {
  display: none;
}
.vision-mision-sec .title-wrap {
  padding-top: 120px;
  padding-bottom: 40px;
}
@media (max-width: 1440px) {
  .vision-mision-sec .title-wrap {
    padding-top: 70px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .vision-mision-sec h3 {
    text-align: left !important;
  }
}
.vision-mision-sec .vision-mision-text {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
.vision-mision-sec .vision-mision-text .sec-content {
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .vision-mision-sec .vision-mision-text .sec-content {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .vision-mision-sec .vision-mision-text .sec-content {
    padding-bottom: 15px;
  }
}
.vision-mision-sec .vision-mision-text .sec-content:last-child {
  padding-bottom: 0;
}
.vision-mision-sec .vision-mision-text .sec-content h6 {
  margin-bottom: 26px;
}
@media (max-width: 991px) {
  .vision-mision-sec .vision-mision-text .sec-content h6 {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .vision-mision-sec .vision-mision-text .sec-content h6 {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .vision-mision-sec .vision-mision-text .sec-content p {
    text-align: left;
    line-height: 1.6;
  }
}

.our-impact .news-section > div {
  padding-top: 100px;
  padding-bottom: 130px;
}
@media (max-width: 991px) {
  .our-impact .news-section > div {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.our-impact .news-section .title-wrap {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 120px;
  position: relative;
  right: calc((100% - 1476px + 30px) / 2);
}
@media (max-width: 1700px) {
  .our-impact .news-section .title-wrap {
    right: calc((100% - 1436px + 30px) / 2);
  }
}
@media (max-width: 1440px) {
  .our-impact .news-section .title-wrap {
    right: 45px;
  }
}
@media (max-width: 1199px) {
  .our-impact .news-section .title-wrap {
    right: calc((100% - 956px + 30px) / 2);
  }
}
@media (max-width: 1023px) {
  .our-impact .news-section .title-wrap {
    right: 0;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 40px;
  }
}
.our-impact .news-section .news-events .history-slider .slick-list {
  padding-left: 0px !important;
  padding-right: 90px !important;
}
@media only screen and (max-width: 1399px) {
  .our-impact .news-section .news-events .history-slider .slick-list {
    padding-right: 70px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .our-impact .news-section .news-events .history-slider .slick-list {
    padding-right: 50px !important;
  }
}
@media only screen and (max-width: 991px) {
  .our-impact .news-section .news-events .history-slider .slick-list {
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .our-impact .news-section .news-events .history-slider .slick-list {
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 575px) {
  .our-impact .news-section .news-events .history-slider .slick-list {
    padding-right: 40px !important;
  }
}
.our-impact .news-section .news-events .history-slider .item .item-inner {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin-right: 70px;
}
@media (max-width: 1440px) {
  .our-impact .news-section .news-events .history-slider .item .item-inner {
    margin-right: 50px;
  }
}
@media (max-width: 1199px) {
  .our-impact .news-section .news-events .history-slider .item .item-inner {
    margin-right: 40px;
  }
}
.our-impact .news-section .news-events .history-slider .item .item-inner .content-wrap .lable {
  padding-bottom: 10px;
  font-size: 31px;
  line-height: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #209E94;
}
@media (max-width: 1440px) {
  .our-impact .news-section .news-events .history-slider .item .item-inner .content-wrap .lable {
    font-size: 26px;
  }
}
.our-impact .news-section .news-events .history-slider .item .item-inner .content-wrap p {
  font-size: 17px;
  line-height: 24px;
}
.our-impact .news-section .news-events .history-slider .item:first-child .item-inner .content-wrap .lable {
  color: #209E94;
}
.our-impact .news-section .news-events .history-slider .item:nth-child(2n) .item-inner .content-wrap .lable, .our-impact .news-section .news-events .history-slider .item:nth-child(6n) .item-inner .content-wrap .lable {
  color: #EBA63B;
}
.our-impact .news-section .news-events .history-slider .item:nth-child(3n) .item-inner .content-wrap .lable {
  color: #4696DB;
}
.our-impact .news-section .news-events .history-slider .item:nth-child(4n) .item-inner .content-wrap .lable {
  color: #EBA63B;
}
.our-impact .news-section .news-events .history-slider .item:nth-child(5n) .item-inner .content-wrap .lable {
  color: #EB7C46;
}
.our-impact .news-section .news-events .history-slider .slick-arrow {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  width: 45px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 0;
}
.our-impact .news-section .news-events .history-slider .slick-arrow.prevArrow {
  background-image: url(../images/left-grey.png);
  left: -150px;
}
.our-impact .news-section .news-events .history-slider .slick-arrow.nextArrow {
  left: 0px;
  background-image: url(../images/left-grey.png);
  transform: rotate(-180deg);
}

.people_list {
  padding: 45px 0;
}
@media (max-width: 1199px) {
  .people_list {
    padding: 35px 0;
  }
}
@media (max-width: 991px) {
  .people_list {
    padding: 20px 0;
  }
}
.people_list .flac-council .title-wrap {
  padding-bottom: 60px;
}
@media (max-width: 1199px) {
  .people_list .flac-council .title-wrap {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .people_list .flac-council .title-wrap {
    padding-bottom: 20px;
  }
}
.people_list .flac-council ul {
  display: flex;
  flex-wrap: wrap;
}
.people_list .flac-council ul li {
  padding-left: 0;
  width: 25%;
  padding-bottom: 60px;
  text-align: center;
}
.people_list .flac-council ul li::before {
  display: none;
}
@media (max-width: 1199px) {
  .people_list .flac-council ul li {
    width: 33%;
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .people_list .flac-council ul li {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .people_list .flac-council ul li {
    width: 100%;
    padding-bottom: 30px;
  }
}
.people_list .flac-council ul li .list-img {
  padding-bottom: 10px;
}
.people_list .flac-council ul li .list-img img {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  border: 6px solid #46EBDD;
  -o-object-fit: cover;
     object-fit: cover;
}
.people_list .flac-council ul li .list-content h5 {
  font-weight: 600;
  color: #009F92;
  text-transform: initial;
  padding: 7px 0 10px;
}
.people_list .flac-council ul li .list-content .btn-wrap a {
  font-size: 20px;
  line-height: 30px;
  color: #3A4A49;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
}

.our-people-sec {
  padding: 50px 0 100px;
}
@media (max-width: 991px) {
  .our-people-sec {
    padding: 35px 0 50px;
  }
}
.our-people-sec a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.our-people-sec a:hover {
  color: #009F92;
}
.our-people-sec a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.our-people-sec a.primary-btn::before {
  display: none;
}
.our-people-sec .title-wrap {
  padding-bottom: 90px;
}
@media (max-width: 1440px) {
  .our-people-sec .title-wrap {
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .our-people-sec .title-wrap {
    padding-bottom: 15px;
  }
}
.our-people-sec .our-people-content-box {
  background-color: #F4F4F5;
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .our-people-sec .our-people-content-box {
    width: 95%;
  }
}
.our-people-sec .our-people-content-box > div {
  display: flex;
  flex-wrap: wrap;
  padding: 42px;
}
@media (max-width: 991px) {
  .our-people-sec .our-people-content-box > div {
    padding: 22px;
  }
}
.our-people-sec .our-people-content-box .our-people-img {
  width: 30%;
}
@media (max-width: 1199px) {
  .our-people-sec .our-people-content-box .our-people-img {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .our-people-sec .our-people-content-box .our-people-img {
    width: 100%;
  }
}
.our-people-sec .our-people-content-box .our-people-img img {
  width: 360px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 991px) {
  .our-people-sec .our-people-content-box .our-people-img img {
    width: 100%;
    height: auto;
  }
}
.our-people-sec .our-people-content-box .block-image-text {
  width: 70%;
  padding-left: 35px;
}
@media (max-width: 1199px) {
  .our-people-sec .our-people-content-box .block-image-text {
    padding-left: 15px;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .our-people-sec .our-people-content-box .block-image-text {
    width: 100%;
    padding-left: 0px;
    padding-top: 24px;
  }
}
.our-people-sec .our-people-content-box .block-image-text .block-content {
  padding-right: 70px;
}
@media (max-width: 1440px) {
  .our-people-sec .our-people-content-box .block-image-text .block-content {
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .our-people-sec .our-people-content-box .block-image-text .block-content {
    padding-right: 0;
  }
}
.our-people-sec .our-people-content-box .block-image-text .block-content h2 {
  margin-bottom: 10px;
}
.our-people-sec .our-people-content-box .block-image-text .block-content h3 {
  text-transform: initial;
  color: #009F92;
  margin-bottom: 35px;
}
@media (max-width: 1440px) {
  .our-people-sec .our-people-content-box .block-image-text .block-content h3 {
    margin-bottom: 15px;
  }
}
.our-people-sec .our-people-content-box .block-image-text .block-content p:last-child {
  margin: 35px 0 0;
}
@media (max-width: 1440px) {
  .our-people-sec .our-people-content-box .block-image-text .block-content p:last-child {
    margin: 15px 0 0;
  }
}
.our-people-sec .our-people-content-box .back-btn {
  padding: 70px 0 0px;
}
@media (max-width: 1440px) {
  .our-people-sec .our-people-content-box .back-btn {
    padding: 35px 0 0;
  }
}
.our-people-sec .our-people-content-box .back-btn a {
  font-size: 20px;
  line-height: 30px;
  color: #3A4A49;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  display: flex;
  align-items: center;
  text-transform: initial;
}
@media (max-width: 767px) {
  .our-people-sec .our-people-content-box .back-btn a {
    padding-left: 0 !important;
  }
}
.our-people-sec .our-people-content-box .back-btn a span.back-icon {
  background-image: url(../images/left-grey.png);
  background-size: 27px 20px;
  width: 27px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

.contact_page_block .flac-clinic-sec {
  padding: 50px 0;
}
@media (max-width: 767px) {
  .contact_page_block .flac-clinic-sec {
    padding: 25px 0;
  }
}
.contact_page_block .flac-clinic-sec a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.contact_page_block .flac-clinic-sec a:hover {
  color: #009F92;
}
.contact_page_block .flac-clinic-sec a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.contact_page_block .flac-clinic-sec a.primary-btn::before {
  display: none;
}
.contact_page_block .flac-clinic-sec .flac-box {
  max-width: 960px;
  margin: 0 auto;
}
.contact_page_block .flac-clinic-sec .flac-box:first-child {
  margin: 0 auto 80px;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-head {
  background-color: #F4F4F5;
  padding: 12px 20px;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-head h3 {
  margin-bottom: 0;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-content {
  padding: 17px 0 0px;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-content a {
  color: #3A4A49;
  display: inline;
  padding-left: 0;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 20px;
  text-transform: initial;
  line-height: 30px;
  position: relative;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-content a:after {
  content: "";
  position: absolute;
  width: calc(100% - 0px);
  transform: scaleX(0);
  height: 1px;
  bottom: -1px;
  left: 0px;
  background-color: #009F92;
  opacity: 0;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-content a:hover {
  color: #009F92;
}
.contact_page_block .flac-clinic-sec .flac-box .flac-content a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.5s ease-out;
}

.legl-right-steps-sec {
  padding-bottom: 100px;
}
.legl-right-steps-sec .stpe1 a,
.legl-right-steps-sec .stpe2 a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.legl-right-steps-sec .stpe1 a:hover,
.legl-right-steps-sec .stpe2 a:hover {
  color: #009F92;
}
.legl-right-steps-sec .stpe1 a.primary-btn,
.legl-right-steps-sec .stpe2 a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.legl-right-steps-sec .stpe1 a.primary-btn::before,
.legl-right-steps-sec .stpe2 a.primary-btn::before {
  display: none;
}
.legl-right-steps-sec .block-border .block-image-box {
  background-color: #F4F4F5;
  height: 100%;
}
.legl-right-steps-sec .block-border .block-img img {
  width: 100%;
}
.legl-right-steps-sec .block-border .block-content {
  padding: 60px 70px;
}
@media (max-width: 991px) {
  .legl-right-steps-sec .block-border .block-content {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .legl-right-steps-sec .block-border .block-content h3 {
    font-size: 30px;
    line-height: 38px;
  }
}
.legl-right-steps-sec .block-border .block-content p {
  margin: 15px 0 40px;
}
@media (max-width: 991px) {
  .legl-right-steps-sec .block-border .block-content p {
    margin: 10px 0 20px;
  }
}
.legl-right-steps-sec .title-wrap {
  margin: 90px 0px 50px;
}
.legl-right-steps-sec .title-wrap h3 {
  font-weight: 400;
}
.legl-right-steps-sec .title-wrap h4 {
  font-size: 22px;
}
.legl-right-steps-sec .title-wrap h4 a {
  color: #3A4A49;
  position: relative;
  white-space: nowrap;
}
.legl-right-steps-sec .title-wrap h4 a::after {
  content: "";
  position: absolute;
  width: calc(100% - 0px);
  transform: scaleX(0);
  height: 1px;
  bottom: -1px;
  left: 0px;
  background-color: #009F92;
  opacity: 0;
}
.legl-right-steps-sec .title-wrap h4 a:hover {
  color: #009F92;
}
.legl-right-steps-sec .title-wrap h4 a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.5s ease-out;
}
.legl-right-steps-sec .title-icon {
  margin-bottom: 20px;
}
.legl-right-steps-sec .stpe1 .title-wrap {
  margin-top: 0px;
}
.legl-right-steps-sec .filter-drop-down-wrap {
  display: flex;
  width: 100%;
  max-width: 832px;
  flex-direction: row;
  margin: auto;
  gap: 0px 5px;
  align-items: self-start;
}
@media (max-width: 480px) {
  .legl-right-steps-sec .filter-drop-down-wrap {
    flex-wrap: wrap;
    gap: 0px 0px;
  }
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down {
  text-align: initial;
  display: inline-block;
  max-width: 100%;
  width: 100%;
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 {
  width: 100% !important;
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection {
  border: 0;
  outline: 0;
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__rendered {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  z-index: 1;
  background-color: #3A4A49;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s;
  padding: 18px 20px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1440px) {
  .legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__rendered {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__rendered {
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__rendered {
    font-size: 16px;
    line-height: 26px;
  }
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__rendered .select2-selection__placeholder {
  color: #ffffff;
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__arrow {
  content: "";
  background-image: url(../images/down-arrow-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 100%;
  transform: translate(0, -20%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__arrow {
    width: 20px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__arrow {
    transform: translate(0, -50%);
    width: 20px;
  }
}
@media (max-width: 480px) {
  .legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__arrow {
    right: 12px;
    width: 18px;
    height: 16px;
  }
}
.legl-right-steps-sec .filter-drop-down-wrap .filter-drop-down .select2 .selection .select2-selection__arrow b {
  border: 0;
}
.legl-right-steps-sec .filter-drop-down-wrap .step1-btn {
  font-size: 21px;
  color: #3A4A49;
  font-family: "Roboto Condensed", sans-serif;
  background-color: #46EBDD;
  display: flex;
  padding: 10px 15px;
  border-radius: 0;
  text-transform: uppercase;
  width: 100%;
  max-width: 133px;
  margin: 3px 0px 0px;
  text-align: center;
  height: 100%;
  align-items: center;
  justify-content: center;
  min-height: 69px;
}
@media (max-width: 1440px) {
  .legl-right-steps-sec .filter-drop-down-wrap .step1-btn {
    min-height: 64px;
  }
}
@media (max-width: 991px) {
  .legl-right-steps-sec .filter-drop-down-wrap .step1-btn {
    font-size: 20px;
    padding: 8px 15px;
    min-height: 50px;
  }
}
@media (max-width: 480px) {
  .legl-right-steps-sec .filter-drop-down-wrap .step1-btn {
    max-width: 100%;
    margin-top: 30px;
  }
}
.legl-right-steps-sec .filter-drop-down-wrap .step1-btn:hover {
  opacity: 0.7;
}

.pila_card_grid a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.pila_card_grid a:hover {
  color: #009F92;
}
.pila_card_grid a.primary-btn {
  display: inline-block;
  color: #ffffff;
}
.pila_card_grid a.primary-btn.text-green {
  color: #3A4A49;
}
.pila_card_grid .pill-card-sec {
  padding: 50px 0 80px;
}
@media (max-width: 991px) {
  .pila_card_grid .pill-card-sec {
    padding: 30px 0 60px;
  }
}
.pila_card_grid .pill-card-sec .row {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media (max-width: 1440px) {
  .pila_card_grid .pill-card-sec .row {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 1199px) {
  .pila_card_grid .pill-card-sec .row {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 991px) {
  .pila_card_grid .pill-card-sec .row {
    row-gap: 40px;
  }
}
.pila_card_grid .pill-card-sec .row > div {
  display: flex;
  width: 30%;
}
@media (max-width: 991px) {
  .pila_card_grid .pill-card-sec .row > div {
    width: 100%;
  }
}
.pila_card_grid .pill-card-sec .row > div .block-image-box .block-content {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .pila_card_grid .pill-card-sec .row > div .block-image-box .block-content {
    padding: 25px;
  }
}
.pila_card_grid .pill-card-sec .row > div .block-image-box .block-content h3 {
  margin-bottom: 0;
  min-height: 80px;
}
@media only screen and (max-width: 991px) {
  .pila_card_grid .pill-card-sec .row > div .block-image-box .block-content h3 {
    min-height: auto;
    margin-bottom: 20px;
  }
}
.pila_card_grid .pill-card-sec .row > div .block-image-box .block-content a {
  margin-top: auto;
}
.pila_card_grid .pill-card-sec .row > div .block-image-box .block-content p:empty {
  display: none;
}

.brand_logos .brand-logo-sec {
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .brand_logos .brand-logo-sec {
    padding-bottom: 60px;
    padding-top: 40px;
  }
}
.brand_logos .brand-logo-sec .row {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 575px) {
  .brand_logos .brand-logo-sec .row {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

.public-detail .public-post {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 0 100px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 991px) {
  .public-detail .public-post {
    padding: 40px 0 50px;
  }
}
.public-detail .public-post .public-banner-image {
  width: 31%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .public-detail .public-post .public-banner-image {
    width: 100%;
  }
}
.public-detail .public-post .public-banner-image img {
  height: 424px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1199px) {
  .public-detail .public-post .public-banner-image img {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .public-detail .public-post .public-banner-image img {
    height: 400px;
    width: 100%;
  }
}
.public-detail .public-post .public-banner-content {
  width: calc(69% - 30px);
  flex-grow: 1;
}
@media (max-width: 767px) {
  .public-detail .public-post .public-banner-content {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.public-detail .public-post .public-banner-content h3 {
  margin-bottom: 12px;
}
.public-detail .public-post .public-banner-content p {
  font-size: 19px;
  line-height: 27px;
}
.public-detail .public-post .public-banner-content h2 {
  margin-bottom: 10px;
}
.public-detail .public-post .public-banner-content a {
  margin-top: 15px;
}

.publication-list-sec {
  padding-bottom: 0;
}
.publication-list-sec .title-wrap {
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .publication-list-sec .title-wrap {
    padding-bottom: 10px;
  }
}
.publication-list-sec > div {
  background-color: rgba(70, 235, 221, 0.2);
  padding: 100px 0;
}
@media (max-width: 991px) {
  .publication-list-sec > div {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .publication-list-sec > div .listing-posts > div {
    flex-direction: column;
  }
}
.publication-list-sec > div .listing-posts .news-list-item {
  background-color: #ffffff;
}
.publication-list-sec > div .listing-posts .news-list-item:hover {
  background-color: #46EBDD;
}
.publication-list-sec > div .listing-posts .news-list-item .news-item-img img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-blog-sec {
  padding: 70px 0 60px;
}
@media (max-width: 991px) {
  .case-blog-sec {
    padding: 40px 0 30px;
  }
}
.case-blog-sec .tabcontent p a, .case-blog-sec .tabcontent div a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.case-blog-sec .tabcontent p a:hover, .case-blog-sec .tabcontent div a:hover {
  color: #009F92;
}
.case-blog-sec .tabcontent p a.primary-btn, .case-blog-sec .tabcontent div a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.case-blog-sec .case-blog-main::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0 0, -100% 120%);
          clip-path: polygon(100% 0, 0 0, -100% 120%);
  background-color: #46EBDD;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .case-blog-sec .case-blog-main::before {
    height: 82%;
  }
}
@media (max-width: 1199px) {
  .case-blog-sec .case-blog-main::before {
    height: 50%;
    width: 60%;
  }
}
.case-blog-sec .case-blog-main .case-blog-content .title-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.case-blog-sec .case-blog-main .case-blog-content .title-wrap a {
  color: #3A4A49;
  text-decoration: underline;
  position: relative;
  text-decoration-color: #009F92;
}
.case-blog-sec .case-blog-main .case-blog-content .title-wrap a:hover {
  color: #009F92;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters {
  padding-top: 70px;
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .case-blog-sec .case-blog-main .case-blog-content .publication-filters {
    padding-top: 40px;
    width: 100%;
  }
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div {
  width: 50%;
}
@media (max-width: 991px) {
  .case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div {
    width: 100%;
  }
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-drop-down {
  padding-bottom: 60px;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-drop-down .select2 {
  width: 100% !important;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-drop-down .select2 .selection .select2-selection {
  border: none;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: -webkit-fill-available;
  z-index: 1;
  background-color: #3A4A49;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s;
  padding: 18px 20px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
  content: "";
  background-image: url(../images/down-arrow-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 100%;
  transform: translate(0, -20%);
  z-index: 1;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-drop-down .select2 .selection .select2-selection__arrow b {
  border: 0;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-top {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-top p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 5px;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-top a {
  font-size: 15px;
  line-height: 30px;
  color: #979797;
  font-family: "Roboto", sans-serif;
  position: relative;
  text-transform: uppercase;
  padding-right: 18px;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .row > div .filter .filter-top a:after {
  content: "";
  background-image: url(../images/close-grey.png);
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 43%;
  transform: translate(0, -50%);
  right: 0;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .loader-ajax-news {
  text-align: center;
}
.case-blog-sec .case-blog-main .case-blog-content .publication-filters .loader-ajax-news::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 100%;
  display: inline-block;
  top: 50%;
  transform: translate(0px, -50%);
  margin: auto;
  height: 100%;
  left: 0;
}

.news-event-list-section.case-list {
  padding-top: 60px;
}
@media (max-width: 991px) {
  .news-event-list-section.case-list {
    padding-top: 30px;
  }
}
.news-event-list-section.case-list .news-list-item {
  padding: 30px 30px 50px;
}
@media (max-width: 991px) {
  .news-event-list-section.case-list .news-list-item {
    padding: 30px;
  }
}
.news-event-list-section.case-list .news-list-item a .news-item-content h4 {
  font-weight: normal;
  text-transform: initial;
}
.news-event-list-section.case-list .news-list-item a .news-item-content p {
  padding-top: 12px;
}

@media (max-width: 991px) {
  .page-template-template-case-book .select2-container .select2-dropdown {
    top: 40px;
  }
}
@media (max-width: 575px) {
  .page-template-template-case-book .select2-container .select2-dropdown {
    top: 40px;
  }
}

.page-template-template-bulletin .case-blog-sec .case-blog-main::before {
  display: none;
}
.page-template-template-bulletin .case-blog-sec .case-blog-main .case-blog-content .publication-filters {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-template-bulletin .case-blog-sec .case-blog-main .case-blog-content .title-wrap {
  text-align: center;
}

.advice_center_bg + .site-main {
  padding-top: 0;
}

.advice_center_bg {
  padding-top: 70px;
  padding-bottom: 90px;
  margin-top: 0px;
}
@media only screen and (max-width: 991px) {
  .advice_center_bg {
    padding-top: 40px;
    padding-bottom: 35px;
  }
}
.advice_center_bg a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.advice_center_bg a:hover {
  color: #009F92;
}
.advice_center_bg a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.advice_center_bg a.primary-btn::before {
  display: none;
}
.advice_center_bg .heading-box {
  margin-bottom: 20px;
}
.advice_center_bg .heading-box .sub-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  text-transform: inherit;
  margin-bottom: 10px;
}
.advice_center_bg .heading-box p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
}
.advice_center_bg .map-container #slidermap {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 410px !important;
  height: 580px !important;
}
@media only screen and (max-width: 767px) {
  .advice_center_bg .map-container #slidermap {
    width: 280px !important;
    height: 400px !important;
  }
}
.advice_center_bg .map-container #slidermap #irelandMap {
  background-color: transparent !important;
}
.advice_center_bg .map-container #slidermap #irelandMap svg {
  transform: scale(0.7);
  transform-origin: left;
  margin-top: -102px;
  margin-left: -25px;
}
@media only screen and (max-width: 767px) {
  .advice_center_bg .map-container #slidermap #irelandMap svg {
    transform: scale(0.47);
    margin-top: -212px;
    margin-left: -5px;
  }
}
@media only screen and (max-width: 480px) {
  .advice_center_bg .map-container #slidermap #irelandMap svg {
    transform: scale(0.45);
    margin-left: 0;
  }
}
.advice_center_bg .map-container #slidermap #dublinMap {
  background-color: transparent !important;
}
@media only screen and (max-width: 767px) {
  .advice_center_bg .map-container #slidermap #dublinMap {
    display: inline-grid;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .advice_center_bg .map-container #slidermap #dublinMap svg {
    transform: scale(0.65);
    transform-origin: left;
    margin-top: -122px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .advice_center_bg .map-container #slidermap #dublinMap svg {
    transform: scale(0.55);
    margin-top: -150px;
    margin-left: 35px;
  }
}
.advice_center_bg .filter {
  padding-top: 40px;
  text-align: center;
  width: 630px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .advice_center_bg .filter {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .advice_center_bg .filter {
    width: 450px;
  }
}
@media (max-width: 480px) {
  .advice_center_bg .filter {
    width: 100%;
    padding-top: 10px;
  }
}
.advice_center_bg .filter .filter-top {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
}
.advice_center_bg .filter .filter-top p {
  font-size: 17px;
  line-height: 30px;
  color: #3A4A49;
  font-family: "Roboto", sans-serif;
  margin-bottom: 8px;
}
.advice_center_bg .filter .filter-top a {
  font-size: 15px;
  line-height: 30px;
  color: #979797;
  font-family: "Roboto", sans-serif;
  position: relative;
  text-transform: uppercase;
  padding-right: 18px;
}
.advice_center_bg .filter .filter-top a:hover {
  color: #000000;
}
.advice_center_bg .filter .filter-top a:hover::after {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}
.advice_center_bg .filter .filter-top a:after {
  content: "";
  background-image: url("../images/close-grey.png");
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 43%;
  transform: translate(0, -50%);
  right: 0;
}
.advice_center_bg .filter .filter-drop-down {
  padding-bottom: 60px;
  text-align: initial;
}
.advice_center_bg .filter .filter-drop-down .select2 {
  width: 100% !important;
}
.advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection {
  border: 0;
  outline: 0;
}
.advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 630px;
  z-index: 1;
  background-color: #3A4A49;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s;
  padding: 18px 20px;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}
@media (max-width: 1440px) {
  .advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 480px) {
  .advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__rendered {
    font-size: 16px;
    line-height: 26px;
  }
}
.advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
  content: "";
  background-image: url(../images/down-arrow-blue.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 100%;
  transform: translate(0, -20%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
    width: 20px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
    transform: translate(0, -50%);
    width: 20px;
  }
}
@media (max-width: 480px) {
  .advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__arrow {
    right: 12px;
    width: 18px;
    height: 16px;
  }
}
.advice_center_bg .filter .filter-drop-down .select2 .selection .select2-selection__arrow b {
  border: 0;
}
.advice_center_bg .county-post-list {
  padding-top: 70px;
}
@media (max-width: 991px) {
  .advice_center_bg .county-post-list {
    padding-top: 35px;
  }
}
.advice_center_bg .county-post-list h2 {
  font-size: 31px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .advice_center_bg .county-post-list h2 {
    font-size: 24px;
  }
}
.advice_center_bg .county-post-list table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.advice_center_bg .county-post-list table tr th {
  background: #46EBDD;
  padding: 20px 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media (max-width: 480px) {
  .advice_center_bg .county-post-list table tr th {
    padding: 15px;
  }
}
.advice_center_bg .county-post-list table tr td {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 10px;
  border-top: 4px solid #dafbf8;
  border-bottom: 4px solid #dafbf8;
}
@media (max-width: 480px) {
  .advice_center_bg .county-post-list table tr td {
    padding: 15px;
  }
}
.advice_center_bg .county-post-list table tr td a {
  font-weight: bold;
  text-transform: uppercase;
}
.advice_center_bg .county-post-list table tr td .telephone, .advice_center_bg .county-post-list table tr td .map_link {
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: inherit;
}
.advice_center_bg .county-post-list table tr td .telephone a, .advice_center_bg .county-post-list table tr td .map_link a {
  font-weight: 400;
}
.advice_center_bg .county-post-list table tr td .map_link a {
  text-decoration: underline;
}

.faq_section a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.faq_section a:hover {
  color: #009F92;
}
.faq_section a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.faq_section a.primary-btn::before {
  display: none;
}
.faq_section .faq-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .faq_section .faq-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.faq_section .faq-section .accordion-sec .accordion {
  max-width: 970px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .faq_section .faq-section .accordion-sec .accordion {
    max-width: 100%;
  }
}
.faq_section .faq-section .accordion-sec .accordion .accordion-title {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #009F92;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-end;
  cursor: pointer;
}
.faq_section .faq-section .accordion-sec .accordion .accordion-title .heading-style-h6 {
  font-size: 22px;
  padding-right: 80px;
  width: calc(100% - 40px);
}
@media only screen and (max-width: 991px) {
  .faq_section .faq-section .accordion-sec .accordion .accordion-title .heading-style-h6 {
    padding-right: 40px;
  }
}
.faq_section .faq-section .accordion-sec .accordion .accordion-title span.arrow-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  transition: all 0.5s;
}
.faq_section .faq-section .accordion-sec .accordion .accordion-title span.arrow-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: #009F92;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}
.faq_section .faq-section .accordion-sec .accordion .accordion-title span.arrow-icon::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #009F92;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}
.faq_section .faq-section .accordion-sec .accordion .accordion-title.active span.arrow-icon::after {
  opacity: 0;
}
.faq_section .faq-section .accordion-sec .accordion .accordion-content {
  padding: 25px 0;
}

.parent-pageid-149 .faq-section {
  padding-top: 0;
}

.petition_form {
  padding: 70px 20px;
}
.petition_form a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.petition_form a:hover {
  color: #009F92;
}
.petition_form a.primary-btn {
  display: inline-block;
  color: #3A4A49;
}
.petition_form a.primary-btn::before {
  display: none;
}
.petition_form .dec {
  padding: 30px 0;
}
.petition_form .title {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .petition_form .title {
    margin-bottom: 15px;
  }
}
.petition_form h3 {
  font-weight: 300;
  font-size: 31px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .petition_form h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.petition_form .meter {
  background: #ffffff;
  display: block;
  height: 35px;
  position: relative;
  max-width: 600px;
  margin: 20px auto;
  border: 1px solid #e3e3e7 !important;
}
.petition_form .meter > span {
  display: block;
  height: 100%;
  background-color: #46EBDD;
  border: 1px solid #46EBDD !important;
  position: relative;
  overflow: hidden;
  transition: width 2s ease-out;
}
.petition_form .petition_form-container {
  background: #F4F4F5;
  padding: 70px 120px;
  max-width: 1199px;
}
@media only screen and (max-width: 1199px) {
  .petition_form .petition_form-container {
    padding: 70px 70px;
  }
}
@media only screen and (max-width: 767px) {
  .petition_form .petition_form-container {
    padding: 40px 25px;
  }
}
.petition_form .petition_form-container .gform_confirmation_message {
  border: 1px solid #e3e3e7;
  padding: 20px;
  color: #3A4A49;
}
.petition_form .petition_form-container .gravity-theme {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 0;
}
@media only screen and (max-width: 1199px) {
  .petition_form .petition_form-container .gravity-theme {
    padding: 20px 0;
  }
}
.petition_form .petition_form-container .gravity-theme .gform_heading {
  display: none;
}
.petition_form .petition_form-container .gravity-theme .gform_body label.gfield_label {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 20px !important;
}
.petition_form .petition_form-container .gravity-theme .gform_body span.gfield_required {
  color: #3A4A49;
  font-size: 16px !important;
  font-family: "Roboto", sans-serif !important;
}
.petition_form .petition_form-container .gravity-theme .gform_body input,
.petition_form .petition_form-container .gravity-theme .gform_body select,
.petition_form .petition_form-container .gravity-theme .gform_body textarea {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #e3e3e7 !important;
  height: 70px !important;
  font-family: "Roboto", sans-serif !important;
  margin-bottom: 10px;
  font-size: 18px;
  color: #3A4A49;
  padding: 10px 25px;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_select {
  position: relative;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_select:before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: auto;
  right: 37px;
  width: 2px;
  height: 18px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(-35deg);
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_select:after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: auto;
  right: 27px;
  width: 2px;
  height: 18px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(35deg);
}
.petition_form .petition_form-container .gravity-theme .gform_body select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_checkbox .gfield_checkbox .gchoice label {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #979797;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_checkbox .gfield_checkbox .gchoice label a {
  color: #979797 !important;
  text-decoration: underline;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_checkbox .gfield_checkbox .gchoice label a::before {
  display: none;
}
.petition_form .petition_form-container .gravity-theme .gform_body .ginput_container_checkbox .gfield_checkbox .gchoice input {
  height: auto !important;
  margin: 0 !important;
  position: relative;
  top: 6px;
}
.petition_form .petition_form-container .gravity-theme.gform_validation_error .validation_message {
  background: transparent !important;
  border: 0px solid #c02b0a;
  font-size: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  margin-top: 5px !important;
}
.petition_form .petition_form-container .gravity-theme .gform_footer {
  justify-content: center;
  margin-top: 70px !important;
  position: relative;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .petition_form .petition_form-container .gravity-theme .gform_footer {
    margin-top: 30px !important;
  }
}
.petition_form .petition_form-container .gravity-theme .gform_footer input[type=submit] {
  text-transform: uppercase;
  padding: 12px 40px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  background-color: #3A4A49;
  opacity: 1 !important;
  border: 0 !important;
  color: #ffffff;
  transition: all 0.5s;
}
@media only screen and (max-width: 1199px) {
  .petition_form .petition_form-container .gravity-theme .gform_footer input[type=submit] {
    font-size: 24px;
  }
}
.petition_form .petition_form-container .gravity-theme .gform_footer input[type=submit]:hover {
  opacity: 0.7 !important;
}
.petition_form .petition_form-container .gravity-theme .gform_footer img {
  position: absolute;
  bottom: 0;
}
.petition_form .petition_form-container .gfield_error label {
  color: #c02b0a !important;
}
.petition_form .petition_form-container .gfield_error label span {
  color: #c02b0a !important;
}

.email_td_form a {
  position: relative;
  color: #3A4A49;
  text-decoration: underline;
  text-decoration-color: #009F92;
}
.email_td_form a:hover {
  color: #009F92;
}
.email_td_form a.primary-btn {
  display: inline;
  color: #3A4A49;
}
.email_td_form a.primary-btn::before {
  display: none;
}
.email_td_form .row .col .title {
  margin-bottom: 35px;
  text-align: center;
  padding-top: 50px;
}
.email_td_form .row .col .dec {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.email_td_form .petition_form-container {
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .email_td_form .petition_form-container {
    padding-bottom: 45px;
  }
}
.email_td_form .petition_form-container .email_td_form_container {
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .email_td_form .petition_form-container .email_td_form_container {
    padding-bottom: 50px;
  }
}
.email_td_form .email_td_form_container {
  background-color: #F4F4F5;
  padding: 70px 30px;
  margin-top: 110px;
}
@media only screen and (max-width: 480px) {
  .email_td_form .email_td_form_container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper {
  max-width: 850px;
  margin: 0 auto;
}
.email_td_form .email_td_form_container .gform_wrapper .ginput_container_select {
  position: relative;
}
.email_td_form .email_td_form_container .gform_wrapper .ginput_container_select::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: auto;
  right: 37px;
  width: 2px;
  height: 16px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(-45deg);
}
.email_td_form .email_td_form_container .gform_wrapper .ginput_container_select::after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: auto;
  right: 27px;
  width: 2px;
  height: 16px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(45deg);
}
.email_td_form .email_td_form_container .gform_wrapper .ginput_container_select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.email_td_form .email_td_form_container .gform_wrapper.gform_validation_error .gform_validation_errors .gform_submission_error {
  color: red;
  border-color: red;
}
.email_td_form .email_td_form_container .gform_wrapper.gform_validation_error .gform_validation_errors .gform_submission_error .gform-icon {
  color: red;
}
.email_td_form .email_td_form_container .gform_wrapper.gform_validation_error .gform_body .gfield_error {
  position: relative;
}
.email_td_form .email_td_form_container .gform_wrapper.gform_validation_error .gform_body .gfield_error .gfield_label {
  color: red;
}
.email_td_form .email_td_form_container .gform_wrapper.gform_validation_error .gform_body .gfield_error .ginput_container .large {
  border-color: red;
}
.email_td_form .email_td_form_container .gform_wrapper.gform_validation_error .gform_body .gfield_error .validation_message {
  position: absolute;
  width: 100%;
  margin: 0;
  margin-top: 0;
  padding: 0;
  background: transparent;
  color: red;
  border: none;
}
.email_td_form .email_td_form_container .gform_wrapper .gf_page_steps {
  border-bottom: 0;
  margin-bottom: 50px;
}
.email_td_form .email_td_form_container .gform_wrapper .gf_page_steps .gf_step {
  display: none !important;
  margin-right: 0 !important;
  width: 100%;
}
.email_td_form .email_td_form_container .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
  display: none !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gf_page_steps .gf_step .gf_step_label {
  font-size: 31px;
  font-weight: 400;
  line-height: 1.2;
  padding-left: 0;
  text-align: center !important;
  width: 100% !important;
  display: block;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 767px) {
  .email_td_form .email_td_form_container .gform_wrapper .gf_page_steps .gf_step .gf_step_label {
    font-size: 26px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gf_page_steps .gf_step .gf_step_label strong {
  font-weight: 600;
}
.email_td_form .email_td_form_container .gform_wrapper .gf_page_steps .gf_step.gf_step_active {
  display: inline-block !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_footer {
  justify-content: center;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_footer .gform_button {
  display: inline-block;
  background-color: #3A4A49;
  color: #ffffff;
  border-color: #3A4A49;
  text-transform: uppercase;
  padding: 12px 20px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_footer .gform_button {
    font-size: 26px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_footer .gform_button:hover {
  opacity: 0.7;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body {
  margin-bottom: 60px;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 480px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields {
    display: flex;
    flex-flow: wrap;
  }
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield {
    width: 100%;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .form-subheading {
  font-size: 24px !important;
  line-height: 1.16;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  color: #3A4A49;
}
@media (max-width: 1199px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .form-subheading {
    font-size: 26px !important;
  }
}
@media (max-width: 767px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .form-subheading {
    font-size: 24px !important;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #3A4A49;
}
@media (max-width: 1440px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_label {
    font-size: 18px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_label .gfield_required {
  color: red;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .ginput_container .large {
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e3e3e7;
  padding: 15px;
  height: 60px;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #3A4A49;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .ginput_container .large {
    font-size: 18px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .ginput_container.ginput_container_multiselect .large {
  padding: 0;
  height: 133px;
}
@media only screen and (max-width: 1440px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .ginput_container.ginput_container_multiselect .large {
    height: 123px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .ginput_container.ginput_container_multiselect .large option {
  padding: 7px 15px;
  background: transparent !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #input_2_17 {
  margin-bottom: 60px;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #input_2_17 .gchoice {
  margin-bottom: 15px;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox .gchoice {
  display: flex;
  gap: 15px;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox] {
  position: relative;
  border: 1px solid #3A4A49;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 5px 0 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  opacity: 1;
  background-color: #fff;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox]:hover {
  opacity: 1;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox]:checked {
  background-color: #3A4A49;
  opacity: 1;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px 0px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #3A4A49;
}
@media (max-width: 1440px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields .gfield_checkbox label {
    font-size: 18px;
  }
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_12 input {
  border-color: #979797 !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_12 label {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #979797 !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_12 label a {
  color: #979797 !important;
  text-decoration: underline;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_12.gfield_error label {
  color: red !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_13 input {
  border: 1px solid #979797 !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_13 label {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #979797 !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_13 label a {
  color: #979797 !important;
  text-decoration: underline;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_body .gform_fields #field_2_13.gfield_error label {
  color: red !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_page_footer {
  margin-top: 30px;
  text-align: center;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_page_footer input[type=button] {
  text-transform: uppercase;
  padding: 12px 40px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  background-color: #3A4A49;
  opacity: 1 !important;
  border: 0 !important;
  color: #ffffff;
  transition: all 0.5s;
  opacity: 1 !important;
}
.email_td_form .email_td_form_container .gform_wrapper .gform_page_footer input[type=button]:hover {
  opacity: 0.7 !important;
}
@media only screen and (max-width: 1080px) {
  .email_td_form .email_td_form_container .gform_wrapper .gform_page_footer input[type=button] {
    font-size: 24px;
  }
}
.email_td_form .email_td_form_container .gform_page_footer {
  text-align: center;
}
.email_td_form .email_td_form_container .gform_page_footer input[type=button], .email_td_form .email_td_form_container .gform_page_footer input[type=submit] {
  text-transform: uppercase;
  padding: 15px 35px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  background-color: #3A4A49;
  opacity: 1 !important;
  border: 0 !important;
  color: #ffffff;
  transition: all 0.5s;
}
@media only screen and (max-width: 1080px) {
  .email_td_form .email_td_form_container .gform_page_footer input[type=button], .email_td_form .email_td_form_container .gform_page_footer input[type=submit] {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .email_td_form .email_td_form_container .gform_page_footer input[type=button], .email_td_form .email_td_form_container .gform_page_footer input[type=submit] {
    padding: 15px 27px;
  }
}
.email_td_form .email_td_form_container .gform_page_footer input[type=button]:hover, .email_td_form .email_td_form_container .gform_page_footer input[type=submit]:hover {
  opacity: 0.7 !important;
}
.email_td_form .email_td_form_container .gform_page_footer input[type=button] {
  background-color: #EBC72F;
  color: #3A4A49;
  margin-right: 10px;
}
.email_td_form .preview_content_wrap .preview_title {
  font-size: 24px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.email_td_form .preview_content_wrap .subject {
  margin-bottom: 60px;
}
.email_td_form .preview_content_wrap .subject label {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.email_td_form .preview_content_wrap .preview_content_data {
  border: 1px solid #e3e3e7;
  padding: 50px 30px;
  background-color: #ffffff;
}
@media only screen and (max-width: 480px) {
  .email_td_form .preview_content_wrap .preview_content_data {
    padding: 30px 15px;
  }
}
.email_td_form .preview_content_wrap .preview_content_data .message_content {
  margin-bottom: 30px;
  margin-top: 30px;
}
.email_td_form .preview_content_wrap .preview_content_data .message_content div {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1440px) {
  .email_td_form .preview_content_wrap .preview_content_data .message_content div {
    font-size: 18px;
  }
}

.search .news-hero-section {
  background: rgba(70, 235, 221, 0.2);
}
.search .news-hero-section .news-hero-main::before {
  display: none;
}
.search .news-hero-section .news-hero-main .news-hero-content {
  max-width: 960px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.search .news-hero-section .news-hero-main .news-hero-content h1 {
  text-align: left;
  font-size: 44px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .search .news-hero-section .news-hero-main .news-hero-content h1 {
    font-size: 31px;
  }
}
.search .search-wrap .search-form {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 991px) {
  .search .search-wrap .search-form {
    padding-bottom: 60px;
    margin-bottom: 40px;
  }
}
.search .search-wrap .search-form input {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #3A4A49;
  border: none;
  border-bottom: 1px solid #3A4A49;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0 30px 10px;
}
@media only screen and (max-width: 991px) {
  .search .search-wrap .search-form input {
    font-size: 18px;
  }
}
.search .search-wrap .search-form .submit-btn {
  position: absolute;
  top: 9px;
  left: 15px;
  background: transparent;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .search .search-wrap .search-form .submit-btn {
    top: 5px;
  }
}
.search .search-wrap .search-form .submit-btn img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0);
}
.search .no-results.not-found {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 70px;
  text-align: center;
}
.search .no-results.not-found .search-form {
  display: none;
}
@media only screen and (max-width: 991px) {
  .search .no-results.not-found .page-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .search .no-results.not-found .page-title {
    font-size: 31px;
  }
}
.search .news-event-list-section .row {
  row-gap: 0;
  max-width: 930px;
  margin: 0 auto;
}
.search .news-event-list-section .row > div {
  width: 100%;
  padding: 0;
  max-width: 100%;
  flex-flow: wrap;
  gap: 0;
}
.search .news-event-list-section .row > div .news-list-item {
  background-color: transparent !important;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #D8D8D8;
}
.search .news-event-list-section .row > div .news-list-item a {
  transition: all 0.5s;
}
.search .news-event-list-section .row > div .news-list-item a:hover .small-title {
  color: #46EBDD;
}
.search .news-event-list-section .row > div .news-list-item .news-item-img {
  display: none;
}
.search .news-event-list-section .row > div .news-list-item .news-item-content .sub-title {
  display: none;
}
.search .news-event-list-section .row > div .news-list-item .news-item-content .date {
  display: none;
}
.search .news-event-list-section .row > div .news-list-item .news-item-content .small-title {
  max-width: 100%;
  margin-bottom: 0;
  margin-top: 20px;
  font-size: 20px !important;
  line-height: 1.5;
  padding: 15px 0;
}
@media only screen and (max-width: 991px) {
  .search .news-event-list-section .row > div .news-list-item .news-item-content .small-title {
    margin-top: 15px;
  }
}
.search .news-event-list-section .row > div .news-list-item .news-item-content p {
  display: none;
}
.search .pagination {
  margin-top: 100px !important;
  justify-content: center;
}
.search .pagination .previous-page a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #3A4A49;
}
.search .pagination .previous-page a:hover span::after, .search .pagination .previous-page a:hover span::before {
  background: #EBC72F;
}
.search .pagination .previous-page a span {
  position: relative;
}
.search .pagination .previous-page a span::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 6px;
  right: auto;
  width: 2px;
  height: 14px;
  background: #46EBDD;
  z-index: 99999;
  transform: rotate(126deg);
}
.search .pagination .previous-page a span::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: auto;
  right: 3px;
  width: 2px;
  height: 14px;
  background: #46EBDD;
  z-index: 99999;
  transform: rotate(44deg);
}
.search .pagination .previous-page a .prev-page {
  color: transparent !important;
}
.search .pagination .next-page a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search .pagination .next-page a .next-page {
  color: transparent !important;
}
.search .pagination .next-page a:hover span::after, .search .pagination .next-page a:hover span::before {
  background: #EBC72F;
}
.search .pagination .next-page a span {
  position: relative;
}
.search .pagination .next-page a span::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 6px;
  right: auto;
  width: 2px;
  height: 14px;
  background: #46EBDD;
  z-index: 99999;
  transform: rotate(231deg);
}
.search .pagination .next-page a span::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: auto;
  right: 3px;
  width: 2px;
  height: 14px;
  background: #46EBDD;
  z-index: 99999;
  transform: rotate(126deg);
}
.search .pagination .numbered .inactive {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  color: #3A4A49;
}
.search .pagination .numbered .inactive:hover {
  background-color: #46EBDD;
}
.search .pagination .numbered .current {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #46EBDD;
}

.case-blog-sec.donate-page .case-blog-main::before {
  background-color: #EBC72F;
  width: 57.5%;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .container {
  max-width: 1196px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .title-wrap .main-title {
  margin-bottom: 60px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tab {
  border: 0px solid #aaa;
  background-color: #F4F4F5;
  display: flex;
  flex-flow: wrap;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks {
  font-size: 44px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  background-color: #3A4A49;
  width: 50%;
  padding: 27px 15px;
  position: relative;
  border-left: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks {
    border-left: 0px solid #ffffff;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks a {
  color: #ffffff;
}
@media only screen and (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks {
    font-size: 31px;
  }
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks {
    font-size: 22px;
    line-height: 27px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks:first-child {
  border-left: 0px solid #ffffff;
  border-right: 10px solid #ffffff;
  border-bottom: 10px solid #ffffff;
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks:first-child {
    border-right: 0px solid #ffffff;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks.active {
  color: #3A4A49;
  background-color: #F4F4F5;
  border-left: 10px solid #F4F4F5;
  border-bottom: 10px solid #F4F4F5;
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks.active {
    border-left: 0px solid #F4F4F5;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks.active:first-child {
  border-left: 0px solid #F4F4F5;
  border-right: 10px solid #F4F4F5;
  border-bottom: 10px solid #F4F4F5;
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tab .tablinks.active:first-child {
    border-right: 0px solid #F4F4F5;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent {
  padding: 70px 90px 130px;
  border: 0;
  background: #F4F4F5;
}
@media only screen and (max-width: 991px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent {
    padding: 70px 50px 80px;
  }
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent {
    padding: 40px 20px 50px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap {
  padding-top: 70px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .validation_message {
  padding: 0 !important;
  font-size: 12px !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border: 0 !important;
  background: transparent !important;
  margin: 0 !important;
  display: none;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_3_26, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_26 {
  display: none;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_22, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_31, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_32, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_22, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_32, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_33 {
  margin-bottom: -20px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_31 label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_32 label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_33 label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_32 label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_33 label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_34 label {
  color: #BCBCBC;
  font-weight: 400 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_31 a, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_32 a, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap fieldset#field_3_33 a, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_32 a, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_33 a, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap #field_6_34 a {
  color: #BCBCBC;
  font-weight: 400 !important;
  text-decoration: underline;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_confirmation_message {
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 31px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper {
  max-width: 790px;
  margin: 0 auto;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .ginput_container_select {
  position: relative;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .ginput_container_select::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: auto;
  right: 37px;
  width: 2px;
  height: 16px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(-45deg);
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .ginput_container_select::after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 0;
  left: auto;
  right: 27px;
  width: 2px;
  height: 16px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(45deg);
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .ginput_container_select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_validation_errors .gform_submission_error {
  color: #eb5752;
  border-color: #eb5752;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_validation_errors .gform_submission_error .gform-icon {
  color: #eb5752;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_body .gfield_error {
  position: relative;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_body .gfield_error .gfield_label {
  color: #eb5752;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_body .gfield_error .ginput_container .large, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_body .gfield_error .ginput_container input[type=email] {
  border-color: #eb5752;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper.gform_validation_error .gform_body .gfield_error .validation_message {
  position: absolute;
  width: 100%;
  margin: 0;
  margin-top: 0;
  padding: 0;
  background: transparent;
  color: #eb5752;
  border: none;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps {
  border-bottom: 0;
  margin-bottom: 50px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps .gf_step {
  display: none !important;
  margin-right: 0 !important;
  width: 100%;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps .gf_step .gf_step_number {
  display: none !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps .gf_step .gf_step_label {
  font-size: 31px;
  font-weight: 400;
  line-height: 1.2;
  padding-left: 0;
  text-align: center !important;
  width: 100% !important;
  display: block;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps .gf_step .gf_step_label {
    font-size: 26px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps .gf_step .gf_step_label strong {
  font-weight: 600;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gf_page_steps .gf_step.gf_step_active {
  display: inline-block !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_footer {
  justify-content: center;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_footer .gform_button {
  display: inline-block;
  background-color: #3A4A49;
  color: #ffffff;
  border-color: #3A4A49;
  text-transform: uppercase;
  padding: 12px 20px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  border: 0 !important;
}
@media (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_footer .gform_button {
    font-size: 26px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_footer .gform_button:hover {
  opacity: 0.7;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gfield_checkbox label {
  font-size: 16px !important;
  font-weight: 600 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gfield_checkbox input[type=checkbox] {
  width: 14px !important;
  height: 14px !important;
  border: 1px solid #BCBCBC !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body {
  margin-bottom: 60px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .form-title {
  font-size: 31px;
  font-weight: 600;
  text-align: center;
  margin-top: 80px;
}
@media only screen and (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .form-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .form-title {
    margin-top: 30px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .small-text {
  font-size: 16px;
  margin-top: 15px;
  font-family: "Roboto", sans-serif;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .ginput_total {
  color: #3A4A49;
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .ginput_total {
    font-size: 18px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .ginput_product_price_wrapper span.ginput_product_price_label {
  color: #3A4A49;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .ginput_product_price_wrapper span.ginput_product_price_label {
    font-size: 18px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .ginput_product_price_wrapper span.ginput_product_price {
  color: #EBC72F;
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .ginput_product_price_wrapper span.ginput_product_price {
    font-size: 18px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_label {
  font-size: 31px;
  font-family: "Poppins", sans-serif;
  color: #3A4A49;
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px 40px;
  position: relative;
  margin-bottom: 30px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio input[type=radio] + #label_3_5_3::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio input[type=radio] + #label_3_5_3::after {
  content: "*";
  font-size: 18px;
  position: relative;
  top: -10px;
  color: #3A4A49;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio input[type=radio]:checked + label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio input[type=radio]:checked + label {
  background: #3A4A49;
  color: #ffffff;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio input[type=radio]:checked + label::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio input[type=radio]:checked + label::after {
  content: "";
  color: #ffffff !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice {
  width: 100%;
  max-width: calc((100% - 120px) / 4);
  position: relative;
  cursor: pointer;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 9;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice {
    max-width: calc((100% - 40px) / 2);
  }
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice {
    max-width: 100%;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice::after {
  content: "";
  width: 100%;
  height: 100%;
  top: auto;
  bottom: -10px;
  left: auto;
  right: -10px;
  border-right: 10px solid #3A4A49;
  position: absolute;
  border-bottom: 10px solid #3A4A49;
  z-index: -1;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(1)::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(1)::after {
  border-right: 10px solid #46EBDD;
  border-bottom: 10px solid #46EBDD;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(2)::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(2)::after {
  border-right: 10px solid #EBC72F;
  border-bottom: 10px solid #EBC72F;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(3)::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(3)::after {
  border-right: 10px solid #EB7C46;
  border-bottom: 10px solid #EB7C46;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(4)::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(4)::after {
  border-right: 10px solid #78D3FF;
  border-bottom: 10px solid #78D3FF;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(5), .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(5) {
  max-width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(5), .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(5) {
    max-width: calc((100% - 40px) / 1);
  }
}
@media only screen and (max-width: 575px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice:nth-child(5), .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice:nth-child(5) {
    max-width: 100%;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice label {
  font-size: 39px;
  line-height: 2;
  color: #3A4A49;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice label {
    font-size: 28px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice label::after, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice label::after {
  content: "*";
  font-size: 18px;
  position: relative;
  top: -10px;
  color: transparent;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice label#label_3_5_4, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice label#label_3_5_4 {
  font-size: 24px;
  color: #BCBCBC;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_3_5 .gfield_radio .gchoice input, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body #field_6_5 .gfield_radio .gchoice input {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 5;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media only screen and (max-width: 480px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields {
    display: flex;
    flex-flow: wrap;
  }
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield {
    width: 100%;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .form-subheading {
  font-size: 24px !important;
  line-height: 1.16;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  color: #3A4A49;
}
@media (max-width: 1199px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .form-subheading {
    font-size: 26px !important;
  }
}
@media (max-width: 767px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .form-subheading {
    font-size: 24px !important;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #3A4A49 !important;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_label {
    font-size: 18px !important;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_label .gfield_required {
  color: #eb5752;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_3_3 .gform-field-label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_6_3 .gform-field-label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #3A4A49;
}
@media (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_3_3 .gform-field-label, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_6_3 .gform-field-label {
    font-size: 18px !important;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_3_3 #input_3_3_1_container, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_3_3 #input_6_3_1_container, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_6_3 #input_3_3_1_container, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_6_3 #input_6_3_1_container {
  margin-bottom: 30px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .large, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .StripeElement, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=text], .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=email] {
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e3e3e7;
  padding: 15px;
  height: 60px;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #3A4A49;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .large:focus, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .large:focus-within, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .StripeElement:focus, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .StripeElement:focus-within, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=text]:focus, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=text]:focus-within, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=email]:focus, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=email]:focus-within {
  border: 1px solid #46EBDD;
}
@media (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .large, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .StripeElement, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=text], .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container input[type=email] {
    font-size: 18px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .ginput_container .StripeElement {
  padding-top: 22px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #input_2_17 {
  margin-bottom: 60px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #input_2_17 .gchoice {
  margin-bottom: 15px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox .gchoice {
  display: flex;
  gap: 15px;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox] {
  position: relative;
  border: 1px solid #3A4A49;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 5px 0 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  opacity: 1;
  background-color: #fff;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox]:hover {
  opacity: 1;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox]:checked {
  background-color: #3A4A49;
  opacity: 1;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px 0px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #3A4A49;
}
@media (max-width: 1440px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields .gfield_checkbox label {
    font-size: 18px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_12 input {
  border-color: #979797 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_12 label {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #979797 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_12 label a {
  color: #979797 !important;
  text-decoration: underline;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_12.gfield_error label {
  color: #eb5752 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_13 input {
  border: 1px solid #979797 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_13 label {
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 18px !important;
  color: #979797 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_13 label a {
  color: #979797 !important;
  text-decoration: underline;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_body .gform_fields #field_2_13.gfield_error label {
  color: #eb5752 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_page_footer {
  margin-top: 30px;
  text-align: center;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_page_footer input[type=button] {
  text-transform: uppercase;
  padding: 12px 40px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  background-color: #3A4A49;
  opacity: 1 !important;
  border: 0 !important;
  color: #ffffff;
  transition: all 0.5s;
  opacity: 1 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_page_footer input[type=button]:hover {
  opacity: 0.7 !important;
}
@media only screen and (max-width: 1080px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_wrapper .gform_page_footer input[type=button] {
    font-size: 24px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer {
  text-align: center;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=button], .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=submit] {
  text-transform: uppercase;
  padding: 15px 35px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  background-color: #3A4A49;
  opacity: 1 !important;
  border: 0 !important;
  color: #ffffff;
  transition: all 0.5s;
}
@media only screen and (max-width: 1080px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=button], .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=submit] {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=button], .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=submit] {
    padding: 15px 27px;
  }
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=button]:hover, .case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=submit]:hover {
  opacity: 0.7 !important;
}
.case-blog-sec.donate-page .case-blog-main .case-blog-content .tabcontent .price-wrap .gform_page_footer input[type=button] {
  background-color: #EBC72F;
  color: #3A4A49;
  margin-right: 10px;
}

.gform_wrapper [aria-invalid=true] + label, .gform_wrapper label + [aria-invalid=true] {
  color: #eb5752 !important;
}

.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  color: #eb5752 !important;
}
.gform_wrapper .gfield_error label, .gform_wrapper .gfield_error legend {
  color: #eb5752 !important;
}
.gform_wrapper .gfield_error .gfield_repeater_cell label {
  color: #eb5752 !important;
}

.gfield_label {
  position: relative;
}
.gfield_label .gfield_required::after {
  content: "*";
  color: #3A4A49 !important;
  position: absolute;
  top: 5px;
}
.gfield_label .gfield_required .gfield_required {
  color: #3A4A49;
  font-size: 0 !important;
}

.gfield_error .gfield_required::after {
  color: #eb5752;
}

@media only screen and (max-width: 640px) {
  .gform_wrapper.gravity-theme .ginput_complex span {
    margin-bottom: 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  .error404 h1 {
    font-size: 39px;
  }
  .error404 h3 {
    font-size: 31px;
  }
}
.error404 .site-main {
  padding-top: 70px;
}
.error404 .site-main .header-wraper {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}
.error404 .site-main .follow-step-wrap {
  margin-top: 25px;
}
.error404 .site-main .follow-step-wrap h3 {
  margin-bottom: 20px;
}
.error404 .search-modul-wrap {
  background: rgba(70, 235, 221, 0.2);
}
.error404 .search-modul-wrap .search-wrap .search-form {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.error404 .search-modul-wrap .search-wrap .search-form form {
  position: relative;
}
.error404 .search-modul-wrap .search-wrap .search-form input {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #3A4A49;
  border: none;
  border-bottom: 1px solid #3A4A49;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0 50px 10px;
}
@media only screen and (max-width: 991px) {
  .error404 .search-modul-wrap .search-wrap .search-form input {
    font-size: 18px;
  }
}
.error404 .search-modul-wrap .search-wrap .search-form .submit-btn {
  position: absolute;
  top: 9px;
  left: 15px;
  background: transparent;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .error404 .search-modul-wrap .search-wrap .search-form .submit-btn {
    top: 5px;
  }
}
.error404 .search-modul-wrap .search-wrap .search-form .submit-btn img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0);
}
.error404 .no-results.not-found {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 70px;
  text-align: center;
}
.error404 .no-results.not-found .search-form {
  display: none;
}
@media only screen and (max-width: 991px) {
  .error404 .no-results.not-found .page-title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .error404 .no-results.not-found .page-title {
    font-size: 31px;
  }
}

.salesforce_embed_form .salesforce-form-wrapper .salesforce_form p:empty {
  display: none;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form br {
  display: none;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form {
  padding: 70px 90px 130px;
  border: 0;
  background: #F4F4F5;
}
@media only screen and (max-width: 991px) {
  .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form {
    padding: 70px 50px 80px;
  }
}
@media only screen and (max-width: 575px) {
  .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form {
    padding: 40px 20px 50px;
  }
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form label {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #3A4A49;
  display: inline-block;
  margin-bottom: 8px;
  margin-top: 15px;
}
@media (max-width: 1440px) {
  .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form label {
    font-size: 18px !important;
  }
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=text], .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form select, .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form textarea, .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=email] {
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e3e3e7;
  padding: 15px;
  height: 60px;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #3A4A49;
  width: 100%;
}
@media (max-width: 1440px) {
  .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=text], .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form select, .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form textarea, .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=email] {
    font-size: 18px;
  }
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=submit] {
  display: block;
  background-color: #3A4A49;
  color: #ffffff;
  border-color: #3A4A49;
  text-transform: uppercase;
  padding: 12px 20px;
  font-size: 31px;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  border: 0 !important;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1440px) {
  .salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=submit] {
    font-size: 26px;
  }
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=submit]:hover {
  opacity: 0.7;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=checkbox] {
  position: relative;
  border: 1px solid #3A4A49;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 5px 0 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  opacity: 1;
  background-color: #fff;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=checkbox]:hover {
  opacity: 1;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=checkbox]:checked {
  background-color: #3A4A49;
  opacity: 1;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form input[type=checkbox]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin: -1px 0px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-multi-wrap select {
  padding: 15px 0;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-multi-wrap select option {
  padding: 0 15px;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .input-checkbox-wrap {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: 15px;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .input-checkbox-wrap label {
  order: 1;
  width: calc(100% - 26px);
  margin: 0;
  line-height: 1.3;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-wrap {
  position: relative;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-wrap label {
  display: block;
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-wrap label::before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 25px;
  left: auto;
  right: 37px;
  width: 2px;
  height: 16px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(-45deg);
}
.salesforce_embed_form .salesforce-form-wrapper .salesforce_form form .select-wrap label::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 25px;
  left: auto;
  right: 27px;
  width: 2px;
  height: 16px;
  background: #3A4A49;
  z-index: 99999;
  transform: rotate(45deg);
}/*# sourceMappingURL=style.css.map */