.enter-area{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #625dfa;
    height: 60vh;
    margin: 0 auto;
}

.enter{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: 0 auto;
}

.img-area{
    text-align: center;
}

.img-area img{
    width: 400px;
    transition: all .5s;
}

.text-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    color: white;
}

.text-area img{
    width: 50px;
    margin-bottom: 20px;
}

.text-area h4, .text-area p{
    color: whitesmoke;
}

.btn1{
    background-color: yellow;
    margin-top: 5px;
    transition: all .5s;
    border: 0;
    padding: 13px 40px;
    font-size: 15px;
    border-radius: 30px;
}

.btn1 a{
    color: #625dfa;
    border: 1px solid transparent;
}

.btn1:hover{
    background-color: white;
}

.course-area{
    text-align: center;
}

.course-area-header{
    letter-spacing: 3px;
}

.courses{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    transition: all .5s;
}

.course{
    margin-top: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E5E5;
    padding: 30px;
    border-radius: 5px;
}

.course-header{
    margin: 10px auto;
    color: #625dfa;
}

.course-icon img{
    width: 70px;
    transition: all .5s;
}

.course:hover img{
    transform: translateY(-10px);
}

.info-area{
    margin-top: 100px;
    background-color: #625dfa0f;
    padding: 50px 0;

}

.info{
    display: grid;
    grid-template-columns: 500px 1fr;
    grid-gap: 10px;
}

.info-img{
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
}

.info-img-pc{
    width: 450px;
}

.info-area ul{
    list-style-type: none;
    padding: 0;
}

.info-area i{
    color: #625dfa;
}

.info-img-mobil{
    width: 100px;
    display: none;
}

.info-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text-mobil{
    display: none;
}

.info-p{
    margin: 20px 0 10px 0;
}



.study-area{
    text-align: center;
}

.studys{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    transition: all .5s;
}



.contact{
    background-color: #5d58e4;
    padding: 30px;
    color: white;
    margin-top: 100px;
}

.contact-area{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-top: 30px;
}

.map-area iframe{
    border-radius: 5px;
    width: 100%;
    height: 70%;
}

.contact-area label{
    display: block;
}

.contact-area input{
    background-color: transparent;
    border: none;
    width: 100%;
    color: white;
}

.name-mail{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-bg{
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.146);
    border-radius: 5px;
}

.form-fieldset{
    margin: 10px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.146);
    border-radius: 5px;
}

.message-area{
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.146);
    border-radius: 5px;
}

.contact-area textarea{
    background-color: transparent;
    border: none;
    color: white;
    width: 100%;
}

.contact-area button{
    margin: 10px 0;
    border-radius: 5px;
    width: 200px;
    padding: 10px;
    color: white;
    background-color: rgba(255, 255, 255, 0.146);
    border: 1px solid transparent;
    transition: all .5s;
}

.contact-area button:hover{
    background-color: rgba(255, 255, 255, 0.919);
    color: #5d58e4;
}


@media screen and (max-width: 1000px) {
    .enter{
        width: 90%;
    }

    .contact-area{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .courses{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }

    .info{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    
    .info-img-pc{
        display: none;
    }

    .info-img-mobil{
        display: inline;
    }

    .info-text-pc{
        display: none;
    }

    .info-text-mobil{
        display: inline;
    }

    .info-text{
        margin-top: 10px;
    }
}

footer{
    background-color: #625dfa;
    color: white;
    padding: 20px 0;
}

.social-media a{
    color: white;
    margin: 0 5px;
    transition: all .5s;
}

.social-media a:hover{
    color: yellow;
}

.powered{
    text-align: right;
}

.powered a{
    color: yellow;
    transition: all .5s;
    font-weight: bolder;
}

.powered a:hover{
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
    .img-area img{
        width: 300px;
    }
}

@media screen and (max-width: 879px) {
    .text-area p{
        display: none;
    }

    .img-area img{
        width: 250px;
    }
}

@media screen and (max-width: 768px) {
    .studys{
        grid-template-columns: repeat(1, 1fr);
    }

    footer{
        text-align: center;
    }

    .powered{
        text-align: center !important;
        margin-top: 5px;
    }
}

@media screen and (max-width: 470px) {
    .enter-area{
        height: 50vh;
    }

    .enter{
        display: inline;
        grid-template-columns: repeat(1, 1fr);
        width: 80%;
    }

    .img-area img{
        width: 100px;
        display: none;
    }

    .btn1{
        font-size: 12px;
        padding: 10px 20px;
    }

    .name-mail{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}