









/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.hero {
  --hero-nav-height: 100px;
  --dropdown-background: white;
  --dropdown-text-color: var(--text-primary);
  --block-background: linear-gradient(to top, rgb(0 0 0 / 3%), transparent);
  --block-text-color: white;
  background: var(--block-background);
  color: var(--block-text-color);
  position: relative;
  display: flex;
  flex-direction: column
}

.hero-nav {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-nav-height);
  display: flex;
  align-items: center;
  z-index: 2
}

.hero-nav__item {
  margin: auto;
  font-size: 1.1rem
}

@media(min-width:992px) {
  .hero-nav__item {
    margin: 0 1rem
  }
}

@media(min-width:992px) {
  .nav--lg-side {
    flex-direction: row-reverse
  }
}

.hero-nav__logo {
  height: 35px
}

.hero-nav__link {
  color: inherit;
  opacity: .9
}

.hero-nav__link:focus,
.hero-nav__link:hover {
  color: inherit;
  text-decoration: none;
  opacity: 1
}

.ft-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

@media (print),
(prefers-reduced-motion:reduce) {
  .ft-menu {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important
  }
}

.ft-menu .hero-nav__item {
  width: 100%;
  margin-top: .75rem;
  margin-bottom: .75rem
}

@media(min-width:992px) {
  .ft-menu .hero-nav__item {
    width: auto;
    margin-top: 0;
    margin-bottom: 0
  }
}

.ft-menu--js-show {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .5s;
  animation-duration: .5s
}

.ft-menu::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--primary);
  opacity: .9;
  z-index: -1
}

@media(min-width:992px) {
  .ft-menu {
    -webkit-animation-name: none;
    animation-name: none;
    position: static;
    z-index: auto
  }

  .ft-menu::before {
    content: none
  }
}

.ft-menu__slider {
  color: var(--dropdown-text-color);
  background: var(--dropdown-background);
  width: 80%;
  height: 100%;
  overflow: hidden;
  transform: translateX(-100%);
  transition: .5s transform
}

@media(min-width:992px) {
  .ft-menu__slider {
    --block-background: transparent;
    color: var(--block-text-color);
    width: auto;
    height: auto;
    background: 0 0;
    transform: none;
    display: flex;
    align-items: center
  }
}

.ft-menu--js-show .ft-menu__slider {
  transform: translateX(0)
}

.ft-menu__close-btn {
  color: var(--primary-invert);
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  margin: 1rem;
  transform: translateX(100%);
  transition: .5s transform
}

@media(min-width:992px) {
  .ft-menu__close-btn {
    display: none
  }
}

.ft-menu--js-show .ft-menu__close-btn {
  transform: translateX(0)
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
  color: var(--primary-invert)
}

@-webkit-keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0
  }

  to {
    visibility: visible;
    opacity: 1
  }
}

@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0
  }

  to {
    visibility: visible;
    opacity: 1
  }
}

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1
  }

  to {
    visibility: hidden;
    opacity: 0
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1
  }

  to {
    visibility: hidden;
    opacity: 0
  }
}

.fixed-nav-container {
  height: var(--hero-nav-height)
}

.hero-nav--is-sticky {
  color: var(--dropdown-text-color);
  background: var(--dropdown-background);
  position: fixed !important;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  padding: 1rem !important;
  height: 60px;
  transition: .2s height;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown
}

@media(min-width:992px) {
  .hero-nav--is-sticky {
    height: 80px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1rem .5rem !important
  }
}

.hero-nav--is-sticky .ft-menu__slider {
  color: var(--dropdown-text-color)
}

.hero-nav--is-sticky .btn {
  background: var(--gradient-primary);
  color: var(--primary-invert)
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.ft-menu__slider .hero-nav__item {
  font-size: 1.1rem;
  padding: 0 1rem
}

@media(min-width:992px) {
  .ft-menu__slider .hero-nav__item {
    padding: 0
  }
}

.hero-nav__link {
  display: flex;
  align-items: center;
  outline: 0 !important
}

.ft-menu__slider {
  overflow-x: hidden;
  overflow-y: auto
}

@media (min-width:992px) {
  .ft-menu__slider {
    overflow: visible
  }
}

.hero-nav__item--with-dropdown {
  position: relative;
  cursor: pointer
}

@media(min-width:992px) {
  .hero-nav__item--with-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 176%
  }
}

