@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');

/* Common styles */

/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
------------------------------------------------------------------------------- */

/* Let's default this puppy out
------------------------------------------------------------------------------- */
body{
    font-family: Reddit Sans, 'Gordita', sans-serif;
    font-size: 24px;
    line-height: 1;
    color: #6c7a80;
    letter-spacing: 0.3px;
}

html,body,body div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,figure,footer,header,menu,nav,section,time,mark,audio,video,details,summary {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: 400;
    vertical-align: baseline;    
}


main,article,aside,figure,footer,header,nav,section,details,summary {
    display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*,*:before,*:after {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Responsive images and other embedded objects */

/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */

img,object,embed {
    max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/

/* force a vertical scrollbar to prevent a jumpy page */

// html {
    overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */

ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration-line: underline;
    text-decoration-style: dotted;	
}
a:hover{
	color: #c71585;
	cursor: pointer;
	text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #c71585;
}
del {
    text-decoration: line-through;
}

abbr[title],dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
}

/* tables still need cellspacing="0" in the markup */

table {
    border-collapse: separate;
    border-spacing: 0;
}

th {
    font-weight: bold;
    vertical-align: bottom;
}

td {
    font-weight: normal;
    vertical-align: top;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,select {
    vertical-align: middle;
}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type='radio'] {
    vertical-align: text-bottom;
}

input[type='checkbox'] {
    vertical-align: middle;
}



  .checkbox-wrapper-33 {
    --s-xsmall: 0.625em;
    --s-small: 1.2em;
    --border-width: 2px;
    --c-primary: #00bfff;
    --c-primary-20-percent-opacity: rgb(95 17 232 / 20%);
    --c-primary-10-percent-opacity: rgb(95 17 232 / 10%);
    --t-base: 0.4s;
    --t-fast: 0.2s;
    --e-in: ease-in;
    --e-out: cubic-bezier(.11,.29,.18,.98);
  }

  .checkbox-wrapper-33 .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .checkbox-wrapper-33 .checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .checkbox-wrapper-33 .checkbox + .checkbox {
    margin-top: var(--s-small);
  }
  .checkbox-wrapper-33 .checkbox__symbol {
    display: inline-block;
    display: flex;
    margin-right: calc(var(--s-small) * 0.7);
    border: var(--border-width) solid var(--c-primary);
    position: relative;
    border-radius: 0.1em;
    width: 1.5em;
    height: 1.5em;
    transition: box-shadow var(--t-base) var(--e-out), background-color var(--t-base);
    box-shadow: 0 0 0 0 var(--c-primary-10-percent-opacity);
  }
  .checkbox-wrapper-33 .checkbox__symbol:after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 0.25em;
    height: 0.25em;
    background-color: var(--c-primary-20-percent-opacity);
    opacity: 0;
    border-radius: 3em;
    transform: scale(1);
    transform-origin: 50% 50%;
  }
  .checkbox-wrapper-33 .checkbox .icon-checkbox {
    width: 1em;
    height: 1em;
    margin: auto;
    fill: none;
    stroke-width: 3;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    color: var(--c-primary);
    display: inline-block;
  }
  .checkbox-wrapper-33 .checkbox .icon-checkbox path {
    transition: stroke-dashoffset var(--t-fast) var(--e-in);
    stroke-dasharray: 30px, 31px;
    stroke-dashoffset: 31px;
  }
  .checkbox-wrapper-33 .checkbox__textwrapper {
    margin: 0;
  }
  .checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol:after {
    -webkit-animation: ripple-33 1.5s var(--e-out);
            animation: ripple-33 1.5s var(--e-out);
  }
  .checkbox-wrapper-33 .checkbox__trigger:checked + .checkbox__symbol .icon-checkbox path {
    transition: stroke-dashoffset var(--t-base) var(--e-out);
    stroke-dashoffset: 0px;
  }
  .checkbox-wrapper-33 .checkbox__trigger:focus + .checkbox__symbol {
    box-shadow: 0 0 0 0.25em var(--c-primary-20-percent-opacity);
  }

  @-webkit-keyframes ripple-33 {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale(20);
    }
  }

  @keyframes ripple-33 {
    from {
      transform: scale(0);
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: scale(20);
    }
  }


.ie7 input[type='checkbox'] {
    vertical-align: baseline;
}

.ie6 input {
    vertical-align: text-bottom;
}

select,input,textarea {
    font: 99% sans-serif;
}

table {
    font-size: inherit;
    font: 100%;
}

small {
    font-size: 85%;
}

strong {
    font-weight: bold;
}

