@charset "UTF-8";
@font-face {
  font-family: GalanoGrotesque;
  font-weight: bold;
  src: url(e8d6ed1f9eff334507fab2f6b46e15ad.otf) format("opentype");
}
@font-face {
  font-family: GalanoGrotesque;
  font-weight: normal;
  src: url(cbd8956ee8ca32b9757c89320519af87.otf) format("opentype");
}
@font-face {
  font-family: GalanoGrotesqueLight;
  font-weight: lighter;
  src: url(790058af38f23c93b59765eb44888da9.otf) format("opentype");
}
.btn {
  display: inline-block;
  width: fit-content;
  padding: 10px 30px;
  background-color: #b65943;
  color: #fff;
  line-height: 1rem;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn span {
  font-size: 2rem;
  line-height: 0.8rem;
  position: relative;
  top: 3px;
  left: 3px;
}
.btn.zoom {
  transition: all 0.3s ease-in-out;
}
.btn.zoom:hover {
  transform: scale(1.1);
}

.btn-image {
  display: inline-block;
  width: 100%;
  color: #423133;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.btn-image img {
  border-radius: 4px;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.btn-image h3 {
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 0px;
  margin: 0px;
}
.btn-image span {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 0px 6px 0px 6px;
}
.btn-image span svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 6px;
  color: #fff;
}

.btn-icon, .btn-list {
  position: relative;
  padding: 10px 10px 10px 64px;
  display: inline-block;
  width: 100%;
  color: #423133;
  text-decoration: none;
  cursor: pointer;
}
.btn-icon svg, .btn-list svg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  color: #00a2af;
}
.btn-icon h3, .btn-list h3 {
  font-size: 1.2rem;
  line-height: 1.6rem;
  padding: 0px;
  margin: 0px;
  color: #423133;
}
.btn-icon p, .btn-list p {
  color: #423133;
  margin: 3px 0px;
  padding: 0px;
  font-size: 0.9rem;
  line-height: 1.2rem;
}
.btn-icon span, .btn-list span {
  display: block;
}
.btn-icon span svg, .btn-list span svg {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 5px;
  color: #00a2af;
}
.btn-icon:hover, .btn-list:hover {
  color: #b65943;
}
.btn-icon:hover h3, .btn-icon:hover svg, .btn-icon:hover p, .btn-list:hover h3, .btn-list:hover svg, .btn-list:hover p {
  color: #b65943;
}

.btn-list {
  display: block;
  font-size: 1rem;
  line-height: 1.2rem;
  padding: 10px;
  margin: 15 0px 15px 0px;
  color: #423133;
}

body {
  padding-top: 120px !important;
}

