@import url('https://fonts.googleapis.com/css?family=Poppins: 400,500,600,700,800|Roboto: 400,500,700');

* {
    padding: 0;
    margin: 0;
    border: 0;
	font-size: 100%;
	font: inherit;
    vertical-align: baseline;
    -webkit-overflow-scrolling: touch;
}

html {
    width: 100%;
    height: 100%;
}

body {
    --main-blue: #0072CE;
    --main-blue-dark: #005AB2;
    --main-gray: #939598;
    --main-gray-2: #797B7E;
    --main-dark-gray: #59595C;
    --main-light-gray: #E6E7E8;
    --main-light-gray-2: #CACBCC;
    --main-lightest-gray: #F1F2F2;
    --main-lightest-gray-2: #D5D6D6;
    --main-font: 'Poppins', sans-serif;
    --main-text: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    font-family: var(--main-font);
    box-sizing: border-box;
    background-repeat: no-repeat;
    color: var(--main-gray);
    display: block;
    line-height: 1;
    background: var(--main-lightest-gray);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: #FFF;
	background-image: linear-gradient(to bottom, var(--main-blue), var(--main-blue-dark));
}

/* Feedback Button */

.feedback-button {
    height: 35px;
    border: solid 2px #CCCCCC;
    border-radius: 0;
    background: linear-gradient(to bottom, var(--main-blue), var(--main-blue-dark));
    width: 100px;
    line-height: 24px;
    -webkit-transform: rotate(-90deg);
    font-weight: 600;
    color: white;
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    text-align: center;
    font-size: 14px;
    position: fixed;
    right: -40px;
    top: 45%;
    font-family: "Roboto", helvetica, arial, sans-serif;
    z-index: 999;
}

.feedback-button:hover {
    background: #fff;
}

#feedback-main {
    display: none;
    float: left;
    padding-top: 0px;
  }
  
  #feedback-div {
    background-color: rgba(72, 72, 72, 0.4);
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 35px;
    padding-bottom: 50px;
    width: 450px;
    float: left;
    left: 50%;
    position: fixed;
    margin-top: 5vh;
    margin-left: -260px;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    z-index: 9999;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 8px 0 rgba(0, 0, 0, 0.19);
  }

  .feedbackTitle {
      color: var(--main-blue);
      font-weight: 600;
      margin-bottom: 7px;
      font-size: 18px;
  }

  .feedbackText {
      margin-bottom: 18px;
  }
  
  .feedback-form {
      background: #fff;
      opacity: 1;
      padding: 3vw 4vw;
      border-radius: 7px;
      
  }

  .feedback-cancel {
      margin: 25px 0 0 10px;
      font-size: 14px;
  }

  /* Hubspot Styling */

.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"] {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: '5px 0 5px 0';
    font-weight: 400;
    font-size: 14px;
    font-family: var(--main-text);
    letter-spacing: 2;
    line-height: 1.5;
    margin: 5px 0 10px 0;
    color: var(--main-blue);
    padding-bottom: 5px;
    border-bottom: solid whitesmoke 1.5px;
}

.hs-form input[type="checkbox"] {
    margin: 10px 10px 10px 0;
}

.hs-form input[type="text"]:focus {
    outline: 0;
}

.hs-form input[type="email"]:focus {
    outline: 0;
}

.hs-form input[type="tel"]:focus {
    outline: 0;
}

.hs-form label {
    color: var(--main-gray);
    font-family: var(--main-text);
    margin: 10px 0;
}
.hs-form .hs-form-field > label {
    color: var(--main-gray);
    font-family: var(--main-text);
    margin: 10px 0;
}

.hs-form .hs-field-desc {
    color: var(--main-gray);
    font-family: var(--main-text);
    margin: 5px 0;
}

.hs-form select {
    background: whitesmoke;
    margin: 15px 0 25px 0;
    color: var(--main-gray);
    border-radius: 3px;
    font-family: var(--main-text);
}

.hs-form select:focus {
    outline: none;
    border: none;
}

.hs-form select:active {
    outline: none;
    border: none;
}



.hs-form .hs-richtext {
    color: var(--main-gray);
    font-family: var(--main-text);
    margin: 5px 0 20px 0;
    font-size: 14px;
}

.hs-form textarea {
    margin: 10px 0;
    color: var(--main-blue);
    border: 1.5px solid whitesmoke;
}

.hs-form textarea:focus {
    outline: none;
}

