/*
Theme Name: CyberFrog (Matt)
Author: Matthew Shabaily
Version: 4.0
*/

/* ============ Root ============ */

:root {
}

/* ============ Globals ============ */

html {
  overflow-x: hidden;
}

body {
  position: relative;
  overflow: hidden;
  font-family: "Poppins";
  background: #effff1;
}

/* ============ Containers ============ */

.flex-row {
  display: flex;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

/* ============ Scrollbar ============ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ============ Effects ============ */

.light-effect {
  cursor: pointer;
  transition: filter 02s;
}

.pan-effect {
  cursor: pointer;
  transition: transform 0.2s;
}

.dim-effect {
  cursor: pointer;
  transition: opacity 0.2s;
}

.dim-effect:hover {
  opacity: 0.6;
}

.pan-effect:hover {
  transform: translate(1px);
}

.light-effect:hover {
  filter: brightness(1.2);
}

/* ============ Utils ============ */

.background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  object-position: center;
}

.hidden {
  opacity: 0;
  z-index: -1 !important;
}

/* ============ Decorations ============ */

.circle {
  position: absolute;
  animation-name: bob;
  animation-duration: 6000ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.circle.dim {
  opacity: 0.12;
}

*:has(> .circle) {
  position: relative;
}

@keyframes bob {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(0.75%, 0.75%);
  }

  40% {
    transform: translate(-0.75%, 0.75%);
  }

  60% {
    transform: translate(0.75%, -0.75%);
  }

  80% {
    transform: translate(-0.75%, -0.75%);
  }

  100% {
    transform: translate(0);
  }
}

/* ============ Navigation ============ */

.main-nav li a {
  transition: opacity 0.3s;
  font-weight: 300;
}

.main-nav li a:hover {
  opacity: 0.6;
}

.main-nav .sub-menu a {
  font-size: 14px;
}

/* ============ Text ============ */

h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 119.977%;
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 119.977%;
}

p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 185%;
  letter-spacing: 0.42px;
}

strong {
  font-weight: 600;
}

ul {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 185%;
  letter-spacing: 0.42px;
}

ol {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 185%;
  letter-spacing: 0.42px;
}

.text ul {
  list-style: disc !important;
  margin-left: 20px;
}

.text ol {
  margin-left: 20px;
  list-style: decimal;
}

.text a {
  font-weight: 600;
  transition: opacity 0.3s;
}

.cta {
  font-weight: 400 !important;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.text a:hover {
  opacity: 0.6;
}

/* ============ 404 ============ */

.error-404 {
  align-items: center;
  height: 500px;
}

.error-404 .text {
  width: 85%;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 100%;
}

.error-404 .text h1 {
  color: var(--primary);
  font-size: 100px;
}

/* ============ Header ============ */

header {
  align-items: center;
  background: #fff;
  box-shadow: 0px 4px 30.1px 0px rgba(0, 0, 0, 0.1);
  padding-block: 25px;
  transition: background 0.3s;
  position: relative;
  z-index: 10;
}

header .wrapper {
  width: 85%;
}

header .main-nav {
  width: 100%;
}

header ul {
  justify-content: space-between;
  align-items: center;
}

header li {
  z-index: 10;
  color: #135320;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

header:has(.sub-menu.open) li {
  color: white;
  width: fit-content;
}

header .menu-item-has-children {
  display: flex;
  gap: 10px;
  align-items: center;
}

header:has(.sub-menu.open) {
  background-color: #289383;
}

header .sub-menu {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  height: 320px;
  background: #289383;
  flex-direction: column;
}

header .container {
  width: 62%;
  gap: 5%;
  margin-top: 90px;
  margin-left: 5%;
}

header .container h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.977%;
}

header .container .text {
  width: 360px;
  gap: 15px;
}

header .container .text p {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0.42px;
}

header .container .navigate {
  position: relative;
  gap: 5px;
  width: 550px;
}

header .container .navigate::before {
  width: 2px;
  height: 117px;
  content: "";
  position: absolute;
  left: -25px;
  background: white;
}

header .container .contact {
  position: relative;
  gap: 5px;
}

header .container .contact h3 {
  margin-bottom: 10px;
}

header .container .contact::before {
  width: 2px;
  height: 117px;
  content: "";
  position: absolute;
  left: -25px;
  background: white;
}

header .navigate li {
  display: flex;
  gap: 15px;
  align-items: center;
}

header .navigate .pages {
  column-gap: 15px;
  row-gap: 5px;
  margin-top: 10px;
}

header .navigate .pages:has(:nth-child(3)) {
  grid-template-columns: 1fr 1fr;
}

header .navigate li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d0e562;
}

