@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    background: #010001 !important;
    margin: 0;
    padding-top: 53px;
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
}

.card{
    background: #010001 !important;
}
/* attribution for card effect: https://codepen.io/codewithdeveloper/pen/BavGaMR */
.container{
    width: 1000px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
    
  }
  
  .container .card{
    position: relative;
  }
  
  .container .card .face{
    width:350px;
    height: 200px;
    transition:.4s;
    
  }
  
  .container .card .face.face1{
    position: relative;
    background: #333;
    display: flex;
    justify-content: center;
    align-content:center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
  }
  
  .container .card:hover .face.face1, .card:active{
    transform: translateY(0);
    box-shadow:
      inset 0 0 60px whitesmoke,
      inset 20px 0 80px rgb(115, 113, 168),
      inset -20px 0 80px rgb(103, 159, 159),
      inset 20px 0 300px rgb(115, 113, 168),
      inset -20px 0 300px rgb(129, 193, 193),
      0 0 50px #fff,
      -10px 0 80px rgb(115, 113, 168),
      10px 0 80px rgb(100, 163, 163);
     
  }
  
  .container .card .face.face1 .content{
    opacity: .2;
    transition:  0.5s;
    text-align: center;
  }
  
  .container .card:hover .face.face1 .content, .card:active{
    opacity: 1;
   
  }
  
  .container .card .face.face1 .content i{
    font-size: 3em;
    color: white;
    display: inline-block;
     
  }
  
  .container .card .face.face1 .content h3{
    font-size: 1em;
    color: white;
    text-align: center;
    
  
  }
  
  .container .card .face.face1 .content a{
     transition: .5s;
  }
  
  .container .card .face.face2{
     position: relative;
     background: whitesmoke;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,.8);
    transform: translateY(-100px);
  }
  
  .container .card:hover .face.face2, .card:active{
      transform: translateY(0);
  }
  
  .container .card .face.face2 .content p, a{
    font-size: 10pt;
    margin: 0 ;
    padding: 0;
    color:#333;
  }
  
  .container .card .face.face2 .content a{
    text-decoration:none;
    color: black;
    box-sizing: border-box;
    outline : 1px dashed #333;
    padding: 5px;
    margin: 10px 0 0;
    display: inline-block;
  }
  
  .container .card .face.face2 .content a:hover, a:active{
    background: #333 ;
    color: whitesmoke; 
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
  }

  @media(max-width: 576px) {
    .container .card .face {
    width: 100%;
    display: flex;
      justify-content: center;
    flex-wrap: wrap;
    }
  } 
  

.header {
    max-width: 1230px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

@media(max-width: 576px) {
    .dropdown-btn {
    width: 100%;
    display: flex;
      justify-content: center;
    flex-wrap: wrap;
    }
  } 

.dropdown {
    display: inline-block;
    margin-right: 20px;
}

.dropdown-btn {
    padding: 12px;
    font-size: 16px;
    width: 400px;
    border: 2px solid #2980b9; /* Border color and width */
    border-radius: 5px; /* Border radius for rounded corners */
    cursor: pointer;
}

.class-list {
    list-style: none;
    padding: 0;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.class-list li {
    padding: 12px;
    cursor: pointer;
    color: #333; /* Set text color */
}

.dropdown:hover .class-list, .dropdown:active {
    display: block;
}

.spacer-sections {
    float: left;
    width: 200px;
    border-top: 3px solid #918b8b;
}

.spacer-sections-2 {
    margin-left: 55px;
    float: inline-start;
    width: 200px;
    border-top: 3px solid #918b8b;
}

.item-link {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 14px;
}

.second-nav .item-link {
    color: #808080;
}

.main {
    padding-top: 120px;
    padding-bottom: 30px;
    text-align: center;
}

.main .title {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 64px;
    line-height: 75px;
    margin-bottom: 30px;
    margin-top: 0;
}

.main .description {
    display: inline-block;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    max-width: 268px;
}

.main .description::after {
    /* position: absolute; */
    display: block;
    content: '';
    width: 1px;
    height: 60px;
    background-color: #fff;
    margin: auto;
    margin-top: 20px;
}

.video {
    width: 90%;
    margin: auto;
    max-width: 1230px;
    height: 750px;
}

.features {
    max-width: 1230px;
    width: 90%;
    margin: auto;
    padding: 100px 0;
    position: relative;
}

.features-title {
    font-weight: bold;
    font-size: 40px;
    margin-top: 45px;
}

.features-title-bottom {
    font-weight: bold;
    font-size: 24px;
    line-height: 140%;
    margin-top: 45px;
}

.table {
    margin-bottom: 30px;
}

.table-column {
    width: 700px;
    padding: 10px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 179.69%;
}

.features-text {
    max-width: 649px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 29px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav .item-link {
    font-size: 18px;
    line-height: 21px;
}

.footer .logo {
    margin-bottom: 43px;
}

.footer .footer-nav {
    margin-bottom: 28px;
}

.footer .footer-text,
.footer .footer-link {
    font-size: 14px;
    line-height: 21px;
    color: #808080;
}

.footer .footer-text {
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-link {
    text-decoration: none;
}


.footer .footer-button {
    min-height: 40px;
    min-width: 220px;
    border: 2px solid #FFFFFF;
    border-radius: 6px;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    margin-bottom: 100px;
}

.footer .footer-button:hover,
.footer .footer-button:active {
    color: #000;
    background-color: #fff;
}

@media(max-width: 960px) {
    .table-column {
        width: 200px;
    }
}

@media(max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .header .logo {
        margin-bottom: 2px;
        width: 1px;
        height: 1px; 
    }

    .header .main-nav {
        margin-bottom: 20px;
    }

    .video {
        width: 100%;
    }
}

@media(max-width: 576px) {
    .main {
        padding-top: 50px;
    }

    .table {
        margin-bottom: 0;
    }

    .table-column {
        font-size: 14px;
        width: 300px;
    }

    .footer .footer-nav .list {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .footer .footer-nav .item {
        margin-bottom: 10px;
    }

    .footer {
        text-align: center;
    }

    .features {
        padding-bottom: 30px;
    }

}