body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
    background-image: linear-gradient(to right bottom, var(--main-blue), var(--main-blue-dark));
    color: #ffffff;
    border-radius: 50px;
    padding: 1em;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 8px;
    margin: 0 5px;
    font-family: var(--main-text);
    border: 1px solid var(--main-blue);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 30px 0 0 10px;
}

body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {
    cursor: pointer;
    background: transparent;
    color: var(--main-blue);
}

body input[type="file"] {
    margin: 25px 0 25px 0;
    font-family: var(--main-text);
}

.hs-form .hs-error-msgs label {
    color: #d8000c;
    font-size: 13px;
    padding-bottom: 5px;
}
  
  /* Icons ---------------------------------- */
  
  #feedback-name {
    background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
  }
  
  #feedback-name:focus {
    background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
    background-size: 30px 30px;
    background-position: 8px 5px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
  }
  
  #feedback-email {
    background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
  }
  
  #feedback-email:focus {
    background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
  }
  
  #feedback-comment {
    background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
  }
  
  #feedback-comment {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize: vertical;
  }
  
  input:hover,
  #feedback-comment:hover,
  input:focus,
  #feedback-comment:focus {
    background-color: white;
  }
  
  #feedback-button-blue {
    font-family: "Roboto", helvetica, arial, sans-serif;
    float: left;
    width: 100%;
    border: #fbfbfb solid 4px;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    font-size: 24px;
    padding-top: 22px;
    padding-bottom: 22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: -4px;
    font-weight: 700;
  }
  
  #feedback-button-blue:hover {
    background-color: rgba(0, 0, 0, 0);
    color: #0493bd;
  }
  
  .feedback-button-blue:hover {
    color: #3498db;
  }
  
  .feedback-ease {
    width: 0px;
    height: 74px;
    background-color: #fbfbfb;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
  }
  
  .feedback-submit:hover .feedback-ease {
    width: 100%;
    background-color: white;
  }
  
  @media only screen and (max-width: 580px) {
    #feedback-div {
      left: 3%;
      margin-right: 3%;
      width: 88%;
      margin-left: 0;
      padding-left: 3%;
      padding-right: 3%;
    }
  }

.inner-site {
    display: block;
    max-width: 1280px;
    background: white;
    border-right: 6px solid white;
    border-left: 6px solid white;
    margin-left: auto;
    margin-right: auto;
}

.menuToggle {
    display: none;
}

h2 {
    font-size: 30px;
}

h2>span {
    font-weight: 800;
}

h4 {
    font-size: 18px;
    font-family: var(--main-text);
}

h6 {
    font-weight: 400;
    font-size: 21px;
    color: var(--main-blue);
}

h6>span {
    font-weight: 600;
}

a {
    text-decoration: none;
    outline: none;
    display: block;
    text-underline-position: under;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

button {
    /* background: var(--main-blue); */
    background-image: linear-gradient(to right bottom, var(--main-blue), var(--main-blue-dark));
    color: #ffffff;
    border-radius: 50px;
    padding: 1em;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 8px;
    margin: 0 5px;
    font-family: var(--main-text);
    border: 1px solid var(--main-blue);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button:hover {
    cursor: pointer;
    background: transparent;
    color: var(--main-blue);
}

sup {
    vertical-align: super;
    font-size: 90%;
}

.sup {
    vertical-align: super;
    font-size: 65%;
}

/* .buttonBlue {
    background: white;
    background-image: -webkit-linear-gradient(30deg, var(--main-blue) 50%, transparent 50%);
    background-image: linear-gradient(30deg, var(--main-blue) 50%, transparent 50%);
    background-size: 1000px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    border-radius: 50px;
    padding: 1em;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 8px;
    margin: 0 5px;
    font-family: var(--main-text);
    border: 1px solid var(--main-blue);
    color: white;
  }

.buttonBlue:hover {
    background-position: 100%;
    color: var(--main-blue);
} */

.buttonGray {
    background: white;
    background-image: -webkit-linear-gradient(30deg, var(--main-blue) 50%, transparent 50%);
    background-image: linear-gradient(30deg, var(--main-blue) 50%, transparent 50%);
    background-size: 1000px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    border-radius: 50px;
    padding: 1em;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 8px;
    margin: 0 5px;
    font-family: var(--main-text);
    border: 1px solid var(--main-blue);
    color: white;
  }

.buttonGray:hover {
    background-position: 100%;
    color: white;
}


footer {
    height: auto;
    width: 100%;
    /* background: var(--main-blue); */
    background-image: linear-gradient(to right bottom, var(--main-blue), var(--main-blue-dark));
    color: white;
    overflow: hidden;
}

ul li a {
    width:inherit;
    height:inherit;
    display: block;
}

p {
    line-height: 1.2;
    font-family: var(--main-text);
}

.menu-toggle {
    display: none;
}

.navbar {
    height: 13vh;
    width: 100%;
    max-width: 1280px;
    background: white;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 5;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
}

.navbarScroll {
    height: 6.5vh;
    width: 100%;
    max-width: 1280px;
    background: white;
    display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 5;
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
}

#navbar {
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
}

#logo {
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
}

