html{
    font-family: sans-serif;
    box-sizing: border-box;
}

*,
*:before,
*:after{
    box-sizing: inherit;
}

body{
    /* background-color: #0301dd; */
    background: #009FFF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right,#0301dd, #fd5e22);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0301dd, #fd5e22); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    margin: 0;
    overflow-x: hidden;
}

.menu{
    background-color: #40b1e6;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    border-bottom: 1px solid #fff;
    box-shadow: 5px 0 10px rgba(0,0,0,0.6);
}

.menu_items{
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.menu_items li{
    border-radius: 3px;
    margin: 0 5px;
}

.menu_items li a{
    padding: 7px 13px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 2px #030313;
}

.menu_items li:hover{
    background-color: rgb(33, 124, 94);
    transition: 1s;
}

.btn_menu{
    margin-right: 10px;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

ul.show{
    top: 65px;
}

.container{
    background-color: white;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 75px;
    margin-right: 75px;
    height: auto;
}

h1{
    font-size: 1.8rem;
    text-align: center;
    color: #0000ff;
    text-shadow: -3px 1px #030313;
}

main h2{
    /* color: transparent; */
    font-size: 1.7rem;
    -webkit-text-stroke: 1px #fff;
    text-align: center;
    text-shadow: 1px 1px 2px #030313;
}

#titulo{
    text-align: center;
}

main p{
    font-size: 1.25rem;
    text-align: justify;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cta{
    display: inline-block;
    padding: 7px 0;
    width: 100px;
    border: 2px solid #0301dd;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #0301dd;
    background-color: #fff;
    box-shadow: -3px 3px #555, 3px 3px #555, 3px -3px #555, -3px -3px #555;
    transition: all .2s ease;
    cursor: pointer;
}

.cta:hover{
    background-color: #0301dd;
    color: #fff;
    border: 2px solid greenyellow;
    font-weight: bold;
    box-shadow: -3px 3px #6fa3af, 3px 3px #6fa3af, 3px -3px #6fa3af, -3px -3px #6fa3af;
}

.modal-container{
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal{
    width: 60%;
    height: 85%;
    background-color: #abccff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content:  space-evenly;
    position: relative;
    transition: transform 0.5s;
    transform: translateY(0%);
    border-radius: 10px;
}

.close{
    position: absolute;
    top: -12px;
    right: 5px;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #ff104a;
    font-weight: bold;
    color: #fff;
    line-height: 25px;
    cursor: pointer;
    border-radius: 50%;
}

.modal-close{
    transform: translateY(-200%);
} 

form{
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    margin: auto;
    /* background-color: #6fa3af; */
    background: linear-gradient(to bottom, #6fa3af, #a2edff);
}

form label{
	width:90px;
	font-weight:bold;
	display:inline-block;
}

/* form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select */
.f_input
{
	width:450px;
	padding:3px 10px;
	border:1px solid #000ba0;
	border-radius:3px;
	background-color:#f6f6f6;
	margin:8px 0;
	display:inline-block;
}

/* .f_input:focus, .f_label{
    color: #c4c8ff;
    border: solid 2px #c4c8ff;
} */

.f_input:focus{
    background-color: #00043b;
    color: #c4c8ff;
    border: solid 2px #c4c8ff;
}

footer{
    margin-top: 95px;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: linear-gradient(to bottom, #2f789b, #1fb8ff);
    box-shadow: 5px 0 10px rgba(0,0,0,0.6);
}

.text-right{
    display: flex;
    justify-content: center;
    align-items: right;
    font-size: .9rem;
}

.video{
    width: 350px;
    height: 250px;
    border: solid 2px #333;
    border-radius: 3px;
    box-shadow: 3px 3px 5px #00f, -3px 3px 5px #00f, 3px -3px 5px #00f, -3px -3px 5px #00f;
}

@media screen and (min-width: 1115px){
    form{
        width: 650px;
    }
}

@media screen and (max-width: 800px){
    .modal{
        width: 65%;
    }

    form{
        width: 100%;
    }

    /* form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form select */
    .f_input
    {
        width:300px;
        padding:1px 5px;
    }
    
}

@media screen and (max-width: 550px){
    h1{
        font-size: 1.1rem;
        text-shadow: -2px 1px #030313;
    }

    main h2{
        font-size: 1rem;
    }

    main p{
        font-size: 0.8rem;
    }


    form label{
        width:50px;
        font-size: 1rem;
    }
    
    /* form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form select */
    .f_input
    {
        width:250px;
        padding:1px 5px;
    }
}

@media screen and (max-width: 952px){
    .menu_items{
        font-size: .7rem;
    }
}

@media screen and (max-width: 850px){
    .menu{
        height: 45px;
    }

    .btn_menu{
        display: inline-flex;
    }

    .menu_items{
        position: fixed;
        width: 100vw;
        height: calc(100% - 45px);
        background-color: #001;
        top: -100vh;
        text-align: center;
        transition: all .5s;
        flex-direction: column;
    }

    .menu_items li{
        margin: 20px 0 0 0;
        line-height: 30px;
    }

    .menu_items li:hover{
        background: none;
    }

    .menu_items li a{
        font-size: .6rem;
        color: #fff;
    }

    .menu_items li a:hover{
        color: #0301dd;
    }
}

@media screen and (max-width: 850px) and (orientation: landscape){
    .menu_items li{
        margin: 5px 0 0 0;
    }

    .menu_items{
        overflow: scroll;
        height: calc(100% - 45px);
    }
}
