*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.backgrnd{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg, rgba(13,47,79,1) 0%, rgba(0,91,148,1) 40%, rgba(125,222,255,1) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner{
    width: 100%;
    min-height: 60vh;
    background-image: url(images/globe.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10px 8%;
}

.banner h1{
    color: rgb(255, 246, 1);
    text-align: center;
    font-size: 500%;
    margin-top: 12%;
    margin-bottom: 12%;
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
}

nav ul{
    list-style: none;
    width: 100%;
    text-align: right;
    padding-right: 60px;
}

nav ul li{
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
}

.logo{
    width: 180px;
    cursor: pointer;
    background: rgb(255,246,1);
}

.sect{
    /* padding: 10px 8%; */
    min-height: 45vh;
}

.doubles{
    display: flex;
    position: relative;
    width: 100%;
}

.half{
    width: 50%;
    /* padding: 10px 8%; */
    /* padding: 8% 10px 8% 8%; */
}

.content{
    padding: 10px 8%;
    text-align: center;
}

.vert{
    margin-top: 20%;
    margin-bottom: 20%;
}
.vert h1{
    font-size: 400%;
    font-weight: 600;
    line-height: 85px;
    margin-bottom: 25px;
}

.light{
    color: #fff;
    /* max-width: 620px; */
}

.blue{
    background: rgb(13, 47, 79);
    color: rgb(135, 222, 255);
}

.flex_parent{
    display: flex;
}
.jc_center{
    justify-content: center;
}

button{
    text-transform: uppercase;
    font-size: 250%;
    font-family: trade gothic;

    background: #0b2338;
    color: #87deff;
    border: 1px;
    border-color: #0b2338;
    padding: 10px 20px;
}
button:hover{
    background: #fff;
    color: #0b2338;
    border: 1px;
    border-color: #87deff;
    text-decoration: underline;
}
