@font-face {
  font-family: "Gotham";
  src: url('font/Gotham-Book.woff') format('woff'),
       url('font/Gotham-Book.woff2') format('woff2'),
       url('font/Gotham-Book.ttf') format('truetype');
  font-weight: normal;
}

/* gradient */
.ai-gradient {
	background: linear-gradient(45deg, #a9b5de 0%,#8acee0 100%);
}

.dark-ai-gradient {
	background: linear-gradient(45deg, #20347c 0%,#0098bf 100%);
}

.light-ai-gradient {
	background: linear-gradient(45deg, hsl(215, 100%, 96%) 0%,hsla(0, 45%, 96%, 1) 100%);
}

/* videos */

#video {
    min-height: 100%;
    background-color: #666;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
#video video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#video h1 {
    position: absolute;
    top: -45%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 80%;
    height: 1em;
    text-align: center;
    font-size: 300%;
    text-shadow: 1px 1px 1px #303030;
	font-weight: 300;
}
@media screen and (max-width: 1000px) {
    #video h1 {
        width: 80%;
    	top: -45%;
        font-size: 200%;
    }
}

#video h3 {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 80%;
    font-size: 170%;
    text-align: center;
    text-shadow: 1px 1px 1px #303030;
}
@media screen and (max-width: 1000px) {
    #video h3 {
        width: 80%;
    	top: 50%;
        font-size: 120%;
    }
}

#video h4 {
    position: absolute;
    top: 70%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 50%;
    font-size: 200%;
    text-align: center;
	font-weight: 300;
}
#video-spacer {
    display: block;
    width: 100%;
    height: 100%;
}
/* images and text */

#content {
    position: relative;
}
.moment {
    position: relative;
    width: 98%;
    padding: 1%;
}
.moment-image h1 {
    position: absolute;
    top: 40%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 50%;
    font-size: 400%;
    text-align: center;
    z-index: 41;
    text-shadow: 1px 1px 1px #303030;
}
@media screen and (max-width: 1000px) {
    .moment-image h1 {
        width: 80%;
        font-size: 200%;
        top: 30%;
    }
}
.moment-image h3 {
    position: absolute;
    top: 55%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 50%;
    font-size: 200%;
    text-align: center;
    z-index: 41;
    text-shadow: 1px 1px 1px #303030;
}
@media screen and (max-width: 1000px) {
    .moment-image h3 {
        width: 80%;
        font-size: 150%;
        top: 55%;
    }
}
.moment-image h4 {
    position: absolute;
    top: 65%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 50%;
    font-size: 200%;
    text-align: center;
    z-index: 41;
    text-shadow: 1px 1px 1px #303030;
}

@media screen and (max-width: 1000px) {
	.moment-image h4 {
        width: 80%;
        font-size: 150%;
        top: 55%;
    }
}

.moment-image p {
    position: absolute;
    top: 70%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    color: #fff;
    width: 50%;
    font-size: 100%;
    text-align: center;
    z-index: 41;
    text-shadow: 1px 1px 1px #303030;
}
.moment-image {
    width: 100%;
    height: 100%;
    padding: 0;
}
.moment-clipper {
    position: absolute;
    clip: rect(auto, auto, auto, auto);
    width: 100%;
    height: 100%;
    z-index: 40;
}
/* menu */

.fixed_menu {
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transform: translateZ(0)
}
/*-webkit-transform: translateZ(0) workaround chrome */

