@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);

body, html{
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}


/* scrollbar */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-thumb {
    background-color: #15539b;
    /* border-radius: 20px; */
    border-left: 6px solid #ebe740;
}
*::-webkit-scrollbar-track {
  background-color: rgba(98, 0, 255, 0.05);
  width: 12px;
}

/* NavBar */
.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 1005;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
  }
  
  .header li a {
    color: rgb(233, 96, 96);
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }
  
  .header .logo {
    color: red;
    display: block;
    float: left;
    font-size: 2.3em;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .header .logo .text {
      font-size: 0.6em;
      top: 3.5px;
  }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .header .logo .text{
      font-size: 0.4em;
      top: 1.5%;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .header .logo .text{
      font-size: 0.4em;
      top: 1.5%;
    }
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 480px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 88em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }

  /* selectbox */
  .dropdown {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown .dropbtn {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .show {
    display: block;
  }

  /* dropdown2 */
  .dropdown2 {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown2 .dropbtn2 {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown2:hover .dropbtn2, .dropbtn2:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown2-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown2-content2 a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown2-content2 a:hover {
    background-color: #ddd;
  }
  
  .show2 {
    display: block;
  }

  /* dropdown3 */
  .dropdown3 {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown3 .dropbtn3 {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown3:hover .dropbtn3, .dropbtn2:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown3-content2 {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown3-content2 a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown3-content2 a:hover {
    background-color: #ddd;
  }
  
  .show3 {
    display: block;
  }

  /* intro section */

  .intro{
      position: absolute;
      height: 500px;
      width: 100%;
      background-color: rgba(98, 0, 255, 0.05);
      margin-top: 150px;
      padding-top: 80px;
      padding-bottom: 50px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-content: space-around;
      justify-content: space-around;
  }


  @media (min-width:1400px) and (max-width:1700px) {
    .intro{
      height: 600px;
      margin-top: 180px;
    }

  }

  @media (min-width:950px) and (max-width:1400px) {
    .intro{
      height: 600px;
      margin-top: 180px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
    .dropdown2{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown2 .dropbtn{
      border-right: none;
    }
    .dropdown3{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown3 .dropbtn{
      border-right: none;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .intro{
      height: 600px;
      /* margin-top: 120px; */

      margin-top: 200px;
    }
    .dropdown {
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown2{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
    .dropdown2 .dropbtn{
      border-right: none;
    }
    .dropdown3{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown3 .dropbtn{
      border-right: none;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .intro{
      height: 650px;
      margin-top: 200px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
    .dropdown2{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown2 .dropbtn{
      border-right: none;
    }
    .dropdown3{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown3 .dropbtn{
      border-right: none;
    }
  }

 

  .provider{
    display: flex;
    flex-direction: column;
  }

  .ethernet{
      font-size: 50px;
      font-weight: 500;
      color: rgb(107, 107, 107);
      text-transform: uppercase;
      font-family: 'Oswald', sans-serif;
      margin-right: 20px;
      margin-left: 20px;
      margin-bottom: -15px;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .ethernet{
      font-size: 40px;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .ethernet{
      font-size: 35px;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .ethernet{
      font-size: 30px;
    }
  }

  .nameprov{
    font-size: 80px;
    font-weight: 700;
    background: #8A2387;
    background: -webkit-linear-gradient(to right, #F27121, #E94057, #8A2387);
    background: linear-gradient(to right, #F27121, #E94057, #8A2387); 
    -webkit-background-clip: text;
    color: transparent;
    margin-right: 15px;
    margin-left: 15px;
    
  }

  .nameprov {
    /* font-size: calc( 1em + 30vmin ); */
    font-weight: 900;
    color: tomato;
    
    --x-offset: -0.0625em;
    --y-offset: 0.0625em;
    --stroke: 0.025em;
    --background-color: white;
    --stroke-color: lightblue;
    
    text-shadow: 
      
      var(--x-offset)
      var(--y-offset)
      0px
      var(--background-color), 
      
      calc( var(--x-offset) - var(--stroke) )
      calc( var(--y-offset) + var(--stroke) )
      0px
      var(--stroke-color);
    
  }
  /* for browsers that support spread, added in
  https://drafts.csswg.org/css-text-decor-4/#text-shadow-property
  currently: none browsers! none of them!
  I can't even find a test: 
  https://wpt.fyi/results/css/css-text-decor */
  @supports ( text-shadow: 1px 1px 1px 1px black ) {
    h1 {
      text-shadow:
        
        var(--x-offset)
        var(--y-offset)
        0px
        0px
        var(--background-color), 
        
        var(--x-offset) 
        var(--y-offset)
        var(--stroke)
        0px
        var(--stroke-color);
      
    }
  }
  

  .words{
    font-size: 26px;
    font-weight: 200;
    color: #000;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-right: 20px;
    margin-left: 19px;
  }


  /* computer with table SVG */

  .computer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  svg {
    width: 356px;
    height: 356px;
    margin-right: 100px;
  }
  
  /* SMOKE */
  #smoke-1 {
    stroke-dasharray: 0, 10;
    animation: smoke 6s ease infinite;
  }
  
  #smoke-2 {
    stroke-dasharray: 0, 10;
    animation: smoke 6s 0.5s ease infinite;
  }
  
  @keyframes smoke {
    0% { stroke-dasharray: 0, 10; }
    50% { stroke-dasharray: 10, 0; }
    100% { stroke-dasharray: 10, 0; opacity: 0; }
  }
  
  /* WRITING */
  #line-1 {
    opacity: 0;
    animation: writing 0.5s linear forwards;
  }
  
  #line-2 {
    opacity: 0;
    animation: writing 0.5s 1s linear forwards;
  }
  
  #line-3 {
    opacity: 0;
    animation: writing 0.5s 1.5s linear forwards;
  }
  
  #line-4 {
    opacity: 0;
    animation: writing 0.5s 2s linear forwards;
  }
  
  @keyframes writing {
    0% { width: 0px; opacity: 1;}
    100% { width: 14px; opacity: 1;}
  }
  
  @media (min-width:200px) and (max-width:1400px) {
    .computer{
        display:none;
    }
 }
 

 /* Social */

 .notif {
    margin-left: -45px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: space-around;
    justify-content: space-evenly;
  }
  
  
  .frame{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    width: 350px;
    position: relative;
     box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001,
     inset 0px 0px 0px 0px #fff9,
     inset 0px 0px 0px 0px #0001,
     inset 0px 0px 0px 0px #fff9,        inset 0px 0px 0px 0px #0001;
   transition:box-shadow 0.6s cubic-bezier(.79,.21,.06,.81);
     border-radius: 10px;
  }
  
  .btn{
    height: 35px;
    width: 35px;
    border-radius: 3px;
    background: #e0e5ec;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001,
     inset 0px 0px 0px 0px #fff9,
     inset 0px 0px 0px 0px #0001,
     inset 0px 0px 0px 0px #fff9,        inset 0px 0px 0px 0px #0001;
   transition:box-shadow 0.6s cubic-bezier(.79,.21,.06,.81);
    font-size: 16px;
    color: rgba(42, 52, 84, 1);
    text-decoration: none;
  }
  .btn:active{
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  }

  @media (min-width:200px) and (max-width:850px) {
    .notif{
        width: 100%;
        margin-left: 5px;
    }
 }
  
 

/* wrapper notif */

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .typing-demo {
    width: 29ch;
    animation: typing 3s steps(29), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 1em;
    color: #E94057;
    text-transform: none;
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }

  @media (min-width:200px) and (max-width:950px) {
    .wrapper{
        display:none;
    
    }
 }
 /* PRICE */

 .price-block{
   margin-top: 700px;
   position: absolute;
   width: 100%;
 }

 :root {
  --red: hsl(0, 78%, 62%);
  --cyan: hsl(0, 78%, 62%);
  --orange: hsl(0, 78%, 62%);
  --blue: hsl(0, 78%, 62%);
  
  --grayishBlue: hsl(229, 6%, 66%);
  --veryLightGray: hsl(0, 0%, 98%);
  --weight1: 200;
  --weight2: 400;
  --weight3: 600;
}


.attribution { 
  font-size: 11px; text-align: center; 
}
.attribution a { 
  color: hsl(228, 45%, 44%); 
}



@media (max-width: 400px) {
  h1 {
      font-size: 1.5rem;
  }
}

.header2 {
  text-align: center;
  line-height: 0.8;
  margin-bottom: 26px;
  margin-top: 100px;
}

.header2 p {
  margin: 0 auto;
  line-height: 2;
  color: var(--grayishBlue);
}




.box {
  border-radius: 5px;
  box-shadow: 0px 30px 40px -20px var(--grayishBlue);
  padding: 30px;
  margin: 20px;  
}

.buttont1{
  width: 100%;
  color: rgb(82, 82, 82);
}
.buttont2{
  width: 100%;
  color: rgb(82, 82, 82);
}
.buttont3{
  width: 100%;
  color: rgb(82, 82, 82);
}
.buttont4{
  width: 100%;
  color: rgb(82, 82, 82);
}

.b1{
  color: rgb(82, 82, 82);
  font-size: 20px;
}
.b2{
color: rgb(82, 82, 82);
font-size: 20px;
}
.b3{
color: rgb(82, 82, 82);
font-size: 20px;
}
.b4{
color: rgb(82, 82, 82);
font-size: 20px;
}

.buttont1{
  position: relative;
  outline:0; 
  font-size:1em;
  font-weight:600;
  background:#fff;
  border:none;
  padding:1.5em 2em;
  transition:all .3s ease-out; 
  box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%),
    6px 6px 0 0 hsl(0, 78%, 62%),
    7px 7px 0 0 hsl(0, 78%, 62%),
    8px 8px 0 0 hsl(0, 78%, 62%),
    9px 9px 0 0 hsl(0, 78%, 62%),
    10px 10px 0 0 hsl(0, 78%, 62%),
    11px 11px 0 0 hsl(0, 78%, 62%),
    12px 12px 0 0 hsl(0, 78%, 62%);
}
.buttont1:hover{
  color:#444;
}
.buttont1:active{
  color:#222;
  box-shadow:inset 0 -4px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%);
}

.buttont2{
  position: relative;
  outline:0; 
  font-size:1em;
  font-weight:600;
  background:#fff;
  border:none;
  padding:1.5em 2em;
  transition:all .3s ease-out; 
  box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%),
    6px 6px 0 0 hsl(0, 78%, 62%),
    7px 7px 0 0 hsl(0, 78%, 62%),
    8px 8px 0 0 hsl(0, 78%, 62%),
    9px 9px 0 0 hsl(0, 78%, 62%),
    10px 10px 0 0 hsl(0, 78%, 62%),
    11px 11px 0 0 hsl(0, 78%, 62%),
    12px 12px 0 0 hsl(0, 78%, 62%);
}
.buttont2:hover{
  color:#444;
}
.buttont2:active{
  color:#222;
  box-shadow:inset 0 -4px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%);
}

.buttont3{
  position: relative;
  outline:0; 
  font-size:1em;
  font-weight:600;
  background:#fff;
  border:none;
  padding:1.5em 2em;
  transition:all .3s ease-out; 
  box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%),
    6px 6px 0 0 hsl(0, 78%, 62%),
    7px 7px 0 0 hsl(0, 78%, 62%),
    8px 8px 0 0 hsl(0, 78%, 62%),
    9px 9px 0 0 hsl(0, 78%, 62%),
    10px 10px 0 0 hsl(0, 78%, 62%),
    11px 11px 0 0 hsl(0, 78%, 62%),
    12px 12px 0 0 hsl(0, 78%, 62%);
}
.buttont3:hover{
  color:#444;
}
.buttont3:active{
  color:#222;
  box-shadow:inset 0 -4px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%);
}

.buttont4{
  position: relative;
  outline:0; 
  font-size:1em;
  font-weight:600;
  background:#fff;
  border:none;
  padding:1.5em 2em;
  transition:all .3s ease-out; 
  box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%),
    6px 6px 0 0 hsl(0, 78%, 62%),
    7px 7px 0 0 hsl(0, 78%, 62%),
    8px 8px 0 0 hsl(0, 78%, 62%),
    9px 9px 0 0 hsl(0, 78%, 62%),
    10px 10px 0 0 hsl(0, 78%, 62%),
    11px 11px 0 0 hsl(0, 78%, 62%),
    12px 12px 0 0 hsl(0, 78%, 62%);
}
.buttont4:hover{
  color:#444;
}
.buttont4:active{
  color:#222;
  box-shadow:inset 0 -4px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%);
}

img {
  float: right;
}

@media (max-width: 450px) {
  .box {
      height: 240px;
  }
}

@media (max-width: 950px) and (min-width: 450px) {
  .box {
      text-align: center;
      height: 240px;
  }
}

.cyan {
  border-top: 3px solid var(--cyan);
}
.red {
  border-top: 3px solid var(--red);
}
.blue {
  border-top: 3px solid var(--blue);
}
.orange {
  border-top: 3px solid var(--orange);
}

h2 {
  color: var(--varyDarkBlue);
  font-weight: var(--weight3);
}


@media (min-width: 950px) {
  .row1-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .row2-container {
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .box-down {
      position: relative;
      top: 150px;
  }
  .box {
      width: 20%;
   
  }
  .header2 p {
      width: 30%;
  }
  
}
@media (min-width:801px) and (max-width:1000px) {
  .price-block{
      margin-top: 800px;
      
  }
  .frame{
    width: 280px;
  }
}

@media (min-width:200px) and (max-width:800px) {
  .price-block{
      margin-top: 800px;
  }
  .frame{
    width: 280px;
  }
}

@media (min-width:200px) and (max-width:515px) {
  .price-block{
      margin-top: 1052px;
  }
  .frame{
    width: 280px;
  }
}

 /* alert message */

 .alert{
   position: absolute;
   margin-top: 80px;
   width: 100%;
   font-size: 20px;
   color: #E94057;
 }

 .alert>.start-icon {
  margin-right: 0;
  min-width: 50px;
  text-align: center;
  
}

.alert>.start-icon {
  margin-right: 5px;
}



.alert-simple.alert-warning
{
  border: 10px solid #ee2323;
  background-color: #ee2323;
  box-shadow: 0px 0px 2px #ee2323;
  color: #ffffff;
  text-shadow: 2px 1px #00040a;
  transition:0.5s;
  cursor:pointer;
  z-index: 500;
  padding-left: 20px;
}

.alert-warning:hover{
background-color: rgba(220, 27, 1, 0.33);
transition:0.5s;
}

.warning
{
  font-size: 18px;
  color: #ffb40b;
  text-shadow: none;
}


.alert:before {
  content: '';
  position: absolute;
  width: 0;
  height: calc(100% - 44px);
  border-left: 1px solid;
  border-right: 2px solid;
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  left: 0;
  top: 50%;
  transform: translate(0,-50%);
    height: 20px;
}

.fa-times
{
-webkit-animation: blink-1 2s infinite both;
        animation: blink-1 2s infinite both;
}

/**
* ----------------------------------------
* animation blink-1
* ----------------------------------------
*/
@-webkit-keyframes blink-1 {
0%,
50%,
100% {
  opacity: 1;
}
25%,
75% {
  opacity: 0;
}
}
@keyframes blink-1 {
0%,
50%,
100% {
  opacity: 1;
}
25%,
75% {
  opacity: 0;
}
}

@media (min-width:200px) and (max-width:1400px) {
  .alert{
      padding: 0px 10px 0px 10px;
      font-size: 18px;
      margin-bottom: 10px;
  }
}




/* backgroud price and about section */


/* TV */
.intro2{
  position: absolute;
  height: 620px;
  width: 100%;
  background-color: rgba(98, 0, 255, 0.05);
  margin-top: 1350px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  justify-content: space-around;
}

@media (min-width:950px) and (max-width:1400px) {
  .intro2{
    margin-top: 1500px;
  }
}

@media (min-width:500px) and (max-width:949px) {
  .intro2{
    margin-top: 1800px;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .intro2{
    margin-top: 1900px;
  }
}


.tv{
  font-size: 20px;
  font-weight: 200;
  color: rgb(83, 83, 83);
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  margin-right: 20px;
  margin-left: 150px;
  margin-bottom: -15px;
}

.imgtv{
 
}

.abouttv{
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.words3{
  font-size: 20px;
  font-weight: 200;
  color: rgb(83, 83, 83);
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  
}


@media (min-width:950px) and (max-width:1400px) {
  .intro2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-around;
  }
.imgtv img{
  width: 700px;
  height: 400px;
}
.tv{
  margin-left: 40px;
  padding: 40px;
}
.words3{
  margin-left: -50px;
  font-size: 16px;
}
.words4,.words5{
  display: none;
}
}

@media (min-width:500px) and (max-width:949px) {
  .intro2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-around;
  }
  .imgtv img{
    width: 500px;
    height: 300px;
  }
  .tv{
    margin-left: 40px;
    padding: 30px;
  }
  .words3{
    margin-left: -50px;
    font-size: 16px;
  }
  .words4,.words5{
    display: none;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .intro2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-around;
  }
  .imgtv img{
    width: 300px;
    height: 150px;
  }
  .tv{
    margin-left: 40px;
    padding: 15px;
  }
  .words3{
    margin-left: -50px;
    font-size: 16px;
  }
  .words4,.words5{
    display: none;
  }
}


/* Promo */

.promo{
  position: absolute;
  margin-top: 2026px;
  width: 100%;
  height: 750px;
}

.sale{

  margin: 50px auto;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  background: #8A2387;
  background: -webkit-linear-gradient(to right, #F27121, #E94057, #8A2387);
  background: linear-gradient(to right, #F27121, #E94057, #8A2387); 
  -webkit-background-clip: text;
  color: transparent;
}



.slider {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 20rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}
.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
 
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.slider__contents {
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider__image {
  font-size: 2.7rem;
      color: #f84949;
}
.slider__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
.slider__txt {
  color: #999;
  margin-bottom: 3rem;
  max-width: 300px;
}

@-webkit-keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}


.promo2{
  position: absolute;
  margin-top: 155px;
  width: 100%;
  text-align: center;
  color: rgb(107, 107, 107);
}

.pink{
  color: #f34763;
}

@media (min-width:950px) and (max-width:1400px) {
  .promo{
    margin-top: 2500px;
  }
 
}

@media (min-width:500px) and (max-width:949px) {
  .promo{
    margin-top: 2500px;
  }
  
}

@media (min-width:200px) and (max-width:500px) {
  .promo{
    margin-top: 2550px;
  }
 
}


.buttont{
  margin-bottom: -150px;
  position: relative;
  outline:0; 
  font-size:1em;
  font-weight:600;
  background:#fff;
  border:none;
  padding:1.5em 2em;
  transition:all .3s ease-out; 
  box-shadow:inset 0 -8px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%),
    6px 6px 0 0 hsl(0, 78%, 62%),
    7px 7px 0 0 hsl(0, 78%, 62%),
    8px 8px 0 0 hsl(0, 78%, 62%),
    9px 9px 0 0 hsl(0, 78%, 62%),
    10px 10px 0 0 hsl(0, 78%, 62%),
    11px 11px 0 0 hsl(0, 78%, 62%),
    12px 12px 0 0 hsl(0, 78%, 62%);
}
.buttont:hover{
  color:#444;
}
.buttont:active{
  color:rgb(77, 77, 77);
  box-shadow:inset 0 -4px 0 0 rgba(0,0,0,.2),
    1px 1px 0 0 hsl(0, 78%, 62%),
    2px 2px 0 0 hsl(0, 78%, 62%),
    3px 3px 0 0 hsl(0, 78%, 62%),
    4px 4px 0 0 hsl(0, 78%, 62%),
    5px 5px 0 0 hsl(0, 78%, 62%);
}

/* News */
.news {
  position: absolute;
  width: 100%;
  margin-top: 2800px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  color: #10182f;
}
.containernews {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.card {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 300px;
}
.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  min-height: 250px;
}

.tag {
  background: #cccccc;
  border-radius: 50px;
  font-size: 12px;
  margin: 0;
  color: #fff;
  padding: 2px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.tag-teal {
  background-color: #47bcd4;
}
.tag-purple {
  background-color: #5e76bf;
}
.tag-pink {
  background-color: #cd5b9f;
}

.card-body p {
  font-size: 13px;
  margin: 0 0 40px;
}
.user {
  display: flex;
  margin-top: auto;
}

.user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.user-info h5 {
  margin: 0;
}
.user-info small {
  color: #545d7a;
}


@media (min-width:1401px) {
 
  .sss{
    margin-top: 700px;
  }
 
}


@media (min-width:950px) and (max-width:1400px) {
  .news{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    margin-top: 1000px;
    position: absolute;
    width: 100%;
    margin-top: 3300px;
  }
  .sss{
    margin-top: 800px;
  }
 
}

@media (min-width:500px) and (max-width:949px) {
  .news{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    margin-top: 3300px;
  }
  .sss{
    margin-top: 850px;
  }
  
}

@media (min-width:200px) and (max-width:500px) {
  .news{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    margin-top: 1000px;
    position: absolute;
    width: 100%;
    margin-top: 3300px;
  }
  .sss{
    margin-top: 890px;
  }
}

.newsbtn{
     background-color: #e4e4e4;
    border: none;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    color: #000000;
}

.newsbtn:hover{
  background-color: #c0c0c0;
}



/* contact */

.contact{
  position: absolute;
  margin-top: 1050px;
  width: 100%;
  background-image: url('../img/support.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
  height: 400px;

}

.words9{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  margin-top: 69px;
  color: #ffffff;
  text-align: center;
}

.btncontact:hover{cursor: pointer}
.btncontact {
  margin-top: 10px;
  background: #ca30303b;
  position: relative;
  border: 2px solid rgb(255, 255, 255);
  padding: 15px 50px;
  overflow: hidden;
}

/*button:before (attr data-hover)*/
.btncontact:hover:before{opacity: 1; transform: translate(0,0);}
.btncontact:before{
  content: attr(data-hover);
  position: absolute;
  top: 1.1em; left: 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em;
  opacity: 0;
  transform: translate(-100%,0);
  transition: all .3s ease-in-out;
}
  /*button div (button text before hover)*/
  .btncontact:hover div{opacity: 0; transform: translate(100%,0)}
  .btncontact div{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: .8em;
    transition: all .3s ease-in-out;
  }


  @media (min-width:950px) and (max-width:1400px) {
    .contact{
    margin-top: 1000px;
    background-color: rgba(98, 0, 255, 0.05);
    background-image: none;
    width: 100%;
    }
    .words9,.btncontact div{
      color: #E94057;
      border: none;
      font-size: 12px;
    }
   
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .contact{
      margin-top: 1800px;
      background-color: rgba(98, 0, 255, 0.05);
      background-image: none;
      width: 100%;
    }
    .words9,.btncontact div{
      color: #E94057;
      border: none;
      font-size: 12px;
    }
    
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .contact{
    margin-top: 2000px;
    background-color: rgba(98, 0, 255, 0.05);
    background-image: none;
    width: 100%;
    }
    .words9,.btncontact div{
      color: #E94057;
      border: none;
      font-size: 12px;
    }
   
  }

  /* footer */
  .fixed_footer{
    margin-top: 2300px;
    width: 100%;
    height: 850px;
    background: #111;
    position: absolute; 
  }
     .fixed_footer p{
      color: #696969;
      column-count: 2;
      column-gap: 50px;
      font-size: 1em;
      font-weight: 300;
    }

    @media (min-width:950px) and (max-width:1400px) {
      .fixed_footer{
        margin-top: 2200px;
      }
      .content{
  
      flex-direction: column;
   
      }
     
    }
    
    @media (min-width:500px) and (max-width:949px) {
      .fixed_footer{
        margin-top: 3200px;
      }
      .content{
      
        flex-direction: column;
   
        }
    }
    
    @media (min-width:200px) and (max-width:500px) {
      .fixed_footer{
        margin-top: 3400px;
      }
      .content{
      
        flex-direction: column;
       
        }
    }

    .content{
      margin-top: 36px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-evenly;
      font-family: 'Roboto Mono', monospace;
      margin-left: 15px;
      margin-right: 15px;
      
    }

    .content h1{
      color: #dddddd;
      font-size: 22px;
    }

    .content li{
      list-style-type: none;
      color: #E94057;
      font-size: 18px;
      margin-top: -25px;
      padding: 15px;
    }

    .content a{
      text-decoration: none;
      color: #E94057;
    }



    /* Modal Content */

 /* Modal */
 .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 250px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  margin-top: -5px;
  color: rgb(240, 73, 73);
  float: right;
  font-size: 30px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 10px 10px;
  background-color: #eeeeee;
  color: rgb(240, 73, 73);
  border-radius: 10px;
}

.modal-body {
  padding: 1px 16px;
  border-radius: 10px;
  font-size: 20px;
}

.modal-body input{
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 16px;
}

.modal-footer {
  padding: 20px 16px;

  color: white;
  
}


.midbtn{
  margin-left: auto;
  margin-right: auto;
  width:255px;
}


@media (min-width:950px) and (max-width:1400px) {
  .modal-content{
    width: 50%;
  }

  .modal{padding-top: 100px;}
 
}

@media (min-width:500px) and (max-width:949px) {
  .modal-content{
    width: 50%;
  }
  .modal{padding-top: 200px;}
  
}

@media (min-width:200px) and (max-width:500px) {
  .modal-content{
    width: 90%;
  }
  .modal{padding-top: 200px;}
 
}

.btn-price{
  width: 260px;
  margin-top: 30px;
  background-color: rgb(233, 96, 96); /* Green */
  border: none;
  color: rgb(233, 96, 96);
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px;
  background-color: white; 
  border: 2px solid rgb(233, 96, 96);
}

.btn-price:hover {
  background-color: rgb(233, 96, 96);
  color: white;
}

/* korjik */
.korjik {
  position: absolute;
  width: 100%;
  background-color: #111;
  color: rgb(170, 170, 170);
  text-align: center;
  margin-top: 3850px;
}

@media (min-width:950px) and (max-width:1400px) {
  .korjik{
    margin-top: 3750px;
  }
}

@media (min-width:500px) and (max-width:949px) {
  .korjik{
    margin-top: 5550px;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .korjik{
    margin-top: 7560px;
  }
}



 .problem{
   margin-left: -340px;
   text-decoration: none;
  color: rgb(219, 71, 71);
  font-size: 26px;
  font-weight: bold;
  animation-name: blink;
  animation-timing-function: linear;
  animation-duration: 2.9s;
  animation-iteration-count: infinite;  
 }
 

 
 @keyframes blink {
  50% {
    opacity: 0;
  }
}

 

 .popup2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup2 .popuptext2 {
  visibility: hidden;
  width: 260px;
  background-color: rgb(223, 89, 89);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup2 .popuptext2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup2 .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

.img_logo{
  width: 50px;
  height: 50px;
}


.main_ghost{
  position: absolute;
  width: 100%;
}

.both_ghost1{
  height: 200px;
  position: relative;
  float: right;
}


.both_ghost2{
  height: 200px;
  position: relative;
  float: left !important;
}


@media (min-width:500px) and (max-width:949px) {
  .main_ghost{
    display: none;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .main_ghost{
   display: none;
  }
}


/* logo */

.text {
  position: fixed;
  top: 1.2%;
  left: 2.5%;
  list-style: none;
  border-bottom: 0;
  z-index: 50000;
}

.text.hidden {
  /* border-bottom: 1px solid #fff; */
}

.text li {
  display: inline-block;
  float: left;
  font-weight: 700;
  font-size: 1.5em;
  color: rgb(255, 0, 0);
  opacity: 1;
  transition: all 0.5s ease-in-out;
  max-width: 2em;
}
.text.hidden li.spaced {
  padding-left: 0;
}
.text li.spaced {
  padding-left: 0.5em;
}

.text.hidden li.ghost {
  opacity: 0;
  max-width: 0;
}


li.yellow {
    color: #ebe740;
}
li.blue0 {
    color: #5eaaff;
}
