/* ------------------------------------------------------
                    general styles
------------------------------------------------------ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.grecaptcha-badge {
  visibility: hidden;
}

body {
  font-family: filson-soft, sans-serif;
}

article {
  font-weight: 200;
  font-size: 17px;
}
article p {
  margin-bottom: 40px;
}
article p:last-child {
  margin-bottom: 0px;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  padding: 15px 40px 15px 40px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 20px;
  display: inline-block;
}

/* ------------------------------------------------------
                        header
------------------------------------------------------ */
.home header {
  background-color: inherit;
  position: fixed;
  width: 100%;
  height: auto;
  box-shadow: none;
  padding-top: 50px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  transition: 0.4s;
  z-index: 4;
}
.home header .header-inner {
  align-items: flex-start;
}
.home header .header-inner img {
  height: 170px;
  width: auto;
  transition: 0.4s ease;
}
.home header .header-inner nav {
  transition: 0.4s ease;
}
.home header .header-inner nav ul li {
  position: relative;
}
.home header .header-inner nav ul li a {
  color: #ffffff;
}
.home header .header-inner nav ul li:after {
  background-color: #ffffff;
}
.home header .header-inner nav ul .login:before {
  display: inline-block;
  content: "";
  background-image: url("../../images/lock-white.svg");
  width: 13px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  top: 5px;
  position: relative;
}
.home header .header-inner .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  height: auto;
  position: relative;
  z-index: 4;
  display: none;
  width: 70px;
  height: 70px;
}
.home header .header-inner .hamRotate.active {
  transform: rotate(45deg);
}
.home header .header-inner .hamRotate180.active {
  transform: rotate(180deg);
}
.home header .header-inner .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #ffffff;
  stroke-width: 4.5;
  stroke-linecap: round;
}
.home header .header-inner .dark {
  stroke: #2B2E34;
}
.home header .header-inner .ham1 .top {
  stroke-dasharray: 40 139;
}
.home header .header-inner .ham1 .bottom {
  stroke-dasharray: 40 180;
}
.home header .header-inner .ham1.active .top {
  stroke-dashoffset: -98px;
  stroke: #2B2E34;
}
.home header .header-inner .ham1.active .middle {
  stroke: #2B2E34;
}
.home header .header-inner .ham1.active .bottom {
  stroke-dashoffset: -138px;
  stroke: #2B2E34;
}
.home .collapsed {
  height: auto;
  background: #ffffff;
  transition: 0.4s;
  min-height: inherit;
  padding-top: 10px;
  padding-bottom: 10px;
}
.home .collapsed .header-inner {
  align-items: center;
}
.home .collapsed .header-inner img {
  height: 80px;
}
.home .collapsed .header-inner nav ul li a {
  color: #2B2E34;
}
.home .collapsed .header-inner nav ul li:after {
  background-color: #2B2E34;
}
.home .collapsed .header-inner .ham .line {
  stroke: #2B2E34;
}

header {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  transition: 0.2s ease;
  z-index: 3;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-inner img {
  display: inline-block;
  width: 240px;
  height: auto;
  z-index: 4;
  position: relative;
}
header .header-inner nav {
  display: inline-block;
  height: 20px;
}
header .header-inner nav ul {
  list-style: none;
}
header .header-inner nav ul li {
  font-family: filson-soft, sans-serif;
  font-weight: 500;
  line-height: 20px;
  display: inline-block;
  margin-left: 20px;
}
header .header-inner nav ul li a {
  color: #2B2E34;
  text-decoration: none;
}
header .header-inner nav ul li:after {
  display: flex;
  width: 0%;
  height: 2px;
  background-color: #2B2E34;
  content: "";
  transition: 0.2s ease;
}
header .header-inner nav ul li:hover:after {
  width: 100%;
}
header .header-inner nav ul .login:before {
  display: inline-block;
  content: "";
  background-image: url("../../images/lock.svg");
  width: 13px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  top: 5px;
  position: relative;
}
header .header-inner .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
  height: auto;
  position: relative;
  z-index: 4;
  display: none;
  width: 70px;
  height: 70px;
}
header .header-inner .hamRotate.active {
  transform: rotate(45deg);
}
header .header-inner .hamRotate180.active {
  transform: rotate(180deg);
}
header .header-inner .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #2B2E34;
  stroke-width: 4.5;
  stroke-linecap: round;
}
header .header-inner .dark {
  stroke: #2B2E34;
}
header .header-inner .ham1 .top {
  stroke-dasharray: 40 139;
}
header .header-inner .ham1 .bottom {
  stroke-dasharray: 40 180;
}
header .header-inner .ham1.active .top {
  stroke-dashoffset: -98px;
  stroke: #2B2E34;
}
header .header-inner .ham1.active .middle {
  stroke: #2B2E34;
}
header .header-inner .ham1.active .bottom {
  stroke-dashoffset: -138px;
  stroke: #2B2E34;
}