#menu {
    z-index: 20;
    margin-top: 0px;
    margin-bottom: 0.0cm;
	font-family: 'Gotham', sans-serif;
	font-size: 1.35vw;
    font-size: 1.1em;
    background-color: rgba(0, 22, 42, 0.8);
    text-align: right;
	min-height: 3em;
	backdrop-filter: blur(10px);
}
#innerMenu {
    background-color: rgba(0, 0, 0, 0.0);
    color: #ffffff;
    width: 100%;
    border: #0066CC;
    margin-right: 2em;
}
#menu a {
    color: #ffffff;
    border-bottom: 0px solid rgba(255, 0, 0, 0.0);
    background-color: rgba(0, 102, 204, 0.0);
	margin-left: 4em;
    font-weight: 300;
	padding-bottom: 10px;
}
#menu a:hover {
    /*text-shadow: 0px 0px 15px rgba(255, 255, 255, 1);*/
	border-bottom: 1px solid #fff;
}
#menu img:hover {
    -webkit-filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.8));
    filter: url(shadow.svg#drop-shadow);
}
.menu_flag {
    height: 0.7em;
}
.under_menu {
    z-index: 9998;
    margin-top: 0px;
    margin-bottom: 0.0cm;
	font-family: 'Gotham', sans-serif;
    font-size: 1.6em;
    text-align: center;
    position: fixed;
    left: 0;
    top: 2em;
    width: 100%;
    -webkit-transform: translateZ(0)
}
.under_menu a {
    color: #ffffff;
    border-bottom: 0px solid rgba(255, 0, 0, 0.0);
    background-color: rgba(0, 102, 204, 0.0);
}
.under_menu a:hover {
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 1);
    border-bottom: 3px solid #FFF;
}
#menu_bar_mob {
    z-index: 9999;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 4em;
}
#menu_mob {
    z-index: 10000;
    position: fixed;
    top: 4em;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 20, 40, 0.9);*/
    display: none;
	text-align: center;
}
#menu_mob a {
    color: #fff;
    border-bottom: 0px solid rgba(255, 0, 0, 0.0);
    background-color: rgba(0, 102, 204, 0.0);
    font-size: 150%;
    padding-left: 0.5em;
}

#menu_icon {
	margin-right: 1em;
    text-align: right;
}

#menu_icon img {
    height: 4em;
    width: 3.5em;
}
.anchor {
	padding-top: 2em;
}


/* button */

