@import 'https://fonts.googleapis.com/css?family=Montserrat';
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
body,
html {
    font-family: 'Montserrat', sans-serif;
    background-color: #ddd;
    color: #111;
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: darkblue;
}

a:hover {
    color: #94080c;
    text-decoration: underline;
}

label {
    display: block;
    width: 100%;
    text-align: left;
}

input,
textarea {
    width: 60%;
    border: 1px solid #777;
    font-size: 1em;
}

input:focus,
textarea:focus {
    border-color: red;
}

#wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#header {
    margin: 0 auto;
    max-width: 1200px;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    border: 1px solid #000;
    background-color: #222;
    z-index: 99;
}

#menu .navicon {
    display: none;
    font-size: 2em;
    float: right;
    margin-right: 15px;
    color: #ddd;
}

#menu nav {
    float: right;
}

#menu nav ul {
    padding: 0;
    margin: 0;
}

#menu nav li {
    float: left;
    list-style-type: none;
}

#menu nav li a {
    display: block;
    text-decoration: none;
    padding: 10px;
    background-color: #222;
    color: #ddd;
}

#menu nav li a:hover,#menu nav li.active a {
    background-color: #94080c;
    color: white;
}

#menu nav li:last-child {
    margin-right: 10px;
}

.section {
    min-height: 100vh;
    overflow: hidden;
    padding-top: 20px;
    /*border: 1px solid black;*/
    background-size: cover;
    background-position: center center;
}

section.promos{
    min-height: auto;
    background-color: #94080c;
    padding: 0;
    border: none;
}

.section h2 {
    font-family: 'Yatra One', sans-serif;
    background-color: rgba(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    font-size: 2em;
    text-transform: uppercase;
    text-align: center;
    margin: 1.5em 10px;
}

.section article {
    background-color: rgba(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 20px;
    margin: 0 10px;
}

.section article p{
    text-align: justify;
}

#home {
    background-image: url('../img/pexels-pixabay-39284.webp');
    background-color: #ddd;
}

#about {
    background-color: #94080c;
}

#services {
    background-color: #ddd;
    background-image: url('../img/pexels-pixabay-38519.webp');
}

#ubicacion {
    background-color: #ddd;
    background-image: url('../img/pexels-lorenzo-240834.webp');
}

#ubicacion div{
    padding: 0 10%;
    height: 85vh;
}

#contact {
    background-color: #94080c;
}

#contact article{
    padding: 5%;
}

#contact input[type=text], #contact textarea {
    width: 96%;
    border: 1px solid grey;
    border-radius: 5px;
    background-color: #ddd;
    color: #000;
    padding: 5px;
    margin-bottom: 15px;
    font-size: 1.2em;
}
#contact input[type=submit]{
    padding: 10px;
    text-transform: uppercase;
    border: 1px solid grey;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}
#contact input[type=submit]:hover{
    background-color: #94080c;
    color: #fff;
    border-radius: 5px;
    border: 1px solid grey;
    padding: 10px;
}

#contact form{
    text-align: right;
}

#contact .link-buttons{
    padding: 0;
}

#contact .link-buttons li {
    list-style-type: none;
    margin-bottom: 15px;
}

#contact .link-buttons li a{
    text-decoration: none;
    color: #000;
    font-size: 1.1em;
}

#contact .link-buttons li a i,
#contact .link-buttons li a:hover{
    color: #94080c;
}
#contact form{
    float: right;
    width: 48%;
    text-align: right;
    margin: 0 1%;
}
#contact .link-buttons{
    float: left;
    width: 48%;
    margin: 0 1%;
}
#contact input[type=text], #contact textarea{
    max-width: 96%;
    
}

#services #myitems {
    margin: 0;
    padding: 0;
    list-style: none;
}

#services #myitems li {
    width: 100%;
}
#services #myitems li {
    text-align: center;
    color: #94080c;
}
#services #myitems li p, #myitems li h4{
    color: #000;
    font-size: .9em;
    margin: 5px 0;
}
#services #myitems li h4{
    font-family: 'Denk One', sans-serif;
}
#services #myitems li {
    float: left;
    width: 30%;
    margin: 1%;

}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 25px 0;
}
footer p{
    margin: 0;
}

.clear{
    clear: both;
}

.fixPoint {
    background-attachment: fixed;
}

@media screen and (max-width:640px) {
    #menu .navicon {
        display: block;
    }
    #menu nav {
        display: none;
        width: 100%;
    }
    #menu nav ul li {
        width: 100%;
    }
    #portfolio ul li {
        width: 100%;
    }
    #services #myitems li{
        width: 100%;
    }
    #contact form, #contact .link-buttons{
        width: 100%;
    }
}