.hero-nav__dropdown {
  position: static;
  width: 100%;
  height: auto;
  font-size: .9rem;
  border-top: 1px solid rgba(0, 0, 0, .1);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: .3s all;
  color: var(--dropdown-text-color);
  text-align: initial;
  cursor: auto
}

@media(min-width:992px) {
  .hero-nav__dropdown {
    position: absolute;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
    background: var(--dropdown-background);
    z-index: 2;
    max-height: 0;
    padding: 2.3rem 3rem 2rem 2rem;
    overflow: visible;
    transition: .3s all
  }
}

.dropdown--important {
  position: absolute;
  width: auto !important;
  top: 176%;
  left: 0;
  margin-top: 0;
  border-radius: 10px;
  border-top: none;
  box-shadow: 0 14px 50px 0 rgba(0, 0, 0, .1);
  background: var(--dropdown-background);
  z-index: 2;
  max-height: 0;
  padding: 2rem;
  padding-right: 3rem;
  overflow: visible;
  transition: .3s all
}

@media(min-width:992px) {
  .dropdown--of-1-columns {
    width: 400px
  }

  .dropdown--of-2-columns {
    width: 700px
  }

  .dropdown--language-selector {
    width: 250px
  }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
  margin-top: 1rem;
  visibility: visible;
  opacity: 1;
  max-height: 9999px;
  padding-top: 1rem
}

@media(min-width:992px) {
  .hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 0;
    padding: 2.3rem 3rem 2rem 2rem
  }
}

.hero-nav__item-chevron {
  transition: .3s all
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
  transform: rotate(180deg)
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
  transform: translateX(-15px) !important
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
  left: 15%;
  right: auto
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
  transform: translateX(15px) !important;
  left: auto;
  right: 0
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
  left: auto;
  right: 15%
}

@media(min-width:992px) {
  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
    left: 0;
    right: auto
  }

  .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0
  }

  .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%
  }
}

.dropdown--important::before {
  content: '';
  width: 17.1px;
  height: 6.85px;
  background: var(--dropdown-background);
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto
}

@media(min-width:992px) {
  .hero-nav__dropdown::before {
    content: '';
    width: 17.1px;
    height: 6.85px;
    background: var(--dropdown-background);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto
  }
}

.dropdown__title {
  color: var(--dropdown-text-color);
  opacity: .7;
  font-weight: 600;
  font-size: .9rem;
  display: block;
  margin-top: .5rem;
  margin-bottom: 1.18rem
}

.dropdown__link {
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.3rem;
  color: inherit;
  text-decoration: none
}

.dropdown__link:focus,
.dropdown__link:hover {
  color: inherit;
  text-decoration: none
}

[javascript-language-selector] .dropdown__link {
  border-radius: .5rem;
  padding: .7rem;
  margin-bottom: 3px
}

.dropdown__link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.dropdown__link:last-child {
  margin: 0
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
  background: rgba(0, 0, 0, .06)
}

.dropdown__icon {
  width: 35px;
  height: 35px;
  background-color: black;
  color: var(--primary-invert);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  font-size: 13px
}

@media(min-width:992px) {
  .dropdown__icon {
    width: 40px;
    height: 40px
  }
}

.dropdown__item {
  max-width: 250px
}

.dropdown__item-title {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  z-index: -1
}

@media(min-width:992px) {
  .dropdown__item-title {
    white-space: nowrap
  }
}

.dropdown__item-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  width: 100%;
  background: var(--secondary);
  transform: translateY(2px);
  opacity: 0;
  transition: .2s
}

[javascript-language-selector] .dropdown__item-title {
  white-space: nowrap
}

