html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
}

a.button {
  padding: 0.5rem 1rem;
  background: #121212;
  color: #FAFAFA;
  text-align: center;
}

a.button.primary {
  background: #36bae6;
  color: #e0e5eb;
}

/* Header */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 3.5rem;
  width: 100%;
  background: #FAFAFA;
}

header .container {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
  border-bottom: 1px solid #e0e5eb;
  background: #FAFAFA;
}

header .container > .logo {
  height: 1rem;
  padding: 1.25rem 0;
}

input.hamburger-button {
  display: none;
}

input.hamburger-button ~ label {
  position: relative;
  padding: 0.25rem;
  width: 1.5rem;
  height: 1.25rem;
}

input.hamburger-button ~ label > div,
input.hamburger-button ~ label > div::before,
input.hamburger-button ~ label > div::after {
  content: "";
  position: absolute;
  top: 0.825rem;
  height: 0.125rem;
  width: 1.5rem;
  opacity: 1;
  background: #121212;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

input.hamburger-button ~ label > div::before {
  top: -0.5rem;
}

input.hamburger-button ~ label > div::after {
  top: 0.5rem;
}

header .container .hamburger-button:checked ~ label > div {
  width: 0;
  background: rgba(18, 18, 18, 0);
}

header .container .hamburger-button:checked ~ label > div::before {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  top: -0rem;
}

header .container .hamburger-button:checked ~ label > div::after {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  top: -0rem;
}

header .container .hamburger-button:checked ~ .menu {
  left: 0;
}

header .container .menu {
  position: absolute;
  z-index: -1;
  top: 3.5rem;
  left: calc(-100vw - 3rem);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (max-content)[2];
      grid-template-rows: repeat(2, -webkit-max-content);
      grid-template-rows: repeat(2, max-content);
  width: 100%;
  background: #FAFAFA;
  -webkit-transition: 0.22s ease-in-out;
  transition: 0.22s ease-in-out;
}

header .container .menu::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  background: #FAFAFA;
}

header .container .menu nav {
  grid-area: auto;
}

header .container .menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .container .menu nav ul > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  color: #121212;
  -webkit-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
}

header .container .menu nav ul > li > a:hover {
  color: #36bae6;
  background: #e0e5eb;
}

header .container .menu div.buttons {
  grid-area: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.5rem 1rem;
  border-top: 1px solid #e0e5eb;
  background: #FAFAFA;
}

header .container .menu div.buttons > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  margin: 0.5rem;
}

/* Media queries */
@media only screen and (min-width: 680px) {
  header {
    height: 6.5rem;
    border-bottom: 1px solid #e0e5eb;
  }
  header .container {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border: none;
  }
  input.hamburger-button ~ label {
    display: none;
  }
  header .container .menu {
    z-index: unset;
    top: 0;
    left: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto max-content;
        grid-template-columns: auto -webkit-max-content;
        grid-template-columns: auto max-content;
    -ms-grid-rows: 3.5rem 3rem;
        grid-template-rows: 3.5rem 3rem;
    background: none;
    -webkit-transition: none;
    transition: none;
  }
  header .container .menu::after {
    display: none;
  }
  header .container .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
  }
  header .container .menu nav {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2/1/3/3;
  }
  header .container .menu nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .container .menu nav ul > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header .container .menu nav ul > li > a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (min-width: 1040px) {
  header {
    height: 3.5rem;
  }
  header .container .menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-grid-columns: 4rem auto max-content;
        grid-template-columns: 4rem auto -webkit-max-content;
        grid-template-columns: 4rem auto max-content;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    height: 3.5rem;
    padding: 0 1.5rem;
    -webkit-transition: none;
    transition: none;
  }
  header .container .menu nav {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  header .container .menu div.buttons {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
  header .container .menu div.buttons > * {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  header .container .menu nav ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
    width: 100%;
  }
  header .container .menu nav ul > li {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  header .container .menu nav ul > li > a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 1.25rem 1.5rem;
  }
}

/* Other bits */
#page-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}

#page-content h1 {
	/*box-shadow: 0px 1px 0px 0px #f0f7fa;*/
	/*background:linear-gradient(to bottom, #33bdef 5%, #019ad2 100%);*/
	background-color:#084298;
	border-radius:6px;
	border:1px solid #057fd0;
	color:#ffffff;
	font-family:Arial;
	padding:6px 24px;
	text-decoration:none;
	/*text-shadow:0px -1px 0px #5b6178;*/
  font-size: 25px;
  font-weight: 300;
}

#page-content h2 {

	background-color:#084298;
	border-radius:6px;
	border:1px solid #057fd0;
	display:inline-block;
	color:#ffffff;
	font-family:Arial;
	padding:6px 24px;
	text-decoration:none;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