header {
  width: 100%;
  padding: 10px 0px 10px 0px;
  background-color: #fcfcfc;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
  height: 136px;
  display: flex;
  align-items: flex-end;
}
header .headerLine {
  position: absolute;
  bottom: 1px;
  height: 1px;
  display: block;
  transition: transform 1s linear;
  width: 100%;
  background: linear-gradient(to left, #ccc, #ececec);
  transform: scaleX(0);
  transform-origin: top right;
}
header .headerLine.show {
  transform: scaleX(1);
  transition: transform 1s linear;
}
header .headerScrollLine {
  position: absolute;
  bottom: 1px;
  height: 2px;
  display: block;
  width: 0%;
  background-color: #b65943;
}
header .container {
  display: flex;
  padding: 0px 20px 0px 20px;
  align-items: center;
  position: relative;
  line-height: 0px;
}
header .logo {
  flex-shrink: 1;
  max-height: 50px;
  max-width: 100%;
  margin-right: 50px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}
header .logo-stacked {
  max-height: 130px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: -10px;
  max-width: 100%;
  left: 0px;
  z-index: 2;
}
header .logo-holder {
  position: relative;
  max-width: 25%;
}
@media screen and (max-width: 700px) {
  header .logo-holder {
    flex-grow: 1;
  }
  header .logo-holder .logo-stacked {
    left: 0;
    right: 0;
    margin: auto;
  }
}
header.shrink .logo {
  opacity: 1;
  transform: scaleY(1);
  transform-origin: top center;
}
header.shrink .logo-stacked {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
}
header .navigation {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  white-space: nowrap;
}
header .navigation .mobileLogo {
  display: none;
}
header .cta {
  justify-content: flex-end;
  display: flex;
  flex-grow: 1;
}
header .cta .btn {
  white-space: nowrap;
}
header ul.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px;
  margin: 0px;
  max-width: 800px;
}
header ul.menu li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin: 0px;
  padding: 0px;
}
header ul.menu li:has(ul:hover) a {
  border-radius: 4px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  color: #fff;
  background-color: #00a2af;
}
header ul.menu li a {
  padding: 10px;
  line-height: 1rem;
  text-decoration: none;
  color: #423133;
  font-size: 1rem;
  display: inline-block;
  position: relative;
}
header ul.menu li a span {
  position: relative;
  z-index: 2;
  display: block;
}
header ul.menu li a:hover, header ul.menu li a.hover {
  border-radius: 4px;
  color: #fff;
  background-color: #00a2af;
}
header ul.menu li:has(ul) a:hover, header ul.menu li:has(ul) a.hover {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
header ul.menu li ul {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0px;
  margin: 0px;
  padding: 0px;
  width: 300px;
  background-color: #fcfcfc;
  background: rgba(252, 252, 252, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #ececec;
  -webkit-backdrop-filter: blur(4px);
  transform: scaleY(0);
  transform-origin: top left;
  opacity: 0;
  transition: transform 0.3s linear;
}
header ul.menu li ul li {
  display: block;
  padding: 0px;
  margin: 0px;
}
header ul.menu li ul li a {
  padding: 10px;
  display: block;
  padding-left: 30px;
  background: transparent !important;
  color: #000 !important;
}
header ul.menu li ul li a:hover {
  background: transparent;
  color: #b65943 !important;
}
header ul.menu li .expandMobile {
  display: none;
}
header ul.menu li:hover ul {
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.3s linear;
}

@keyframes slideUp {
  from {
    height: 0px;
  }
  to {
    height: 100%;
  }
}
@media screen and (max-width: 750px) {
  #wpadminbar {
    display: none;
  }
  header {
    position: fixed;
    background-color: #fcfcfc;
    top: 0px;
    left: 0px;
    z-index: 999;
    padding-bottom: 0px;
    justify-content: flex-start;
  }
  header .container {
    padding: 0px 8px 8px 8px;
    justify-content: space-between;
    height: 100%;
  }
  header .logo-holder {
    max-width: none;
    height: 100%;
  }
  header .navigation {
    display: block;
    transform: scaleX(0);
    transform-origin: center right;
    transition: transform 0.4s ease-in-out;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 50px 10px 50px 10px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999999;
  }
  header .navigation .mobileLogo {
    display: block;
    width: 200px;
    margin: 20px auto 0px auto;
  }
  header .navigation ul.menu {
    flex-direction: column;
    transform: scaleX(0.7);
    transition: transform 0.3s ease-in-out 0.3s;
    transform-origin: center top;
  }
  header .navigation ul.menu li {
    width: 100%;
  }
  header .navigation ul.menu li a {
    text-align: center;
    display: block;
    width: fit-content;
    margin: 20px auto 5px auto;
    font-size: 1.4rem;
    font-weight: bold;
    color: #00a2af;
    border-bottom: 2px solid #00a2af;
  }
  header .navigation ul.menu li ul {
    display: block;
    opacity: 1;
    transform: scaleY(1);
    width: 100%;
    position: relative;
    top: 0px;
    left: 0px;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0px;
  }
  header .navigation ul.menu li ul a {
    display: block;
    line-height: 1.4rem;
    padding: 6px;
    font-size: 1.2rem;
    text-align: center;
    color: #000;
    background: transparent !important;
    border-bottom: 0px;
    font-weight: normal;
  }
  header .navigation.expand {
    transform: scaleX(1);
  }
  header .navigation.expand ul.menu {
    transform: scaleX(1);
  }
  header .logo {
    height: auto;
    max-width: calc(100% - 50px);
  }
  header .cta {
    display: none;
    font-size: 0.8rem;
    text-align: center;
    padding-left: 30px;
  }
  header .cta .btn {
    padding: 8px 14px 8px 14px;
  }
}
.mobile-toggle {
  cursor: pointer;
  margin: 6px;
  width: 50px;
  height: 50px;
  display: none;
  z-index: 99999999;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .mobile-toggle {
    display: block;
  }
}
.mobile-toggle .bars {
  transition: all 0.3s ease-in-out;
  width: 50px;
  padding: 15px 10px 15px 10px;
  z-index: 99999999;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-toggle.highlight {
  background-color: #00a2af;
  border-radius: 25px;
}
.mobile-toggle.highlight span {
  background-color: #fff;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #423133;
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
}
.mobile-toggle.active {
  background-color: #00a2af;
  border-radius: 25px;
}
.mobile-toggle.active .bars {
  transform: translateX(7px);
}
.mobile-toggle.active .bars span {
  background-color: #fff;
}
.mobile-toggle.active .bars span:nth-of-type(1) {
  transform-origin: top left;
  transform: rotate(45deg) translateX(-2px);
}
.mobile-toggle.active .bars span:nth-of-type(2) {
  transform: scale(0);
}
.mobile-toggle.active .bars span:nth-of-type(3) {
  transform-origin: bottom left;
  transform: rotate(-45deg) translateX(-2px);
}

body.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 700px) {
  body.admin-bar header {
    top: 45px;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar header {
    top: 0px;
  }
  body {
    padding-top: 120px !important;
  }
}
.block {
  padding: 20px;
  width: 100%;
  position: relative;
  margin: 60px 0px 60px 0px;
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
}
.block.lightyellow {
  background-color: #fff9f2;
}
.block.teal {
  background-color: #00a2af;
}
.block.teal .text .contain h2, .block.teal .text .contain h3, .block.teal .text .contain p {
  color: #fff;
}
.block.teal .text .contain h2, .block.teal .text .contain h3 {
  color: #f0e18d;
}
.block.mark::before {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-position: top right;
}
.block.mark.alt::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  transform: rotateY(180deg);
  background-repeat: no-repeat;
  background-position: top right;
}
.block.mark.teal::before {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-position: top right;
}
.block.curve::after {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: auto 100%;
  background-position: top left;
  background-repeat: no-repeat;
}
.block.brown {
  background-color: #ececec;
}
.block.brown .text p {
  color: #000;
}
.block.brown .text h2 {
  color: #00a2af;
}
.block.full {
  display: block;
}
.block .curveText {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 60px;
  z-index: 3;
  font-size: 1.6rem;
  max-width: 560px;
}
.block .curveText b {
  color: #423133;
  margin-bottom: 6px;
  display: block;
}
.block .curveText ul.islandList li {
  list-style: square;
  margin-bottom: 6px;
  margin-left: 24px;
  color: #00a2af;
}
.block .curveText ul.islandList li a {
  color: #00a2af;
}
.block .text, .block .image {
  position: relative;
  z-index: 2;
}
.block .image {
  display: flex;
  justify-content: center;
  padding: 30px;
}
.block .image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.block .image .slant {
  position: relative;
  height: fit-content;
}
.block .image .slant img {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  object-fit: cover;
  background-color: #00a2af;
  position: relative;
  z-index: 1;
}
.block .image .slant::before {
  content: "";
  z-index: 0;
  position: absolute;
  left: -10px;
  top: -10px;
  width: 100%;
  height: 100%;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  object-fit: cover;
  background-color: #f0e18d;
  display: block;
}
.block .text {
  display: flex;
  padding: 20px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.block .text .contain {
  margin: 0px auto;
  width: 460px;
  max-width: 100%;
}
.block .text .contain.center p, .block .text .contain.center h3, .block .text .contain.center h2 {
  text-align: center;
}
.block .text .contain.center .btn {
  display: block;
  width: fit-content;
  margin: 0px auto;
}
.block .text h2 {
  font-size: 2.4rem;
  margin-top: 0px;
  padding-top: 0px;
  color: #423133;
}
.block .text p {
  font-size: 1rem;
  line-height: 2rem;
  width: 460px;
  max-width: 100%;
  display: block;
}
.block .text p.large {
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 0px;
  margin: 0px;
}

.block.simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 800px;
  max-width: 100%;
  text-align: center;
  margin: 0px auto;
  padding-bottom: 60px;
}
.block.simple h3 {
  padding: 20px 20px 0px;
  font-size: 2.6rem;
  line-height: 3.2rem;
  color: #423133;
}
.block.simple p {
  font-size: 1.6rem;
  line-height: 2.2rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 0px auto 0px auto;
}
.logo-grid.logo-grid-10 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 1200px;
  max-width: 100%;
}
.logo-grid div {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-grid div img {
  max-width: 100%;
  max-height: 110px;
}

footer {
  width: 100%;
  padding: 0px 20px 20px 20px;
  min-height: 200px;
  color: #423133;
  background-color: #ececec;
  background-image: url(e40103d83a1c1911cdc1eddad8bfa814.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
footer a {
  color: #fff9f2;
}
footer .container {
  display: flex;
  justify-content: space-evenly;
  width: 1200px;
  max-width: 100%;
}
footer .container .col {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 0;
  flex-grow: 1;
}
footer .container .col.center {
  text-align: center;
}
footer .container .col b {
  display: block;
  font-weight: normal;
}
footer .container .socialLinks {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px;
  width: 100%;
  opacity: 0.7;
  border-bottom: 1px solid #ccc;
  font-weight: normal;
  color: #000;
  text-decoration: none;
}
footer .container .socialLinks .socialLink svg {
  width: 30px;
  height: 30px;
  margin: 0px 0px 0px 12px;
  color: #000;
}
footer .container .copyright {
  display: block;
  text-align: center;
  font-size: 0.8rem;
}
footer .container .copyright img {
  width: 180px;
  margin: 0px auto 12px;
  display: block;
}
footer .container .copyright a {
  color: #000;
}
footer ul {
  padding: 0px;
  margin: 0px;
}
footer ul li {
  list-style: none;
  margin: 6px;
  padding: 0px;
}
footer ul li a {
  color: #000;
}

@media screen and (max-width: 600px) {
  footer .container {
    flex-direction: column;
  }
}
.horizontalBlocks {
  display: flex;
  margin: 50px auto;
}
.horizontalBlocks .block {
  display: block;
  text-decoration: none;
  color: #423133;
}
.horizontalBlocks .block .image {
  width: 100%;
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  background-color: #00a2af;
  overflow: hidden;
}
.horizontalBlocks .block .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: transform 0.3s ease-in-out;
}
.horizontalBlocks .block .image:hover img {
  transform: scale(1.1);
}
.horizontalBlocks .block h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 2rem;
  padding: 0px;
  margin: 4px 0px 4px;
  padding-right: 10%;
}
.horizontalBlocks .block h3::after {
  content: "›";
  font-size: 2rem;
  margin-left: 30px;
  color: #00a2af;
}
.horizontalBlocks .block p {
  display: block;
  font-size: 1rem;
  line-height: 1.8rem;
  text-align: left;
  padding: 0px;
  margin: 4px 0px;
  padding-right: 10%;
}

.divider {
  width: 1600px;
  max-width: 100%;
  margin: 20px auto 30px;
  height: 1px;
  background-color: #423133;
  display: block;
}
.divider.narrow {
  width: 800px;
}

.pressreleases {
  width: 100%;
  overflow-x: auto;
  padding: 30px 0px 60px 0px;
  display: block;
}
.pressreleases h3 {
  font-size: 2.4rem;
  line-height: 2.7rem;
  color: #00a2af;
  text-align: center;
}
.pressreleases .scroll {
  display: flex;
  width: 1200px;
  justify-content: space-evenly;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  margin: 0px auto 0px auto;
}
.pressreleases .scroll .col {
  scroll-snap-align: start;
  flex-basis: 0;
  flex-grow: 1;
  padding: 10px;
  width: 300px;
}
.pressreleases .scroll .col a.item {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
}
.pressreleases .scroll .col a.item img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
  background-color: #00a2af;
  margin-bottom: 4px;
}
.pressreleases .scroll .col a.item small {
  font-size: 0.8rem;
  line-height: 1rem;
  display: block;
  font-weight: 100;
  color: #423133;
}
.pressreleases .scroll .col a.item h4 {
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #423133;
  margin: 0px;
  padding: 4px 0px;
}