[javascript-language-selector] .dropdown__item-title::before {
  display: none
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
  height: 30%;
  transform: translateY(0);
  opacity: .4
}

.dropdown__item-description {
  font-size: .9rem;
  opacity: .9;
  margin-top: .3rem;
  margin-bottom: 0
}

.dropdown__item-description,
.dropdown__item-title {
  width: 95%
}

.hero__row {
  height: 100%
}

.hero_empty-column {
  height: 100%
}

.hero__image-column {
  height: 100%;
  background-position: center;
  background-size: cover
}

.hero__content {
  text-align: initial
}

.hero__body {
  padding-top: 2rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1
}

@media(min-width:992px) {
  .hero__body {
    padding-top: 4rem;
    padding-bottom: 7rem
  }
}

.hero__title {
  font-size: 1.8rem;
  font-weight: 900
}

.hero__paragraph {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: .98
}

@media (min-width:576px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17
  }

  .hero__paragraph {
    width: 80%;
    margin: auto
  }
}

@media (min-width:768px) {
  .hero__title {
    font-size: 3rem
  }
}

@media(min-width:992px) {
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.17
  }

  .hero__paragraph {
    font-size: 1.2rem;
    width: 75%
  }
}

@media(min-width:1200px) {
  .hero__title {
    font-size: 3.5rem;
    line-height: 1.17
  }
}

.hero__btns-container {
  margin-left: -.5rem;
  margin-right: -.5rem
}

.hero__btns-container .btn {
  transform: scale(1.15);
  border-radius: 10px
}

.hero__video-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: scale(2);
  transform-origin: top
}

@media(min-width:992px) {
  .hero__video-container {
    transform: none
  }
}

.hero__video-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #000, transparent);
  z-index: 1
}

video {
  width: 130%;
  left: -15%
}






.hero-nav--is-sticky {
    box-shadow: none;
}
.hero-nav--is-sticky::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: white;
    width: 99999%;
    margin-left: -999%;
    z-index: -1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}







/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-46 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.post {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: .3s all
}

.post__img {
  width: 100%;
  border-radius: 10px;
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, .1));
  transition: .5s
}

@media(min-width:992px) {
  .post__content {
    transform: translateY(-35px);
    transition: .5s all
  }

  .post:focus .post__content,
  .post:hover .post__content {
    transform: translateY(0)
  }
}

.post:focus .post__img,
.post:hover .post__img {
  transform: translateY(-5px)
}

.post__title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5
}

.post:focus .post__title,
.post:hover .post__title {
  text-decoration: underline
}

.post__info {
  opacity: .95;
  font-size: .9rem
}

@media(min-width:992px) {
  .post__info {
    transform: translateY(10px);
    opacity: 0;
    transition: .5s all
  }

  .post:focus .post__info,
  .post:hover .post__info {
    transform: translateY(0);
    opacity: 1
  }
}

.post__author {
  position: relative;
  padding-right: 13px;
  margin-right: 13px
}

.post__author::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 90%;
  margin: auto;
  width: 3px;
  transform: rotate(10deg);
  background: var(--primary)
}

.post__link {
  display: inline-block;
  color: var(--block-text-color);
  font-size: 1rem;
  text-decoration: underline
}

@media(min-width:992px) {
  .post__link {
    transform: translateY(-10px);
    opacity: 0;
    transition: .5s all
  }

  .post:focus .post__link,
  .post:hover .post__link {
    transform: translateY(0);
    opacity: 1
  }
}

.post__link-arrow {
  width: 1em;
  height: 1em;
  margin: 0 5px
}

.block-46__dots-svg--left {
  color: var(--primary);
  left: 0;
  bottom: 0;
  width: 70px;
  height: 250px;
  position: absolute;
  transform: translate(-7.4rem, 0)
}

