body{background-color: var(--beige-light);}


.navbar{
    padding: 20px 0px;
    height: 60px;
    display: flex;
    position: relative;
    align-items: center;
    font-size: 20px;
    z-index: 10;
}
.navbar .email{
    margin-top: 10px;
}
.navbar svg{
    height: 55px;
}
.navbar-img-section{
    margin: auto;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: 45px;
    width: 80%;
    height: 60px;
}
.navbar-img-section a{
    color: var(--green);
    text-decoration: none;
}
.navbar .navbar-img-section{
    width: max-content;
    height: 100%;
    margin: 0;
    margin-top: 10px;
    margin-right: 120px;
    margin-left: auto;
    align-items: right !important;
}
.navbar .navbar-img-section a{
    padding: 0 30px;
}
.center-elements, .center-elements-vertical{
    width: 75%;
    position: relative;
    margin: auto;
    margin-bottom: 20px !important;
}

.center-elements{
    display: flex;
    justify-content: space-evenly;
}

.center-elements-vertical .element{
    margin-top: 100px;
    display: flex;
    align-items: center;
}
.center-elements-vertical .element:nth-child(2){
    flex-direction: row-reverse;
    text-align: right;
}
.center-elements-vertical .element:nth-child(2) .demo{
    margin-left: 60px;
}
.center-elements-vertical .element .demo{
    max-width: 200px;
    width: max-content;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-right: 60px;
    min-width: 150px;
}
.center-elements-vertical .element .description{
    width: 600px;
}
.center-elements-vertical .element .demo svg{
    width: 100%;
}

.img-section {
    position: relative;
    height: 102vh;
    min-width: 560px;
    background-color: var(--beige);
    top: -120px;
    border-radius: 4px;
    box-shadow: var(--shadow-properties-light);
    -webkit-box-shadow: var(--shadow-properties-light);
    -moz-box-shadow: var(--shadow-properties-light);
}
.overflow-stopper{
    overflow: hidden;
    height: 100%;
    position: relative;
    top: -100px;
}

.img-section img {
    position: relative;
    margin: auto;
    width: 380px;
    display: block;
    bottom: -142px;
}

.img-section .attribution {
    margin-top: 30px;
    position: relative;
}

.cta {
    position: relative;
    width: 100%;
}

.cta .introduction{
    margin-top: 80px;
}
.cta .introduction, .cta .description{
    font-size: 26px;
    color: rgb(109, 109, 109);
}
.cta .tagline {
    font-size: 92px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 95%;
}
.cta .description{
    font-size: 30px;
}
.cta .join{
    margin-top: 30px;
    width: 150px;
    height: 50px;
    border-radius: 4px;
    border: none;
    background-color: var(--green);
    color: white;
    font-size: 16px;
    box-shadow: var(--shadow-properties);
    -webkit-box-shadow: var(--shadow-properties);
    -moz-box-shadow: var(--shadow-properties);
    cursor: pointer;
    color: var(--beige-light);
}

#star{
    fill: var(--beige-light);
}
#floating-star-1{
    fill: var(--beige);
}
#floating-star-1-svg{
    position: absolute;
    top: 140px;
    height: 200px;
    right: 70px;
    z-index: -1;
}
.sun-rays {
    height: 355px;
    left: -110px;
    position: absolute;
    overflow: hidden;
    bottom: 0px;
    width: 150%;
}
.sun-rays svg {
    height: 1000px;
    width: 120%;
}
.example-grades{
    width: max-content;
    left: -90px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-properties-medium);
    position: absolute;
    background-color: white;
    z-index: 22;
    bottom: 100px;
    font-size: 20px;
    display: flex;
    align-items: center;
    color: rgb(0, 65, 0);
}
.example-grades span{
    line-height: 18px;
}
.example-grades i{
    font-size: 26px;
    
}
@media screen and (max-width:1600px) {
    .center-elements{
        width: 90%
    }
    .cta  .tagline{
        font-size: 72px
    }
}
.locations{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: auto;
    justify-content: space-around;
    margin-top: 150px;
    width: min-content;
}
.locations .location{
    background-color: white;
    margin-top: -15px;
    padding: 20px;
    width: 200px;
    border-radius: 20px;
    box-shadow: var(--shadow-properties-light);
    -webkit-box-shadow: var(--shadow-properties-light);
    -moz-box-shadow: var(--shadow-properties-light);
}
.locations .location:nth-child(2){
    margin-left: 180px;
    z-index: 22;
}
.locations svg{
    height: 100px;
    margin: auto;
    display: block;
}
.locations .location h4{
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    margin-bottom: 0px;
}

.counter{
    text-align: center;
}
.counter h3{
    font-size: 60px;
    margin-bottom: 25px;
}
.counter p{
    color: rgb(72, 72, 72);
}

.content-header{
	background: linear-gradient(-45deg, rgb(140, 0, 255), rgb(0, 221, 255));
	background-size: 400% 400%;
    width: 100%;
    position: relative;
    height: 90%;
    top: -100px;
	animation: animate 15s ease infinite;
}

.hidden-op{
    background-color: transparent;
    box-shadow: none;
}

@keyframes animate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media screen and (max-width: 1200px){
    .email{
        display: none;
    }
    .img-section{
        min-width: 500px;
    }
}

@media screen and (max-width: 1050px){
    .locations{
        flex-direction: row;
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }
    .center-elements{
        flex-direction: column;
    }
    .img-section .navbar-img-section{
        display: none;
    }
    .img-section{
        height: 40vh;
        top: 40px;
    }
    .overflow-stopper{
        top: 0px;
    }
    .locations .location:nth-child(2) {
        margin-left: 0px;
    }
    .sun-rays{
        margin: auto;
        width: 790px;
        position: absolute;
        left: 50%;
        display: none;
        transform:translateX(-50%);
    }
    .cta .introduction {
        margin-top: 30px;
    }
    .counters{
        flex-direction: row;
        margin-top: 120px;
    }
    .features .element{
        flex-direction: column !important; 
        text-align: center !important;
    }
    .center-elements-vertical .element .description {
        width: unset;
    }
}

@media screen and (max-width: 800px){
    .cta{
        text-align: center;
    }
    .cta .tagline{
        font-size: 56px;
    }
    #floating-star-1-svg{
        display: none;
    }
    .cta .introduction, .cta .description {
        font-size: 22px;
    }
    .locations{
        flex-direction: column;
        top: 0;
        transform: none;
    }
    .locations .location{
        width: 75%;
        margin: auto !important;
        margin-bottom: 40px !important;
    }
    .img-section{
        background-color: transparent;
        box-shadow: none;
        height: max-content;
        min-width: 0px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .overflow-stopper{
        overflow: initial;
    }
    .counters{
        margin-top: 0px;
        flex-wrap: wrap;
    }
    .counters .counter{
        margin: 0px 24px;
    }
    .dissapear-later{
        display: none;
    }
}

/* .bar-1{
    animation-name: grow;
    animation-duration: 2s;
    transform: scaleX(0);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}
.bar-2{
    animation-name: grow;
    animation-duration: 2s;
    animation-delay: .6s;
    transform: scaleX(0);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}
.bar-3{
    animation-name: grow;
    animation-duration: 2s;
    animation-delay: 1s;
    transform: scaleX(0);
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.start-animation{
    animation-play-state:running;
}

@keyframes grow {
    from{
        transform: scaleX(0);
    }
    to{
        transform: scaleX(1);
    }
} */