/* Banner */
#banner {
    text-align: center;
    padding: 20vmin 0 12vmin;
    background-image: url('/img/main-bg.jpg');
    background-size: cover;
    color: var(--text-color);
}

#banner h3 span {
    color: var(--cool-orange);
}

/* What is vesta section */

#what-is-vesta {
    width: 100%;
}

#what-is-vesta .wiv-block {
    display: flex;
    align-items: center;
    gap: 10vmin;
}

#what-is-vesta .wiv-block img {
    width: 10vmin;
    height: 10vmin;
}

#what-is-vesta .wiv-block h3 {
    margin-bottom: 2vmin;
}

/* PLUGINS SECTION */

.pl-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.pl-block {
    width: 47%;
    background: linear-gradient(39deg, rgba(0, 0, 0, 1) 0%, rgba(20, 40, 40, 1) 100%);
    padding: 2vmin;
    border-radius: 1vmin;
    position: relative;
}

.pl-block .pl-price {
    user-select: none;
    font-size: 2vmin;
    font-family: var(--albert-sans);
    position: absolute;
    top: 4vmin;
    right: 4vmin;
    padding: 1vmin;
    border-radius: 0.5vmin;
    font-weight: bold;
    background-color: #ffffff46;
}

.pl-block .pl-logo-title {
    display: flex;
    align-items: center;
    gap: 2vmin;
    margin-bottom: 0.5vmin;
}

.pl-block img {
    width: 7.5vmin;
    height: 7.5vmin;
    border-radius: 1vmin;
}

.pl-block .pl-title {
    font-size: 4.5vmin;
    font-weight: bold;
    text-transform: uppercase;
}

.pl-block .pl-headline {
    font-size: 3vmin;
    opacity: 0.5;
    text-align: center;
}

.pl-block .pl-about {
    margin-top: 3vmin;
    display: flex;
    flex-direction: column;
}

.pl-block .pl-desc {
    font-size: 2.25vmin;
}

.pl-block .pl-info {
    margin-top: 1vmin;
    font-size: 2vmin;
    color: rgb(201, 201, 201);
}

.pl-block .pl-info span {
    text-transform: uppercase;
    color: var(--text-color);
}

.pl-block .pl-link {
    text-align: right;
    width: 100%;
    color: var(--cool-orange);
}

/* ABOUT ME */

#about-me {
    width: 100%;
}

#about-me img {
    width: 25vmin;
    height: 25vmin;
    border-radius: 50%;
}

#about-me .abt-desc {
    font-size: 3vmin;
    width: 80%;
    margin: 4vmin auto 0;
}

/* CONTACT */

.contact-btn {
    font-size: 2vmin;
    padding: 1vmin 2vmin;
    background-color: rgb(240, 182, 22);
    text-transform: uppercase;
    border-radius: 4vmin;
    font-weight: bold;
}

@media screen and (max-width: 1024px){

	/* What is vesta section */

	#what-is-vesta .wiv-block {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5vmin;
	}

	#what-is-vesta .wiv-block h3 {
		margin-bottom: 2vmin;
		text-align: center;
	}

	/* PLUGINS SECTION */

	.pl-list {
		justify-content: center;
	}

	.pl-block {
		width: 90%;
	}
	
}