.parallax{
    background: url("../img/truly_remote.jpg") no-repeat center;
    background-size: cover;
    height: 900px;
    width: 100%;
    background-attachment: fixed;
    background-position: top;
}

.parallax h1{    
    margin-top: 120px;
    color: white;
    padding-top: 20px;
    text-align: left;
    width: 90%;
    position: relative;
    animation-name: dwn2top;
    animation-duration: 0.7s;
    animation-delay: 0.1s;
    z-index: 1;
}

.cards-container{
    display: flex;
    width: 90%;
    align-items: stretch;
    justify-content: space-around;  
}

.support-card{
    margin: 10px;
    width: fit-content;
    color: white;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    transition: transform .4s;
    width: -moz-fit-content;
}

.support-card h2{
    text-align: center;
    padding-bottom: 15px;
}

.support-card p{
    text-align: justify;    
    padding: 0px 25px 20px 25px;

}

.support-card:hover{
    border: 2px solid white;
}

.card1{
    border: 2px solid #007A7A;
}

.card1:hover{
    background-color: #007A7A;
}

.card1:hover h2{
    border-bottom: 2px solid white;
}

.card1 h2{
    border-bottom: 2px solid #007A7A;
}

.card2{
    border: 2px solid#DE6600;
}

.card2:hover{
    background-color: #DE6600;
}

.card2:hover h2{
    border-bottom: 2px solid white;
}

.card2 h2{
    border-bottom: 2px solid #DE6600;
}

.card3{
    border: 2px solid#FEA02F;
}

.card3:hover{
    background-color: #FEA02F;
}

.card3:hover h2{
    border-bottom: 2px solid white;
}

.card3 h2{
    border-bottom: 2px solid #FEA02F;
}

.div-tv{
    margin-top: 50px;
}

.div-tv button{
    margin-top: 30px;
}

.btn-blue{
    margin-top: 50px;
}

.dwlBtn1{
    margin-bottom: 20px;
}

.dwlBtn2{
    padding: 10px;
    border-color: white;
}

.tv-img{
    width: 200px;
    height: 200px;
    border-radius: 150px;
}

@media (max-width: 1200px){
    .parallax h1{
        text-align: center;
    }
    .cards-container{
        flex-direction: column;
    }

    .support-card h2{
        padding-bottom: 15px;
    }

    .support-card p{
        margin: 0;
        padding: 0px 25px 20px 25px;
    }

    .support-card:hover{
        transform: scale(1);
    }

    .support-card{
        margin: 0px;
        margin-bottom: 25px;
        border: 2px solid white;

    }

    .parallax{
        height: max-content;
    }

    .div-tv{
        margin: 0px;
        padding: 0px;
        padding-bottom: 20px;
    }

    .btn-blue{
        color: black;
        background-color: transparent;
        transition: color 0.7s;
        transition: border 500ms ease-out;
        transition: box-shadow 500ms ease-out;   
        width: 50%;
        height: fit-content;
        padding: 5px 5px;
    }
    .card1{background-color: #007A7A;}
    .card2{background-color: #DE6600;}
    .card3{background-color: #FEA02F;}
    .support-card h2{border-bottom: 2px solid white;}
}

@media (max-width: 600px){
    .parallax{
        margin-top: 0;
        padding-top: 0;
        background-attachment: unset;
    }

    .parallax h1{
        margin-top: 5.5rem;
    }

    .tv-img{
        width: 150px;
        height: 150px;
    }

}

@keyframes dwn2top {
    0%   {top:200px;}
    100% {
      top:0px; 
    }
  }