.card-slider {
  list-style: none;
  padding: 20px 20px 60px 20px;
  margin: 20px auto 20px auto;
  width: 900px;
  height: 680px;
  clear: both;
  max-width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.card-slider .arrow-previous, .card-slider .arrow-next {
  position: absolute;
  top: calc(50% - 50px);
  background-color: #fcfcfc;
  display: none;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 25px;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease-in-out;
  color: #ccc;
  border: 1px solid #ccc;
  cursor: default;
}
.card-slider .arrow-previous.active, .card-slider .arrow-next.active {
  display: flex;
  color: #00a2af;
  border: 1px solid #00a2af;
  cursor: pointer;
}
.card-slider .arrow-previous.active:hover, .card-slider .arrow-next.active:hover {
  background-color: #00a2af;
  color: #fff;
}
.card-slider .arrow-previous {
  left: 10px;
}
.card-slider .arrow-next {
  right: 10px;
}
.card-slider .dots {
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.card-slider .dots div {
  width: 16px;
  height: 16px;
  margin: 0px 10px 0px 10px;
  border-radius: 8px;
  background-color: #ccc;
  cursor: pointer;
}
.card-slider .dots div.active {
  background-color: #b65943;
}
.card-slider li {
  position: absolute;
  left: -100%;
  top: 0px;
  list-style: none;
  padding: 20px;
  width: 100%;
  height: 640px;
}
.card-slider li .slide {
  background-color: #fff;
  border: 1px solid #fcfcfc;
  border-radius: 8px;
  display: grid;
  height: 100%;
  overflow: hidden;
  grid-template-columns: 50% 50%;
}
.card-slider li img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
}
.card-slider li .content {
  padding: 30px 40px 30px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.card-slider li .content h5 {
  font-size: 1rem;
  line-height: 1.2rem;
  display: block;
  width: fit-content;
  margin: 0px auto 10px auto;
  padding: 0px 0px 10px 0px;
  color: #00a2af;
  border-bottom: 2px solid #00a2af;
  text-align: center;
}
.card-slider li .content h3 {
  font-size: 2rem;
  line-height: 2.6rem;
}
.card-slider li .content p {
  font-size: 1rem;
  line-height: 1.6rem;
  text-align: left;
}
.card-slider li.focusLeft {
  animation: focusLeft 0.4s linear forwards;
}
.card-slider li.unfocusLeft {
  animation: unfocusLeft 0.4s linear forwards;
}
.card-slider li.focusRight {
  animation: focusRight 0.4s linear forwards;
}
.card-slider li.unfocusRight {
  animation: unfocusRight 0.4s linear forwards;
}

@keyframes focusLeft {
  from {
    left: 100%;
  }
  to {
    left: 0px;
  }
}
@keyframes unfocusLeft {
  from {
    left: 0px;
  }
  to {
    left: -100%;
  }
}
@keyframes focusRight {
  from {
    left: -100%;
  }
  to {
    left: 0px;
  }
}
@keyframes unfocusRight {
  from {
    left: 0px;
  }
  to {
    left: 100%;
  }
}
.animate-zoom {
  aspect-ratio: 16/9;
  border-radius: 10px;
  position: relative;
  display: block;
  width: 800px;
  max-width: 100%;
  z-index: 99;
  margin: 20px auto 20px auto;
  overflow: hidden;
  background-size: cover;
}
.animate-zoom .bg {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-size: 200% auto;
  opacity: 0.6;
  top: 0px;
  left: 0px;
}
.animate-zoom.animate div {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  display: block;
  position: absolute;
  top: 0px;
  opacity: 0;
  transform: scale(0.1);
  left: 0px;
  transform-origin: center bottom;
  animation-name: animateZoom;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  z-index: 100;
}
.animate-zoom.animate div img, .animate-zoom.animate div video {
  position: absolute;
  max-width: 76%;
  max-height: 60%;
  border-radius: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}
.animate-zoom.animate div video {
  aspect-ratio: 16/9;
}
.animate-zoom.animate div:nth-of-type(1) {
  z-index: 100;
  top: 0px;
  left: 0px;
}
.animate-zoom.animate div:nth-of-type(1) img, .animate-zoom.animate div:nth-of-type(1) video {
  top: 0px;
  left: 0px;
}
.animate-zoom.animate div:nth-of-type(2) {
  z-index: 99;
  animation-delay: 2s;
}
.animate-zoom.animate div:nth-of-type(2) img, .animate-zoom.animate div:nth-of-type(2) video {
  top: 0px;
  right: 0px;
}
.animate-zoom.animate div:nth-of-type(3) {
  z-index: 98;
  animation-delay: 4s;
}
.animate-zoom.animate div:nth-of-type(3) img, .animate-zoom.animate div:nth-of-type(3) video {
  right: 0px;
  bottom: 0px;
}
.animate-zoom.animate div:nth-of-type(4) {
  z-index: 97;
  animation-delay: 5s;
}
.animate-zoom.animate div:nth-of-type(4) img, .animate-zoom.animate div:nth-of-type(4) video {
  left: 0px;
  bottom: 0px;
}
.animate-zoom.animate div:nth-of-type(5) {
  z-index: 96;
  animation-delay: 6s;
}
.animate-zoom.animate div:nth-of-type(5) img, .animate-zoom.animate div:nth-of-type(5) video {
  top: 0px;
  left: 0px;
}
.animate-zoom.animate div:nth-of-type(6) {
  z-index: 96;
  animation-delay: 7s;
}
.animate-zoom.animate div:nth-of-type(6) img, .animate-zoom.animate div:nth-of-type(6) video {
  top: 0px;
  right: 0px;
}
.animate-zoom.animate div:nth-of-type(7) {
  z-index: 95;
  animation-delay: 7s;
}
.animate-zoom.animate div:nth-of-type(7) img, .animate-zoom.animate div:nth-of-type(7) video {
  right: 33%;
  bottom: 0px;
}
.animate-zoom.animate div:nth-of-type(8) {
  z-index: 94;
  animation-delay: 8s;
}
.animate-zoom.animate div:nth-of-type(8) img, .animate-zoom.animate div:nth-of-type(8) video {
  left: 0px;
  bottom: 0px;
}

@keyframes animateZoom {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.platform-block .container {
  width: 1200px;
  color: #423133;
}
.platform-block .title {
  padding-left: 100px;
}
.platform-block .platform-select {
  display: grid;
  grid-template-columns: 100px auto;
  margin-top: 90px;
}
.platform-block .platform-select .icons div {
  color: #ccc;
  margin: 20px 10px 20px 10px;
}
.platform-block .platform-select .icons div svg {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.platform-block .platform-select .icons div.active {
  opacity: 1;
  color: #b65943;
}
.platform-block .platform-select .content {
  background-color: #00a2af;
  display: none;
  padding: 30px;
  grid-template-columns: 33% auto;
  gap: 40px;
}
.platform-block .platform-select .content.active {
  display: grid;
}
.platform-block .platform-select .content.active .description {
  animation: fadeIn 0.6s ease-in-out forwards;
  transform-origin: center left;
}
.platform-block .platform-select .content .platform-image {
  position: relative;
}
.platform-block .platform-select .content .platform-image img {
  position: absolute;
  width: 100%;
  top: -80px;
  left: 0px;
  height: calc(100% + 80px);
  object-fit: cover;
}
.platform-block .platform-select .content .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.platform-block .platform-select .content .description h4 {
  font-size: 1.3rem;
  line-height: 1.6rem;
}
.platform-block .platform-select .content .description h4, .platform-block .platform-select .content .description p {
  max-width: 320px;
}
.platform-block .platform-select .content .description p {
  line-height: 1.8rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.backToTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #423133;
  color: #fff;
  position: fixed;
  bottom: -80px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
  padding: 10px;
  font-size: 10px;
  transition: bottom 0.3s ease-in-out;
}
.backToTop svg {
  height: 40px;
}
.backToTop.show {
  bottom: 0px;
}

.headerAlert {
  width: 100%;
  background-color: #b65943;
  color: #fff;
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 999999;
  text-decoration: none;
}
.headerAlert.orange {
  background-color: #b65943;
}
.headerAlert.orange .btn {
  background-color: #fff;
  color: #b65943;
}
.headerAlert.teal {
  background-color: #00a2af;
}
.headerAlert.teal .btn {
  background-color: #fff;
  color: #00a2af;
}
.headerAlert.green {
  background-color: #b8be36;
}
.headerAlert.green .btn {
  background-color: #fff;
  color: #b8be36;
}
.headerAlert.brown {
  background-color: #423133;
}
.headerAlert.brown .btn {
  background-color: #fff;
  color: #423133;
}
.headerAlert .container {
  width: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
}
.headerAlert .container h3 {
  margin: 0px;
  padding: 0px;
}
.headerAlert .container p {
  margin: 0px;
  padding: 0px;
  padding-top: 6px;
}
.headerAlert .container div:nth-of-type(1) {
  flex-grow: 1;
}
.headerAlert .container div:nth-of-type(2) {
  flex-shrink: 1;
}

@media screen and (max-width: 700px) {
  .headerAlert .container {
    flex-direction: column;
    align-items: start;
  }
  .headerAlert .container .btn {
    margin-top: 12px;
  }
}
.article.container {
  width: 1000px !important;
  max-width: 100% !important;
}
.article.container .content {
  font-size: 1rem;
  line-height: 1.6rem;
}
.article.container figure.wp-block-image {
  display: inline-flex;
  flex-direction: column;
  background-color: #ececec;
}
.article.container figure.wp-block-image figcaption {
  width: 100%;
  display: block;
  font-size: 0.8rem;
  padding: 8px;
}
.article.container figure.wp-block-image img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.article.container .wp-block-image.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
.article.container .wp-block-image.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.assets-page {
  min-height: 70vh;
  padding: 40px 0;
  background-color: #fcfcfc;
}

.assets-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.password-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  margin: 100px auto;
}
.password-form h2 {
  color: #00a2af;
  margin-bottom: 20px;
}
.password-form input[type=password] {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 20px;
}
.password-form input[type=password]:focus {
  outline: none;
  border-color: #00a2af;
}
.password-form .btn {
  background: #00a2af;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.password-form .btn:hover {
  background: #00737c;
}

.assets-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.assets-header {
  background: #00a2af;
  color: white;
  padding: 30px;
}
.assets-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.assets-header .header-text {
  text-align: left;
}
.assets-header .header-text h1 {
  margin: 0;
  font-size: 2.5rem;
}
.assets-header .header-text p {
  margin: 10px 0 0 0;
  opacity: 0.9;
}
.assets-header .btn-logout {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.assets-header .btn-logout:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.upload-section {
  padding: 30px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}
.upload-section h3 {
  color: #423133;
  margin-bottom: 20px;
}

.upload-form .file-upload-area {
  margin-bottom: 20px;
}
.upload-form .file-upload-area input[type=file] {
  display: none;
}
.upload-form .file-drop-zone {
  border: 3px dashed #00a2af;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.upload-form .file-drop-zone:hover {
  border-color: #00737c;
  background: rgba(0, 162, 175, 0.02);
}
.upload-form .file-drop-zone.drag-over {
  border-color: #b65943;
  background: rgba(182, 89, 67, 0.05);
  transform: scale(1.02);
}
.upload-form .file-drop-zone .drop-zone-content .drop-zone-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  opacity: 0.7;
}
.upload-form .file-drop-zone .drop-zone-content .drop-zone-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #423133;
  margin: 0 0 10px 0;
}
.upload-form .file-drop-zone .drop-zone-content .drop-zone-hint {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
.upload-form .selected-files {
  margin-top: 20px;
}
.upload-form .selected-files .file-list {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 15px;
  max-height: 200px;
  overflow-y: auto;
}
.upload-form .selected-files .file-item-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: white;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
}
.upload-form .selected-files .file-item-preview:last-child {
  margin-bottom: 0;
}
.upload-form .selected-files .file-item-preview .file-name-preview {
  flex: 1;
  font-weight: 500;
  color: #423133;
  margin-right: 10px;
  word-break: break-word;
}
.upload-form .selected-files .file-item-preview .file-size-preview {
  color: #666;
  font-size: 0.9rem;
  margin-right: 15px;
  white-space: nowrap;
}
.upload-form .selected-files .file-item-preview .remove-file-btn {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: background 0.3s;
}
.upload-form .selected-files .file-item-preview .remove-file-btn:hover {
  background: #bd2130;
}
.upload-form .upload-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.upload-form .upload-controls select {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  min-width: 150px;
  background: white;
  font-size: 14px;
}
.upload-form .upload-controls select:focus {
  outline: none;
  border-color: #00a2af;
}
.upload-form .upload-controls .btn {
  background: #b65943;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
}
.upload-form .upload-controls .btn:hover {
  background: #914735;
  transform: translateY(-1px);
}
.upload-form .upload-controls .btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.folder-section {
  padding: 30px;
}
.folder-section h3 {
  color: #423133;
  margin-bottom: 20px;
}

.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.folder-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s;
  position: relative;
  min-height: 200px;
}
.folder-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.folder-card.pinned {
  border-color: #f0e18d;
  background: #fff9f2;
}
.folder-card.pinned::before {
  content: "📌";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
}

.folder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.folder-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #423133;
  margin: 0;
}