header .social-media {
  gap: 10px;
}

header .social-media img {
  object-fit: contain;
  width: 18.652px;
  height: 18.652px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(0%)
    hue-rotate(68deg) brightness(105%) contrast(101%);
}

header .main-nav > ul > li:last-child {
  margin-left: 100px;
  background: #d0e562;
  color: #135320 !important;
  border-radius: 100px;
  padding-block: 7px;
  padding-inline: 17px;
  line-height: normal;
  width: fit-content;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

header .main-nav > ul > li > a {
  position: relative;
}

header .main-nav > ul > li > a::before {
  width: 0;
  height: 2px;
  content: "";
  background: #135320;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

header .main-nav > ul > li:not(:last-child) > a:hover::before {
  width: 100%;
}

header .main-nav > ul > li:has(.sub-menu.open) > a::before {
  width: 100%;
}

header .main-nav > ul > li.current-menu-item:not(:last-child) > a::before {
  width: 100%;
}

header .main-nav > ul > li.current-menu-item > a {
  font-weight: 600;
}

header .main-nav > ul > li:has(.sub-menu li.current-menu-item) > a::before {
  width: 100%;
}

header:has(.sub-menu.open) .main-nav > ul > li > a::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2029%)
    hue-rotate(129deg) brightness(112%) contrast(112%);
}

header:has(.sub-menu.open) .main-nav > ul > li::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2029%)
    hue-rotate(129deg) brightness(112%) contrast(112%);
}

/* ============ Banner ============ */

.banner {
  align-items: center;
  overflow: hidden;
}

.banner .wrapper {
  width: 85%;
  padding-top: 75px;
  padding-bottom: 150px;
  gap: 50px;
}

.banner .logo {
  width: fit-content;
  z-index: 1000;
}

body:has(.sub-menu.open) .banner .logo {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2029%)
    hue-rotate(129deg) brightness(112%) contrast(112%);
}

.banner .title {
  width: 80%;
  color: #135320;
  font-size: 40px;
}

.home .banner .title {
  width: 80%;
}

.banner .circle.one {
  right: -235px;
  top: -192px;
}

.banner .circle.two {
  bottom: 0;
  right: -200px;
}

.banner .circle.three {
  left: -100px;
  bottom: -100px;
}

.banner .circle.four {
  left: 65px;
  bottom: -80px;
}

/* ============ CTAs ============ */

.cta {
  background: #d0e562;
  color: #135320 !important;
  border-radius: 100px;
  padding-block: 7px;
  padding-inline: 17px;
  line-height: normal;
  width: fit-content;
}

.arrow-link {
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  gap: 5px;
  align-items: center;
  color: #135320 !important;
}

/* ============ Ribbon ============ */

.ribbon {
  display: grid;
  place-items: center;
  position: fixed;
  right: -105px;
  top: 400px;
  height: 71px;
  width: 266px;
  transform: rotate(-90deg);
  background: #d0e562;
  color: #135320;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  transition: transform 0.3s;
  z-index: 1000;
}

.ribbon p {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
}

.ribbon:hover {
  transform: rotate(-90deg) translateY(-5px);
}

/* ============ Home Featured Pages ============ */

.home .featured-pages {
  align-items: center;
}

