/* 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;
}

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

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

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

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

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

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

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

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

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

.banner__container {
    padding: 0px;
}

.banner__row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px;
    z-index: 1;
    outline: 0;
}

.banner__menu {
    display: flex;
    justify-content: center;
}

.banner__link {
    margin: 0 20px;
    font-size: 40px;
    color: white;
    text-shadow: 1px 1px 2px rgb(255, 255, 255);
    transition: color 0.4s ease-in-out;
}

.banner__link:hover{
    color: orange;
    transition: color 0.4s ease-in-out;
}

.banner__box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 25px;
    width: 500px;    
    background: #ff7c00c2;
}

.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: #fb9738;
}

.history_link{
    transition: color 0.4s ease-in-out;
}

.history_link:hover{
    color: #41464b;
    transition: color 0.4s ease-in-out;
}

/* Types */
.types__container{
    height: 100vh;
}

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

.types_img_box{
    padding: 0;
}

.types__img {
    width: 100%;
}

/* Limitations */
.box__limitations {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card__limitations {
    width: 100%;
    height: 30%;
    border: 1px solid #fb9738;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.title__card {
    display: flex;
    font-size: 50px;
    justify-content: center;
    margin: 0;
}

/* Footer */
.footer {
    width: 100%;
    height: 100px;
    background: black;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.logo{
    height: 100%;
    border-radius: 50%;
    padding: 10px;
    filter: invert();
    transition: filter 0.4s ease-in-out;
}

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

.me{
    color: white;
    display: flex;
    align-items: center;
}

/* Media */
@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;
    }
}