#page-content p {
  margin-top: 0.75rem;
  line-height: 25px;
}




.mobile {
  z-index: -1;
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
}
.phone {
  z-index: -1;
     display: flex;
     justify-content: center;
     align-items: center;
     width: 319px;
     height: 596px;
     background: #1a1a58;
     border-radius: 30px;
     padding: 10px;
}
.phone-mirror {
  z-index: -1;
     position: relative;
     width: 316px;
     height: 580px;
     background-color: rgb(26, 25, 25);
     border-radius: 30px;
}
.topWrapper {
  z-index: -1;
     position: relative;
     width: 130px;
     height: 20px;
     margin: 0px auto 0 auto;
     float: left;
     left: 30%;
     background-color: #232526;
     border-radius: 0 0 45px 45px;
}
.line-rec {
  z-index: -1;
     position: relative;
     width: 60px;
     height: 6px;
     margin: 0px auto 0 auto;
     float: left;
     left: 20%;
     top: 4px;
     background-color: rgb(83, 83, 82);
     border-radius: 5px;
     border: 1px solid rgb(214, 214, 214);
}
.camera {
  z-index: -1;
     position: relative;
     float: left;
     margin-right: 8px;
     left: 18%;
     width: 11px;
     height: 11px;
     top: 1px;
     background-color: rgb(83, 83, 82);
     border-radius: 30px;
     border: 1px solid rgb(214, 214, 214);
}
.buttons {
  z-index: -1;
     background-color: black;
     width: 100%;
     height: 30px;
     border-radius: 0 0 45px 45px;
}



h3{
 font-weight: bold;   
} 

.tt1{
 font-weight: bold;   
} 

.div_h1 {
	height:58px;
}
.img_menu{
  height:70px;
}
.table_menu td{
  padding:5px;
  text-align: center;
  vertical-align: top;
}
    
.imgphone img{
  width: 296px;
  margin-top:42px;
}
.imgphone {
  display:inline-block;
  background-image: url(img/phone.png);
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  vertical-align: middle;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 750px;
  border-radius: 45px;
}



.submit_red {
    box-shadow: 0px 4px 0px 0px #8a2a21;
    background: linear-gradient(to bottom, #c62d1f 5%, #f24437 100%);
    background-color: #c62d1f;
    border-radius: 10px;
    border: 1px solid #d02718;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    padding: 5px 10px;
    margin: 3px;
    margin-bottom: 7px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #810e05;
    outline: none;
}


.symbol {
	font-size: 0.9em;
	font-family: Times New Roman;
	border-radius: 1em;
	padding: .1em .6em .1em .6em;
	font-weight: bolder;
	color: white;
	background-color: #4E5A56;
}

.icon-info { background-color: #3229CF; }
.icon-error { background: #e64943; font-family: Consolas; }
.icon-tick { background: #13c823; }
.icon-excl { background: #ffd54b; color: black; }

.icon-info:before { content: 'i'; }
.icon-error:before { content: 'x'; }
.icon-tick:before { content: '\002713'; }
.icon-excl:before { content: '!'; }


.notify {
	background-color:#e3f7fc; 
	color:#555; 
    border:.1em solid;
	border-color: #8ed9f6;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;
    font-size:12px;
    padding:4px;
    margin:3px;
    cursor: default;
    text-align:center;
}

.notify-yellow { background: #fff8c4; border-color: #f7deae; }
.notify-red { background: #ffecec; border-color: #fad9d7; }
.notify-green { background: #e9ffd9; border-color: #D1FAB6; }




.notify-yes {
	background-color:#ccffa6; 
	color:#555; 
    border:.1em solid;
	border-color: #adff71;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;
    font-size:1.1em;
    padding:1px;
    margin:1px;
    cursor: default;
    text-align:center;
    font-weight:bold;
}

.notify-no {
	background-color:#ffd9d9; 
	color:#555; 
    border:.1em solid;
	border-color: #f4a6a2;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;
    font-size:1.1em;
    padding:1px;
    margin:1px;
    cursor: default;
    text-align:center;
    font-weight:bold;
}

.notify-ok {
	background-color:#d1f1fa; 
	color:#555; 
    border:.1em solid;
	border-color: #75d1f4;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;
    font-size:1.1em;
    padding:1px;
    margin:1px;
    cursor: default;
    text-align:center;
    font-weight:bold;
}



.select_blue {
    background-color: #ffffff;
    border-radius: 5px;
    border: solid 2px #1488cd;
    padding: 2px;
    width: 180px;
    height: 25px;
    font-size: 12px;
    color: black;
}


.firstmenu{
  border: 2px solid #3b3b3b;
  border-radius: 20px;
  display:inline-block;
  padding:10px;
}
.firstmenu:hover{
  background-color: #d6d6d6;
}