.home .featured-pages .wrapper {
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.home .featured-page {
  padding-inline: 200px;
  padding-block: 65px;
}

.home .featured-page .container {
  gap: 25px;
}

.home .featured-page .text {
  gap: 10px;
  width: 75%;
}

.home .featured-page:nth-child(2n) {
  background: white;
}

.home .featured-page:nth-child(2n) .container {
  transform: translateX(55px);
}

.home .featured-page:nth-child(2n) .text * {
  color: #135320;
}

.home .featured-page:nth-child(2n - 1) {
  background: #289383;
}

.home .featured-page:nth-child(2n - 1) .text * {
  color: white;
  font-weight: 400;
}

.home .featured-page .main-image {
  border-radius: 8px;
  width: 437px;
  height: 227.604px;
  object-fit: cover;
}

/* ============ Featured Courses ============ */

.featured-courses {
  align-items: center;
  padding-top: 75px;
  padding-bottom: 90px;
  overflow: hidden;
}

.featured-courses .circle.one {
  left: 40px;
  top: 297px;
  z-index: -1;
}

.featured-courses .circle.two {
  left: 179px;
  top: 449px;
  z-index: -1;
}

.featured-courses .circle.three {
  right: -350px;
  bottom: -350px;
}

.featured-courses > .title {
  color: #135320;
  margin-bottom: 75px;
  font-weight: 500;
}

.featured-courses .wrapper {
  grid-template-columns: 1fr 1fr;
  width: 85%;
  column-gap: 75px;
  row-gap: 50px;
}

.featured-course {
  gap: 30px;
  align-items: center;
}

.featured-course .text {
  gap: 15px;
  width: 425px;
  color: #135320;
}

.home .featured-course .text * {
  color: #135320;
}

.featured-course .main-image {
  border-radius: 5px;
  width: 251px;
  height: 251px;
  object-fit: cover;
}

/* ============ Home CTA Strip ============ */

.cta-strip {
  position: relative;
  align-items: center;
  padding-block: 25px;
}

.cta-strip::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 555px;
  height: calc(100% + 1px);
  max-width: 25%;
  content: "";
  clip-path: polygon(0 0, 100% 0, 53% 100%, 0% 100%);
}

.cta-strip.one {
  background: #289383;
}

.cta-strip.one .title {
  color: #135320;
}

.cta-strip.one .text * {
  color: white;
}

.cta-strip.one::before {
  background: white;
}

.cta-strip.two {
  background: white;
}

.cta-strip.two .title {
  color: white;
}

.cta-strip.two .text * {
  color: #135320;
}

.cta-strip.two::before {
  background: #289383;
}

.cta-strip .wrapper {
  z-index: 2;
  width: 85%;
  gap: 205px;
}

.cta-strip .title {
  width: 200px;
  display: grid;
  place-items: center;
  color: #135320;
}

.cta-strip .text {
  gap: 15px;
  width: 100%;
}
/* ============ Home Links ============ */

.home .links {
  align-items: center;
  padding-block: 25px;
}

.home .links .wrapper {
  width: 100%;
  grid-template-columns: 1fr 1fr;
}

.home .link {
  padding-inline: 200px;
  padding-block: 50px;
}