.block-46__dots-svg--right {
  color: var(--primary);
  right: 0;
  top: 0;
  width: 250px;
  height: 150px;
  position: absolute;
  clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0);
  transform: translate(3rem, -4.5rem) rotateX(180deg) rotateY(180deg)
}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-8-scr {
  --space-between-blocks: 2rem;
  --space-between-blocks-small-screens: 0rem;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.block-8-scr__li {
  font-size: 1rem;
  font-weight: 600;
  opacity: .9;
  margin-bottom: .8rem
}

.block-8-scr__li:last-child {
  margin-bottom: 0
}

.plan-features__icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #33c58d
}

.block-8-scr__li-icon {
  color: #33c58d;
  transform: scale(1.5)
}

.block-8-scr__img {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, .1)
}

.block-8-scr-scr-dots-svg {
  color: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 150px;
  transform: translate(-38px, 36px);
  clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0)
}

@media (min-width:992px) {
  .block-8-scr-scr-dots-svg {
    transform: translate(-38px, 36px);
    clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0)
  }
}




/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-9 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color)
  }
  
  .card-3 {
    padding: 0 .5rem
  }
  
  @media (max-width:768px) {
    .card-3 {
      margin: 1rem
    }
  }
  
  .card-3__img-container {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative
  }
  
  .card-3__img {
    max-width: 100%;
    max-height: 200px;
    position: relative;
    z-index: 1
  }
  
  .card-3__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem
  }
  
  .card-3__paragraph {
    font-size: 1rem;
    opacity: .95;
    line-height: 1.7
  }


  /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-42 {
    --elements-roundness: 5px;
    --block-background: white;
    --block-text-color: var(--text-secondary);
    background: var(--block-background);
    color: var(--block-text-color);
    font-size: .87rem;
    text-align: center
  }
  
  @media(min-width:992px) {
    .block-42 {
      text-align: initial
    }
  }
  
  .block-42__logo {
    height: 36px
  }
  
  .block-42__brand-story {
    font-size: .87rem;
    line-height: 1.7
  }
  
  @media(min-width:768px) {
    .block-42__brand-story {
      width: 90%
    }
  }
  
  .block-42__li-heading {
    font-weight: 600;
    margin-top: .5rem;
    margin-bottom: 1.2rem;
    font-size: .8rem;
    text-transform: uppercase
  }
  
  .block-42__li {
    margin-bottom: .7rem;
    font-size: 1rem
  }
  
  .block-42__extra-link,
  .block-42__li-link {
    color: var(--block-text-color)
  }
  
  .block-42__extra-link:focus,
  .block-42__extra-link:hover,
  .block-42__li-link:focus,
  .block-42__li-link:hover {
    color: inherit;
    text-decoration: underline
  }
  
  .block-42__cta-heading {
    font-size: .87rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1rem
  }
  
  .cta-input {
    display: inline-flex;
    flex-wrap: wrap;
    font-size: .87rem;
    padding: .4rem;
    border-radius: var(--elements-roundness);
    background: rgb(187 187 187 / 22%)
  }
  
  .btn--loading {
    opacity: 1;
    cursor: progress;
    position: relative;
    overflow: hidden;
    z-index: 1
  }
  
  .btn--loading::after,
  .btn--loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
  }
  
  .btn--loading::before {
    background: var(--secondary);
    width: 100%;
    height: 100%;
    z-index: 1
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0)
    }
  
    100% {
      -webkit-transform: rotate(360deg)
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0)
    }
  
    100% {
      transform: rotate(360deg)
    }
  }
  
  .btn--loading::after {
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid var(--secondary-invert);
    width: 1.5rem;
    height: 1.5rem;
    -webkit-animation: spin .5s linear infinite;
    animation: spin .5s linear infinite;
    z-index: 2
  }
  
  @media(min-width:768px) {
    .cta-input {
      flex-wrap: nowrap
    }
  }
  
  .cta-input__input {
    border: none;
    background: 0 0;
    padding: .8rem 1.5rem
  }
  
  .cta-input__input:focus {
    border: none;
    outline: 0;
    box-shadow: none
  }
  
  .cta-input__btn {
    width: 100%;
    font-size: .87rem;
    padding: .8rem 1.5rem;
    color: var(--secondary-invert);
    background: var(--gradient-secondary, --secondary);
    border-radius: var(--elements-roundness)
  }
  
  @media(min-width:768px) {
    .cta-input__btn {
      width: auto
    }
  }
  
  .cta-p {
    text-align: center;
    font-size: .75rem
  }
  
  @media(min-width:992px) {
    .cta-p {
      text-align: initial
    }
  }
  
  .block-42__divider {
    margin: 2.4rem 0
  }
  
  .block-42__extra-links {
    justify-content: center
  }
  
  @media(min-width:768px) {
    .block-42__extra-links {
      justify-content: flex-start
    }
  }
  
  .block-42__copyrights {
    width: 90%;
    margin: auto;
    text-align: center
  }
  
  @media(min-width:768px) {
    .block-42__copyrights {
      width: auto;
      text-align: initial
    }
  }



  .grow img{
    transition: 1s ease;
    }
    
    .grow img:hover{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    transition: 1s ease;
    }

    
    /*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-8-scr {
  --space-between-blocks: 2rem;
  --space-between-blocks-small-screens: 0rem;
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.block-8-scr__li {
  font-size: 1rem;
  font-weight: 600;
  opacity: .9;
  margin-bottom: .8rem
}

.block-8-scr__li:last-child {
  margin-bottom: 0
}

.plan-features__icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #33c58d
}

.block-8-scr__li-icon {
  color: #33c58d;
  transform: scale(1.5)
}

.block-8-scr__img {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0 10px 36px 0 rgba(0, 0, 0, .1)
}

.block-8-scr-scr-dots-svg {
  color: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 150px;
  transform: translate(-38px, 36px);
  clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0)
}

@media (min-width:992px) {
  .block-8-scr-scr-dots-svg {
    transform: translate(-38px, 36px);
    clip-path: polygon(24% 62%, 100% 62%, 100% 100%, 0 100%, 0 0, 24% 0)
  }
}


/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.block-9 {
  --block-background: white;
  --block-text-color: var(--text-primary);
  background: var(--block-background);
  color: var(--block-text-color)
}

.card-3 {
  padding: 0 .5rem
}

@media (max-width:768px) {
  .card-3 {
    margin: 1rem
  }
}

.card-3__img-container {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative
}

.card-3__img {
  max-width: 100%;
  max-height: 200px;
  position: relative;
  z-index: 1
}

.card-3__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem
}

.card-3__paragraph {
  font-size: 1rem;
  opacity: .95;
  line-height: 1.7
}


.card:hover,figure{
  cursor: pointer;
}

.card-body{padding-bottom:0;text-align: center;}

img.big-box{
  width: 100%;
  object-fit:cover;
}
img.big-box{
  height: 350px;
}
@media (min-width: 600px) {
  img.big-box{
    height: 350px;
  }
}
#long-box-section figcaption{
  font-size: 1rem;
  padding-top:1em;
  padding-bottom:1em;
  padding-left:0.5em;
  padding-right:0.5em; 
  height: 4.5rem;
}


#directory-section .btn-primary:hover,
#directory-section .btn-primary:focus {
  background-color: #108d6f;
  border-color: #108d6f;
  box-shadow: none;
  outline: none;
}
#directory-section .btn-primary {
  color: #fff;
  background-color: #007b5e;
  border-color: #007b5e;
}
#directory-section section {
  padding: 60px 0;
}
#directory-section section .section-title {
  text-align: center;
  color: #007b5e;
  margin-bottom: 50px;
  text-transform: uppercase;
}
#directory-section .card {
  border: none;
  background: #ffffff;
}
#directory-section .image-flip:hover .backside,
#directory-section .image-flip.hover .backside {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  border-radius: 0.25rem;
}
#directory-section .image-flip:hover .frontside,
#directory-section .image-flip.hover .frontside {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
#directory-section .mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}
#directory-section .frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
  margin-bottom: 30px;
}
#directory-section .backside {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-box-shadow: 5px 7px 9px -4px #9e9e9e;
  -moz-box-shadow: 5px 7px 9px -4px #9e9e9e;
  box-shadow: 5px 7px 9px -4px #9e9e9e;
}
#directory-section .frontside,
#directory-section .backside {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
}
#directory-section .frontside .card,
#directory-section .backside .card {
  min-height: 312px;
}
#directory-section .backside .card a {
  font-size: 18px;
  color: #007b5e !important;
}
#directory-section .frontside .card .card-title,
#directory-section .backside .card .card-title {
  color: #007b5e !important;
}
#directory-section .frontside .card .card-body img {
  width: auto;
  height: 120px;
}

#event-section .btn-primary:hover,
#event-section .btn-primary:focus {
  background-color: #108d6f;
  border-color: #108d6f;
  box-shadow: none;
  outline: none;
}
#event-section .btn-primary {
  color: #fff;
  background-color: #007b5e;
  border-color: #007b5e;
}
#event-section section {
  padding: 60px 0;
}
#event-section section .section-title {
  text-align: center;
  color: #007b5e;
  margin-bottom: 50px;
  text-transform: uppercase;
}
#event-section .card {
  border: none;
  background: #ffffff;
}
#event-section .image-flip:hover .backside,
#event-section .image-flip.hover .backside {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  border-radius: 0.25rem;
}
#event-section .image-flip:hover .frontside,
#event-section .image-flip.hover .frontside {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
#event-section .mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}
#event-section .frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
  margin-bottom: 30px;
}
#event-section .backside {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-box-shadow: 5px 7px 9px -4px #9e9e9e;
  -moz-box-shadow: 5px 7px 9px -4px #9e9e9e;
  box-shadow: 5px 7px 9px -4px #9e9e9e;
}
#event-section .frontside,
#event-section .backside {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
}
#event-section .frontside .card,
#event-section .backside .card {
  /*min-height: 312px;*/
}
#event-section .backside .card a {
  font-size: 18px;
  color: #007b5e !important;
}
#event-section .frontside .card .card-title,
#event-section .backside .card .card-title {
  color: #007b5e !important;
}
#event-section .frontside .card .card-body img {
  width: 100%;
}
#event-section .backside .card .card-body img {
  width: 50%;
  height: fit-content;
  float:left;
}

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  
}
.carousel-caption{
  top:40%;
  display: block!important;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: white 0px 0px 10px;

}
.card-body{
  background:white;
}

