@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;
    
    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: #ee2323;
  border-radius: 20px;
  border-left: 1px solid #ee2323;
}

*::-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;
    background-color: #fff;
    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: 1.9em;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .header .logo{
     font-size: 1.6em;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .header .logo{
      font-size: 1.6em;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .header .logo{
      font-size: 1.6em;
    }
  }
  
  /* 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: 300px;
      width: 100%;
      background-color: rgba(98, 0, 255, 0.05);
      margin-top: 150px;
      padding-top: 50px;
      padding-bottom: 50px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-content: space-around;
      justify-content: space-around;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .intro{
      height: 600px;
      margin-top: 70px;
    }
    .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: 180px;
    }
    .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: 70px;
    }
    .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;
    align-content: space-around;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .ethernet{
      margin-top: 50px;
      font-size: 50px;
      font-weight: 500;
      color: rgb(107, 107, 107);
      text-transform: uppercase;
      font-family: 'Oswald', sans-serif;
      margin-right: 20px;
      margin-left: 15px;
      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: 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;
    margin-right: 45px;
    margin-left: 15px;
    
  }
  

  .words{
    font-size: 26px;
    font-weight: 200;
    color: #000;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-right: 20px;
    margin-left: 19px;
  }

.words-words1{
  color: #E94057;
}
  
  /* computer with table SVG */

  .computer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 50px;
  }

  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:1420px) {
    .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;
    }
 }


 @media (min-width:950px) and (max-width:1400px) {
  .frame{
    width: 300px;
  }
 
 
}

@media (min-width:500px) and (max-width:949px) {
  .frame{
    width: 300px;
  }
 
  
}

@media (min-width:200px) and (max-width:500px) {
  .frame{
    width: 300px;
  }
 
}
  
 

/* 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;
    
    }
 }
 



.contact{
  position: absolute;
  margin-top: 800px;
  width: 100%;
  background-image: url('../img/support.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
  height: 400px;

}

.ct1{
  margin-top: 1500px;
}

.contact .sh1{
  margin-top: 50px;
}

.words9{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  margin-top: 69px;
  color: #ffffff;
}

.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: 800px;
    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: 800px;
      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: 800px;
    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: 1200px;
    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;
    }
    
    .ft1{
      margin-top: 1900px;
    }

  

    @media (min-width:950px) and (max-width:1400px) {
      .fixed_footer{
        margin-top: 1200px;
      }
      .content{
  
      flex-direction: column;
   
      }
     
    }
    
    @media (min-width:500px) and (max-width:949px) {
      .fixed_footer{
        height: 1200px;
        margin-top: 1200px;
      }
      .content{
      
        flex-direction: column;
   
        }
    }
    
    @media (min-width:200px) and (max-width:500px) {
      .fixed_footer{
        height: 2200px;
        margin-top: 1200px;
      }
      .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;
    }

.first{
    margin: 50px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5000px;
}


/* Tarrif */

.tarifs{
    position: absolute;
    margin-top: 500px;
    width: 100%;    
}

@media (min-width:950px) and (max-width:1400px) {
    .tarifs{
      margin-top: 800px;
   
  }
}
  
  @media (min-width:500px) and (max-width:949px) {
    .tarifs{
        margin-top: 850px;
    }
  
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .tarifs{
        margin-top: 850px;
    }
    
  }

  .count-channels{
    text-decoration: none;
    color: rgb(58 183 74);
  }

  .count-channels:hover{
    text-decoration: underline;
  }



.container {
    display: flex;
    justify-content: center;
    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;
  }

  .img1 img{
    height: 100px;
  }

.card img{
    background-color: red;
}

  .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    min-height: 250px;
  }

   .bc1{
    background-color: #ff090908;
  }
  
  .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: 12px;
    margin: 0 0 40px;
  }


.words-words1{
    font-size: 30px;
}
  
.words-words2{
    font-size: 40px;
    color: #E94057;
}

.words-word3{
    font-size: 25px;
    color:rgb(104, 104, 104);
}

.words-words4{
    font-size: 26px;
    color: rgb(233, 96, 96);
}

.words-words5{
    color:rgb(233, 96, 96) ;
    font-size: 30px;
}

:root {
    --borderWidth: 7px;
    --height: 24px;
    --width: 12px;
    --borderColor: rgb(233, 96, 96);
  }
  

.check {
    display: inline-block;
    transform: rotate(45deg);
    height: var(--height);
    width: var(--width);
    border-bottom: var(--borderWidth) solid var(--borderColor);
    border-right: var(--borderWidth) solid var(--borderColor);
    margin-right: 20px;
  }

  .checkmark{
      margin-top: 10px;
      margin-left: 10px;
      font-size: 20px;
      font-family: 'Montserrat', sans-serif;
      font-weight: bold;
      color: rgb(71, 71, 71);
  }

  .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;
  }





  /* Promo */