.home .link .main-image {
  width: 437px;
  height: 227.604px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.home .link * {
  color: #135320;
}

.home .link {
  gap: 10px;
  width: 850px;
}

.home .link:nth-child(2n) > * {
  transform: translateX(55px);
}

/* ============ Home Articles ============ */

.home .articles {
  margin-top: 75px;
}

/* ============ Contact ============ */

.contact-section {
  background: white;
}

.contact-section .text {
  padding-right: 16%;
  padding-left: 11%;
  padding-block: 50px;
  background: #289383;
  width: 50%;
  gap: 25px;
  justify-content: center;
}

.contact-section .text * {
  color: #effff1;
}

.contact-section h1 {
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 104.685%; /* 73.279px */
}

.contact-section .form {
  padding-block: 50px;
  place-items: center;
  width: 50%;
}

/* ============ Gravity Forms ============ */

.gform_heading {
  display: none;
}

.gform_wrapper {
  width: 584px;
}

.gform_wrapper input:not([type="submit"]),
.gform_wrapper textarea {
  border: 1px solid #135320;
  background: #fff;
  border-radius: 52px;
  padding: 20px !important;
  color: #135320;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 105.98%;
}

.gform_wrapper textarea {
  height: 175px !important;
  border-radius: 31px;
  font-family: "Poppins" !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
  color: #135320;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 105.98%;
}

.gform_wrapper input[type="submit"] {
  border-radius: 56px;
  background: #d0e562;
  padding-block: 10px;
  padding-inline: 45px;
  color: #135320;
  border: none;
  color: #135320;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 105.98%;
  cursor: pointer;
  transition: opacity 0.3s;
}

.gform_wrapper input[type="submit"]:hover {
  opacity: 0.6;
}

.gform_wrapper.gravity-theme .gform_footer {
  justify-content: center;
}

.gform_confirmation_wrapper {
  color: #135320;
  max-width: 75%;
  text-align: center;
}

/* ============ Archives ============ */

.archive {
  align-items: center;
  background: #ffff;
  padding-block: 50px;
}

.archive .circle.one {
  right: -350px;
  bottom: 200px;
}

.archive .circle.two {
  right: 650px;
  top: 500px;
}

.archive .circle.three {
  right: 801px;
  top: 487px;
}

.archive .wrapper {
  width: 85%;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 75px;
  margin-block: 50px;
  z-index: 2;
}

.page-template-archive .banner {
  overflow: unset;
}

.archive .container {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.archive .item {
  width: 412px;
  gap: 15px;
}

.archive .item * {
  color: #135320;
}

.archive .item .main-image {
  width: 412px;
  height: 215px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* ============ Text Sections ============ */

.text-section .wrapper {
  width: 90%;
  align-items: center;
  gap: 100px;
}

.text-section .circle.one {
  right: 774px;
  top: 25px;
}

.text-section .circle.two {
  right: 599px;
  top: 33px;
  z-index: -1;
}

.text-section .circle.three {
  right: -400px;
  bottom: -150px;
}

.text-section:has(.wrapper.right) {
  background: white;
}

.text-section .wrapper.right {
  align-self: start;
}

.text-section .wrapper.right img {
  align-self: stretch;
}

.text-section .wrapper.left {
  align-self: end;
  flex-direction: row-reverse;
  margin-block: 75px;
}

.text-section .main-image {
  width: 794.88px;
  height: auto;
  object-fit: cover;
  z-index: 2;
}

.text-section .text {
  gap: 25px;
  width: 50%;
  padding-block: 50px;
}

.text-section .text * {
  color: #135320;
}

/* ============ The Company ============ */

.about-the-company .banner .title {
  width: 80%;
}

.info-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 100px;
}

.info-grid .item:nth-child(2n -1) {
  background: #289383;
  color: white;
}

.info-grid .item:nth-child(2n) {
  background: #effff1;
  color: #135320;
}

.grid-title {
  margin-top: 50px;
  margin-bottom: -25px;
  color: #135320;
  text-align: center;
}

.info-grid img {
  width: 437px;
  height: 228px;
  object-fit: cover;
  border-radius: 8px;
}

.info-grid .item {
  padding-inline: 25%;
  padding-block: 50px;
  gap: 25px;
}

.info-grid .item .text {
  gap: 25px;
}

.text-block {
  justify-content: center;
  padding-block: 100px;
}

.text-block .circle.one {
  right: -375px;
  top: -338px;
}

.text-block .circle.two {
  right: 68px;
  top: -75px;
}

.text-block .text {
  width: 850px;
  gap: 15px;
  text-align: center;
  max-width: 92%;
}

.text-block .text * {
  color: #135320;
}

.values {
  position: relative;
  align-items: center;
  padding-block: 25px;
  background: #289383;
}

.values .title {
  z-index: 5;
  color: #135320;
}

.values .wrapper {
  width: 85%;
  justify-content: space-between;
  align-items: center;
}

.values::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 555px;
  height: 100%;
  max-width: 29%;
  content: "";
  clip-path: polygon(0 0, 100% 0, 53% 100%, 0% 100%);
  background: white;
}

.values .grid {
  grid-template-columns: 1fr 1fr 1fr;
  width: 75%;
  gap: 100px;
  padding-top: 50px;
}

.values .value {
  position: relative;
}

.values .value ul {
  list-style-type: disc;
}

.values .value * {
  color: white;
}

/* ============ The Team ============ */

.meet-the-team .banner .title {
  width: 90%;
}

.meet-the-team .introduction {
  align-items: center;
  padding-block: 125px;
  background: #289383;
}

.meet-the-team .introduction .wrapper {
  width: 75%;
  gap: 100px;
}

.meet-the-team .introduction .text {
  color: white;
  gap: 25px;
}

.meet-the-team .introduction .main-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.meet-the-team .text-section .circle.one {
  right: 774px;
  top: -75px;
  z-index: -1;
}

.meet-the-team .text-section .circle.two {
  right: 599px;
  top: -84px;
  z-index: -2;
}

.the-team {
  align-items: center;
  background: white;
}

.the-team .wrapper {
  width: 90%;
  padding-block: 50px;
}

.the-team .rows {
  gap: 100px;
  align-items: center;
  padding-block: 50px;
}

.the-team .row:has(> :nth-child(2)):not(:has(> :nth-child(3))) {
  gap: 100px;
}

.the-team .row {
  gap: 100px;
}

.the-team .team-member {
  gap: 25px;
  align-items: center;
}

.the-team .team-member .name {
  color: #135320;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 119.977%;
}

.the-team .team-member .text {
  gap: 5px;
}

.the-team .team-member .main-image {
  width: 215px;
  height: 215px;
  object-fit: cover;
}

.the-team .team-member .role {
  color: #135320;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 21px */
  letter-spacing: 0.45px;
}

.the-team .title {
  align-self: center;
  width: fit-content;
  margin-bottom: 15px;
  color: #135320;
}

/* ============ Course ============ */

.single-course .introduction {
  align-items: start;
  background: #289383;
}

.single-course .introduction .wrapper {
  width: 85%;
  align-items: center;
  gap: 100px;
}

.single-course .introduction .text {
  gap: 25px;
  width: 50%;
}

.single-course .introduction .text p,
.single-course .introduction .text ul {
  font-weight: 300;
}

.single-course .introduction .circle.one {
  bottom: -50px;
  left: 350px;
  z-index: -1;
}

.single-course .introduction .text * {
  color: white;
}

.single-course .main-image {
  width: 618.659px;
  height: 414px;
  object-fit: cover;
  max-width: 100%;
}

.single-course .sections {
  align-items: center;
  padding-block: 100px;
}

.single-course .sections .circle.one {
  right: -400px;
  top: 100px;
}

.single-course .sections .circle.two {
  left: -25px;
  bottom: 600px;
}

.single-course .sections .circle.three {
  left: -73px;
  bottom: 536px;
}

.single-course .sections .wrapper {
  width: 70%;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
  column-gap: 275px;
}

.single-course .section {
  gap: 35px;
}

.single-course .section .text * {
  color: #135320;
}

.single-course .section .text {
  gap: 25px;
}

.single-course .title {
  font-size: 40px;
  padding-inline: 35px;
  padding-block: 15px;
}

/* ============ Events ============ */

.calendar {
  align-items: center;
  position: relative;
  padding-bottom: 75px;
}

.calendar > .wrapper {
  width: 85%;
}

.event .date,
.event .time {
  font-weight: 600;
}

.events-section {
  align-items: center;
  padding-block: 50px;
}

.events-section > .wrapper {
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 100px;
  column-gap: 200px;
  z-index: 2;
}

.events-section .event {
  gap: 15px;
  color: #135320;
}

.events-section .event p {
  width: 85%;
}

.events-section .event .main-image {
  width: 412px;
  height: 215px;
  border-radius: 8px;
  object-fit: cover;
}

.calendar .sf_date_field {
  display: flex;
  justify-content: end;
}

.calendar .circle.one {
  right: -400px;
  bottom: 150px;
}

.calendar .circle.two {
  left: 50px;
  bottom: 900px;
}

.calendar .circle.three {
  left: 0px;
  bottom: 836px;
}

.calendar .searchandfilter .sf-field-taxonomy-event-category ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.calendar .searchandfilter .sf-field-taxonomy-event-category label {
  background: #d0e562;
  color: #135320 !important;
  border-radius: 100px;
  padding-block: 7px;
  padding-inline: 17px;
  line-height: normal;
  width: fit-content;
  transition: opacity 0.3s;
  cursor: pointer;
}

.calendar .searchandfilter .sf-field-taxonomy-event-category label:hover {
  opacity: 0.6;
}

.calendar .searchandfilter ul .sf-input-radio {
  display: none;
}

.calendar .searchandfilter ul .sf-option-active label {
  background: #289383;
  color: white !important;
}

.calendar .heading {
  width: 100%;
  align-items: center;
  background: #289383;
  padding-block: 50px;
}

.calendar .heading > .wrapper {
  width: 85%;
}

.calendar .heading h1 {
  color: #effff1;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 104.685%;
}

.calendar .sf-field-post-meta-event_month select {
  position: absolute;
  top: 70px;
  right: 7%;
  border-radius: 6px;
  background: #fff;
  border: none;
  padding-block: 5px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.977%;
  color: #135320;
  padding-left: 10px;
}

.calendar .sf-field-post-meta-event_year select {
  position: absolute;
  top: 70px;
  right: 19%;
  border-radius: 6px;
  background: #fff;
  border: none;
  padding-block: 5px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.977%;
  color: #135320;
  padding-left: 10px;
}

/* ============ FAQs ============ */

.faqs-grid {
  align-items: center;
  padding-block: 100px;
  background: white;
}

.faqs-grid .wrapper {
  width: 75%;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.faqs-grid .faq {
  position: relative;
  border: 1px solid #135320;
  color: #135320;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-block: 20px;
  border-radius: 100px;
  background: white;
  padding-inline: 50px;
  cursor: pointer;
}

.faqs-grid .answer {
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  left: 50%;
  width: 80%;
  border: 1px solid #135320;
  display: none;
  background: white;
  z-index: 50;
  padding: 5px;
  overflow: auto;
  max-height: 200px;
}

/* ============ Footer ============ */

footer {
  overflow: hidden;
  align-items: center;
  padding-block: 25px;
  box-shadow: 0px -18px 50px 0px rgba(0, 0, 0, 0.07);
}

footer .circle.one {
  left: -125px;
  top: 10px;
}

footer .circle.two {
  left: -150px;
  top: -250px;
}

footer .circle.three {
  right: -500px;
  top: -200px;
}

footer .wrapper {
  align-items: center;
  justify-content: space-between;
  width: 85%;
}

footer .contacts {
  gap: 20px;
}

footer .contacts * {
  color: #135320;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 105.98%;
}

footer .links {
  gap: 20px;
  align-items: center;
}

footer .links * {
  color: #135320;
}

footer ul {
  gap: 20px;
}

footer .links img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(17%) saturate(1861%)
    hue-rotate(80deg) brightness(92%) contrast(96%);
}

.footer-end {
  width: 100%;
  padding-block: 5px;
  background: linear-gradient(90deg, #229239 0%, #289383 100%);
  align-items: center;
}

.footer-end .wrapper {
  width: 85%;
  gap: 10px;
  align-items: center;
}

.footer-end * {
  color: white;
  font-weight: 300;
  font-size: 13px;
  line-height: normal;
}