@media all{     
.subtitle  { 
color: #000; 
padding: 10px 12px 5px 15px; 
background: #fa8072; 
margin-bottom: 0px; 
display: inline-block; 
font-size: 1.0625em; 
padding-top: 10px; 
padding-right: 12px; 
padding-bottom: 5px; 
padding-left: 15px; 
margin-top:1em;
background-image: initial; 
background-position-x: initial; 
background-position-y: initial; 
background-size: initial; 
background-repeat-x: initial; 
background-repeat-y: initial; 
background-attachment: initial; 
background-origin: initial; 
background-clip: initial; 
background: white;
line-height: 2em; 
text-transform: uppercase; 
letter-spacing: 1px;    font-family: 'Roboto', sans-serif;text-transform: uppercase;font-weight: bold;;
} 
}   

:root {
/* Not my favorite that line-height has to be united, but needed */
--lh: 1rem;
}
.truncate-overflow {
line-height: var(--lh);
--max-lines: 9;
--min-lines: 9;
position: relative;
max-height: calc(var(--lh) * var(--max-lines));
overflow: hidden;
padding-right: 1rem; /* space for ellipsis */
}
#event-boxes .truncate-overflow {
  --max-lines: 12;
  --min-lines: 12;
}
#event-boxes.index-events .truncate-overflow {
  --max-lines: 9;
  --min-lines: 9;
}
body,html{
font-family: 'Roboto', sans-serif;
}

header{
  padding-bottom: 2em;
  height:555px;
}
.dropdown__item,.dropdown__item .dropdown__item-description{
  max-width:100% !important;
  width:100% !important;
}
.block-46{
  padding-bottom:0!important;
}
.post__info{
  height:5rem;
}