/*----------------------------------------*/
/*  INFO
/*----------------------------------------*/

/*  Media Queries:          320px, 480px, 768px, 1024px, 1200px

/*--------------------------------------------------------------------------------*/
/*  INTRO
/*--------------------------------------------------------------------------------*/

#intro-desktop {
    padding: 0 !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.intro {
    padding: 50px 25px;
}

.intro-title {
    margin-bottom: 50px;
    font-size: 40px;
    color: #fff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/*----------------------------------------*/
/*  BOXES & POINTS
/*----------------------------------------*/

.intro-box-1, 
.intro-box-2, 
.intro-box-3 {
    display: flex;
    flex-direction: row;
    background-color: #ffffff2c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0px 16px rgba(0, 0, 0);
    border: 1.5px solid #00000000;
    transition: border 0.2s ease-in-out;
    cursor: default;
}

.intro-box-1 { width: 100% }
.intro-box-2 { width: calc(50% - 12.5px); }
.intro-box-3 { width: calc(33.33% - 16.7px); }

@media (max-width: 900px) {
    .intro-box-3 { width: calc(50% - 12.5px); }
}

@media (max-width: 600px) {
    .intro-box-2 { width: 100%; }
    .intro-box-3 { width: 100%; }
}

.intro-box-1:hover, 
.intro-box-2:hover, 
.intro-box-3:hover {
    border: 1.5px solid #000;
}

.intro-box-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}
.intro-box-img img{
    width: 100px;
    height: 100px;
}

.intro-box-content {
    margin: 25px 25px 25px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-box-content-title {
    font-size: 2rem;
    margin: 0 0 0.5rem;
    color: #fff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.intro-box-content-description {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--default-color);
    text-shadow: -1px -1px 0 #00000062, 1px -1px 0 #00000062, -1px 1px 0 #00000062, 1px 1px 0 #00000062;
}