
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}



/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 100px auto;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}
.modal-header{
    padding: 20px;
    background-color: #7C00AD;
    color: #fff;
}
.modal-body{
    padding: 20px;
    display: flex;
}

/* The Close Button */
.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #ccc;
    text-decoration: none;
    cursor: pointer;
}
.collapsible{
    width: 100%;
    color: #ffff;
    border: none;
    padding: 7px;
    cursor: pointer;
    background-color: #6c50ad;
    margin-bottom: 2px;;
}
.collapsible:hover{
    background-color: #7c00ad;
}
.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}
.navRight{
    width: 70%;
    margin-left: 5%;
}
.empresaImg{
    width: 25%;
    height: fit-content;
}

/* button */
.btn {
    border: none; 
    color: white; 
    background-color: #6c50ad;
    padding: 7px; 
    cursor: pointer;
    float: right;
    margin-left: 20px;
    border-radius: 5px;
}
.btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
.btn:hover{
    background-color: #7c00ad;
    color: white; 
}
.btn:hover span {
    padding-right: 25px;
    
}

.btn:hover span:after {
    opacity: 1;
    right: 0;
}

 
/* Media PC */
@media (min-width: 768px) {
    /* Modal Content/Box */
    .modal-content {
        margin-left: 250px !important;
        width: 75%; /* Could be more or less, depending on screen size */
    }
    .video {
        height: 500px;
    }
}
/* Media celular */
@media (max-width: 768px) {
    .video {
      height: 180px;
    }
  }