@import url('fonts.css');

body {
    font-family: 'Arimo', sans-serif;
    color: var(--bs-white);
    margin: 0;
    padding: 0;
    height: 100%;
}

::selection {
    background-color: var(--bs-orange);
    color: var(--bs-white);
  }
  

/* MENU */
.navbar {
    background-color: var(--bs-black);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.offcanvas-end {
    background-color: var(--bs-white);
}

.navbar-brand:hover {
    color: var(--bs-white);
}

.CustomLogo {
    font-family: 'Made Canvas Black', sans-serif;
    color: var(--bs-white); 
    font-size: 1.3rem;
    max-width: 3.75rem;
    height: auto;
}

.nav-link {
    font-size: 0.812rem;
    color: var(--bs-white);
}

.nav-link:hover {
    color: var(--bs-orange);
}

.offcanvas.show .nav-link {
    color: var(--bs-black);
}

.offcanvas.show .nav-link:hover {
    color: var(--bs-orange);
}


.CustomButtonCV {
    color: var(--bs-white);
    font-size: 0.812rem;
    border-color: var(--bs-white);
}

.offcanvas.show .CustomButtonCV{
    color: var(--bs-black);
    border-color: var(--bs-black);
}

.CustomButtonCV:hover {
    color: var(--bs-black);
    background-color: var(--bs-white);
    border-color: var(--bs-white);
}

.offcanvas.show .CustomButtonCV:hover{
    color: var(--bs-white);
    background-color: var(--bs-black);
    border-color: var(--bs-white);
}

.CustomContacts {
    font-size: 0.9rem;
    display: none;
}

@media (max-width: 990px) {
    .CustomLogo {
        max-width: 2.5rem;
        height: auto;
        font-size: 1.31rem;
    }

    .navbar-nav .nav-link {
        padding: 1rem 0rem;
    }

    .CustomButtonContainer {
        padding-top: 1rem;
    }

    .CustomContacts {
        display: block;
    }
}

/* CAROUSEL */

/* widescreen carousel in big windows*/
.carousel,
.carousel-item {
    height: calc(100vh - 4.75rem);
}

.carousel-item{
    transition: transform 1s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.carousel-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 5;
    right: 5;
    bottom: 0;
    z-index: 1;
}

.carousel-caption h2 {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.25rem;
}

.carousel-caption b {
    font-family: 'Made Canvas Black', sans-serif;
}

@media (max-width: 990px) {
    /* widescreen carousel in small and medium windows*/
    .carousel,
    .carousel-item {
        height: calc(100vh - 3.5rem);
    } 
}

/* ABOUT SECTION */
.CustomAbout {
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
    background-color: var(--bs-white);
}

.CustomAbout h2 {
    font-family: 'Made Canvas Black', sans-serif;
    color: var(--bs-blue);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.CustomAbout h3 {
    font-family: 'Made Canvas Regular', sans-serif;
    color: var(--bs-orange);
    font-size: 2.18rem;
}

.CustomAbout p {
    font-family: 'Urbanist', sans-serif;
    color: var(--bs-black);
    font-size: 1.3rem;
    margin-top: 1.5625rem;
}

.CustomAbout button {
    font-family: 'Urbanist', sans-serif;
    margin-top: 2.3125rem;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 2px;
}

.CustomAbout button:hover {
    border-color: var(--bs-white);
    background-color: var(--bs-white);
    color: var(--bs-black);
}

/* section about in small screen */
@media (max-width: 990px) {
    .CustomAbout h2 {
        font-size: 2.5rem;
    }

    .CustomAbout h3 {
        font-size: 1.8rem;
    }
}

/* SERVICES SECTION */
.CustomServices {
    background-color: var(--bs-blue);
    padding-top: 3.12rem;
    padding-bottom: 7.5rem;
}

.CustomServices h2 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
}

.CustomServices p{
    font-size: 1rem;
}

.CustomServices b {
    font-family: 'Made Canvas Black', sans-serif;
}

.CustomService img {
    height: 6.25rem;
}

.CustomService p{
    font-size: 1.112rem;
    line-height: 1.2825;
    padding-top: 2.3125rem;
}

/* title about in small screen */
@media (max-width: 990px) {
    .CustomServices h2 {
        font-size: 2rem;
    }

    .CustomService {
        padding-top: 2.5rem;
    }

    .CustomService img {
        height: 5rem;
    }

    .CustomService p{
        font-size: 1.125rem;
        padding-top: 1rem;
    }
}

/* FORM SECTION */
.CustomForm {
    background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url("../img/Mockup.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 7.5rem;
    padding-bottom: 6.25rem;
    position: relative;
}

.CustomForm h2{
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    padding-bottom: 1rem;
}

.CustomForm p {
    font-family: 'Urbanist', sans-serif;
    line-height: 0;
    font-size: 1.25rem;
    margin-bottom: 1.87rem;
}

.CustomForm button {
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 2px; 
}

@media (max-width: 990px) {
    /* Evitar fixed en móviles */
    .CustomForm {
        background-attachment: scroll;
    }

    .CustomForm h2 {
        font-size: 2rem;
    }

    .CustomForm p{
        line-height: 1.3rem;
        font-size: 1.2rem;
    }

}

/* FOOTER SECTION */
.CustomFooter {
    background-color: var(--bs-black);
}

.CustomFooterLogo img {
    max-width: 2.5rem;
    height: auto;
}

.CustomFooterLogo span {
    font-family: 'Made Canvas Black', sans-serif;
    font-size: 1.1rem;
    color: var(--bs-white); 
}

.CustomFooterNet img {
    max-width: 2rem;
    height: auto;
}

.CustomFooterLocation {
    font-size: 1.112rem;
}

@media (max-width: 990px) {
    .CustomFooterNet, .CustomFooterLocation{
        padding-top: 1rem;
    }
}