/*  DEFAULT  */
body {
    font-family: 'Ubuntu', sans-serif;
}
h1 {
    font-size: 5vw;
    font-weight: 800;
    color: rgb(250, 112, 0);
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
  }
h3 {
    font-size: 1.5vw;
}
@media screen and (max-width: 600px) {
    h3 {
        font-size: 1rem;
    }
  }
/*  MAIN PAGE  */
.main-page {
    position: relative;
    color: white;
    padding-bottom: 5%;
}
.main-text-container {
    position: absolute;
    margin: 20% 10%;
}
.navbar {
    position: absolute;
    width: 100%;
}
.main-buttons {
    background: transparent;
}
.main-background {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
}
/*  CONTACT PAGE  */
.format-contact {
    padding-top: 5%;
    padding-bottom: 5%;
    margin: 0;
}
.card-img-top {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.col-forma {
    padding: 2%;
}
.footer-format {
    background-image: url(images/web/footer.jpg);
    padding: 3% 5% 2% 5%;
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 0.7rem;
    color: white;
    background-size: cover;
}  
/*  PORTFOLIO PAGE  */
.port-text-format {
    padding: 10% 5% 7% 5%;
    text-align: left;
    width: 100%;
    margin: 0;
    color: white;
    background-image: url(images/web/black.jpg);
    background-size: cover;
}
.container {
    position: relative;
    width: 50%;
    background-color: white;
  }
.img {
    display: block;
    width: 100%;
    max-height: 400px;
    min-height: 200px;
    object-fit: cover;
}
.glide * {
    margin: auto;
    padding: 0;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: white;
  }
  .container:hover .overlay {
    opacity: 0.5;
  }
  .text {
    color: black;
    font-size: 2.5vw;
    font-weight: 800;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(255, 117, 4) !important;
}
.nav-link {
    color: white;
}
.custom-bullets {
    list-style: none;
    padding-left: 1.2em;
    position: relative;
  }
.custom-bullets {
    list-style: none;
    padding-left: 1.2em;
    position: relative;
  }
  .custom-bullets li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: orange;
    font-size: 1.2em;
    line-height: 1;
  }