td,td img {
    vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

/* standardize any monospaced elements */

pre,code,kbd,samp {
    font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */

.clickable,label,input[type=button],input[type=submit],input[type=file],button {
    cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */

button,input,select,textarea {
    margin: 0;
}

/* make buttons play nice in IE */

button,input[type=button] {
    width: auto;
    overflow: visible;
}

/* scale images in IE7 more attractively */

.ie7 img {
    -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */

.clearfix:after {
    content: ' ';
    display: block;
    clear: both;
}

/*********************** VARIABLES ***********************/

/* :root { */

/* Colors */

/* Sizes */

/* Responsive sizes */

/* } */

/*********************** MIXINS ***********************/

/*********************** ANIMATIONS ***********************/

.anim{
	/* position: relative; */
}

/* @mixin anima all, 1s; */

@media (min-width: calc(940px + 20px)){

.anim{
		visibility: hidden
}
	}

@-webkit-keyframes orbitRotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes orbitRotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*********************** FONTS ***********************/

/********** Gordita **********/

/* Light */

/* @font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaLight.woff2') format('woff2'), url('etc/fonts/GorditaLight.woff') format('woff'), url('etc/fonts/GorditaLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
} */

/* Light italic */

/* @font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaLight-Italic.woff2') format('woff2'), url('etc/fonts/GorditaLight-Italic.woff') format('woff'), url('etc/fonts/GorditaLight-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
} */

/* Regular */

@font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaRegular.woff2') format('woff2'), url('etc/fonts/GorditaRegular.woff') format('woff'), url('etc/fonts/GorditaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Regular italic */

@font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaRegular-Italic.woff2') format('woff2'), url('etc/fonts/GorditaRegular-Italic.woff') format('woff'), url('etc/fonts/GorditaRegular-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Medium */

/* @font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaMedium.woff2') format('woff2'), url('etc/fonts/GorditaMedium.woff') format('woff'), url('etc/fonts/GorditaMedium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
} */

/* Medium italic */

/* @font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaMedium-Italic.woff2') format('woff2'), url('etc/fonts/GorditaMedium-Italic.woff') format('woff'), url('etc/fonts/GorditaMedium-Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
} */

/* Bold */

@font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaBold.woff2') format('woff2'), url('etc/fonts/GorditaBold.woff') format('woff'), url('etc/fonts/GorditaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Bold italic */

@font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaBold-Italic.woff2') format('woff2'), url('etc/fonts/GorditaBold-Italic.woff') format('woff'), url('etc/fonts/GorditaBold-Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Black */

/* @font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaBlack.woff2') format('woff2'), url('etc/fonts/GorditaBlack.woff') format('woff'), url('etc/fonts/GorditaBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
 */

/* Black italic */

/* @font-face{
    font-family: 'Gordita';
    src: url('etc/fonts/GorditaBlack-Italic.woff2') format('woff2'), url('etc/fonts/GorditaBlack-Italic.woff') format('woff'), url('etc/fonts/GorditaBlack-Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
} */

/*********************** BUTTONS ***********************/

.btn{
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    line-height: 1em;
    font-weight: 900;

    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    font-family: 'Reddit Sans', 'Gordita', sans-serif;
    
}

.btn:hover,.btn:focus,.btn:active,.btn:visited{
        outline: none;
        text-decoration: none;
    }

.btn--rounded{
        border-radius: 2em;
        padding: 0.85em 2em;
        font-size: 19px;
        border-width: 3px;
        border-style: solid;
        letter-spacing: 1px;
    }

.btn--rounded--blue{
            color: #4faddd;
            border-color: #4faddd;
            background-color: #fff;
        }

.btn--rounded--blue:hover{
                color: #fff;
                background-color: #4faddd;
            }

.btn--rounded--white{
            color: #ffffff;
            border-color: #ffffff;
        }

.btn--rounded--white:hover{
                color: blue;
                background-color: #ffffff;
            }
.btn--rounded--transparent{
            color: #ffffff;
            border-color: #ffffff;
            border-width: 3px;
            
            background-color: transparent;
            backdrop-filter: blur(0px);
            box-shadow: inset 0 0 20px 8px rgba(0, 191, 255, 0.4);

            
        }

.btn--rounded--transparent:hover{
                background-color: rgba(0, 191, 255, 0.1);
                box-shadow: inset 0 0 20px 12px rgba(0, 191, 255, 0.4);
                box-shadow: inset 0 0 20px 14px rgba(0, 191, 255, 0.9);
                
            }            
.btn--rounded--transparent:active{
                color: blue;
                /*background-color: rgba(0, 191, 255, 0.7);*/
                background-color: rgba(255, 255, 255, 1);
                /*box-shadow: inset  0 0 20px 12px rgba(0, 191, 255, 0.7);*/
                box-shadow: inset 0 0 20px 12px rgba(255, 255, 255, 0.7);
            } 
.btn--error{
        border-radius: 2em;
        padding: 0.9em 0.5em;
        font-size: 15px;
        border-width: 0px;
        border-style: solid;
    }

/* Ripple effect */
.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #47a7f5 radial-gradient(circle, transparent 1%, #47a7f5 1%) center/15000%;
}
.ripple:active {
  background-color: #6eb9f7;
  background-size: 100%;
  transition: background 0s;
}
/**************************************************/
    
.link{
    color: #0073de;
    text-decoration: none;
}

.link:hover{
        text-decoration: underline;
    }

/*********************** LAYOUT ***********************/

/* html,
body{
  height: 100%;
} */



img,svg{
    max-width: 100%;
    max-height: 100%;
}

h1,h2,h3,h4,h5{
    margin-bottom: 1em;
}

h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child{
        margin-bottom: 0;
    }

h1{
    font-size: 42px;
    line-height: 1.15em;
    font-weight: 800;
}

h2{
    font-size: 34px;
    line-height: 1.15em;
    font-weight: 800;
    letter-spacing: 0.5px;
}

h3{
    font-size: 22px;
    line-height: 1.15em;
    font-weight: 800;
}

h4{
    font-size: 15px;
    line-height: 1.25em;
    font-weight: 800;
}

h5{
    font-size: 14px;
    line-height: 1.25em;
}

.sectionTitle{
    position: relative;
    padding-bottom: 1em;
}

.sectionTitle:before{
        content: '';
        position: absolute;
        width: 70px;
        height: 6px;
        left: 0;
        bottom: 0;
    }

.sectionTitle.font--blue:before{
            background-color: #4faddd;
        }

.sectionTitle.font--bluePurple:before{
            background-color: #252268;
        }

.sectionTitle.font--white:before{
            background-color: #ffffff;
        }

p{
    line-height: 1.3em;
    margin-bottom: 1em;
    font-size: 17px;
    font-weight: 300;
}

p:last-child{
        margin-bottom: 0;
    }

strong,b{
    font-weight: 800;
}

ul,ol{
    padding-left: 1em;
}

ul li,ol li{
        margin-bottom: 1em;
    }

ul li:last-of-type,ol li:last-of-type{
            margin-bottom: 0;
        }

ul{
    list-style-type: disc;
}

/* Grid */

.container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.container--extralarge{
        max-width: 1360px;
    }

.container--large{
        max-width: 1200px;
    }

.container--medium{
        max-width: 940px;
    }

.container--small{
        max-width: 680px;
    }

.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.flex--column{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

.flex--between{
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

.flexGrid--full > *{
        width: 100%;
    }

.flexGrid--halves > *{

        width: calc(50% - 12.5px);
    }

.flexGrid--thirds > *{

        width: calc(33.33333% - 16.66667px);
    }

/* Fonts */

.font--center{
        text-align: center;
    }

.font--upp{
        text-transform: uppercase;
    }

.font--weight300{
        font-weight: 300;
    }

.font--weight400{
        font-weight: 400;
    }

.font--weight600{
        font-weight: 600;
    }

.font--weight700{
        font-weight: 700;
    }

.font--weight900{
        font-weight: 900;
    }

.font--white{
        color: #ffffff;
    }

.font--blue{
        /*color: #0073de;*/
        color: #4faddd;
    }

.font--bluePurple{
        color: #252268;
    }
.font--red{
        color: #c71585;
    }
.font--green{
        color: #2ac815;
    }
.font--gray{
		color: #abb4b8;
	}	
.font--size3{
	font-size: 25px;
}    
.bg--white{
        background-color: #ffffff;
    }

.bg--gray{
        background-color: #f6fafc;
    }

.bg--bluePurple{
        background-color: #1e1a77;
    }

.bg--blueMedium{
        background-color: #1d39b4;
    }
 .bg--red{
	  background-color: #c71585;
 }

/* Hamburger override */

.mainHamburger.hamburger{
        z-index: 990;
        right: 0;
        top: 0;
    }

.mainHamburger .hamburger-box{
        height: 30px;
    }

.mainHamburger .hamburger-inner,.mainHamburger .hamburger-inner:after,.mainHamburger .hamburger-inner:before,.mainHamburger.is-active .hamburger-inner,.mainHamburger.is-active .hamburger-inner:after,.mainHamburger.is-active .hamburger-inner:before{
        background-color: #ffffff;
    }

.mainHamburger.hamburger{
        position: fixed;
        display: none;
    }

@media (max-width: calc(1000px + 20px)){

.mainHamburger.hamburger{
            display: block
    }
        }

/*********************** HEADER ***********************/

header.mainHeader{
    position: fixed;
    width: 100%;
    height: 130px;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: transparent;
    padding: 20px 0;

    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;

}

@media (max-width: calc(1000px + 20px)){

header.mainHeader{
        background-color: #00156d; /*#102C89;*/
        background: rgba(0, 26, 123,  1);
        padding: 10px;
        height: 62px;
        
}
    }

header.mainHeader.active{
        top: 0;
    }

@media (max-width: calc(1000px + 20px)){

header.mainHeader.active{
            height: auto;
            padding: 20px
    }
        }

header.mainHeader.active .mainHeader__logo img{
            height: 80px;
        }

header.mainHeader.scrolled{
        height: 65px;
        background-color: #00156d;
        background: rgba(0, 26, 123,  0.9);
        /*background-color: #0073de;*/
        padding: 10px 0;
    }

header.mainHeader.scrolled .mainHeader__logo img{
            height: 100%;
        }

.mainHeader__container{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}

@media (max-width: calc(1000px + 20px)){

.mainHeader__container{
        text-align: center;
        overflow: hidden
}
    }

.mainHeader__logo{
    margin: 0 auto 0 110px;
    height: 110%;
    -webkit-transition: all .9s ease-in-out;
        transition: all .9s ease-in-out;
}
@media (max-width: calc(1380px + 20px)){

.mainHeader__logo{
       margin: 0 auto 0 20px;
       -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
}
    }


@media (max-width: calc(1000px + 20px)){

.mainHeader__logo{
        margin: 0 auto;
}
    }

.mainHeader__logo img{
        height: 85px;
        max-height: none;

        transition: all 1s ease-in-out;
    }

@media (max-width: calc(1000px + 20px)){

.mainHeader__logo img{
            max-height: unset;
            height: 40px
    }
        }
        
.mainNav{        
 
        transition: all 1s ease-in-out;
      
}

@media (max-width: calc(1380px + 20px)){

.mainNav{        
        
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; 
        margin-right: 15px; 
        transition: all 1s ease-in-out;
      
}
    }

@media (max-width: calc(1000px + 20px)){

.mainNav{
        width: 100%;
          -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 40px 10px;
        transition: all 1s ease-in-out;
       
}
    }

.mainNav__item{
    color: #ffffff;
    text-decoration: none;
    padding: 1em;
    margin: 0 0 0 0;
    position: relative;    
    font-size: 17px;
}


@media (max-width: calc(1400px + 20px)){

.mainNav__item{
        margin: 0 0 0 0
}
    }
    
@media (max-width: calc(1000px + 20px)){

.mainNav__item{
        margin: 0 0 0 0
}
    }    
  

.mainNav__item:hover,.mainNav__item:focus,.mainNav__item:active{
        text-decoration: none;
    }

.mainNav__item:hover:before{
            opacity: 1;
        }

.mainNav__item:last-child{
        margin: 0;
        margin: 0 0px 0 0;
    }

.mainNav__item:before{
        content: '';
        position: absolute;
        bottom: 0;
        width: calc(100% - 2em);
        height: 3px;
        background-color: #ffffff;
        opacity: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
                transform: translate(-50%, 0%);
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

.mainNav__item.callMe img{
            margin-left: 1em;
        }

/*********************** FLASH ***********************/

.flash{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background-color: #0073de;
    border-bottom: 1px solid #07062d;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    z-index: 999;
    -webkit-animation: hideFlash 1s 5s forwards;
            animation: hideFlash 1s 5s forwards;
}

@-webkit-keyframes hideFlash {

    0%{
        opacity: 1;
        visibility: visible;
    }

    99%{
        opacity: 0;
        visibility: visible;
    }

    100%{
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes hideFlash {

    0%{
        opacity: 1;
        visibility: visible;
    }

    99%{
        opacity: 0;
        visibility: visible;
    }

    100%{
        opacity: 0;
        visibility: hidden;
    }
}

/* Section specific styles */

.section__intro{
    background-image: -webkit-gradient(linear, left top, right bottom, from(#17116c), to(#016dcc));
    background-image: linear-gradient(to bottom right, #17116c, #016dcc);
    position: relative;
    /*height: 1010px;*/
    /*max-height: 100vh;*/
    z-index: 2;
    padding-top: 105px;
    border: 1px;
	
	background-image: url(images/sky15.jpg);
   background-repeat: no-repeat;
   
              

}
.section__intro_order{
    background-image: -webkit-gradient(linear, left top, right bottom, from(#17116c), to(#016dcc));
    background-image: linear-gradient(to bottom right, #17116c, #016dcc);
    position: relative;
    height: 1430px;
    /*max-height: 90vh;*/
    z-index: 2;
    padding-top: 125px;
    padding-right: 25px;
    
    background-image: url(images/sky10.jpg);
   background-repeat: repeat;
}

@media (max-width: calc(1000px + 20px)){

	.section__intro{
        	height: auto;
        	max-height: unset;
        	overflow: hidden;
        	padding-top: 62px
	}
}

.section__intro > .container{
        position: relative;
        z-index: 3;
        height: 100%;
    }

.section__intro__circle{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('images/orbit.png');
    background-repeat: no-repeat;
    background-size: auto 75%;
    background-position: center top;
    z-index: 1;
}

.intro__planet__earth{
    /*animation: 25s ease-out infinite orbitRotation;*/
} 
.intro__teaser{
     border: #e6e6fa 0px dotted;
     border-radius: 30px;
     padding: 20px;
     margin: 130px 0px 20px 0px;
     height: 550px;
     
 }

.intro__news{
     border: #e6e6fa 2px dotted;
     border-radius: 30px;
     padding: 25px;
     margin: 44px 0px 88px 50px;
     height: 605px;
     
 }
 .intro__newsInside{
 
    position: relative;
    width: 300px;    
    max-width: 100%;
    margin: 0 auto;
    color: white;
    
}
.intro__planet,.intro__phone{
    height: 100%;
}
.intro__phone,.intro__news{
        	
	}
/*
.intro__planet{
	width: 300px;
}*/


.intro__planet img,.intro__phone img{
        display: block;
        margin: 0 auto;
    }

@media (max-width: calc(1000px + 20px)){


	.intro__planet{
        	display: none;
	}
	.intro__teaser{
        	display: none;
	}
	.intro__news{
       	border: none;
       	display: none;
	}
}
    
.intro__phone{
        margin-top: 72px; /*40px*/
        margin-right: 0px;
        position: relative;
        top: 0;
        right: -100px;
        z-index: 5;

} 
    
@media (max-width: calc(1000px + 20px)){

	.intro__phone{
			width: 97%;		
        	margin-top: 72px;
        	position: relative;
        	top: 0;
        	z-index: 5;
        	padding-left: 24px;
        	left: 50%;
        	-webkit-transform: translate(-50%, 0%);
        	transform: translate(-50%, 0%);
        	border: 0px solid;
	}
	.intro__news{
        	
        	border: 1px solid;
	}
}
   

.intro__phoneInside{
	 display: block;
    position: relative;
    width: 335px;
    max-width: 100%;
    height: 705px;
    margin: 0 auto;
    /*background-image: url('images/phone_mockup_tyrkys_short.png');*/
    /*background-repeat: no-repeat;
    background-size: contain;*/

    
}

.intro__phoneInsideOrder{
    position: relative;
    width: 800px;
    max-width: 100%;
    height: 905px;
    margin: 0 auto;
   /* background-image: url('images/phone_mockup_high.png');*/
    background-repeat: no-repeat;
    background-size: contain;
    /*	background-color: #fff;*/
}



@media (max-width: calc(1000px + 20px)){

.orderForm{
        margin-top: 40px;
        position: relative;
        top: 0;
        z-index: 5;
        padding-left: 0px;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);

                transform: translate(-50%, 0%);
        width: 100%        
}
    }
.orderForm{
        margin-top: 40px;
        margin-right: 0px;
        position: relative;
        top: 0;
        right: 0px;
        z-index: 5;
        height: 100%;
}

.phoneForm{
    position: absolute;
    width: 90%;
    height: 63%;
    left: 0px;
    top: 0px;
    padding: 40px 40px 30px 40px;
    /*box-shadow: 0 0 40px 8px rgba(0, 191, 255, 0.3);*/
    border-radius: 30px;
    transition: all 0.5s linear;
    backdrop-filter: blur(4px);
    background-color: rgba(5, 60, 125, 0.4);
    animation: pulsingShadow 5s ease 0s infinite alternate ;
    animation-fill-mode: both;
    
}
.phoneForm:hover{ 
    
    backdrop-filter: blur(7px);
    animation: pulsingShadow 2s ease 0s infinite alternate;
    cursor: pointer;
		
}
.phoneForm:active{
	background-color: rgba(5, 60, 125, 0);
	box-shadow: 0 0 40px 10px rgba(0, 191, 255, 1);
	animation-play-state: paused;
	backdrop-filter: blur(10px);
}

@keyframes pulsingShadow {

    0%{
        box-shadow: 0 0 40px 8px rgba(0, 191, 255, 0.3);
    }
	50%{	
        box-shadow: 0 0 40px 10px rgba(0, 191, 255, 0.5);
    }
    100%{
        box-shadow: 0 0 40px 8px rgba(0, 191, 255, 0.3);
    }
}

@media (max-width: calc(480px + 20px)){

.phoneForm{
       padding: 40px 20px 20px 30px;
}
    }

.phoneForm__title{
    margin: 0 0 10px;
}

.phoneForm__subtitle{
    font-size: 16px;
    margin: 0 0 70px;
}

.phoneForm__input{
    margin: 0 0 10px 0;
    border-radius: 2em;
    border: none;
    -webkit-box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.14);
            box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.14);
    padding: .85em 1em;
    border: 0px solid;
    border-color: #ffffff;
    background-color: rgba(0, 191, 255, 0.2);
    font-size: 16px;
    text-align: center;
    color: white;

    transition: all .5s ease-in-out;
    font-family: 'Reddit Sans', sans-serif;
    box-shadow: inset 0 0 20px 2px rgba(0, 191, 255, 0.4);
    letter-spacing: 0.4px;
    
}

.phoneForm__input option{
	background-color: #0194d4;
	font-family: 'Reddit Sans', sans-serif;
	border: none;
	border-radius: 6px;
}
	

.phoneForm__inputs{
    margin: 0 0 10px 0;
    border-radius: 3em;
    border: none;
    -webkit-box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.04);
            box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.04);
    padding: .75em 1em;
    border: 2px solid;
    border-color: #ffffff;
    background-color: #f1f5fa;
    font-size: 18px;
    text-align: center;
    color: rgb(0, 29, 56);

    -webkit-transition: all .2s ease-in-out;

    transition: all .2s ease-in-out;
    display: none;
}
.phoneForm__input:hover{
        outline: none;
        /*border-color: #0073de;*/
        border-color: #4faddd;
        box-shadow: inset 0 0 20px 14px rgba(0, 191, 255, 0.7);
    }
.phoneForm__input:focus{
        outline: none;
        /*border-color: #0073de;*/
        border-color: #4faddd;
        box-shadow: inset 0 0 20px 14px rgba(0, 191, 255, 0.7);
    }

.phoneForm__input:last-of-type{
        margin: 0 0 10px 0;
    }
.phoneForm__input::placeholder{
        color: #abd8ef;
    }
.phoneForm__input::-webkit-input-placeholder{
        /*color: #0073de;*/
        color: #abd8ef;
    }

.phoneForm__input:-ms-input-placeholder{
        color: #abd8ef;
    }

.phoneForm__input::-ms-input-placeholder{
        color: #abd8ef;
    }



.phoneForm__submit{
    margin: 0 0 20px 0;
}

.btn_signin{
	color: #ffffff;
	border-color: #fff;
	border-width: 3px; 
	user-select: none;
	background: -webkit-linear-gradient(125deg, #fff 55%, blue 55%, aqua 60%, #fff 99%);
	background-color: #fff;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-position: -51px 0px;
   text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.1);

   animation-name: btnshine;
   animation-duration: 5s;
   animation-delay: 0s;
   animation-direction: normal;
   animation-iteration-count: infinite;
   animation-timing-function: ease;  
   transition: all 0.8s ease;
   box-shadow: inset 0px 0px 0px 0px #aed7fb, 0px 0px 3px 0px #cad0d6;
 }
.btn_signin:hover{
	user-select: none;
	color: aqua;
	border-color: #fff;
	border-width: 3px;

	background: -webkit-linear-gradient(125deg, #fff 55%, blue 55%, aqua 70%, #fff 100%);
	background-position: -51px 0;
	-webkit-background-clip: text;
   -webkit-text-fill-color: aqua;
 
  /*animation: textshine 15s ease infinite;*/
  animation-name: btnshine;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-timing-function: ease;  
  /*box-shadow:inset 0px 0px 0px 0px #aed7fb, 0px 0px 3px 0px #ddd;*/
}
.btn_signin:active{
  background: #fff;
  animation-duration: 0s;
  animation-play-state: paused;
  color: #0367a2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #0367a2;
  box-shadow: inset 0px 0px 0px 40px #fff;
  text-shadow: 2px 1px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.btn_signin2{
	color: #ffffff;          
	
	user-select: none;
	
	background: linear-gradient(#03619e, #03619e) padding-box,
	linear-gradient(120deg, white 5%, aqua 5%, aqua 20%, white 20%) border-box;
	border: 3px solid transparent;
	background-position: -10px 0px;
   text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.1);


 -webkit-background-clip: border;
 -webkit-text-fill-color: inherit;
   animation-name: btnshine;
   animation-duration: 5s;
   animation-delay: 0s;
   animation-direction: alternate;
   animation-iteration-count: infinite;
   animation-timing-function: ease;  
   transition: all 1s ease;
 }
.btn_signin2:hover{
	user-select: none;
	background: linear-gradient(#03619e, #03619e) padding-box,
	linear-gradient(90deg, #fff 5%, aqua 55%, aqua 70%, #fff 100%) border-box;
	border: 3px solid transparent;
	background-position: 0px 0px;
   text-shadow: 2px 1px 5px rgba(0, 0, 0, 0.1);

 /*
  animation-name: btnshine;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-direction: normal;
  animation-iteration-count: infinite;
  animation-timing-function: ease;  */
}
.btn_signin2:active{
background:	#fff;
border-width: 3px;
border-color: aqua;
  animation-duration: 0s;
  animation-play-state: paused;

 -webkit-background-clip: inherit;
 -webkit-text-fill-color: aqua;
 text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
                
}

@keyframes btnshine {
  0%   {    background-position: -51px 0;  }
  100%   {    background-position: 150px 10px;  }
  /*100% {    background-position: -51px 0;   }*/
}
@keyframes btnshine_ {
  0%   {    background-position: -100px 0;  }
  100% {    background-position: 300px 0;   }
}

.phoneForm__links{
    margin: 0 0 auto;
}

.phoneForm__links__item{
    line-height: 1.5em;
    font-size: 15px;
}

.div__free{
    padding: 100px 80px 160px;
}

@media (max-width: calc(1200px + 20px)){

.div__free{
        padding: 100px 80px
}
    }

@media (max-width: calc(940px + 20px)){

.div__free{
        padding: 80px 40px
}
    }

@media (max-width: calc(940px + 20px)){

.div__free{
        padding: 80px 20px
}
    }

.section__about{
    padding: 100px 0 160px;
}

@media (max-width: calc(1200px + 20px)){

.section__about{
        padding: 100px 80px
}
    }

@media (max-width: calc(940px + 20px)){

.section__about{
        padding: 80px 40px
}
    }

@media (max-width: calc(940px + 20px)){

.section__about{
        padding: 80px 20px
}
    }

/* Row 1 */

.section__about--row1{
    margin-bottom: 120px;
    padding: 0 50% 0 70px;
}

@media (max-width: calc(940px + 20px)){

.section__about--row1{
        padding: 0 30px
}
    }

@media (max-width: calc(940px + 20px)){

.section__about--row1{
        padding: 0
}
    }

/* Row 2 */

.section__about--row2{
    margin-bottom: 165px;
}

@media (max-width: calc(1200px + 20px)){

.section__about--row2{
        padding: 20px
}
    }

@media (max-width: calc(940px + 20px)){

.section__about--row2{
        margin-bottom: 80px
}
    }

@media (max-width: calc(940px + 20px)){

.section__about--row2{
        padding: 0
}
    }

.about__card{
    padding: 0 35px 35px;
    -webkit-box-shadow: 0 20px 25px 5px rgba(25, 83, 192, 0.11);
            box-shadow: 0 20px 25px 5px rgba(25, 83, 192, 0.11);
}

@media (max-width: calc(940px + 20px)){

.about__card{
        width: 100%;
        margin: 0 0 80px 0
}
    }

.about__card:last-of-type{
        margin: 0;
    }

.about__card__icon{
    margin: -40px auto 0;
    display: block;
}

.about__card__title{
    text-align: center;
    padding: 1em 0;
    border-bottom: 1px solid #eaf1f5;
}

/* Row 3 */

.section__about--row3{
    padding: 0 70px;
}

@media (max-width: calc(940px + 20px)){

.section__about--row3{
        padding: 0
}
    }

.about__row{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 35px;
}

.about__row:last-child{
        margin-bottom: 0;
    }

.about__row__image{
    width: 145px;
}

@media (max-width: calc(480px + 20px)){

.about__row__image{
        display: block;
        margin: 0 auto 20px auto
}
    }

.about__row__content{
    width: calc(100% - 145px);
    padding-left: 35px;
}

@media (max-width: calc(480px + 20px)){

.about__row__content{
        width: 100%;
        padding-left: 0
}
    }

.about__row__content h3{
        text-align: center;
    }

.section__features{
    padding: 100px 0;
    /* background: #00a1d6;
	background: -moz-linear-gradient(left, #00a1d6 2%, #01deff 98%);
	background: -webkit-linear-gradient(left, #00a1d6 2%,#01deff 98%);
	background: linear-gradient(to right, #00a1d6 2%,#01deff 98%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a1d6', endColorstr='#01deff',GradientType=1 ); */
    background-position: center top;
    background-image: url('images/bg_features.jpg');
    background-size: cover;
}

@media (max-width: calc(1200px + 20px)){

.section__features{
        padding: 100px 40px
}
    }

@media (max-width: calc(940px + 20px)){

.section__features{
        padding: 80px 20px
}
    }

.features__left{
    padding: 0 70px;
}

@media (max-width: calc(1200px + 20px)){

.features__left{
        padding: 0 20px 0 0
}
    }

@media (max-width: calc(680px + 20px)){

.features__left{
        width: 100%;
        padding: 0
}
    }

/* @media (--max-mediaM){
        padding: 0 20px 0 40px;
    } */

.features__left > *{
        width: 100%;
    }

.features__left p{
        font-size: 20px;
        margin-bottom: 1.5em;
    }

.features__left p:last-of-type{
            margin-bottom: 70px;
        }

.featureslist{
    /* @media (--max-mediaM){
        padding: 0 40px 0 20px;
    } */
}

@media (max-width: calc(1200px + 20px)){

.featureslist{
        padding: 0 0 0 20px
}
    }

@media (max-width: calc(680px + 20px)){

.featureslist{
        width: 100%;
        padding: 0
}
    }

.features__left__buttons{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.features__left__buttons a{
        margin: 0 1em 0 0;
    }

@media (max-width: calc(680px + 20px)){

.features__left__buttons a{
            margin: 0
    }
        }

.features__left__buttons a:last-child{
            margin: 0;
        }

.features__left__buttons img{
        width: 147px;
    }

.featureslist__item{
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 60px;
}

.featureslist__item:last-child{
        margin-bottom: 0;
    }

.featureslist__item__image{
    width: 69px;
}

.featureslist__item__content{
    width: calc(100% - 69px);
    padding-left: 35px;
}

@media (max-width: calc(480px + 20px)){

.featureslist__item__content{
        padding-left: 20px
}
    }

.features__left__apples{
    margin: auto 0 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 500px;
}

@media (max-width: calc(1200px + 20px)){

.features__left__apples{
        margin: 40px 0 0 0
}
    }

@media (max-width: calc(1200px + 20px)){

.features__left__apples{
        margin: 40px 0
}
    }

.features__left__apples img{
        margin-top: auto;
        max-width: none;
        position: absolute;
        width: 861px;
        height: 500px;
        right: -15%;
        bottom: -200px;
    }

@media (max-width: calc(1200px + 20px)){

.features__left__apples img{
            bottom: 0
    }
        }

@media (max-width: calc(680px + 20px)){

.features__left__apples img{
            margin-top: 0;
            max-width: 100%;
            right: 0
    }
        }

.section__licences{
    padding: 200px 0 100px;
    text-align: center;
    background-color: #1e1a77;
}

@media (max-width: calc(1200px + 20px)){

.section__licences{
        padding: 100px 40px
}
    }

@media (max-width: calc(940px + 20px)){

.section__licences{
        padding: 80px 20px
}
    }

.section__licences .sectionTitle{
        width: 100%;
    }

.section__licences .sectionTitle:before{

            left: 50%;

            -webkit-transform: translate(-50%, 0%);

                    transform: translate(-50%, 0%);
        }

.pricing{
    margin: 0 auto;
    padding: 90px 0;
    background-image: url('images/orbit_circle.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: calc(480px + 20px)){

.pricing{
        padding: 60px 0
}
    }

.pricing__item{
    padding: 35px 25px;
    -webkit-box-shadow: 0 20px 25px 5px rgba(8, 8, 21, 0.36);
            box-shadow: 0 20px 25px 5px rgba(8, 8, 21, 0.36);

    -webkit-transition: all .2s ease-in-out;

    transition: all .2s ease-in-out;
}

@media (max-width: calc(680px + 20px)){

.pricing__item{
        width: 100%;
        margin-bottom: 40px
}
    }

.pricing__item:hover{
        -webkit-transform: scale(1.05) !important;
                transform: scale(1.05) !important;
        -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
        transition: -webkit-transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out !important;
        transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    }

.pricing__item[data-offertype='demo'],.pricing__item[data-offertype='full'],.pricing__item[data-offertype='special']{

    }

.pricing__item[data-offertype='demo'] .pricing__item__price,.pricing__item[data-offertype='special'] .pricing__item__price{
            border-top: 1px solid #2d2892;
            border-bottom: 1px solid #2d2892;
        }

@media (max-width: calc(680px + 20px)){

.pricing__item[data-offertype='full']{
            -webkit-box-ordinal-group: 2;
                -ms-flex-order: 1;
                    order: 1
    }
        }

.pricing__item[data-offertype='full'] .pricing__item__price{
            border-top: 1px solid #3b5ae2;
            border-bottom: 1px solid #3b5ae2;
        }

@media (max-width: calc(680px + 20px)){

.pricing__item[data-offertype='demo']{
            -webkit-box-ordinal-group: 4;
                -ms-flex-order: 3;
                    order: 3
    }
        }

@media (max-width: calc(680px + 20px)){

.pricing__item[data-offertype='special']{
            -webkit-box-ordinal-group: 3;
                -ms-flex-order: 2;
                    order: 2
    }
        }

.pricing__item__title {
    font-size: 15px;
}

.pricing__item__price {
    font-weight: 700;
    font-size: 3.4em;
    color: #00aeef;
    padding: .45em 0;
    margin-bottom: 35px;
}

.pricing__item__content {
    margin-bottom: 35px;
}

.pricing__item__button{
    margin: auto auto 0;
}

.section__reference{
    padding: 100px 0;
    text-align: center;
    background-color: #13105a;
    background-image: url('images/bg_references.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

@media (max-width: calc(1200px + 20px)){

.section__reference{
        padding: 100px 40px
}
    }

@media (max-width: calc(940px + 20px)){

.section__reference{
        padding: 80px 20px
}
    }

.section__reference .sectionTitle{
        width: 100%;
        margin-bottom: 70px;
    }

.section__reference .sectionTitle:before{

            left: 50%;

            -webkit-transform: translate(-50%, 0%);

                    transform: translate(-50%, 0%);
        }

.reference__item{
    margin-bottom: 100px;
}

@media (max-width: calc(680px + 20px)){

.reference__item{

        width: calc(50% - 10px)
}
    }

@media (max-width: calc(480px + 20px)){

.reference__item{
        width: 100%
}
    }

.reference__item .imgWrap{
        margin: 0 auto;
        width: 200px;
        height: 100px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

.section__contact{
    padding: 100px 0;
    text-align: center;
    background-color: #07062d;
}

@media (max-width: calc(1200px + 20px)){

.section__contact{
        padding: 100px 40px
}
    }

@media (max-width: calc(940px + 20px)){

.section__contact{
        padding: 80px 20px
}
    }

.section__contact .sectionTitle{
        width: 100%;
    }

.section__contact .sectionTitle:before{

            left: 50%;

            -webkit-transform: translate(-50%, 0%);

                    transform: translate(-50%, 0%);
        }

@media (max-width: calc(680px + 20px)){

.contact__item{
        width: 100%;
        margin-bottom: 40px
}
    }
#togglepassword{
	 margin-left: 170px;
	 margin-top: -40px;
	 margin-bottom: 30px;
    cursor: pointer; 
    width: 30px;
}
#password {
	padding-right: 30px;
	padding-left: 30px;
	
}
#toggleforgotpassword{
	 margin-left: -36px;
	 margin-right: 30px;
    cursor: pointer; 
    width: 30px;
}
#forgotpassword,#forgotpassword2{
	padding-right: 40px;
	padding-left: 40px;
}