.button {
    cursor: pointer;
    margin: 10px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 29px;
    padding-left: 29px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    display: inline-block;
	font-family: 'Gotham', sans-serif;
	font-weight: normal !important;
}
.blue-button {
    color: #2c5aa0;
    border: 1px rgba(11, 117, 167, 1.0) solid;
}
.blue-button:hover {
    background-color: rgba(11, 117, 167, 1.0);
    color: #fff
}
.blue-background-button {
    color: #ffffff;
	background-color: rgba(11, 117, 167, 1.0);
    border: 1px rgba(11, 117, 167, 1.0) solid;
	box-shadow: 0 4px 6px 0 rgba(58, 109, 129, 0.3);
}
.blue-background-button:hover {
    background-color: #ffffff;
    color: rgba(11, 117, 167, 1.0);
	box-shadow: 0 0px 0px 0 rgba(58, 109, 129, 0.3);
}
.green-button {
	color: rgb(104, 211, 157);
    border: 1px rgb(104, 211, 157) solid;
}
.green-button:hover {
	background-color: rgb(104, 211, 157);
	color: #ffffff;
}
.green-background-button {
color: #ffffff;
        background-color: rgb(104, 211, 157);
    border: 1px rgb(104, 211, 157) solid;
}
.green-background-button:hover {
	box-shadow: 0 4px 10px 2px rgba(81, 217, 177, 0.48);
}
.white-button {
	background: linear-gradient(45deg, #20347caa 0%,#0098bfaa 70%);
    color: #fff;
    border: 3px #fff solid;
}
.white-button:hover {
    background-color: rgba(11, 117, 167, 0.7);
    color: #fff
}
.white-button2 {
    color: #fff;
    border: 3px #fff solid;
}
.white-button2:hover {
    background-color: #fff;
    color: rgba(11, 117, 167, 1.0);
}
.white-background-button {
    color:rgba(11, 117, 167, 1.0);
	background-color: #ffffff;
    border: 3px #fff solid;
}
.white-background-button:hover {
    color: #ffffff;
	background-color: rgba(11, 117, 167, 0.0);
    color: #fff
}

.red-menu-button {
	  background-color: #f44336 !important;  color: white !important;  padding: 4px 25px !important;  text-align: center !important;  text-decoration: none !important;  display: inline-block !important; border: none !important;
}

.red-menu-button:hover {
	  background-color: ff786e !important;
}

.corner-button{
	position: fixed;
	bottom: 1em;
	right: 1em;
	z-index: 9999;
}

/* footer */

.footer {
    color: #ffffff;
    background-color: #1d212b;
    padding: 1em;
    position: relative;
	font-size: 80%;
	height: 2em;
}

.footer a {
	color: #ffffff;
}

.footer p {
	float: right;
}
/* icon lists */

.demo-icon {
    font-family: "freewalk-picto";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 100%;
    margin-right: .2em;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    
    line-height: 2em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    
    margin-left: .2em;
    /* You can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.demo-icon span {
	font-family: 'Gotham', sans-serif;
}
ul.icon {
    list-style-type: none;
}
ul.icon li {
    font-family: 'FontAwesome';
    text-indent: -1.4em;
}
.icon-calendar:before {
    content: '\e800';
}
.icon-clock:before {
    content: '\e801';
}
.icon-camera-alt:before {
    content: '\e802';
}


/* contact 2018 */


#contact_form {
	 width: 500px;
}

#contact_form, textarea
{
    border-bottom: 3px solid;
border-left: none;
border-right: none;
border-top: none;
border-bottom-color: rgba(0, 102, 204, 0.9);

width: 500px;
/*height: 2em;*/




  display: block;
  box-sizing: padding-box;
  overflow: hidden;

  
  font-size: 14px;
  margin: auto;
 
}

#contact_form, input
{
    border-bottom: 3px solid;
border-left: none;
border-right: none;
border-top: none;
border-bottom-color: rgba(0, 102, 204, 0.9);
}


/* contact */

/*#wrap {
    width: 530px;
    margin: 20px auto 0;
    height: 550px;
}
#form_wrap {
    overflow: hidden;
    height: 446px;
    position: relative;
    top: 0px;
    -webkit-transition: all 1s ease-in-out .3s;
    -moz-transition: all 1s ease-in-out .3s;
    -o-transition: all 1s ease-in-out .3s;
    transition: all 1s ease-in-out .3s;
}
#form_wrap:before {
    content: "";
    position: absolute;
    bottom: 128px;
    left: 0px;
    background: url('images/before.png');
    width: 530px;
    height: 316px;
}
#form_wrap:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    background: url('images/after.png');
    width: 530px;
    height: 260px;
}
#form_wrap.hide:after,
#form_wrap.hide:before {
    display: none;
}
#form_wrap:hover {
    height: 776px;
    top: -200px;
}
#form_contact {
    background: #f7f2ec url('images/letter_bg.png');
    position: relative;
    top: 200px;
    overflow: hidden;
    height: 200px;
    width: 400px;
    margin: 0px auto;
    padding: 20px;
    border: 1px solid #fff;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0px 0px 3px #9d9d9d, inset 0px 0px 27px #fff;
    -moz-box-shadow: 0px 0px 3px #9d9d9d, inset 0px 0px 14px #fff;
    -webkit-box-shadow: 0px 0px 3px #9d9d9d, inset 0px 0px 27px #fff;
    -webkit-transition: all 1s ease-in-out .3s;
    -moz-transition: all 1s ease-in-out .3s;
    -o-transition: all 1s ease-in-out .3s;
    transition: all 1s ease-in-out .3s;
}
#form_wrap:hover form {
    height: 530px;
}
label {
    margin: 11px 20px 0 0;
    font-size: 16px;
    color: #b3aba1;
    text-transform: uppercase;
    text-shadow: 0px 1px 0px #fff;
}
#wrap input[type=text],
textarea {
    font: 14px normal normal uppercase helvetica, arial, serif;
    color: #7c7873;
    background: none;
    width: 380px;
    height: 36px;
    padding: 0px 10px;
    margin: 0 0 10px 0;
    border: 1px solid #f8f5f1;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: inset 0px 0px 1px #726959;
    -webkit-box-shadow: inset 0px 0px 1px #b3a895;
    box-shadow: inset 0px 0px 1px #b3a895;
}
textarea {
    height: 80px;
    padding-top: 14px;
}
textarea:focus,
input[type=text]:focus {
    background: rgba(255, 255, 255, .35);
}
#form_wrap input[type=submit] {
    position: relative;
    font-size: 24px;
    color: #7c7873;
    text-shadow: 0 1px 0 #fff;
    width: 100%;
    text-align: center;
    opacity: 0;
    background: none;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: opacity .6s ease-in-out 0s;
    -moz-transition: opacity .6s ease-in-out 0s;
    -o-transition: opacity .6s ease-in-out 0s;
    transition: opacity .6s ease-in-out 0s;
}
#form_wrap:hover input[type=submit] {
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity .5s ease-in-out 1.3s;
    -moz-transition: opacity .5s ease-in-out 1.3s;
    -o-transition: opacity .5s ease-in-out 1.3s;
    transition: opacity .5s ease-in-out 1.3s;
}
#form_wrap:hover input:hover[type=submit] {
    color: #435c70;
}
form,
fieldset,
input,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}*/

/* alert */

.alert {
    font-size: 100%;
    font-weight: bold;
    margin: 0px;
    color: #2c5aa0;
    text-align: center;
    position: absolute;
    top: 1.5em;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
    padding: 1%;
    background: rgba(255, 255, 255, 0.94);
    z-index: 40;
}
.alert:empty {
    display: none;
}
@media screen and (max-width: 1000px) {
    .alert {
       top: 4em;
    }
}


/* list */
.tour-list {
	margin-top: 4em;
}

.tour-list-item {
    list-style-type: none;
}

/* board (text) */
.flex-container {
	display: flex;
	flex-wrap: wrap;
  	justify-content: center;
	font-size: 130%;
	align-items: center;
}

.flex-container > div {
  background-color: #ffffffdb;
  width: 1400px;
  max-width: 35%;
  margin: 2em;
  /*padding: 1em;*/
  box-shadow: 10px 10px 34px -12px rgba(0,0,0,0.3);
  border-radius: 0.7em;
}

@media screen and (max-width: 1000px) {
    .flex-container > div {
       max-width: 85%;
    }
}


.flex-container > div img {
  border-radius: 0.7em;
}

.flex-container > div p {
  margin-top: -2.5em;
  margin-left: 1.5em;
  color: #fff;
  box-shadow: 10px 10px 34px -12px rgba(0,0,0,0.3);
}

.flex-container > div h3 {
  text-align: center;
}

.small-width-container > div {
  width: 300px;
}

/* board (links) */

.board {
	padding-inline-start: 1em; /* ul has a padding by default */
	margin: 0 -1em; /* -board-item margin -padding-inline-start */
 	margin-top: 0;
	margin-bottom: 0;
    height: auto;
    z-index: 200;
    width: 100%;
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: center;
    flex-wrap: wrap;
}
.tour-board {
    position: absolute;
    top: 0;
    background-color: rgba(0, 20, 40, 0.8);
    padding: 0;
    margin: 0;
}
.board_bottom {
    top: calc(100% - 8em);
}
.board-item {
    background-color: rgba(0, 20, 40, 0.0);
    padding: 0em;
    width: auto;
    height: auto;
    border-bottom: 3px solid rgba(0, 20, 40, 0.0);
    /*line-height: 150px;*/
    
    color: white;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
}
.board-item a {
    color: white;
}
.board-item:hover {
    /*text-shadow: 0px 0px 15px rgba(255, 255, 255, 1);*/
    
    /*border-bottom: 3px solid #FFF;*/
}
.reference-board-item {
    margin: 0 2em;
}
.reference-board-item a {
    color: rgba(0, 20, 40, 0.8);
}
.reference-board-item:hover {
    /*border-bottom: 3px solid rgba(0, 20, 40, 0.8);*/
}

.column {

}

.over-image-reference-board {
	display: flex; position: absolute; top: 5em; justify-content: space-evenly; width: 100%; z-index: 41;
}
.over-image-reference-board img{
	height: 3.5em;
}
@media screen and (max-width: 1000px) {
    .over-image-reference-board img {
        height: 2em;
    }
}



/* image board */

.image-board {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
	padding-top: 1em;
	padding-bottom: 2em;
}
@media screen and (max-width: 1000px) {
    .image-board {
        margin-top: 0em;
    }
}

.square_image {
    height: 20vw;
    width: 20vw;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
    no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
@media screen and (max-width: 1000px) {
    .square_image {
        margin-left: 1vw;
        margin-right: 1vw;

		height: 40vw;
    	width: 95vw;
    }
}
.rect_image {
    height: 30vw;
    width: calc(60vw + 20px);
    margin-left: 10px;
    margin-right: 10px;
    no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
@media screen and (max-width: 1000px) {
    .rect_image {
				width: calc(60vw + 2vw);
        margin-left: 1vw;
        margin-right: 1vw;
    }
}
.title_image {
    top: 40%;
    text-align: center;
    z-index: 300;
    position: relative;
    color: #fff;
    font-size: 2.0em;
	text-shadow: 2px 2px 2px rgb(92, 92, 92);
}

.icon_tile_image {
	height: 170px;
    width: 170px;
}

.icon_tile_title {
	text-shadow: none;
	top: 0;
	font-size: 1.2em;
}


/* reviews */

div#social_left {
    width: 66%;
    height: 500px;
    background: red;
    float: left;
}
div#tripadvisor_right {
    margin-left: 66%;
    height: 500px;
    background: black;
}



/* FAQ */

.faq > a {
	color: #1d8ac1;
}


/* common */

@font-face {
	font-family: 'Gotham', sans-serif;
}  

body {
    overflow-x: hidden;
    margin: 0px;
    color: #084B6B;
	font-family: 'Gotham', sans-serif;
    height: 100%;
    width: 100%;
	scroll-behavior: smooth; /* Makes internal link scrolling smooth */
}
a:link {
    text-decoration: none;
    font-weight: bold;
}

/*a:hover {
    background-color: 00000000 !important;
	background: transparent;
	color: #aaaaaa;
}*/

h1 {
	font-size: 1.5em;
	font-weight:normal;
	font-family: 'Gotham', sans-serif;
}

h2 {
	color: rgba(11, 117, 167, 1.0);
	text-align: center;
}

.centered-anchor {
	position: absolute;
	transform: translateY(-50vh);
}

.transparent-bg {
    background-color: rgba(255, 255, 255, 0.0);
}
.extendfull,
.extendleft {
    padding-left: 3000px;
    margin-left: -3000px;
}
.extendfull,
.extendright {
    padding-right: 3000px;
    margin-right: -3000px;
}
.in-shadow {
    /*-moz-box-shadow: inset 0 0 50px #777;
    -webkit-box-shadow: inset 0 0 50px #777;
    box-shadow: inset 0 0 50px #777;*/
}
.blue-in-shadow {
    -moz-box-shadow: inset 0px 0 50px #295694;
    -webkit-box-shadow: inset 0px 0 50px #295694;
    box-shadow: inset 0px 0 50px #295694;
}
.blue-bg {
    background-color: #2c5aa0;
}
.blue-gradient {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#20347c+0,0098bf+100 */
	background: #20347c; /* Old browsers */
	background: -moz-linear-gradient(45deg, #20347c 0%, #0098bfaa 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #20347c 0%,#0098bfaa 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #20347c 0%,#0098bfaa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.sunrise-gradient {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9f9286+0,868a9f+100&0.8+0,0.8+100 */
	background: rgba(159,146,134,0.8) ; /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(159,146,134,0.8) 0%, rgba(134,138,159,0.8) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(159,146,134,0.8) 0%,rgba(134,138,159,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(159,146,134,0.8) 0%,rgba(134,138,159,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.soft-drop-shadow {
	box-shadow: 10px 10px 34px -12px rgba(0,0,0,0.3);
}


/* Glowing backlight effect */

 #ai-magic {
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
	 font-family: monospace;
	 justify-content: center;
	 background-color: #1d212b;
	 height: 50vh;
	 width: 100%;
	 z-index: -10;
}


 #ai-magic-backlight {
	 position: relative;
	/*top: -10vw;
	*/
	 width: 10em;
	 height: 10em;
	 line-height: 10em;
	 text-align: center;
	 color: #252b37;
	 background-color: #151823;
	 animation: textColor 10s ease infinite;
	 margin-top: 2em;
}
 #ai-magic-backlight:after {
	 position: absolute;
	 content: "";
	 top: 0vw;
	 left: 0;
	 right: 0;
	 z-index: 0;
	 height: 100%;
	 width: 100%;
	 margin: 0 auto;
	 transform: scale(0.75);
	 -webkit-filter: blur(3vw);
	 -moz-filter: blur(3vw);
	 -ms-filter: blur(3vw);
	 filter: blur(3vw);
	 background: linear-gradient(270deg, #0fffc1, #7e0fff);
	 background-size: 200% 200%;
	 animation: animateGlow 10s ease infinite;
}
 @keyframes animateGlow {
	 0% {
		 background-position: 0% 50%;
	}
	 50% {
		 background-position: 100% 50%;
	}
	 100% {
		 background-position: 0% 50%;
	}
}
 @keyframes textColor {
	 0% {
		 color: #7e0fff;
	}
	 50% {
		 color: #0fffc1;
	}
	 100% {
		 color: #7e0fff;
	}
}
 #ai-magic-box {
	 position: relative;
	 left: -10em;
	 width: 10em;
	 height: 10em;
	 z-index: 10;
	 background-color: #151823;
	 color: #fff;
	 line-height: 10em;
	 text-align: center;
	 margin-top: 2em;
}
 #ai-magic-text {
	 color: #fff;
	 font-size: 130%;
	 margin: 2em;
	 width: 50%;
}


/* Pricing table */

.pricing-background {
  padding: 0 25px 25px;
  position: relative;
  width: 100%;
}


.pricing-background::after {
  content: '';
  background: #1d212b;

  height: 350px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media (max-width: 900px) {
  .pricing-background {
    padding: 0 0 0;    /*0 0 25px*/
  }
}

.pricing-container {
  margin: 0 auto;
  padding: 50px 0 0;
  max-width: 960px;
  width: 100%;
}

.pricing-panel {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  position: relative;
  width: 100%;
  z-index: 10;
}

@media (max-width: 1000px) {
  .pricing-panel {
    padding: 0;
    width: fit-content;
    margin: auto;
  }
}


.pricing-table {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.08), 0px 20px 31px 3px rgba(0, 0, 0, 0.09), 0px 8px 20px 7px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .pricing-table {
    flex-direction: row;
    margin: 2em;
  }
}

.pricing-table * {
  text-align: center;
  text-transform: uppercase;
}

.pricing-plan {
  border-bottom: 1px solid #e1f1ff;
  padding: 25px;
}

.pricing-plan:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .pricing-plan {
    border-bottom: none;
    border-right: 1px solid #e1f1ff;
    flex-basis: 100%;
    padding: 25px 50px;
  }

  .pricing-plan:last-child {
    border-right: none;
  }
}

.pricing-img {
  margin-bottom: 25px;
  max-width: 100%;
}

.pricing-header {
  color: #888;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-features {
  color: #084B6B;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 50px 0 25px;
}

.pricing-features-item {
  border-top: 1px solid #e1f1ff;
  font-size: 12px;
  line-height: 1.5;
  padding: 15px 0;
}

.pricing-features-item:last-child {
  border-bottom: 1px solid #e1f1ff;
}

.pricing-features {
  list-style: none;
}

.pricing-features li:before {
  content: '✓';
}

.pricing-price {
  color: #084B6B;
  display: block;
  font-size: 1.25em;
  font-weight: 700;
}

.pricing-button {
  border: 1px solid #9dd1ff;
  border-radius: 10px;
  color: #348EFE;
  display: inline-block;
  margin: 25px 0;
  padding: 15px 35px;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

.pricing-button:hover,
.pricing-button:focus {
  background-color: #e1f1ff;
}

.pricing-button.is-featured {
  background-color: #48aaff;
  color: #fff;
}

.pricing-button.is-featured:hover,
.pricing-button.is-featured:active {
  background-color: #269aff;
}

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