.mobile-menu {
  background-color: #ffffff;
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  z-index: 3;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
}
.mobile-menu ul li {
  font-size: 17px;
  margin-bottom: 20px;
}

.mobile-menu-active {
  top: 0px;
}

.front-banner {
  height: 90vh;
  position: relative;
  min-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.front-banner:before {
  content: "";
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0px;
  top: 0px;
  background: linear-gradient(180deg, rgba(113, 115, 119, 0.69) 0%, rgba(113, 115, 119, 0) 100%);
  mix-blend-mode: multiply;
}
.front-banner .front-banner-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.front-banner .front-banner-inner h1 {
  font-family: filson-soft, sans-serif;
  font-size: 90px;
  font-weight: 800;
  line-height: 80px;
  color: #ffffff;
  max-width: 400px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.info-wrapper {
  border: 20px solid #ffffff;
  border-radius: 50px;
  background-color: #D8DC40;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: -200px;
}
.info-wrapper .info-item {
  font-family: filson-soft, sans-serif;
  padding: 20px 10px 20px 10px;
}
.info-wrapper .info-item:first-child {
  padding-left: 40px;
}
.info-wrapper .info-item:last-child {
  padding-right: 40px;
}
.info-wrapper .info-item h4 {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.info-wrapper .info-item p {
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
}

.front-intro article {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-family: filson-soft, sans-serif;
  padding-top: 80px;
  padding-bottom: 50px;
  font-size: 17px;
  line-height: 30px;
}
.front-intro article h2 {
  margin-bottom: 30px;
}
.front-intro article .btn {
  background-color: #F953A6;
  color: #ffffff;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0px;
  transition: 0.2s ease;
  font-weight: 400;
  text-transform: uppercase;
}
.front-intro article .btn:hover {
  background-color: #6FD9F8;
}

.front-cta {
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url("../../images/background-cta.svg");
  background-position: bottom;
  background-size: 130% 240%;
  overflow: hidden;
}
.front-cta .front-cta-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 40px;
}
.front-cta .front-cta-inner .left-block {
  padding: 40px;
  border-radius: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.front-cta .front-cta-inner .left-block h2 {
  font-size: 25px;
  margin-bottom: 40px;
}
.front-cta .front-cta-inner .left-block p {
  font-size: 17px;
  font-weight: 300;
}
.front-cta .front-cta-inner .right-block {
  padding: 40px;
  border-radius: 50px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.front-cta .front-cta-inner .right-block h2 {
  font-size: 25px;
  margin-bottom: 40px;
  color: #6FD9F8;
}
.front-cta .front-cta-inner .right-block ul {
  list-style: none;
}
.front-cta .front-cta-inner .right-block ul li {
  font-size: 17px;
  font-weight: 200;
  margin-bottom: 10px;
  transition: 0.1s ease;
}
.front-cta .front-cta-inner .right-block ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 20px;
  display: inline-block;
  margin-right: 5px;
  top: 2px;
}
.front-cta .front-cta-inner .right-block ul li:hover {
  font-weight: 500;
}
.front-cta .front-cta-inner .right-block ul li:nth-child(1):before {
  background-color: #F953A6;
}
.front-cta .front-cta-inner .right-block ul li:nth-child(2):before {
  background-color: #D8DC40;
}
.front-cta .front-cta-inner .right-block ul li:nth-child(3):before {
  background-color: #FF7D23;
}

footer {
  background-color: #FCFCFC;
  padding-top: 40px;
}
footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  grid-gap: 60px;
  padding-bottom: 40px;
  font-size: 17px;
  line-height: 28px;
}
footer .footer-inner .footer-item {
  color: #2B2E34;
  font-family: filson-soft, sans-serif;
  padding: 10px;
}
footer .footer-inner .footer-item .footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}
footer .footer-inner .footer-item img {
  display: inline-block;
  width: 300px;
  height: auto;
}
footer .footer-inner .footer-item .textwidget {
  font-weight: 400;
}
footer .footer-inner .footer-item ul {
  list-style: none;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
footer .footer-inner .footer-item .search {
  display: flex;
  justify-content: space-between;
}
footer .footer-inner .footer-item .search input {
  border: 1px solid #ffffff;
  background-color: inherit;
  padding: 5px 15px 5px 15px;
  font-size: 17px;
  color: #ffffff;
  font-weight: 300;
  width: 100%;
}
footer .footer-inner .footer-item .search input::placeholder {
  color: #ffffff;
}
footer .footer-inner .footer-item .search input:focus {
  outline: none;
}
footer .footer-inner .footer-item .search #submit {
  display: none;
}
footer .footer-inner .footer-item .search .searchicon {
  width: 20px;
  height: auto;
  margin-left: 10px;
  cursor: pointer;
}
footer .underfooter {
  border-top: 1px solid #2B2E34;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .underfooter span {
  font-size: 16px;
  font-weight: 400;
}

.posts-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.posts-section h3 {
  font-size: 35px;
  color: #FF7D23;
}
.posts-section .posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: column;
  grid-gap: 60px;
  font-family: filson-soft, sans-serif;
  padding-top: 40px;
  padding-bottom: 40px;
}
.posts-section .posts-wrapper .post {
  display: flex;
  flex-direction: column;
  border-radius: 50px;
  background-color: #ffffff;
}
.posts-section .posts-wrapper .post .post-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 280px;
  border-radius: 50px 50px 0px 0px;
  transition: 0.2s ease;
}
.posts-section .posts-wrapper .post .post-prev {
  padding: 40px 10px 10px 10px;
  display: flex;
  flex-direction: column;
}
.posts-section .posts-wrapper .post .post-prev span {
  margin-bottom: 30px;
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}
.posts-section .posts-wrapper .post .post-prev h2 {
  font-size: 17px;
  color: #2B2E34;
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 80px;
}
.posts-section .posts-wrapper .post .post-prev p {
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  font-weight: 200;
  margin-bottom: 30px;
}
.posts-section .posts-wrapper .post .post-prev .btn {
  background-color: #FF7D23;
  color: #ffffff;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0px;
  font-weight: 400;
  transition: 0.2s ease;
}
.posts-section .posts-wrapper .post:hover .post-image {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.posts-section .posts-wrapper .post:hover .btn {
  background-color: #6FD9F8;
}

.single .banner, .page .banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}
.single .content-inner, .page .content-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 90px 70px 90px;
  margin-top: -80px;
  border-top: 80px solid white;
  border-radius: 50px;
  width: 100%;
}
.single .content-inner #breadcrumbs, .page .content-inner #breadcrumbs {
  font-size: 17px;
  font-weight: 200;
  margin-bottom: 50px;
  display: inline-block;
}
.single .content-inner #breadcrumbs span a:hover, .page .content-inner #breadcrumbs span a:hover {
  text-decoration: underline;
}
.single .content-inner #breadcrumbs span .breadcrumb_last, .page .content-inner #breadcrumbs span .breadcrumb_last {
  font-weight: 500;
}
.single .content-inner article h1, .page .content-inner article h1 {
  font-size: 35px;
  color: #6FD9F8;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.single .content-inner article p, .page .content-inner article p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 200;
}
.single .content-inner article p:nth-child(2), .page .content-inner article p:nth-child(2) {
  font-size: 17px;
  line-height: 28px;
}
.single .content-inner article ul, .page .content-inner article ul {
  font-size: 17px;
  line-height: 28px;
  font-weight: 200;
  padding-left: 25px;
  margin-bottom: 40px;
}
.single .content-inner article ol, .page .content-inner article ol {
  font-size: 17px;
  line-height: 28px;
  font-weight: 200;
  padding-left: 25px;
  margin-bottom: 40px;
}
.single .content-inner article a, .page .content-inner article a {
  color: #F953A6;
  font-weight: 700;
  text-decoration: underline;
}
.single .content-inner article .wp-block-image, .page .content-inner article .wp-block-image {
  margin-bottom: 40px;
}
.single .content-inner article .wp-block-buttons .wp-block-button, .page .content-inner article .wp-block-buttons .wp-block-button {
  margin-bottom: 40px;
}
.single .content-inner article .wp-block-buttons .wp-block-button a, .page .content-inner article .wp-block-buttons .wp-block-button a {
  padding: 15px 40px 15px 40px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  border-radius: 20px;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  background-color: #F953A6;
  transition: 0.2s ease;
  text-transform: uppercase;
}
.single .content-inner article .wp-block-buttons .wp-block-button a:hover, .page .content-inner article .wp-block-buttons .wp-block-button a:hover {
  background-color: #6FD9F8;
}
.single .content-inner .staff-wrapper, .page .content-inner .staff-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  padding-top: 100px;
}
.single .content-inner .staff-wrapper .staff-member, .page .content-inner .staff-wrapper .staff-member {
  background-color: #ffffff;
  border-radius: 50px;
}
.single .content-inner .staff-wrapper .staff-member .staff-image, .page .content-inner .staff-wrapper .staff-member .staff-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px 50px 0px 0px;
}
.single .content-inner .staff-wrapper .staff-member .staff-info, .page .content-inner .staff-wrapper .staff-member .staff-info {
  padding: 20px;
}
.single .content-inner .staff-wrapper .staff-member .staff-info h3, .page .content-inner .staff-wrapper .staff-member .staff-info h3 {
  font-size: 25px;
  line-height: 35px;
  color: #6FD9F8;
}
.single .content-inner .staff-wrapper .staff-member .staff-info span, .page .content-inner .staff-wrapper .staff-member .staff-info span {
  font-size: 17px;
  line-height: 35px;
  color: #2B2E34;
  font-weight: 200;
}
.single .content-inner .wpcf7, .page .content-inner .wpcf7 {
  padding-top: 70px;
  padding-bottom: 33px;
  position: relative;
}
.single .content-inner .wpcf7 form, .page .content-inner .wpcf7 form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  font-family: filson-soft, sans-serif;
  font-size: 17px;
  font-weight: 200;
  color: #2B2E34;
}
.single .content-inner .wpcf7 form .full-width p, .page .content-inner .wpcf7 form .full-width p {
  width: 100%;
}
.single .content-inner .wpcf7 form .full-width p:nth-child(5), .page .content-inner .wpcf7 form .full-width p:nth-child(5) {
  position: inherit;
  right: inherit;
}
.single .content-inner .wpcf7 form p, .page .content-inner .wpcf7 form p {
  width: 50%;
  margin-bottom: 20px;
  padding-right: 20px;
  font-size: 17px;
  font-weight: 200;
}
.single .content-inner .wpcf7 form p:nth-child(5), .page .content-inner .wpcf7 form p:nth-child(5) {
  position: absolute;
  right: 0px;
}
.single .content-inner .wpcf7 form p span, .page .content-inner .wpcf7 form p span {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}
.single .content-inner .wpcf7 form p span input, .page .content-inner .wpcf7 form p span input {
  border: none;
  border-radius: 40px;
  padding: 15px 30px 15px 30px;
  outline: none;
  font-family: filson-soft, sans-serif;
  width: 100%;
  font-size: 17px;
  font-weight: 200;
  border: 1px solid #707070;
}
.single .content-inner .wpcf7 form p span input::placeholder, .page .content-inner .wpcf7 form p span input::placeholder {
  color: #2B2E34;
}
.single .content-inner .wpcf7 form p span .wpcf7-checkbox span, .page .content-inner .wpcf7 form p span .wpcf7-checkbox span {
  display: flex;
  align-items: center;
  width: auto;
  margin: 0px;
}
.single .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox], .page .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox] {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
  position: relative;
  padding: 0px;
  background-color: inherit;
  border-radius: 50px;
  appearance: none;
  border: none;
}
.single .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox]:before, .page .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox]:before {
  width: 40px;
  height: 40px;
  background-color: #F4F4F4;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50px;
}
.single .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox]:after, .page .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox]:after {
  width: 26px;
  height: 26px;
  content: "";
  text-align: center;
  line-height: 20px;
  background-color: #6FD9F8;
  position: absolute;
  top: 6.5px;
  left: 7.5px;
  opacity: 0;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
}
.single .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox]:checked:after, .page .content-inner .wpcf7 form p span .wpcf7-checkbox input[type=checkbox]:checked:after {
  opacity: 1;
}
.single .content-inner .wpcf7 form p span textarea, .page .content-inner .wpcf7 form p span textarea {
  border: none;
  border-radius: 40px;
  padding: 15px 30px 15px 30px;
  outline: none;
  font-family: filson-soft, sans-serif;
  width: 100%;
  font-size: 17px;
  font-weight: 200;
  border: 1px solid #707070;
  resize: none;
}
.single .content-inner .wpcf7 form p span textarea::placeholder, .page .content-inner .wpcf7 form p span textarea::placeholder {
  color: #2B2E34;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance {
  margin-bottom: 0px;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0px;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  justify-content: space-between;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input {
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
  position: relative;
  padding: 0px;
  background-color: inherit;
  border-radius: 50px;
  appearance: none;
  border: none;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:before, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:before {
  width: 40px;
  height: 40px;
  background-color: #F4F4F4;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50px;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:after, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:after {
  width: 26px;
  height: 26px;
  content: "";
  text-align: center;
  line-height: 20px;
  background-color: #6FD9F8;
  position: absolute;
  top: 6.5px;
  left: 7.5px;
  opacity: 0;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:checked:after, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label input:checked:after {
  opacity: 1;
}
.single .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label, .page .content-inner .wpcf7 form p .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  margin-top: 0px;
  display: inline-block;
  margin-left: 15px;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
}
.single .content-inner .wpcf7 form p .wpcf7-submit, .page .content-inner .wpcf7 form p .wpcf7-submit {
  font-family: filson-soft, sans-serif;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  background-color: #F953A6;
  min-width: 200px;
  padding: 19px 50px 19px 50px;
  border-radius: 50px;
  transition: 0.2s ease;
}
.single .content-inner .wpcf7 form p .wpcf7-submit:hover, .page .content-inner .wpcf7 form p .wpcf7-submit:hover {
  background-color: #2B2E34;
}
.single .content-inner .wpcf7 form p .ajax-loader, .page .content-inner .wpcf7 form p .ajax-loader {
  display: none;
}
.single .content-inner .wpcf7 div.wpcf7-mail-sent-ok, .page .content-inner .wpcf7 div.wpcf7-mail-sent-ok {
  border: none;
}
.single .content-inner .wpcf7 div.wpcf7-response-output, .page .content-inner .wpcf7 div.wpcf7-response-output {
  border: none;
}
.single .content-inner .wp-block-table table, .page .content-inner .wp-block-table table {
  font-size: 17px;
  line-height: 35px;
  font-weight: 200;
  border: none;
}
.single .posts-section, .page .posts-section {
  background-image: url("../../images/background-cta.svg");
  background-position: top;
  background-size: 150% 220%;
}
.single .posts-section h3, .page .posts-section h3 {
  color: #2B2E34;
}
.single .posts-section .post .post-prev, .page .posts-section .post .post-prev {
  padding: 40px;
}

.home .posts-section {
  background-image: none;
}
.home .posts-section .posts-wrapper .post .post-prev {
  padding: 40px 10px 10px 10px;
}

.page .content-section {
  display: flex;
  justify-content: space-between;
}
.page .content-section .side-menu {
  position: sticky;
  align-self: flex-start;
  top: 20px;
  margin-top: 20px;
  width: 400px;
  padding-top: 70px;
  padding: 20px;
  border-radius: 20px;
  height: auto;
  background-color: rgba(111, 217, 248, 0.3);
}
.page .content-section .side-menu h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #6FD9F8;
}
.page .content-section .side-menu ul {
  padding-left: 0px;
  list-style: none;
  transition: 0.2s ease;
  cursor: pointer;
}
.page .content-section .side-menu ul li {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #6FD9F8;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  position: relative;
  transition: 0.2s ease;
}
.page .content-section .side-menu ul li .arrow {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 10px;
  transition: 0.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../images/down-arrow.svg");
}
.page .content-section .side-menu ul li:last-of-type {
  border-bottom: none;
}
.page .content-section .side-menu ul li .sub-menu {
  height: auto;
  max-height: 0px;
  overflow: hidden;
}
.page .content-section .side-menu ul li .sub-menu li {
  padding-top: 0px;
  padding-bottom: 0px;
  border: none;
  font-weight: 200;
}
.page .content-section .side-menu ul li .sub-menu li:hover {
  text-decoration: underline;
}
.page .content-section .side-menu ul li .sub-open {
  height: auto;
  max-height: 1000px;
}
.page .content-section .side-menu ul li .sub-open + .arrow {
  transform: rotate(180deg);
}
.page .content-section .side-info {
  width: 400px;
  padding-top: 170px;
}
.page .content-section .side-info h3 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2B2E34;
}
.page .content-section .side-info p {
  font-size: 17px;
  line-height: 35px;
  font-weight: 200;
  margin-bottom: 40px;
}
.page .content-section .side-info img {
  width: 100%;
  margin-bottom: 20px;
}
.page .content-section .side-info .route {
  display: flex;
  justify-content: space-between;
}
.page .content-section .side-info .route span {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
.page .content-section .side-info .route span a {
  margin-left: 20px;
}
.page .content-section .side-info .route span a:first-child {
  margin-left: 0px;
}
.page .content-section .side-info .route span a img {
  height: 30px;
  margin-bottom: 0px;
  transition: 0.2s ease;
}
.page .content-section .side-info .route span a img:hover {
  transform: scale(1.1);
}
.page .content-section .content-inner {
  margin-left: inherit;
  margin-right: inherit;
}

.page-template-staff {
  background-image: url("../../images/background-cta.svg");
  background-position: 70% 27%;
  background-size: 150% 290%;
}

.archive {
  background-image: url("../../images/background-cta.svg");
  background-position: 70% 27%;
  background-size: 150% 290%;
}
.archive .posts-section h3 {
  color: #6FD9F8;
  margin-top: 50px;
}
.archive .posts-section .posts-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: dense;
}
.archive .posts-section .posts-wrapper a:nth-child(1) {
  grid-column: span 3;
  grid-row: span 1;
}
.archive .posts-section .posts-wrapper a:nth-child(1) .post {
  flex-direction: inherit;
}
.archive .posts-section .posts-wrapper a:nth-child(1) .post .post-image {
  width: 70%;
  border-radius: 50px 0px 0px 50px;
  height: auto;
}
.archive .posts-section .posts-wrapper a:nth-child(1) .post .post-prev {
  min-width: 500px;
  width: 30%;
  padding: 80px 50px 80px 50px;
}
.archive .posts-section .posts-wrapper a .post .post-prev {
  padding: 40px;
}