.folder-actions {
  display: flex;
  gap: 5px;
}
.folder-actions button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  transition: background 0.3s;
}
.folder-actions button:hover {
  background: #f0f0f0;
}

.folder-files {
  max-height: none;
  overflow-y: visible;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.image-item {
  text-align: center;
}
.image-item .image-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  margin-bottom: 8px;
  aspect-ratio: 1;
}
.image-item .image-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.image-item .image-thumbnail .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.image-item .image-thumbnail:hover .image-overlay {
  opacity: 1;
}
.image-item .image-thumbnail:hover img {
  transform: scale(1.05);
}
.image-item .image-thumbnail .image-actions {
  display: flex;
  gap: 8px;
}
.image-item .image-thumbnail .image-actions a, .image-item .image-thumbnail .image-actions button {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.image-item .image-thumbnail .image-actions a:hover, .image-item .image-thumbnail .image-actions button:hover {
  background: white;
  transform: scale(1.1);
}
.image-item .image-thumbnail .image-actions .btn-delete {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}
.image-item .image-thumbnail .image-actions .btn-delete:hover {
  background: #dc3545;
}
.image-item .image-info .image-name {
  display: block;
  font-size: 12px;
  color: #423133;
  font-weight: 500;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.image-item .image-info .image-size {
  display: block;
  font-size: 10px;
  color: #666;
}

.other-files-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
  margin-top: 15px;
}
.other-files-section h5 {
  margin: 0 0 10px 0;
  color: #423133;
  font-size: 14px;
  font-weight: 600;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  margin-bottom: 8px;
  background: white;
  transition: all 0.3s;
}
.file-item:hover {
  border-color: #00a2af;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.file-item:last-child {
  margin-bottom: 0;
}
.file-item .file-icon {
  font-size: 20px;
  margin-right: 12px;
  width: 24px;
  text-align: center;
}
.file-item .file-details {
  flex: 1;
  min-width: 0;
}
.file-item .file-details .file-name {
  display: block;
  font-size: 14px;
  color: #423133;
  font-weight: 500;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-item .file-details .file-size {
  display: block;
  font-size: 12px;
  color: #666;
}
.file-item .file-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.file-download {
  background: #b8be36;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}
.file-download:hover {
  background: #92962b;
}

.btn-delete-file {
  background: #dc3545;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-delete-file:hover {
  background: #bd2130;
}

.create-folder-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
.create-folder-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.create-folder-form input:focus {
  outline: none;
  border-color: #00a2af;
}
.create-folder-form .btn {
  background: #00a2af;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.create-folder-form .btn:hover {
  background: #00737c;
}

.alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.alert.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media screen and (max-width: 768px) {
  .upload-form {
    flex-direction: column;
    align-items: stretch;
  }
  .folder-grid {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  .create-folder-form {
    flex-direction: column;
    align-items: stretch;
  }
  .assets-header .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .assets-header .header-text {
    text-align: center;
  }
  .assets-header .header-text h1 {
    font-size: 2rem;
  }
  .assets-container {
    padding: 0 10px;
  }
  .file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .file-item .file-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }
}
.assets-manager-block .assets-manager-editor {
  background: white;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.assets-manager-block .assets-manager-editor .assets-header-editor {
  margin-bottom: 30px;
}
.assets-manager-block .assets-manager-editor .assets-header-editor .assets-title-editor {
  color: #00a2af;
  margin-bottom: 15px;
  font-size: 2rem;
}
.assets-manager-block .assets-manager-editor .assets-header-editor .assets-description-editor {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}
.assets-manager-block .assets-manager-editor .assets-content-editor .assets-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.assets-manager-block .assets-manager-editor .assets-content-editor .assets-preview .preview-section {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}
.assets-manager-block .assets-manager-editor .assets-content-editor .assets-preview .preview-section h4 {
  color: #423133;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}
.assets-manager-block .assets-manager-editor .assets-content-editor .assets-preview .preview-section p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .wp-block-columns {
    display: grid;
    width: 100%;
    padding: 0px;
    grid-template-areas: "image" "content";
  }
  .wp-block-columns .wp-block-column:first-child {
    grid-area: image;
  }
  .wp-block-columns .wp-block-column:last-child {
    grid-area: content;
  }
}
* {
  box-sizing: border-box;
}

body {
  background-color: #fcfcfc;
  font-family: GalanoGrotesque, sans-serif;
  margin: 0px;
  padding: 0px;
  width: 100%;
}

.container {
  width: 1650px;
  max-width: 100%;
  display: block;
  margin: 0px auto 0px auto;
}
.container.wide {
  width: 2300px;
}

.row {
  display: flex;
}
.row.vcenter {
  justify-content: center;
}
.row .col {
  padding: 10px;
  flex-basis: 0;
  flex-grow: 1;
}
.row .col img {
  max-width: 100%;
}

h1, h2, h3, h4 {
  margin: 0px;
  padding: 0px;
}
h1.center, h2.center, h3.center, h4.center {
  text-align: center;
}
h1.teal, h2.teal, h3.teal, h4.teal {
  color: #00a2af;
}

h3 {
  font-size: 2rem;
  line-height: 2.4rem;
}

h2 {
  font-size: 2.4rem;
  line-height: 2.6rem;
}

h6 {
  font-size: 0.8rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: normal;
  padding-bottom: 4px;
  border-bottom: 1px solid #423133;
  color: #423133;
  width: fit-content;
}
h6.center {
  margin: 0px auto 8px auto;
}
h6.teal {
  border-bottom: 2px solid #00a2af;
  color: #00a2af;
}
h6.orange {
  border-bottom: 2px solid #b65943;
  color: #b65943;
}
h6.yellow {
  border-bottom: 2px solid #f0e18d;
  color: #f0e18d;
}

.wp-block-embed iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.sectionHolder {
  line-height: 2rem;
}

@media screen and (max-width: 600px) {
  .container {
    padding: 20px 6px 20px 6px;
  }
  h1 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  h2 {
    font-size: 2.4rem;
    line-height: 2.6rem;
  }
  .sectionHolder {
    margin: 0px !important;
    padding: 0px !important;
  }
}
