/* COLORS */

#colors {
color: #596cdc;
color: #e6eef6;
color: #141d2b;
color: #80d4d0;
color: #204898;
/* new */
color: #e02929;
color: #286075;
color: #141d2b;
}


/* FONTS */

/* font-family: 'Cabin', sans-serif; */



aside {
    padding: 1em;
    margin-left: 3rem;
    margin-right: 3rem;
    
}

body, html {
    margin: 0px;
    font-family: 'Cabin', sans-serif;
    color: #050608;
}

fieldset {
    background-color: white;
    border: none;
    background-image: url('textures/tex2res5.png');
}

h1 {
    font-family: 'Cabin', sans-serif;
    font-weight: bold;
    font-size: 3rem;
}

h2 {
    font-weight: bolder;
    font-size: 2rem;
}

html {
    overflow-x: hidden;
}



input {
    padding:8px;
    display:block;
    border:none;
    border-bottom:1px solid #ccc;
    width:100%;
    background-color: inherit;
    font-size: 18px;
}

li {
    font-size: 1.5em;
}

nav {
    
    width: 100vw;
    float: left;
    padding: auto;
    font-family: 'Cabin', sans-serif;
    font-size: 1.25rem;
}

nav ul {
    list-style-type: none; 
    overflow: hidden;
}

nav ul li {
    float: left;
    display: block;
    margin: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 26px;
}

nav ul li a:hover {
    text-decoration: underline;
}

p {
    font-family: 'Cabin', sans-serif;
    font-size: 1.5rem;
}



/* Classes */

.black {
    background-color: black;
    color: goldenrod;
}

.blue {
    background-color: #286075;
    color: #e6eef6;
}

.box {
    max-width: 600px;
    max-height: 600px;
    padding: 0em 5em;
    /* box-shadow: 2px 2px 2px #141d2b; */
    -webkit-clip-path: polygon(0 7%, 100% 0%, 88% 93%, 0 89%);
    clip-path: polygon(0 7%, 100% 0%, 88% 93%, 0 89%);
    transition-duration: 2s;
    
    transition-timing-function: linear;
    
}

.box:hover {
    -webkit-clip-path: polygon(0 0, 97% 6%, 92% 98%, 0% 100%);
    clip-path: polygon(0 0, 97% 6%, 92% 98%, 0% 100%);
    transition-duration: 2s;
    
    transition-timing-function: linear;
}

.box2 {
    max-width: 600px;
    max-height: 600px;
    padding: 0em 5em;
    -webkit-clip-path: polygon(0 0, 97% 6%, 92% 98%, 0% 100%);
    clip-path: polygon(0 0, 97% 6%, 92% 98%, 0% 100%);
    transition-duration: 2s;
    
    transition-timing-function: linear;
}

.box2:hover {
    -webkit-clip-path: polygon(0 7%, 100% 0%, 88% 93%, 0 89%);
    clip-path: polygon(0 7%, 100% 0%, 88% 93%, 0 89%);
    transition-duration: 2s;
    transition-timing-function: linear;
}

.box3 {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
    margin-bottom: -2em;
}

.button {
    display: inline-block;
    color: white;
    border: solid 2px white;
    background-color: inherit;
    font-family: 'Cabin', sans-serif;
    font-size: inherit;
    padding: .5em 1em;
    text-decoration: none;
}

.buttonpoly {
    background-color: white;
    clip-path: polygon(0 8%, 100% 0%, 91% 85%, 8% 91%);
    color: #e02929;
    padding: .5em 1em;
    text-decoration: none;
    margin-top: .3em;
    display: inline-block;
}

.buttonpoly:hover {
    clip-path: polygon(14% 19%, 93% 23%, 100% 100%, 18% 86%);
    transition-duration: 2s;
}

.buttonpoly2 {
    background-color: white;
    clip-path: polygon(14% 19%, 93% 23%, 100% 100%, 18% 86%);
    color: #141d2b;
    /*padding: .75em 1.25em;*/
    padding-left: 1.5em;
    padding-right: 1.25em;
    padding-top: 1em;
    padding-bottom: .75em;
    text-decoration: none;
    margin-top: .3em;
    display: inline-block;
}

.buttonpoly2:hover {
    clip-path: polygon(0 8%, 100% 0%, 91% 85%, 8% 91%);
    transition-duration: 2s;
}

