html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  background-color: #E5E5E5;
  padding: 0px;
  margin: 0px;
  font-family: "Raleway", sans-serif;
}

.hidden {
  display: none !important;
}

.no-bottom-padding {
  padding-bottom: 0px !important;
}

.cta {
  background: #09918f;
  padding: 15px 25px 15px 25px;
  border-radius: 10px;
  font-size: 1.3rem;
  display: block;
  width: fit-content;
  color: white;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #09918f;
  transition: border ease-in-out 0.2s;
}
.cta:hover {
  border: 1px solid #D4D4E1;
}
.cta.small {
  padding: 10px 25px 10px 25px;
  font-size: 1rem;
  border-radius: 5px;
}

#site-wrapper {
  display: flex;
  justify-content: center;
}
#site-wrapper #site {
  width: 1440px;
  background: white;
}
#site-wrapper #site #header {
  color: white;
  background: #01467A;
  box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 100px 10px 100px;
  position: sticky;
  top: 0;
  z-index: 10;
}
#site-wrapper #site #header .header-contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#site-wrapper #site #header .header-contents .logo {
  display: flex;
  flex-direction: row;
  /* vertical-align: middle; */
  align-items: center;
}
#site-wrapper #site #header .header-contents .logo object {
  fill: green;
}
#site-wrapper #site #header .header-contents .logo object svg {
  fill: white;
}
#site-wrapper #site #header .header-contents .nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
}
#site-wrapper #site #header .header-contents .nav ul {
  padding: 0px;
  margin: 0px;
}
#site-wrapper #site #header .header-contents .nav ul .nav-item {
  display: inline;
  transition: border-bottom 0.4s linear;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}
#site-wrapper #site #header .header-contents .nav ul .nav-item a {
  color: inherit;
  text-decoration: none;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
}
#site-wrapper #site #header .header-contents .nav ul .nav-item:hover {
  border-bottom: 1px solid white;
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site #header .header-contents .nav {
    display: none;
  }
}
#site-wrapper #site #header .header-contents .buttons {
  display: flex;
}
#site-wrapper #site #hero {
  background: url("https://www.ireinasoftware.com/img/banner-chess1.png");
  background-size: cover;
  color: white;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#site-wrapper #site #hero .hero-content {
  width: 800px;
  height: 400px;
  display: flex;
  flex-direction: row;
}
#site-wrapper #site #hero .hero-content .messaging {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 200px;
  max-width: 380px;
}
#site-wrapper #site #hero .hero-content .messaging .hero-slogan {
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
}
#site-wrapper #site #hero .hero-content .messaging .hero-slogan-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: lightgray;
  margin-top: 15px;
  margin-bottom: 15px;
}
#site-wrapper #site #hero .hero-content .messaging .hero-cta input[type=button] {
  background: #09918f;
  color: white;
  padding: 15px 25px 15px 25px;
  border-radius: 10px;
  border: 0px;
  font-size: 18px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site #hero .hero-content .messaging {
    margin-left: 0px;
  }
}
#site-wrapper #site #hero .hero-content .hero-image {
  display: none;
  flex: 1;
}
#site-wrapper #site #hero .hero-content .hero-image img {
  max-height: 400px;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site #hero .hero-content {
    width: auto;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site #hero {
    background-size: cover;
    background-position-x: center;
  }
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site #hero {
    background-size: cover;
    background-position-x: left;
  }
}
#site-wrapper #site .content-section {
  background: white;
  position: relative;
}
#site-wrapper #site .content-section .section-header {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 50px 25px 10px 25px;
}
#site-wrapper #site .content-section .section-subheader {
  text-align: center;
  font-weight: initial;
  font-size: 18px;
  padding: 0px 25px 75px 25px;
  color: #09918f;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section .section-subheader {
    padding: 0px 25px 25px 25px;
  }
}
#site-wrapper #site .content-section.blue-bg-accent {
  background: rgba(1, 70, 122, 0.1);
}
#site-wrapper #site .content-section.art {
  position: relative;
  padding: 2rem 1rem;
}
#site-wrapper #site .content-section.art::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("https://www.ireinasoftware.com/img/monet1_cropped-min.jpg");
  filter: opacity(40%);
}
#site-wrapper #site .content-section.art .content {
  position: relative;
  z-index: 1;
  font-weight: bold;
  line-height: 2.4rem;
  font-size: 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}
