@font-face {
    font-family: 'Gotham';
    src: url('fonts/GothamBold-Italic.woff2') format('woff2'),
        url('fonts/GothamBold-Italic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/GothamBold.woff2') format('woff2'),
        url('fonts/GothamBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham';
    font-weight: bold;
    position: relative;
}

img {
    max-width: 100%;
}

.bg-dark {
    background: black !important;
}

.navbar-dark .navbar-nav .nav-link {
    text-transform: uppercase;
    font-style: italic;
}

#quienes-somos {
    background: url('img/bg.jpg');
    background-position: center right;
    background-size: cover;
    padding: 200px 10px 300px;
    border-bottom: 40px solid black;
}

#quienes-somos p {
    background: black;
    color: white;
    padding: 16px 30px;
    font-size: 14px;
    line-height: 16px;
}

#quienes-somos p:before {
    content: '';
    background: black;
    width: 30px;
    height: 112px;
    position: absolute;
    top: 0px;
    margin-left: 490px;
    transform: skew(-10deg, 0deg);
}

#servicios {
    background: linear-gradient(#f45200, #f86d00, #f13e00);
    padding-top: 50px;
}

#servicios .logo {
    position: absolute;
    right: 0;
    top: 1120px;
    z-index: 1;
    width: 210px;
}

#servicios h5 {
    background: white;
    color: black;
    padding: 5px 16px 0;
    text-transform: uppercase;
    display: inline-table;
    margin-bottom: 23%;
    font-size: 50px;
    box-shadow: -8px 8px 0 0 black;
    font-style: italic;
}

#servicios h5:before {
    content: '';
    background: #ffffff;
    height: 65px;
    width: 23px;
    position: absolute;
    margin-left: 552px;
    top: 20px;
    transform: skew(-15deg, 0deg);
}


#contacto {
    background: url('img/contacto-bg.jpg');
    background-size: cover;
    background-position: top center;
    padding: 180px 10px 80px;
}

#contacto .logo {
    margin-left: 47px;
}

#contacto p {
    background: black;
    color: white;
    text-transform: uppercase;
    padding: 7px 10px 3px;
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    font-style: italic;
}

#contacto input,
#contacto textarea {
    border-radius: 0;
    border: none;
    text-align: center;
}

#contacto input[type="submit"] {
    background: black;
    color: white;
    width: 100%;
    padding: 10px;
}

::placeholder {
    color: black;
    font-size: 13px;
    opacity: 1;
    text-transform: uppercase;
  }

@media screen and (min-width: 1200px) {
    #quienes-somos p {
        padding: 36px 20px;
    }
    #quienes-somos p:before {
        content: '';
        background: black;
        width: 30px;
        height: 136px;
        position: absolute;
        top: 0px;
        margin-left: 602px;
        transform: skew(-10deg, 0deg);
    }
}

@media screen and (max-width: 991px) {
    #quienes-somos p:before {
        content: '';
        background: black;
        width: 30px;
        height: 144px;
        position: absolute;
        top: 0px;
        margin-left: 347px;
        transform: skew(-10deg, 0deg);
    }

    #quienes-somos .logo {
        margin-top: 30px;
    }

    #servicios h5 {
        font-size: 30px;
        margin-bottom: 18%;
    }

    #servicios h5:before {
        content: none;
    }

    #servicios .logo {
        display: none;
    }

}

@media screen and (max-width: 767px) {
    #quienes-somos p:before {
        content: none;
    }

    #contacto .logo {
        margin-left: 0;
    }
}