.buttonpoly3 {
    background-color: #e6eef6;
    clip-path: polygon(0 26%, 100% 18%, 85% 89%, 7% 96%);
    color: #286075;
    /*padding: 1em .75em 1.25em 1.25em;*/
    padding-top: 1em;
    padding-bottom: .75em;
    padding-right: 1.25em;
    padding-left: 1.25em;
    text-decoration: none;
    margin-top: .3em;
    display: inline-block;
}

.buttonpoly3:hover {
    clip-path: polygon(14% 19%, 93% 23%, 100% 100%, 18% 86%);
    transition-duration: 2s;
}

.button:hover {
    background-color: white;
    color: transparent;
    transition: 30ms;
}

.center {
    text-align: center;
    z-index: 1;
}

.engorge {
    font-size: 7em;
}

@media only screen and (max-width: 600px) {

    .engorge {
    font-size: 2em;
    }
}

.first {
    order: -1;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-around;
}

.flex2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.flexbasis1 {
    flex-basis: 400px;
    flex-grow: 1;
    flex-shrink: 1;

}

.flexbasis2 {
    
    flex-grow: 3;
    flex-shrink: 1;
    
}

.flexbasis3 {
    flex-grow: 2;
    flex-shrink: 1;
    flex-basis: 50%;
}

.flexcolumn {
    display: flex;
    flex-direction: column;
}

.form {
    background-color: white;
    min-height: auto;
    margin-top: -5em;
    margin-bottom: -5em;
    box-shadow: 5px 5px 10px #141d2b;
    padding: 3em 2em;
    color: black;
    background-image: url(textures/tex2res5.png);
}

.formbutton {
    background-color: white;
    padding: 1em 2em;
    font-size: 16px;
    font-family: 'Cabin', sans-serif;
}

@media only screen and (max-width: 600px) {
    .form {
        background-color: white;
    min-height: auto;
    margin-top: 0em;
    margin-bottom: 0em;
    box-shadow: 5px 5px 10px #141d2b;
    padding: 3em 2em;
    }
}

.gradient {
    background: linear-gradient(-45deg, 
    rgb(219, 95, 110), #E71D36, #2EC4B6, rgb(172, 187, 185));
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

.leftborder {
    border-left: solid 4px #dadad2;
    padding-left: .75em;
}

.leftborderdark {
    border-left: solid 4px #141d2b;
    padding-left: .75em;
}

.margin {
    margin: auto;
    
}

.marginhoriz {
    margin-left: 2em;
    margin-right: 2em;
}

.offset1 {
    margin-top: -2em;
    margin-left: -6em;
    z-index: 1;
}

.offset2 {
    align-self: flex-end;
    margin-right: -6em;
    margin-top: 2em;
    z-index: 2;
    order: 1;
}

.offset3 {
    margin-top: -2em;
    margin-left: -6em;
    z-index: 3;
}

.pad2 {
    padding: 2rem;
}

.pad-bottom {
    padding-bottom: 2em;
}

.purple {
    background-color: #596ddc;
    z-index: 1;
}

.red {
    background-color: #e02929;
    color: white;
}

.rightborder {
    border-right: solid 4px white;
    padding-right: .75em;
}

.texture {
    /*background-image: url('textures/grilled.png');*/
    background-image: url('images/joanna-kosinska-433799-unsplash.jpg');
    background-repeat: repeat;
    background-size: 100%;
}

.textleft {
    text-align: left;
    width: 600px;
    border-left: solid 8px white;
    padding-left: .75em;
    
}

.textright {
    text-align: right;
    width: 600px;
    
    padding-right: 5.75rem;
}

@media only screen and (max-width: 600px) {
    .textleft {
    text-align: center;
    width: 300px;
    border-left: none;
    padding: .75em;
    }
}

.textwhite {
    color: white;
}

.torquoise {
    background-color: #80d4d0;
}

.yellow {
    background-color: #f4d22e;
    color: #141d2b;
}

/* IDs */

#errors {
    display: none;
}

#mountainrange {
    background-image: url('images/mtnbg.jpg');
    width: 100vw;
    height: 90vh;
   /* background-size: 100%; */
    background-repeat: no-repeat;
    
}

#success {
    display: none;
}

#topbg {
    background-image: url('images/steve-johnson-643285-unsplash.jpg');
    width: 100vw;
    height: 90vh;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    #topbg {
        background-image: url('images/steve-johnson-643285-unsplash.jpg');
    width: 100vw;
    height: 30vh;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 1;
    }
}


