/* header section */
main{
	background: var(--gradient2);
    background-attachment: fixed;
}

#main{
	background: var(--transparent);
	min-height: 33vh;
	display: flex;
}

#main .title.sub{
	text-shadow: var(--text-shadow);
	font-size: 2rem;
	color: white;
	line-height: 1.25em;
	margin: 0;
}

section.first{
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.75));
    backdrop-filter: blur(1px);
    color: inherit;
}

section.first .title{
	color: var(--blue2);
	text-shadow: var(--text-shadow-light2);
}

section.first .container{
	margin-top: 3rem;
	margin-bottom: -6rem;
}
	section.first .container img{
		width: 100%;
		align-self: flex-start;
	}

section.second .container{
	justify-content: center;
	z-index: 9;
	position: relative;
}

	section.second .box.third{
		border: 1px solid var(--gray3);
	    border-radius: var(--radius-big);
	    padding: 3rem;
	    background-color: rgba(255,255,255,0.75);
	    backdrop-filter: blur(0.25rem);
	    margin: 0.5rem;
	    display: flex;
	    justify-content: center;
	}

	section.second .box.third .title{
		color: var(--blue2) !important;
		text-shadow: var(--text-shadow-light2)
	}

section.unleashed .block{
	box-sizing: border-box;
    width: 100%; 
    display: flex; align-items: center;
    margin-bottom: 6rem;
}

section.unleashed .block:last-of-type{
    margin-bottom: 1.5rem;
}

section.unleashed .block:hover .figure{
	background-color: rgba(255,255,255,0.775);
}

section.unleashed .figure{
	width: 30%;
	min-width: 24rem;
	padding: 2rem;
    border: 1px solid var(--gray3);
    border-radius: var(--radius-big);
    background-color: rgba(255,255,255,0.75);
    backdrop-filter: blur(1rem);
    z-index: 3;
    margin-top: -1.5rem;
    margin-left: -9rem;
    transition: var(--ease);
}

section.unleashed .block.left{
	flex-direction: row-reverse;
}

section.unleashed .block.left .figure{
	margin-top: -1.5rem;
	margin-left: 0;
	margin-right: -9rem;
}

section.unleashed .title.sub{
	font-size: 1.75rem;
    color: var(--blue2);
    text-shadow: var(--text-shadow-light2);
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/*section.unleashed .cover{
	position: relative;
    margin: auto; margin-top: -4.5rem;
    background: var(--l-gray);
    height: 2rem; width: 5rem;
    padding: 2rem; padding-top: 0;
    z-index: 1;
}

section.unleashed .list{
	display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
    justify-content: center;
} 

section.unleashed .list>div:hover .material-icons{
    color: var(--l-green);
}

section.unleashed .list>div:hover{
    background-color: var(--l-gray2);
}*/

section.unleashed .screenshot{
	width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: var(--radius-big);
    position: relative;
    z-index: 3;
}
	section.unleashed .screenshot img{
		width: 100%;
		margin-bottom: -5px;
	}

section.unleashed .divider.wide{
	display: none;
	margin-top: 4rem;
    margin-bottom: 6rem;
}

section.quote .video-wrapper{
	border-radius: var(--radius-big);
	background-color: var(--gray2);
    overflow: hidden;
    margin-top: -6rem;
    box-shadow: var(--shadow);
}

section.feature .textwrapper .title{
	background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
		.quote button, .feature button{
		box-shadow: var(--shadow-light);
		margin-top: 0.75rem;
		position: relative;
		z-index: 9;
	}

section.last{
	background: var(--transparent);
}


/*popup viewer*/
.view{
	position: fixed;
    height: 100%;
    width: 100%;
    background-color: var(--d-gray1);
    opacity: 0.55;
    z-index: 16;
    transition: opacity var(--ease);
}

.popup.webinar{
    position: fixed;
    width: 35rem;
    z-index: 99;
    margin: 0;
    top: calc(50vh - 15rem);
    left: calc(50% - 17.5rem);
    padding: 0;
    overflow: hidden;
}
	.popup.webinar img{
		width: 100%;
		margin-bottom: -5px;
	}

/*media queries*/
@media screen and (max-width: 1020px), screen and (max-device-width: 1020px){
	section.unleashed .figure{
		min-width: 22rem;
		padding: 0.75rem;
		margin-left: -4.5rem;
	}

	section.unleashed .block.left .figure{
	margin-right: -4.5rem;}

	section.unleashed .screenshot{
    margin: auto;}

    section.unleashed .title.sub{
	font-size: 1.5rem;}
}

@media screen and (max-width: 770px), screen and (max-device-width: 770px) {
	#main>.textwrapper{
		margin: auto 1.5rem;
	}

	section.unleashed .figure, section.unleashed .block.left .figure {
	    width: 100%;
	    margin-top: 0; margin-left: 0; margin-right: 0;
	    box-sizing: border-box;}

	section.unleashed .block, section.unleashed .block.left{
		flex-direction: column-reverse;
		margin-bottom: 0;}

	section.unleashed .screenshot{
		margin-top: -0.5rem;
	}

	section.unleashed .divider.wide{
		display: block;}
}

@media screen and (max-width: 550px), screen and (max-device-width: 550px){
    .view, .popup.webinar{
    	display: none;
    }

	section.first .container{
		margin-bottom: -2.5rem;
	}
}