@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #721f83;
}
/*Barra de Scroll*/
::-webkit-scrollbar{
    width: 10px;
    background-color: #721f8300;
  }
  
  ::-webkit-scrollbar-thumb{
    border-radius: 40px;    
    background-color: #c51e9b;
    /*background-image: -webkit-linear-gradient(90deg,rgba(0, 0, 0, 0) 25%,transparent 25%,transparent 50%,rgba(0, 0, 0, 0) 50%,rgba(0, 0, 0, 0) 75%,transparent 75%,transparent)*/
  }

.navbar{
    position: sticky;
    width:100%;
    border: none;
    margin-top: -4px;
    float: none;
    overflow: hidden;
    display: inline-flex;
    list-style: none;
    background: #100e18;
    padding: 10px;
}

.navbar-toggler span {
    display: block;
    background-color: rgb(255, 0, 221);
    height: 3px;
    width: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    left: 0;
    opacity: 1;
    transition: all 0.35s ease-out;
    transform-origin: center left;
  }
  
  .navbar-toggler span:nth-child(1) {
    transform: translate(0%, 0%) rotate(0deg);
  }
  
  .navbar-toggler span:nth-child(2) {
    opacity: 1;
  }
  
  .navbar-toggler span:nth-child(3) {
    transform: translate(0%, 0%) rotate(0deg);
  }
  
  .navbar-toggler span:nth-child(1) {
    margin-top: 0.3em;
  }
  
  .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translate(15%, -33%) rotate(45deg);
  }
  
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
  
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}

.justify-content-end{
  margin-right: 84px;
}

.nav-item a{
    margin: 0px 20px;
    color: aliceblue;
    text-decoration: none;    
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

.nav-item a:hover{
    color: rgb(255, 0, 221);
}

.social-media a{
    margin: 0 8px;
    font-size: 30px;
    color: rgb(180, 180, 180);
}

.fa-square-twitter{
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

.fa-square-facebook{
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

.fa-linkedin{
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

.social-media .fa-square-twitter:hover{
    color: #00ACEE;
}

.social-media .fa-square-facebook:hover{
    color: #1877F2;
}

.social-media .fa-linkedin:hover{
    color: #0077B5;
}

.container-xxl .row{
    margin-top: 10%;
}

.container-xxl .col-xxl-8 h1{
    color: white;
    font-size: 60pt;
    margin-bottom: 6%;
}

.container-xxl .text-start p{
    color: white;
    margin-bottom: 4%;
    text-align: justify;
    font-weight: 500;
    font-family: 'Quicksand';
}

.container-xxl .col-xxl-8 h1::selection{
    background-color: #FFF;
    color: #791082;
}

.container-xxl .text-start p::selection{
    background-color: #FFF;
    color: #791082;
}

.container-xxl .col-xxl-8 h1::-moz-selection {
    background-color: #FFF;
    color: #791082;
}

.container-xxl .text-start p::-moz-selection {
    background-color: #FFF;
    color: #791082;
}


.container-xxl .accordion .accordion-body::selection{
    background-color: #FFF;
    color: #791082;
}

.container-xxl .accordion .accordion-body::-moz-selection {
    background-color: #FFF;
    color: #791082;
}

.text-center h6::-moz-selection {
    background-color: #FFF;
    color: #791082;
}

.text-center h6::selection {
    background-color: #FFF;
    color: #791082;
}

.container-xxl .row .accordion{
    margin-bottom: 20px;
}

.accordion-item{
    border: none;
    color: white;
    font-size: 12pt;
    font-family: 'Quicksand';
    background-color: #873285a2;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

.accordion-button{
    color: white;
    font-size: 15pt;
    font-weight:200;
    font-family: 'Quicksand';
    border-color: transparent;
    background-color: #873286;
}

.accordion-button:not(.collapsed) {
    color: white;
    font-weight:700;
    font-size: 18pt;
    font-family: 'Quicksand';
    border-color: transparent;
    background-color: #873285a2;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

footer{
    width: 100%;
    padding: 3%;
    background-color: #0D125E;
}

#social .fa-brands{
    color: white;
    font-size: 40px;
    margin-top: 34px;
    margin-right: 40px;
    display: inline-flex;
    justify-content: space-between;
}

.text-center a{
    color: white;
    text-decoration: none;
}


.text-center h6{
    color: white;
    margin-top: 2%;
}

@media only screen and (max-width:768px){

    .nav-item a{
        margin: 0px 36px;
        color: aliceblue;
        text-decoration: none;    
        transition-duration: 0.4s;
        transition-timing-function: ease-in-out;
    }

    .justify-content-end{
        margin-right: 84px;
    } 
    
    .social-media a{
        margin: 0 6px;
        font-size: 30px;
        color: rgb(180, 180, 180);
    }
}

@media only screen and (max-width:540px) {
    .navbar .container-xxl{
        width: 100%;
    }

    .navbar .navbar-brand img{
        width: 120px;
    }

    footer{
        width: 100%;
        background-color: #0D125E;
    }    

    #social .fa-brands{
        color: white;
        font-size: 50px;
        margin-top: 34px;
        margin-left: 20px;
        margin-right: 20px;
        display: inline-flex;
        justify-content: space-between;
    }

    .text-center h6{
        color: white;
        font-size: 10px;
        margin-top: 14px;
    }
}