/* modally v1.1.0 | undefined | MIT License */

          * {box-sizing: border-box}

/* Style the tab */
.tab-area
{
  width: 50%;
  float: left;
}
.tab-carea
{
  width: 50%;
  float: right;
}
.tab {  
  width: 100%; 
}

/* Style the buttons that are used to open the tab content */
.tab button {
  display: block;
  background-color: transparent;
  color: black;
  padding: 0px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px; 
  border-left: none; 
}

            .serif {
                font-family: 'Libre Caslon Display', serif;
            }

            .table {
                display: table;
                width: 100%;
            }

            .cell {
                display: table-cell;
                vertical-align: middle;
            }

            .hero {
                background-image: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
                color: white;
                background-attachment: fixed;
                position: relative;
            }

            .hero p {
                font-size: 18px;
                letter-spacing: 0.5px;
            }

            .hero .table {
                min-height: 100vh;
            }

            .hero .table .cell {
                padding-top: 40px;
                padding-bottom: 40px;
                text-align: center;
            }

            .hero h1 {
                font-size: 100px;
                line-height: 100px;
                letter-spacing: 10px;
                margin-top: 0px;
                margin-bottom: 20px;
            }

            .hero .button {
                margin-top: 20px;
            }

            .modal-title {
                margin-top: -30px;
                margin-bottom: 8px;
                padding-right: 100px; 
                font-size: 20px;
            }

            .modally-content
            {
              font-size: 14px;
            }

            .button {
                cursor: pointer;
                height: 56px;
                line-height: 54px;
                padding-left: 24px;
                padding-right: 24px;
                box-sizing: border-box;
                display: inline-block;
                border-radius: 4px;
                text-align: center;
                text-decoration: none;
                outline: none;
                vertical-align: middle;
                font-weight: bold;
                transition: all 250ms ease-in-out;
                border: solid 1px #ff9a9e;
                font-size: 12px;
                letter-spacing: 2px;
                text-transform: uppercase;

                background-color: white;
                color: #ff9a9e;
            }

            .button.white {
                background-color: rgba(255,255,255,1);
                border: solid 1px white;
            }

            .button.hollow {
                background-color: rgba(255,255,255,0);
                color: white;
                border: solid 1px white;
            }

            .button.small {
                height: 44px;
                line-height: 42px;
                padding-left: 16px;
                padding-right: 16px;
            }

            .button.gradient {
                background-size: 200%;
                background-position: 0% 0%;
                background-image: linear-gradient(to right, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
                color: white;
                border: none;
                background-color: transparent;
                line-height: 56px;
            }

            .button.gradient.small {
                line-height: 44px;
            }

            .button.icon i {
                margin-right: 8px;
            }

            .modally-wrap.open:not(.last) {
                filter: blur(5px);
            }

            @media screen and (min-width: 960px) {
                .button:hover {
                    background-color: #ff9a9e;
                    color: white;
                }

                .button.white:hover {
                    background-color: rgba(255,255,255,0);
                    color: white;
                }

                .button.hollow:hover {
                    background-color: rgba(255,255,255,1);
                    color: #ff9a9e;
                }

                .button.gradient:hover {
                    background-color: transparent;
                    background-position: 50% 0px;
                }
            }

            @media screen and (max-width: 959px) {
                .hero h1 {
                    font-size: 50px;
                    line-height: 50px;
                    letter-spacing: 5px;
                }

                .button {
                    height: 44px;
                    line-height: 42px;
                    padding-left: 16px;
                    padding-right: 16px;
                }

                .button.gradient {
                    line-height: 44px;
                }
            }

            .modally .button-wrap {
                text-align: right;
            }

            .modally .button-wrap .button {
                margin-left: 16px;
            }

            .github-buttons {
                position: absolute;
                top: 0px;
                right: 0px;
                padding: 16px;
            }

            .down {
                text-align: center;
                position: absolute;
                bottom: 0px;
                left: 0px;
                width: 100%;
                line-height: 50px;
                font-size: 24px;
                opacity: 0.5;
                color: white;
            }

            .down span {
                display: inline-block;
            }

.modally-init {
  display: none;
}

.modally-wrap {
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  display: none;
  box-sizing: border-box;
  transition: opacity 500ms ease-in-out;
}

.modally-wrap .modally-underlay {
  position: fixed;
  background: rgba(23, 23, 23, 0.25);
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modally {
  margin: 0px auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 20px;
  width: calc(100% - 40px);
  height: auto;
  background: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  padding-top: 48px;
}

.modally .modally-close-button {
  border: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 12px 20px;
  font-size: 32px;
  line-height: 23px;
  opacity: 1;
  transition: opacity 250ms ease-in-out;
  font-weight: 300;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  /* Remove excess padding and border in Firefox 4+ */
}
.modally .modally-close-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove excess padding and border in Firefox 4+ */
.modally .modally-close-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.modally-table {
  display: table;
  width: 100%;
  min-height: 100%;
}

.modally-cell {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.modally .iframe-landing {
  position: relative;
}

.modally .iframe-landing iframe,
.modally .iframe-landing video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0px;
  left: 0px;
  border: none;
}

@media screen and (min-width: 960px) {
  .modally .modally-close:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 959px) {
  .modally {
    height: auto;
    max-width: none;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: calc(100% - 40px);
  }
}
/*# sourceMappingURL=modally.css.map */