#site-wrapper #site .content-section.art .content a {
  font-weight: initial;
  font-size: 1rem;
}
#site-wrapper #site .content-section.art .content p {
  margin: 0;
}
#site-wrapper #site .content-section.client-reviews {
  position: relative;
}
#site-wrapper #site .content-section.client-reviews > * {
  z-index: 1;
  position: relative;
}
#site-wrapper #site .content-section.client-reviews::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("https://www.ireinasoftware.com/img/monet1_cropped-min.jpg");
  filter: opacity(40%);
}
#site-wrapper #site .content-section.what-is .grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
#site-wrapper #site .content-section.what-is .grid .row {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
}
#site-wrapper #site .content-section.what-is .grid .row .cell {
  flex: 1;
  display: flex;
}
#site-wrapper #site .content-section.what-is .grid .row .cell img {
  justify-content: center;
  object-fit: contain;
  max-width: 450px;
}
#site-wrapper #site .content-section.what-is .grid .row .cell.text {
  flex-direction: column;
}
#site-wrapper #site .content-section.what-is .grid .row .cell.text .header {
  font-size: 30px;
  margin: 50px 50px 25px 50px;
  font-weight: bold;
}
#site-wrapper #site .content-section.what-is .grid .row .cell.text .message {
  margin: 0px 50px 50px 50px;
}
#site-wrapper #site .content-section.what-is .grid .row.second {
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.what-is .grid .row {
    flex-direction: column;
    align-items: center;
  }
  #site-wrapper #site .content-section.what-is .grid .row img {
    width: 50%;
    margin: 0 auto;
    display: none;
  }
  #site-wrapper #site .content-section.what-is .grid .row.second .cell:nth-child(1) {
    order: 2;
  }
  #site-wrapper #site .content-section.what-is .grid .row.second .cell:nth-child(2) {
    order: 1;
  }
  #site-wrapper #site .content-section.what-is .grid .row .cell.text .message {
    margin: 0px 50px 10px 50px;
  }
}
#site-wrapper #site .content-section.accent {
  background-color: #f3f1f1;
}
#site-wrapper #site .content-section.our-values .grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0px 50px 0px 50px;
  padding-bottom: 50px;
}
#site-wrapper #site .content-section.our-values .grid .row {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
#site-wrapper #site .content-section.our-values .grid .row .module {
  min-width: 300px;
  max-width: 300px;
  position: relative;
  flex: 1;
  text-align: center;
}
#site-wrapper #site .content-section.our-values .grid .row .module .header {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
}
#site-wrapper #site .content-section.our-values .grid .row .module .text {
  z-index: 5;
  position: relative;
}
#site-wrapper #site .content-section.our-values .grid .row .module .background-number {
  font-size: 9.5rem;
  font-weight: bold;
  position: absolute;
  top: 0px;
  color: #01467A;
  opacity: 0.1;
  display: none;
}
#site-wrapper #site .content-section.our-values .grid .row .module:nth-child(1) .header {
  color: #01467A;
}
#site-wrapper #site .content-section.our-values .grid .row .module:nth-child(2) .header {
  color: #CD0D79;
}
#site-wrapper #site .content-section.our-values .grid .row .module:nth-child(3) .header {
  color: #4A3ABC;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.our-values .grid .row .module {
    min-width: auto;
    max-width: auto;
  }
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site .content-section.our-values .grid .row {
    flex-direction: column;
    align-items: center;
  }
  #site-wrapper #site .content-section.our-values .grid .row .module {
    margin-bottom: 25px;
  }
}
#site-wrapper #site .content-section.what-can-do .modules-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px 50px 0px 50px;
}
#site-wrapper #site .content-section.what-can-do .modules-grid .row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
#site-wrapper #site .content-section.what-can-do .modules-grid .row .module {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  max-width: 300px;
  margin-bottom: 30px;
}
#site-wrapper #site .content-section.what-can-do .modules-grid .row .module > * {
  margin-bottom: 15px;
}
#site-wrapper #site .content-section.what-can-do .modules-grid .row .module .icon img {
  width: 50px;
  height: 50px;
}
#site-wrapper #site .content-section.what-can-do .modules-grid .row .module .header {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
#site-wrapper #site .content-section.what-can-do .modules-grid .row .module .text {
  text-align: center;
  color: #01467A;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.what-can-do .modules-grid .row {
    gap: 0px;
  }
  #site-wrapper #site .content-section.what-can-do .modules-grid .row .module {
    margin-bottom: 25px;
  }
  #site-wrapper #site .content-section.what-can-do .modules-grid .row .module .text {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site .content-section.what-can-do .modules-grid {
    margin: unset;
  }
}
#site-wrapper #site .content-section.modules .modules-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px 50px 0px 50px;
  padding-bottom: 50px;
}
#site-wrapper #site .content-section.modules .modules-grid .row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
#site-wrapper #site .content-section.modules .modules-grid .row .module {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  max-width: 300px;
}
#site-wrapper #site .content-section.modules .modules-grid .row .module > * {
  margin-bottom: 15px;
}
#site-wrapper #site .content-section.modules .modules-grid .row .module img {
  width: 60px;
  height: 60px;
}
#site-wrapper #site .content-section.modules .modules-grid .row .module .header {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
#site-wrapper #site .content-section.modules .modules-grid .row .module .text {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.modules .modules-grid .row {
    gap: 0px;
  }
  #site-wrapper #site .content-section.modules .modules-grid .row .module {
    margin-bottom: 25px;
  }
  #site-wrapper #site .content-section.modules .modules-grid .row .module .text {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site .content-section.modules .modules-grid {
    margin: unset;
  }
}
#site-wrapper #site .content-section.fines .grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 50px 0px 50px;
  padding-bottom: 50px;
  gap: 25px;
}
#site-wrapper #site .content-section.fines .grid .row {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
#site-wrapper #site .content-section.fines .grid .row .module {
  min-width: 400px;
  max-width: 400px;
  text-align: center;
}
#site-wrapper #site .content-section.fines .grid .row .module .amount {
  font-size: 46px;
  color: #01467A;
  font-weight: bold;
}
#site-wrapper #site .content-section.fines .grid .row .module .label {
  font-size: 18px;
}
#site-wrapper #site .content-section.fines .grid .row .module .header {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.fines .grid {
    margin: 0px;
  }
  #site-wrapper #site .content-section.fines .grid .row {
    flex-direction: column;
    align-items: center;
  }
}
#site-wrapper #site .content-section.partners .grid {
  display: flex;
  justify-content: center;
  margin: 4rem;
}
#site-wrapper #site .content-section.video {
  height: 600px;
  background: url(https://www.ireinasoftware.com/img/videothumb1.png);
  background-size: cover;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
}
#site-wrapper #site .content-section.video .overlay {
  background: black;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  position: absolute;
  z-index: 1;
}
#site-wrapper #site .content-section.video i {
  color: #D4D4E1;
  font-size: 5rem;
  z-index: 2;
  cursor: pointer;
  transition: font-size ease-in-out 0.2s;
}
#site-wrapper #site .content-section.video i:hover {
  font-size: 6rem;
}
#site-wrapper #site .content-section.expertise-title {
  padding-bottom: 25px;
}
#site-wrapper #site .content-section.expertise-carousel .splide {
  height: 600px;
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide {
  height: 600px;
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .splide__slide__container {
  height: 600px;
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .theme-bg {
  height: 600px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 70%;
  z-index: 1;
  right: 0;
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper {
  z-index: 5;
  position: absolute;
  display: flex;
  flex-direction: row;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 100px;
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper .floating-box {
  background-color: white;
  width: 600px;
  padding: 50px;
  box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper .floating-box .header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper .floating-box .message {
  font-size: 16px;
  line-height: 35px;
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 25px;
  }
  #site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper .floating-box {
    width: 400px;
  }
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .theme-bg {
    width: 100%;
    left: 0px;
    right: unset;
  }
  #site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
  }
  #site-wrapper #site .content-section.expertise-carousel .splide .splide__slide .floating-box-wrapper .floating-box {
    width: 100%;
    background-color: unset;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
  }
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide.first .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/mimi-thian-ZKBzlifgkgw-unsplash-2.jpg);
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide.second .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/agefis-vKvUcdyaUhc-unsplash-2.jpg);
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide.third .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/scott-graham-5fNmWej4tAA-unsplash-2.jpg);
}
#site-wrapper #site .content-section.expertise-carousel .splide .splide__slide.fourth .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/charlesdeluvio-Lks7vei-eAg-unsplash-2.jpg);
}
#site-wrapper #site .content-section.reviews-carousel .splide {
  height: 600px;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide {
  height: 600px;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .splide__slide__container {
  height: 600px;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper {
  z-index: 5;
  position: absolute;
  display: flex;
  flex-direction: row;
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 50px;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box {
  background-color: white;
  padding: 50px;
  box-shadow: 2px 4px 20px 1.4px rgba(45, 45, 45, 0.13);
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box img {
  margin-bottom: 2rem;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box .header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box .message {
  font-size: 16px;
  line-height: 35px;
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box .author {
  font-weight: bold;
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper {
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 25px;
  }
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box {
    width: 400px;
  }
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .theme-bg {
    width: 100%;
    left: 0px;
    right: unset;
  }
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
  }
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box {
    width: 100%;
    background-color: unset;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
  }
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box .header {
    font-size: 1.5rem;
  }
  #site-wrapper #site .content-section.reviews-carousel .splide .splide__slide .floating-box-wrapper .floating-box .message {
    font-size: 1rem;
  }
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide.first .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/mimi-thian-ZKBzlifgkgw-unsplash-2.jpg);
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide.second .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/agefis-vKvUcdyaUhc-unsplash-2.jpg);
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide.third .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/scott-graham-5fNmWej4tAA-unsplash-2.jpg);
}
#site-wrapper #site .content-section.reviews-carousel .splide .splide__slide.fourth .theme-bg {
  background-image: url(https://www.ireinasoftware.com/img/slides/charlesdeluvio-Lks7vei-eAg-unsplash-2.jpg);
}
#site-wrapper #site .content-section.dessi {
  display: flex;
  justify-content: space-evenly;
}
#site-wrapper #site .content-section.dessi .box {
  border-radius: 25px;
  padding: 80px;
  display: flex;
  gap: 26px;
  flex-direction: column;
}
#site-wrapper #site .content-section.dessi .box .dessi-picture {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#site-wrapper #site .content-section.dessi .box .dessi-picture img {
  object-fit: cover;
  border-radius: 20px;
  max-width: 500px;
  aspect-ratio: 1;
  object-position: top;
}
#site-wrapper #site .content-section.dessi .box .dessi-picture .contact-me {
  font-size: 1.1rem;
  margin-top: 15px;
}
#site-wrapper #site .content-section.dessi .box .dessi-picture .contact-me a {
  text-decoration: none;
  color: black;
}
#site-wrapper #site .content-section.dessi .box .dessi-picture .contact-me a:hover {
  text-decoration: underline;
}
#site-wrapper #site .content-section.dessi .box .dessi-bio {
  font-size: 1.1rem;
  padding: 50px 20px 20px 20px;
  flex: 1;
}
#site-wrapper #site .content-section.dessi .box .dessi-bio .text-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
#site-wrapper #site .content-section.dessi .box .dessi-bio .text-wrapper .header {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
#site-wrapper #site .content-section.dessi .box .dessi-bio .text-wrapper .bio-element {
  margin-bottom: 20px;
  line-height: 23px;
}
#site-wrapper #site .content-section.dessi .box .dessi-bio .text-wrapper .bio-element .linkedin-cta {
  color: #01467A;
}
#site-wrapper #site .content-section.get-in-touch {
  background: #01467A;
}
#site-wrapper #site .content-section.get-in-touch .two-columns {
  display: flex;
  flex-direction: row;
}
#site-wrapper #site .content-section.get-in-touch .two-columns > * {
  flex: 1;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .title {
  color: white;
  font-weight: bold;
  font-size: 2rem;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .title span {
  margin: 60px 0px 0px 60px;
  display: block;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  padding-right: 25px;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form input[type=text], #site-wrapper #site .content-section.get-in-touch .two-columns .form input[type=email], #site-wrapper #site .content-section.get-in-touch .two-columns .form textarea {
  max-width: 500px;
  background-color: #01467A;
  color: #D4D4E1;
  border: 1px solid #D4D4E1;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 10px;
  font-family: inherit;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form input[type=text]::placeholder, #site-wrapper #site .content-section.get-in-touch .two-columns .form input[type=email]::placeholder, #site-wrapper #site .content-section.get-in-touch .two-columns .form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #D4D4E1;
  opacity: 1; /* Firefox */
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form #notice {
  color: #D4D4E1;
  margin-top: 0px;
  margin-bottom: 15px;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form #notice a {
  color: #D4D4E1;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form #get-in-touch-cta {
  max-width: 500px;
  padding: 10px;
  background-color: #09918f;
  font-family: inherit;
  border: none;
  color: #D4D4E1;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #09918f;
  transition: border ease-in-out 0.2s;
  display: block;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
#site-wrapper #site .content-section.get-in-touch .two-columns .form #get-in-touch-cta:hover {
  border: 1px solid #D4D4E1;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .content-section.get-in-touch .two-columns {
    flex-direction: column;
  }
  #site-wrapper #site .content-section.get-in-touch .two-columns .form {
    margin-left: 60px;
  }
}
#site-wrapper #site .content-section.board .members {
  display: flex;
  justify-content: space-around;
  margin: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