.promo{
    position: absolute;
    margin-top: 26px;
    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: 50px;
    }
   
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .promo{
      margin-top: 50px;
    }
    
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .promo{
      margin-top: 50px;
    }
   
  }
  
  
  .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%);
  }
  


 /* Modal conctact*/
 .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 350px; /* 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 */
.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;}
 
}


/* Modal tarifs*/
.modal1 {
  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 */
.modal1-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 */
.close1 {
  margin-top: -5px;
  color: rgb(240, 73, 73);
  float: right;
  font-size: 30px;
  font-weight: bold;
}

.close1:hover,
.close1:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal1-header {
  padding: 10px 10px;
  background-color: #eeeeee;
  color: rgb(240, 73, 73);
  border-radius: 10px;
}

.modal1-body {
  padding: 1px 16px;
  border-radius: 10px;
  font-size: 20px;
}

.modal1-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;
}

.modal1-footer {
  padding: 20px 16px;

  color: white;
  
}


.midbtn{
  margin-left: auto;
  margin-right: auto;
  width:255px;
}


@media (min-width:950px) and (max-width:1400px) {
  .modal1-content{
    width: 50%;
  }

  .modal1{padding-top: 100px;}
 
}

@media (min-width:500px) and (max-width:949px) {
  .modal1-content{
    width: 50%;
  }
  .modal1{padding-top: 200px;}
  
}

@media (min-width:200px) and (max-width:500px) {
  .modal1-content{
    width: 90%;
  }
  .modal1{padding-top: 200px;}
 
}

/* korjik */
.korjik {
  position: absolute;
  width: 100%;
  background-color: #111;
  color: rgb(170, 170, 170);
  text-align: center;
  margin-top: 2370px;
}

.kr1{
  margin-top: 3070px;
}

.sh1{
  margin-top: 3470px;
}

@media (min-width:950px) and (max-width:1400px) {
  .korjik{
    margin-top: 2370px;
  }
}

@media (min-width:500px) and (max-width:949px) {
  .korjik{
    margin-top: 2750px;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .korjik{
    margin-top: 3680px;
  }
}


/* SALEX */
.salex{
  margin-top: 500px;
  position: absolute;
}

.main-container {
  padding: 30px;
}

/* HEADING */

.heading {
  text-align: center;
}

.heading__title {
  font-weight: 600;
}

.heading__credits {
  margin: 10px 0px;
  color: #888888;
  font-size: 25px;
  transition: all 0.5s;
}

.heading__link {
  text-decoration: none;
}

.heading__credits .heading__link {
  color: inherit;
}

/* CARDS */

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cardx {
  margin: 20px;
  padding: 20px;
  width: 500px;
  min-height: 200px;
  display: grid;
  grid-template-rows: 20px 50px 1fr 50px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}

.cardx:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.card__link,
.card__exit,
.card__icon {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.card__link::after {
  position: absolute;
  top: 25px;
  left: 0;
  content: "";
  width: 0%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}

.card__link:hover::after {
  width: 100%;
}

.card__exit {
  grid-row: 1/2;
  justify-self: end;
}

.card__icon {
  grid-row: 2/3;
  font-size: 30px;
}

.card__title {
  grid-row: 3/4;
  font-weight: 400;
  color: #ffffff;
}

.card__apply {
  grid-row: 4/5;
  align-self: center;
}

/* CARD BACKGROUNDS */

.card-1 {
  background: radial-gradient(#1fe4f5, #3fbafe);
}

.card-2 {
  background: radial-gradient(#fbc1cc, #fa99b2);
}

.card-3 {
  background: radial-gradient(#76b2fe, #b69efe);
}

.card-4 {
  background: radial-gradient(#60efbc, #58d5c9);
}

.card-5 {
  background: radial-gradient(#f588d8, #c0a3e5);
}

/* RESPONSIVE */

@media (max-width: 1600px) {
  .cards {
    justify-content: center;
    margin-top:150px;
  }
}

@media (max-width: 600px) {
  .cards {
    justify-content: center;
    margin-top:350px;
  }
}

@media (min-width:950px) and (max-width:1400px) {
  .card-1{
    
    margin: 0 0 20px 0;
  }
 .cardx{
   
   width: 300px;
 }
 .sl1{
  display: none;
 }
}

@media (min-width:500px) and (max-width:949px) {
  .card-1{
    
    margin: 0 0 20px 0;
  }
  .cardx{
    
    width: 300px;
  }
  .sl1{
    display: none;
   }
}

@media (min-width:200px) and (max-width:500px) {
  .card-1{
    
    margin: 0 0 20px 0;
  }
  .cardx{
    
    width: 300px;
  }
  .sl1{
   display: none;
  }
}