.vogue__header{
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/topography.svg");
    border-bottom:20px solid #03a9f4 ;
}
.vogue__header__anicontent {
	position: relative;
}

.vogue__header__anicontent h2 {
	color: #fff;
	font-size: 6vw;
    white-space: nowrap;
	position: absolute;
	transform: translate(-50%, -50%);

}

.vogue__header__anicontent h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #03a9f4;
}

.vogue__header__anicontent h2:nth-child(2) {
	color: #03a9f4;
	animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}



.about__section__aboutus{
    max-width: 1300px;
    margin:50px auto;
    display: flex;
}

.about__section__l{
    flex-basis: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about__section__r{
    flex-basis: 50%;
    display: flex;
    align-items: center;
    padding: 50px;
    
}

.about__section__r  h4{
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
}

.about__section__r  h1{
    font-size: 2em;
}
.about__section__r button{
    padding: 9px 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin-top: 10px;
    font-size: 1.2em;
    background-color: #65acff;
    color: #fff;
}

.about__vision{
    max-width: 1300px;
    margin: 50px auto;
    display: flex;
}
.about__vision__l{
    flex-basis: 50%;
    padding: 50px;

}
.about__vision__l  h4{
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
}

.about__vision__l  h1{
    font-size: 2em;
}
.about__vision__l button{
    padding: 9px 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin-top: 10px;
    font-size: 1.2em;
    background-color: #65acff;
    color: #fff;
}
.about__vision__r{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid--vo{
    max-width: 1300px;
    margin: auto;
    text-align: center;
    padding: 50px 20px;
}
.grid-vo{
    display: grid;
    grid-template-columns: repeat(auto-fill, max(260px));
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    margin: auto;
   
}

 .grid-vo div{
    text-align: center;
    color: white;
    padding: 10px;
    background-color: #65acff;
    border:  1px solid #65acff;
    border-radius: 10px;
    padding: 10px;
 }


 .grid-vo p{
    color: #fff;
 }

 .vogue__btn{
    background-color: #65acff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin: 0 10px;
    font-size: 1em;
    margin-bottom: 10px;
    cursor: pointer;
 }




@media screen and (max-width:850px) {
    .about__section__aboutus{
        flex-direction: column-reverse;
    }
    .about__section__r{
        padding: 20px;
    }
    .about__vision{
        flex-direction: column;
    }
    
}