@media only screen and (max-width: 1499px) {
  .info-wrapper {
    min-width: 100%;
  }
  .info-wrapper .info-item:first-child {
    padding-left: 20px;
  }
  .info-wrapper .info-item:last-child {
    padding-right: 20px;
  }

  .single .content-inner .staff-wrapper, .page .content-inner .staff-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .home header .header-inner {
    overflow: hidden;
  }
  .home header .header-inner img {
    height: 120px;
  }
  .home header .header-inner .ham {
    display: block;
    margin-right: -20px;
  }

  header .header-inner {
    overflow: hidden;
  }
  header .header-inner nav {
    display: none;
  }
  header .header-inner .ham {
    display: block;
    margin-right: -20px;
  }

  .info-wrapper {
    margin-bottom: -270px;
    grid-gap: 0px;
    border: 30px solid #ffffff;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .info-wrapper .info-item {
    padding: 10px;
  }
  .info-wrapper .info-item h4 {
    min-height: 70px;
    margin-bottom: 20px;
  }
  .info-wrapper .info-item p {
    font-size: 17px;
  }

  .front-intro article {
    font-size: 17px;
  }
  .front-intro article h2 {
    font-size: 30px;
  }

  .front-cta {
    background-size: 250% 290%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .front-cta .front-cta-inner {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .front-cta .front-cta-inner .left-block {
    padding: 40px;
  }
  .front-cta .front-cta-inner .left-block h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .front-cta .front-cta-inner .left-block p {
    font-size: 17px;
  }
  .front-cta .front-cta-inner .right-block h2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
  .front-cta .front-cta-inner .right-block ul li {
    font-size: 17px;
  }

  .posts-section {
    min-width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .posts-section h3 {
    margin-left: 20px;
  }
  .posts-section .posts-wrapper {
    grid-gap: 30px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .posts-section .posts-wrapper .post .post-prev span {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .posts-section .posts-wrapper .post .post-prev h2 {
    font-size: 25px;
  }
  .posts-section .posts-wrapper .post .post-prev p {
    font-size: 17px;
  }

  .single .posts-section .post .post-prev, .page .posts-section .post .post-prev {
    padding: 20px;
  }

  .archive .posts-section .posts-wrapper a .post .post-prev {
    padding: 20px;
  }

  .single .content-section, .page .content-section {
    flex-direction: column-reverse;
  }
  .single .content-section .side-menu, .page .content-section .side-menu {
    padding-top: 0px;
    padding-left: 90px;
    padding-bottom: 90px;
  }
  .single .content-section .side-info, .page .content-section .side-info {
    padding-top: 0px;
    padding-left: 90px;
    margin-bottom: 90px;
  }
  .single .content-section .content-inner article p, .page .content-section .content-inner article p {
    font-size: 17px;
  }
  .single .content-section .content-inner article p:nth-child(2), .page .content-section .content-inner article p:nth-child(2) {
    font-size: 17px;
  }
  .single .content-section .content-inner article ul, .page .content-section .content-inner article ul {
    font-size: 17px;
  }
  .single .content-section .content-inner article ol, .page .content-section .content-inner article ol {
    font-size: 17px;
  }

  footer .footer-inner {
    min-width: 100%;
  }
  footer .footer-inner .footer-item .textwidget {
    font-size: 17px;
  }
  footer .footer-inner .footer-item ul li {
    font-size: 17px;
  }
}
@media only screen and (max-width: 999px) {
  .info-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .info-wrapper .info-item h4 {
    min-height: inherit;
  }
}
@media only screen and (max-width: 899px) {
  .single .content-section, .page .content-section {
    width: 100%;
  }

  .single .posts-section .posts-wrapper, .page .posts-section .posts-wrapper {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
  }
}
@media only screen and (max-width: 799px) {
  .archive .posts-section .posts-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) {
    grid-column: span 2;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) .post .post-image {
    width: 30%;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) .post .post-prev {
    min-width: inherit;
    width: 70%;
  }

  footer .footer-inner {
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 699px) {
  .home header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .front-banner {
    min-height: 700px;
  }
  .front-banner .front-banner-inner h1 {
    font-size: 50px;
    max-width: 250px;
  }

  .info-wrapper {
    grid-template-columns: 1fr;
    transform: translateY(-30%);
    margin-bottom: -210px;
    border: 10px solid #ffffff;
    grid-row-gap: 30px;
  }
  .info-wrapper .info-item h4 {
    margin-bottom: 10px;
  }
  .info-wrapper .info-item:first-child {
    padding-left: 10px;
  }

  .front-cta {
    background-size: 240% 220%;
  }

  .posts-section h3 {
    margin-left: 0px;
  }
  .posts-section .posts-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }

  .single .content-section .content-inner, .page .content-section .content-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .single .content-section .content-inner article .wp-block-table table, .page .content-section .content-inner article .wp-block-table table {
    word-break: break-all;
  }
  .single .content-section .content-inner article .wp-block-table table td, .page .content-section .content-inner article .wp-block-table table td {
    width: 100%;
    display: inline-block;
  }
  .single .content-section .content-inner article .wpcf7 form p, .page .content-section .content-inner article .wpcf7 form p {
    width: 100%;
  }
  .single .content-section .content-inner article .wpcf7 form p:nth-child(5), .page .content-section .content-inner article .wpcf7 form p:nth-child(5) {
    position: relative;
  }
  .single .content-section .content-inner article .wpcf7 form p:nth-child(5) textarea, .page .content-section .content-inner article .wpcf7 form p:nth-child(5) textarea {
    height: 200px;
  }
  .single .content-section .side-menu, .page .content-section .side-menu {
    padding-left: 30px;
  }
  .single .content-section .side-info, .page .content-section .side-info {
    padding-left: 30px;
  }

  .archive .posts-section .posts-wrapper {
    grid-template-columns: 1fr;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) {
    grid-column: span 1;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) .post {
    flex-direction: column;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) .post .post-image {
    border-radius: 50px 50px 0px 0px;
    height: 280px;
    width: inherit;
  }
  .archive .posts-section .posts-wrapper a:nth-child(1) .post .post-prev {
    width: inherit;
    padding: 20px;
  }

  footer .footer-inner .footer-item {
    padding: 0px;
  }
}
@media only screen and (max-width: 599px) {
  .single .content-inner .staff-wrapper, .page .content-inner .staff-wrapper {
    grid-template-columns: 1fr;
  }
  .single .content-inner .staff-wrapper .staff-member .staff-image, .page .content-inner .staff-wrapper .staff-member .staff-image {
    height: 500px;
  }
}
@media only screen and (max-width: 499px) {
  .single .banner, .page .banner {
    height: 200px;
  }
  .single .content-section .content-inner, .page .content-section .content-inner {
    border-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 20px;
  }
  .single .content-section .side-menu, .page .content-section .side-menu {
    padding-left: 0px;
    width: auto;
  }
  .single .content-section .side-menu h3, .page .content-section .side-menu h3 {
    font-size: 30px;
  }
  .single .content-section .side-info, .page .content-section .side-info {
    padding-left: 0px;
    width: auto;
  }
  .single .content-section .side-info h3, .page .content-section .side-info h3 {
    font-size: 30px;
  }
  .single .content-section .staff-wrapper .staff-member .staff-image, .page .content-section .staff-wrapper .staff-member .staff-image {
    height: 400px;
  }
}
@media only screen and (max-width: 399px) {
  .home header {
    padding-top: 20px;
  }
  .home header .header-inner img {
    height: 100px;
  }

  header .header-inner img {
    width: 200px;
  }

  .info-wrapper .info-item {
    padding: 0px;
  }
  .info-wrapper .info-item:first-child {
    padding-left: 0px;
  }

  .single .content-inner .staff-wrapper .staff-member .staff-image, .page .content-inner .staff-wrapper .staff-member .staff-image {
    height: 340px;
  }
}

/*# sourceMappingURL=style.css.map */