#menu-links {
    transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
}

.nav-top {
    height: 30%;
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
    margin: 5.5px 10px 0 0;
}

.nav-top>a {
    color: var(--main-gray);
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 5px 10px;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    font-family: var(--main-text);
    border-bottom: solid 2px transparent;
    position: relative;
}

.nav-top>a:after {
    display: block;
    content: '';
    border-bottom: solid 2px var(--main-blue);
    transform: scaleX(0);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.nav-top>a:hover {
    color: var(--main-blue);
}

.nav-top>a:hover:after {
    transform: scaleX(1);
}

.nav-top>button {
    margin-top: 3.25px;
    font-size: 13px;
}

.nav-left {
    height: 50%;
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
    align-items: flex-end;
}

.noke-logo {
    margin: 0 1.5%;
    padding: 0 0 2.75vh 1vw;
    position: absolute;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.noke-logo>img {
    max-width: 6.5vw;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.noke-logoScroll {
    margin: 0 1.5%;
    padding: 0 0 .75vh 1vw;
    position: absolute;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.noke-logoScroll>img {
    max-width: 4.5vw;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.nav-links {
    height: 100%;
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
    align-items: flex-end;
    font-size: 18px;
}

.nav-linksScroll {
    height: 50%;
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
    align-items: flex-end;
    font-size: 18px;
}

.loginLink {
    display: block;
    position: relative;
    font-size: 17px;
    font-weight: 400;
    padding: 5px 10px;
    font-family: var(--main-text);
    border-bottom: solid 2px transparent;
    position: relative;
}

.loginLink>a {
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    font-family: var(--main-text);
    color: var(--main-gray);
    text-decoration: none;
    padding-bottom: 1vh;
}

.loginLink>a:after {
    display: block;
    content: '';
    border-bottom: solid 2px var(--main-blue);
    transform: scaleX(0);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.loginLink>a:hover {
    color: var(--main-blue);
}

.loginLink>a:hover:after {
    transform: scaleX(1);
}

.loginLink:hover .submenuLogin {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.submenuLogin {
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -moz-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -ms-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    display: flex;
    flex-direction: column;
	flex-wrap: nowrap;
    min-width: 8vw;
    background-color: whitesmoke;
    position: fixed;
    padding: 1vw;
    cursor: pointer;
    font-family: var(--main-text);
}

.nav-submenuItemLogin {
    text-decoration: none;
    font-family: var(--main-text);
    font-size: 15px;
    padding: 5px 0 5px 10px;
    font-weight: 400;
}

.nav-submenuItemLogin>a {
    font-family: var(--main-text);
    color: var(--main-gray);
}


.nav-submenuItemLogin>ul {
    margin-left: 10px;
}

.nav-submenuItemLogin:hover {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}



.menu-item {
    height: 48px;
    display: block;
    width: auto;
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5%;
    outline: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding-top: 3px;
    position: relative;
}

.menu-itemScroll {
    height: 40px;
    display: block;
    width: auto;
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5%;
    outline: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding-top: 3px;
    position: relative;
}

.menu-item>a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.menu-itemScroll>a {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.menu-item a {
    color: var(--main-gray); 
}

.menu-itemScroll a {
    color: var(--main-gray); 
}

.menu-item>a:after {
    display: block;
    content: '';
    border-bottom: solid 2px var(--main-blue);
    transform: scaleX(0);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.menu-itemScroll>a:after {
    display: block;
    content: '';
    border-bottom: solid 2px var(--main-blue);
    transform: scaleX(0);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.menu-item:hover>a {
    color: var(--main-blue);
}

.menu-itemScroll:hover>a {
    color: var(--main-blue);
}

.menu-item:hover>a:after {
    transform: scaleX(1);
}

.menu-itemScroll:hover>a:after {
    transform: scaleX(1);
}

.menu-item:hover .submenu{
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.menu-itemScroll:hover .submenu{
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.submenu {
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -moz-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -ms-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear;
    display: flex;
    flex-direction: column;
	flex-wrap: nowrap;
    min-width: 18vw;
    background-color: whitesmoke;
    position: fixed;
    padding: 1vw;
    cursor: pointer;
    font-family: var(--main-text);
}

.nav-submenuItem {
    text-decoration: none;
    font-family: var(--main-text);
    font-size: 15px;
    padding: 5px 0 5px 10px;
    font-weight: 400;
    color: var(--main-gray);
}

.nav-submenuItem>a {
    font-family: var(--main-text);
}

.nav-submenuPoint>a {
    font-family: var(--main-text);
}

.nav-submenuItem>ul {
    margin-left: 10px;
}

.nav-submenuItem:hover {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.nav-submenuPoint {
    font-weight: 400;
    font-size: 13.5px;
    color: var(--main-gray);
    padding: 5px 0 5px 10px;
}

.nav-submenuPoint:hover {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.nav-menuArrow {
    height: 8px;
    padding: 0 5px 2px 25px;
}

.nav-spacer {
    height: 13vh;
}

footer a {
    color: white;
}

.footer-wrapper {
    visibility: hidden;
    height: 0;
    width: 0;
}

.footer-top {
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
    align-items: flex-start;
}

.footer-column {
    margin: 5vh 0;
    width: 18%;    
}

.footer-column>a {
    font-size: 19px;
    padding-bottom: 3vh;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-column>a:after {
    display: block;
    content: '';
    border-bottom: solid 2px white;
    transform: scaleX(0);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.footer-column>a:hover:after {
    transform: scaleX(1);
}

#logo-footer:hover:after {
    transform: scaleX(0)
}

.footer-column img {
    width: 7.5vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 0 45px;
}

.footer-list {
    text-align: left;
    cursor: pointer;
}

.footer-list>li {
    font-size: 14px;
    text-decoration: none;
    padding: 3.5px 0;
    font-family: var(--main-text);
}

.footer-list span {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    border-bottom: 2px solid transparent;
    position: relative;
    display: inline-block;
}

.footer-list span:after {
    display: block;
    content: '';
    border-bottom: solid 2px white;
    transform: scaleX(0);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.footer-list span:hover:after {
    transform: scaleX(1);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 20px 20%;
}

.footer-bottom a {
    display: inline;
}

.footer-bottom p {
    margin-left: 2.5%;
    font-size: 10px;
}

.footer-bottom img {
    height: 30px;
    padding: 8px;
    transition: all 0.28s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-bottom img:hover {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

#footer-TC {
    border: none;
}

/* Mac Laptops */

@media screen and (min-width: 1025px) and (max-width: 1280px) {

    .nav-top {
        margin: 4px 10px 0 0;
    }

    .menu-itemScroll {
        height: 33px;
    }
}

@media screen and (min-width: 1285px) and (max-width: 1440px) {

    .menu-itemScroll {
        height: 37px;
    }
}

/* Windows laptops */

@media screen and (min-width: 1440px) and (max-width: 2000px) and (max-height: 800px) {

    .menu-itemScroll {
        height: 29px;
    }

    .noke-logoScroll {
        padding: 0 0 .65vh 1vw;
    }

    .nav-top {
        margin: 1px 10px 0 0;
    }
}

@media (max-width: 1225px) {
    .nav-top>a {
        font-size: 15px;
    }

    .loginLink {
        font-size: 15px;
    }

    .nav-top>button {
        font-size: 14px;
        margin-top: 1.8px;
    }

    .menu-item {
        height: 4.5vh;
        font-size: 17px;
    }

    .noke-logo {
        padding: 0 0 2vh 1vw;
    }
}

@media (max-width: 1200px) {

    .nav-top {
        margin: 7.5px 10px 0 0;
    }

    .noke-logo>img {
        max-width: 10vw;
    }

    .noke-logoScroll>img {
        max-width: 7.25vw;
    }

    .nav-links {
        font-size: 16px;
    }

    .menu-item {
        margin: 0 1%;
        height: 58px;
    }

    .menu-itemScroll {
        margin: 0 1%;
        height: 37.5px;
    }
}

@media (max-width: 1060px) {
    .nav-links {
        justify-content: flex-start;
        padding-left: 90px;
    }
}

@media (max-width: 1060px) {
    .nav-links {
        font-size: 14px;
    }
}

@media (max-width: 1025px) {
    .noke-logo>img {
        width: 120px;
        margin-bottom: 16px;
    }

    .nav-links {
        padding-left: 150px;
    }

}

/* Tablet View */

@media (max-width: 768px) { 

    nav {
        width: 100%;
        height: 8vh;
    }

    .navbar {
        height: 8vh;
        position: fixed;
    }

    .nav-spacer { 
        height: 8vh;
    }

    nav>img {
        display: flex;
        align-items: center;
        left: 28%;
    }

    .nav-top {
        width: 95%;
        align-items: center;
    }
    .nav-top>a {
        display: none;
        margin: 0px;
    }

    .loginLink {
        display: none;
    }

    .nav-top>button {
        padding: 5px 9px;
    }

    .nav-links {
        display: none;
    }

    #nav-button {
        display: none;
    }

    .noke-logo {
        position: static;
        margin: 0;
        margin-right: auto;
        padding: 0 0 0 25px;
    }

    .noke-logo>img {
        max-width: 16vw;
        margin: 0;
        padding: 0;
        padding-bottom: 5px;
    }

    .inner-site {
        border: none;
    }

    /* Mobile View */

    @media (max-width: 479px) { 

        html, body {
            width: 100%;
            height: 100%;
            margin: 0px;
            padding: 0px;
            overflow-x: hidden; 
            text-align: fill;
        }
    
        button {
            font-size: 11.5px;
            padding: 5px 9px;
        }
    
        h2 {
            font-size: 30px;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        .noke-logo {
            margin: 0;
            margin-right: auto;
            padding: 0 2px 0 6vw;
        }
    
        .noke-logo>img {
            max-width: 21vw;
            margin: 0;
            padding: 0;
        }

        #logo {
            padding-bottom: 3px;
        }

    }

   /* Toggle menu on mobile & tablet */

    .menuToggle {
        display: block;
        position: absolute;
        top: 32%;
        right: 6vw;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
    }

    .menuToggle>input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
    }

    .menuToggle>span {
        display: block;
        width: 30px;
        height: 2px;
        margin-bottom: 6px;
        position: relative;
        background: var(--main-gray);
        border-radius: 1px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
    }

    .menuToggle>span:first-child {
        transform-origin: 0% 0%;
        margin-bottom: 5px;
    }

    .menuToggle>span:nth-last-child(2) {
        transform-origin: 0% 100%;
        margin-bottom: 5px;
    }

    .menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #ffffff;
    }

    .menuToggle input:checked ~ span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    .menuToggle input:checked ~ span:nth-last-child(2) {
        transform: rotate(-45deg) translate(0, -1px);
    }

    .menu {
        position: absolute;
        width: 250px;
        height: 100vh;
        margin: -100px 0 0 -220px;
        padding: 40px;
        padding-top: 115px;
        /* background: var(--main-blue); */
        background-image: linear-gradient(to right bottom, var(--main-blue), var(--main-blue-dark));
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        -webkit-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        -moz-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        -ms-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        -o-transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }

    .menu>a {
        text-decoration: none;
        color: #ffffff;
        margin: 5% 0;
        font-size: 18px;
        transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
        -moz-transition: color 0.3s ease;
        -ms-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        text-align: left;
    }

    .menu>a>img {
        margin-left: 2px;
    }

    #side-last {
        border: none;
    }

    .menu>a:hover {
        color: var(--main-dark-gray);
    }

    .menu img {
        height: 8.5vh;
        margin: 0 0 5% 0;
    }

    .menuToggle input:checked ~ ul {
        transform: none;
    }

    @media (max-width: 768px) {
        .menuToggle {
            top: 35%;
        }

        .menuToggle>span {
            width: 33px;
            height: 3px;
            margin-bottom: 6px;
        }
    }

    @media (max-width: 479px) {
        .menuToggle {
            top: 32%;
        }

        .menuToggle>span {
            width: 30px;
            height: 2px;
            margin-bottom: 6px;
        }
    }

    footer {
        height: auto;
        overflow: hidden;
    }

    .footer-top {
        height: 0;
        width: 0;
    }

    .footer-wrapper {
        visibility: visible;
        width: 70%;
        height: auto;
        padding: 5vh 0 2.5vh 0;
        margin-right: auto;
        margin-left: auto;
        overflow: hidden;
    }

    body .footer-wrapper p {
        font-size: 16px;
    }

    body .footer-wrapper label {
        display: block;
        position: relative;
        color: white;
        overflow: hidden;
        cursor: pointer;
        height: 60px;
    }

    body .footer-wrapper ul {
        margin: 0;
        padding: 0;
    }

    body .footer-wrapper li {
        color: white;
        list-style-type: none;
        text-indent: 15px;
    }

    body .footer-wrapper li a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 15px 0px;
        text-decoration: none;
        font-family: var(--main-text);
        font-size: 14px;
        color: white;
    }

    body .footer-wrapper input[type="checkbox"] {
        display: none;
    }

    body .footer-wrapper .content {
        height: 350px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    body .footer-wrapper .lil_arrow {
        color: white;
        width: 6px;
        height: 6px;
        transition: -webkit-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s;
        transition-timing-function: ease-in-out;
        border-top: 2px solid white;
        border-right: 2px solid white;
        position: relative;
        top: -14px;
        left: 88px;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    body .footer-wrapper input[type="checkbox"]:checked + label > .content {
        display: block;
    }

    body .footer-wrapper input[type="checkbox"]:checked + label > .lil_arrow {
        transition: -webkit-transform 0.8s;
        transition: transform 0.8s;
        -webkit-transition: transform 0.8s;
        -moz-transition: transform 0.8s;
        -ms-transition: transform 0.8s;
        -o-transition:  transform 0.8s;
        transition: transform 0.8s, -webkit-transform 0.8s;
        transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg);
    }

    body .footer-wrapper input[type="checkbox"]:checked + label {
        display: block;
        color: white;
        height: 300px;
        transition: height 0.8s;
        -webkit-transition: height 0.8s;
        -moz-transition: height 0.8s;
        -ms-transition: height 0.8s;
        -o-transition: height 0.8s;
        transition-timing-function: ease-in-out;
    }

    body .footer-wrapper input[type="checkbox"]:not(:checked) + label {
        display: block;
        transition: height 0.8s;
        -webkit-transition: height 0.8s;
        -moz-transition: height 0.8s;
        -ms-transition: height 0.8s;
        -o-transition: height 0.8s;
        height: 30px;
        transition-timing-function: ease-in-out;
    }

    /* Sliding Nav */

    /* .menu li {
        text-align: left;
        padding-bottom: 12px;
        border-bottom: .05px solid whitesmoke;
        width: 75%;
    } */

    body .menu p {
        font-size: 21px;
        width: 75%;
        padding-bottom: 8px;
        padding-top: 8px;
        margin-left: 17px;
    }

    body .menu label {
        display: block;
        position: relative;
        color: white;
        overflow: hidden;
        cursor: pointer;
        height: 60px;
        width: 75%;
    }

    body .menu ul {
        margin: 0;
        padding: 0;
    }

    body .menu li {
        color: white;
        list-style-type: none;
        text-indent: 15px;
    }

    body .menu li a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 12px 0px;
        text-decoration: none;
        font-family: var(--main-text);
        font-size: 16px;
        color: white;
    }

    body .menu input[type="checkbox"] {
        display: none;
    }

    body .menu .content {
        height: 350px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    body .menu .lil_arrow {
        color: white;
        width: 6px;
        height: 6px;
        transition: -webkit-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s;
        transition-timing-function: ease-in-out;
        border-top: 2px solid white;
        border-right: 2px solid white;
        position: relative;
        top: -24.5px;
        left: 2px;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    body .menu input[type="checkbox"]:checked + label > .content {
        display: block;
    }

    body .menu input[type="checkbox"]:checked + label > .lil_arrow {
        transition: -webkit-transform 0.8s;
        transition: transform 0.8s;
        -webkit-transition: transform 0.8s;
        -moz-transition: transform 0.8s;
        -ms-transition: transform 0.8s;
        -o-transition:  transform 0.8s;
        transition: transform 0.8s, -webkit-transform 0.8s;
        transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg);
    }

    body .menu input[type="checkbox"]:checked + label {
        display: block;
        color: white;
        height: 300px;
        transition: height 0.8s;
        -webkit-transition: height 0.8s;
        -moz-transition: height 0.8s;
        -ms-transition: height 0.8s;
        -o-transition: height 0.8s;
        transition-timing-function: ease-in-out;
    }

    body .menu input[type="checkbox"]:not(:checked) + label {
        display: block;
        transition: height 0.8s;
        -webkit-transition: height 0.8s;
        -moz-transition: height 0.8s;
        -ms-transition: height 0.8s;
        -o-transition: height 0.8s;
        height: 30px;
        transition-timing-function: ease-in-out;
    }



    .footer-top {
        visibility: hidden;
    }

    .footer-bottom {
        padding: 0;
        margin: 0;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-left: 11%;
    }

    .footer-bottom img {
        height: 3.5vh;
        padding: 10px;
    }

    .footer-bottom p {
        margin: 0;
        padding: 15px;
        font-size: 10px;
    }

    .popup {
        display: none;
        width: 0;
        height: 0;
    }
}

@media (max-width: 479px) {
    /* .menu>a {
        margin-left: 22px;
    } */

    .menu li {
        font-weight: 400;
    }

    .menu img {
        height: 11.5vh;
    }

    .footer-bottom img {
        height: 35px;
    }

    #feedback-div {
        margin-top: 3vh;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 22px;
        position: absolute;
        left: 2%;
        overflow: scroll;
    }

    .feedbackTitle {
        font-size: 16px;
    }

    .feedbackText {
        font-size: 14px;
        margin-bottom: 5px;
        display: none;
    }

    .hs-form label {
        font-size: 14px;
    }
    .hs-form .hs-form-field > label {
        font-size: 14px;
    }
    
    .hs-form .hs-field-desc {
        font-size: 14px;
    }

    .feedback-cancel {
        padding: 3px 8px;
        margin-top: 8px;
    }

}

/* Animations */

/* HVR BOB UP */

@-webkit-keyframes hvr-bob {
    0% {
      -webkit-transform: translateY(-8px);
      transform: translateY(-8px);
    }
  
    50% {
      -webkit-transform: translateY(-4px);
      transform: translateY(-4px);
    }
  
    100% {
      -webkit-transform: translateY(-8px);
      transform: translateY(-8px);
    }
  }
  
  @keyframes hvr-bob {
    0% {
      -webkit-transform: translateY(-8px);
      transform: translateY(-8px);
    }
  
    50% {
      -webkit-transform: translateY(-4px);
      transform: translateY(-4px);
    }
  
    100% {
      -webkit-transform: translateY(-8px);
      transform: translateY(-8px);
    }
  }
  
  @-webkit-keyframes hvr-bob-float {
    100% {
      -webkit-transform: translateY(-8px);
      transform: translateY(-8px);
    }
  }
  
  @keyframes hvr-bob-float {
    100% {
      -webkit-transform: translateY(-8px);
      transform: translateY(-8px);
    }
  }
  
  .hvr-bob {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
  }
  .hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
  }

  /* HVR BOB UP IMG */

  .hvr-bobImg {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
  }
  .hvr-bobImg:hover img, .hvr-bobImg:focus img, .hvr-bobImg:active img {
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-duration: .3s, 1.5s;
    animation-duration: .3s, 1.5s;
    -webkit-animation-delay: 0s, .3s;
    animation-delay: 0s, .3s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
  }

  /* HVR BOB RIGHT */

  @-webkit-keyframes hvr-bobr {
    0% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  
    50% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px);
    }
  
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  }
  
  @keyframes hvr-bobr {
    0% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  
    50% {
      -webkit-transform: translateX(4px);
      transform: translateX(4px);
    }
  
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  }
  
  @-webkit-keyframes hvr-bob-floatr {
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  }
  
  @keyframes hvr-bob-floatr {
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  }
  
  .hvr-bobr img {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .hvr-bobr:hover img, .hvr-bobr:focus img, .hvr-bobr:active img {
    -webkit-animation-name: hvr-bob-floatr, hvr-bobr;
    animation-name: hvr-bob-floatr, hvr-bobr;
    -webkit-animation-duration: .075s, 1.15s;
    animation-duration: .075s, 1.15s;
    -webkit-animation-delay: 0s, .1s;
    animation-delay: 0s, .1s;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
  }

  /* FADE IN TEXT */

  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}



::selection {
    background-color: var(--main-blue);
    color: #fff;
}