* {
	box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Maven Pro', sans-serif;
}

html {
    font-size: 10px;
}

.main {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 600px;
    background: url(../img/main-bg.jpg);
    background-size: cover;
    position: relative;
    height: 100vh;
}

.main-overlay, .call-to-action-overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(150deg, rgb(136, 211, 206) 0%, rgb(110, 69, 226) 100%);
    opacity: .8;
    z-index: 1;
}

.logo img{
    width: 18rem;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 15vh;
    position: relative;
    z-index: 2;
}

.menu{
    width: 70%;
}

.menu ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    font-size: 1.4rem;
}

.menu-link{
    color: white;
    text-decoration: none;
}

.menu-link:hover{
    border-bottom: 1px solid white;
}

.get-started-btn{
    margin-left: 6rem;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 100px;
    text-transform: uppercase;
} 

.main-text{
    z-index: 1;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.main-text span{
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.main-text p{
    font-size: 1.4rem;
    width: 40rem;
    line-height: 2;
}

.main-text h1 {
	font-size: 6rem;
	margin: 0.5rem;
	font-weight: 500;
}

.main-text span::after, .main-text span::before{
    content: '';
    width: 20px;
    height: 1px;
    background-color: white;
    display:inline-block;
    vertical-align: middle;
    margin: 0 10px;
    z-index: 1000;
}

.main-arrow{
    z-index: 2;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-down{
    background-color: white;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    box-shadow: 0px 0px 18px rgba(204, 204, 204, 0.5);
}

/* Plan */

.table {
	background-color: #F4F4F4;
	padding: 10rem;
}

.table-header {
	text-align: center;
	margin-bottom: 5rem;
}

.table-header span {
	color: #9fa4af;
	text-transform: uppercase;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	display: inline-block;
}

.table-header span::before, .table-header span::after {
	content: '';
	width: 20px;
	height: 1px;
	background-color: #6e45e2;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}

.table-header h2 {
	color: #4f4f6f;
	font-size: 4rem;
	font-weight: 500;
	margin: 0;
}

.table-header p {
	font-size: 1.5rem;
	display: inline-block;
	width: 35rem;
	line-height: 1.5;
	color: #9fa4af;
}

.price-tags {
	display: flex;
	justify-content: space-around;
	align-items: stretch;
}

.price-tag {
	border: 0.1rem solid #EDEDED;
	background-color: #fff;
	border-radius: 2rem;
	padding: 6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
    width: 35rem;	
    text-align: center;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.price-tag:hover {
	box-shadow: 0px 0px 60px 10px rgba(204, 204, 223, 0.71);
    cursor: pointer;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
} 

.price-tag span {
	font-size: 1.4rem;
	font-weight: 500;
	color: #9fa4af;
	text-transform: uppercase;
	margin-top: 3rem;
}

.price-tag h3 {
	font-weight: 500;
	margin: 1rem;
	font-size: 4rem;
	color: #4f4f6f;
}

.price-tag h3 sup {
	font-size: 1.4rem;
	vertical-align: super;
	margin-right: 0.5rem;
}

.price-tag p {
	color: #9fa4af;
	font-size: 1.4rem;
}

.price-tag img {
	width: 9rem;
}

.price-btn {
	background-color: #fff;
	border: 1px solid #4f4f6f;
	color: #4f4f6f;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 700;
	padding: 1.4rem 4rem;
	margin: 2rem auto 0;
	border-radius: 100px;
    box-shadow: 0px 0px 15px 2px rgba(204.204.223.0.5);
    transition: 0.2s;
}

.price-btn:hover {
	background-color: #6e45e2;
	color: #fff;
	box-shadow: none;
	cursor: pointer;
}

/* CTA */

.call-to-action {
	padding: 15rem;
	text-align: center;
	background: url(../img/cta-bg.png) no-repeat center;
    color: #fff;
    position: relative;
}

.wrap {
    position: relative;
    z-index: 2;
}

.call-to-action span {
	font-size: 1.5rem;
	text-transform: uppercase;
    font-weight: 500;
}

.call-to-action h4 {
	font-weight: 500;
	font-size: 5rem;
    margin: 1rem auto 2rem;
}

.cta-btn {
	display: inline-block;
	border: none;
	background-color: #fff;
	width: 20rem;
	height: 5rem;
	font-size: 1.4rem;
	text-transform: uppercase;
	font-weight: 700;
	margin: 1rem;
    border-radius: 100px;
	transition: 0.5s;
}

.call-to-action-overlay {
    opacity: .3;
    animation: cta-anim 3s infinite linear;
}

@keyframes cta-anim{
    0%{
        filter: hue-rotate(0deg);
    }
    100%{
        filter: hue-rotate(360deg);
    }
}

.cta-btn:hover {
	background-color: #6E45E2;
	cursor: pointer;
}

/* Footer */
.footer-wrap {
	display: flex;
	justify-content: center;
}

.footer {
    width: 90%;
    height: 10vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-menu {
	width: 50%;
}

.footer-menu ul {
	display: flex;
	justify-content: space-around;
	list-style: none;
}

.footer-menu-link {
	font-size: 1.4rem;
	text-decoration: none;
	color: #6a6a77;
	font-weight: 500;
}

.footer-get-started-btn {
	margin-left: 6rem;
	border: none;
	color: #fff;
	background-color: #6E45E2;
	padding: 10px 20px;
	border-radius: 100px;
	text-transform: uppercase;
}

/* Line */
.line {
	display: block;
	width: 90%;
	height: 1px;
	background-color: #333;
	margin: 1rem auto;
}

/* Legal */
.legal {
	padding: 0 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copy {
	font-size: 1.4rem;
	color: #6a6a77;
	margin-left: 1rem;
}

.social-ico a {
	color: #6a6a77;
	font-size: 1.4rem;
	display: inline-block;
	margin-right: 1rem;
}

/*  */
.m-menu-link {
	color: #fff;
	font-size: 3rem;
	display: none;
}

.m-menu {
	margin: 0;
	padding: 0;
	position: fixed;
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	list-style: none;
	font-size: 3rem;
	z-index: 5;
	line-height: 3;
	background-image: linear-gradient(150deg, rgb(136, 211, 206) 0%, rgb(110, 69, 226) 100%);
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: 0.2s;
}

.active {
	transform: translateX(0%);
}

.close-menu {
	position: fixed;
	font-size: 5rem;
	font-weight: 900;
	color: #fff;
	right: 5rem;
	top: 0;
}

.close-menu {
    cursor: pointer;
}