#site-wrapper #site .content-section.board .members .member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
}
#site-wrapper #site .content-section.board .members .member img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
}
#site-wrapper #site .content-section.board .members .member .name {
  font-weight: bold;
  font-size: 1.5rem;
}
#site-wrapper #site .content-section.board .members .member .title {
  font-size: 1.2rem;
}
#site-wrapper #site .content-section.board .members .member .links {
  display: flex;
  gap: 1rem;
}
#site-wrapper #site .content-section.articles .articles-container {
  display: flex;
  justify-content: space-around;
  margin: 50px;
  flex-wrap: wrap;
  gap: 2rem;
}
#site-wrapper #site .content-section.articles .articles-container .article {
  cursor: pointer;
  background: #e7e7e7;
  max-width: 340px;
  width: 100%;
  text-decoration: none;
  color: black;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
}
#site-wrapper #site .content-section.articles .articles-container .article img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: left;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#site-wrapper #site .content-section.articles .articles-container .article h2 {
  padding: 0px 2rem;
}
#site-wrapper #site .content-section.articles .articles-container .article:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-15px);
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site .dessi {
    flex-direction: column;
  }
  #site-wrapper #site .dessi .box {
    padding: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
    flex-direction: column;
    align-items: center;
  }
  #site-wrapper #site .dessi .box .dessi-picture img {
    height: 80vw;
    width: auto;
  }
}
#site-wrapper #site .footer {
  color: white;
  background: #01467A;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 100px;
  padding-right: 100px;
}
#site-wrapper #site .footer .header-contents {
  display: flex;
  justify-content: space-between;
  height: 40px;
  width: 100%;
}
#site-wrapper #site .footer .header-contents .logo {
  font-size: 28px;
  font-weight: bold;
}
#site-wrapper #site .footer .header-contents .nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
}
#site-wrapper #site .footer .header-contents .nav ul {
  padding: 0px;
  margin: 0px;
}
#site-wrapper #site .footer .header-contents .nav ul .nav-item {
  display: inline;
  padding-left: 10px;
  padding-right: 10px;
}
#site-wrapper #site .footer .header-contents .nav ul .nav-item a {
  text-decoration: none;
  color: white;
}
#site-wrapper #site .footer .header-contents .cta input[type=button] {
  font-family: inherit, serif;
  background: white;
  border: none;
  padding: 10px 25px 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  #site-wrapper #site .footer {
    padding-left: 0px;
    padding-right: 0px;
  }
  #site-wrapper #site .footer .header-contents {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
@media only screen and (max-width: 1000px) {
  #site-wrapper #site {
    width: 100%;
  }
}

.fullscreen-player {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
  background: rgba(0, 0, 0, 0.9);
}
.fullscreen-player iframe {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  max-height: 700px;
}
.fullscreen-player i {
  color: white;
  font-size: 4rem;
  position: absolute;
  top: 15px;
  right: 15px;
}

/*
 swal2 overrides

 */
.modal-content-wrapper {
  display: none;
}

.modal-content a {
  font-size: 2rem;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 1rem;
  color: #01467A;
}

#swal2-title {
  font-size: 2.5rem;
}

#swal2-html-container .headliner {
  font-weight: bold;
  font-size: 1.5rem;
}
#swal2-html-container .contents {
  text-align: left;
  font-size: 1.3rem;
}
#swal2-html-container .contents .fa-ul {
  margin-left: 32px;
}
#swal2-html-container .contents.small-text {
  font-size: 1rem;
  line-height: 1.3rem;
}