/* Global */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #003061 white;
}

::-webkit-scrollbar {
  height: 6px;
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #003061;
}

::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 5px;
  border: 1.5px solid #003061;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0px;
    
}

.link {
    color: red;
    text-decoration: none;
}

.title {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.text {
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 20px;
}

/* Banner */
.banner__section {
    height: 100vh;
    background: url(../img/Drone.jpeg);
    background-size: cover;
    position: relative;
    background-position: center;
}

.banner__container {
    padding: 0px;
}

ul {
    margin: 0 auto;
    width: 50%;
    padding: 3em 0;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
  }

.banner__link {
    font-size: 20px;
    position: relative;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    text-shadow: 2px 2px 2px black;
  }

    .banner__link::after {
      position: absolute;
      content: "";
      top: 100%;
      left: 0;
      width: 100%;
      height: 3px;
      background: #FF0000;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.5s;
    }

    .banner__link:hover {
      color: #FF0000;
    }

    .banner__link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

.banner__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 25px;
    width: 500px;    
    background: #FF0000e0;
    border-top-left-radius: 15px;
}

.banner__title {
    color: white;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
}

.banner__text {
    color: white;
    font-size: 20px;
    margin-bottom: 16px;
}

.banner__text_italic {
    font-style: italic;
    font-weight: 900;
    font-family: 'Times New Roman', Times, serif;
    margin-left: auto;
}

/* History */
.history__section {
    display: flex;
    flex-direction: column;    
    background: #003061;
    color: white;
}

.history_link{
    transition: color 0.4s ease-in-out;
    border-bottom: 2px dotted;
}

/* Table */
table {
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    white-space: nowrap;
    background: white;
    box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );
    border-radius: 15px;
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 8px;
}

.fl-table td {
    font-size: 12px;
}

.fl-table thead th {
    color: #ffffff;
    background: #FF0000;
}


.fl-table thead th:nth-child(odd) {
    color: #ffffff;
    background: #003061;
}

.fl-table tr:nth-child(even) {
    background: #F8F8F8;
}

/* Types */
.types__container{
    flex-direction: row;
}

.types__row{
    display: flex;
    margin: 0;
    justify-content: space-between;
    align-items: center;
}

.types_img_box{
    padding: 0;
}

.types__img {
    width: 100%;
    border-radius: 7px;
    min-height: 200px;
    object-fit: cover;
    object-position: center center;
}

.types__text {
    font-size: 1.01rem;
    margin: 2rem 0;
    text-align: justify;
  }

  .container-glass, .container-glass::before, .container-glass::after {
    border-radius: 7px;
    background: #bec2c5c2;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.08);
  }
  .container-glass::before{
    background: red;
  }
  .container-glass::after{
    background: #003061;
  }
  .container-glass {
    position: relative;
    padding: 2rem 1.5rem 0;
    width: 80%;
    max-width: 280px;
  }
  .container-glass::before, .container-glass::after {
    content: '';
    position: absolute;
  }
  .container-glass::before {
    height: 80px;
    width: 80px;
    top: -10px;
    left: -40px;
    z-index: -1;
  }
  .container-glass::after {
    height: 40px;
    width: 40px;
    bottom: -20px;
    right: -10px;
    z-index: 2;
  }

/* Limitations */
.wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.data-card {
    width: 32%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: .5em;
    text-decoration: none;
    padding: 2.75em 2.5em 0;
    transition: .45s ease;
    border: 2px solid #003061;
  }
    
    .data-card h3 {
      font-size: 3.5em;
      font-weight: 600;
      line-height: 1;
      margin: 0 0 0.1em;
      border-bottom: 2px solid #003061;
      transition: .45s ease;
      color: #003061;
    }
  
    .data-card p {
      color: #003061;
      font-weight: 600;
      line-height: 1.8;
      margin: 0 0 1.25em;
      transition: .45s ease;
    }
  
    .data-card:hover p{
      color: white;
    }
    
    .data-card:hover {
      background: #FF0000;
      transform: scale(1.02);
      border: 2px solid red;
    }
  
    .data-card:hover h3{
      color: white;
      border-bottom-color: white;
    }

/* Footer */
.footer {
    width: 100%;
    height: 80px;
    padding: 0 50px;
    background: black;
    display: flex;
    justify-content: space-between;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.logo{
    height: 60px;
    border-radius: 50%;
}

.logo:hover{
    filter: none;
    transition: filter 0.4s ease-in-out;
}

.me{
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    font-size: 20px;
}

/* Media */
@media(max-width: 1280px){
    .container-glass{
        max-width: 200px;
    }
}

@media (max-width: 990px){
    .text{
        font-size: 11px;
    }

    .title{
        font-size: 16px;
    }
}

@media (max-width: 775px) {
    .text{
        font-size: 10px;
    }

    .title{
        font-size: 15px;
    }

    .banner__link {
        margin: 0 10px;
        font-size: 20px;
    }

    .banner__box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 15px;
        width: 350px;       
    }

    .banner__title {
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 20px;
    }

    .banner__text {
        color: white;
        font-size: 20px;
    }

    .banner__text_italic {
        font-style: italic;
        font-weight: 900;
        font-family: 'Times New Roman', Times, serif;
        margin-left: auto;
    }

    .text__card {
        padding-right: 10px;
    }
}

@media (max-width: 375px){
    .text{
        font-size: 8px;
    }
}