*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    --purple: #7851A9;
    --white: #EDE7F6;
    --black: #444;
    color: var(--black);
    font-family: 'poppins';
}
@font-face {
    font-family: 'poppins';
    src: url('../fonts/poppins.ttf');
}

/* header */
header{
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    height: 65px;
    border-bottom: 5px solid var(--white);
    align-items: center;
}
header h1{
    color: var(--purple);
}
header ul{
    display: flex;
    gap: 10px;
}
header ul li{
    padding: 10px 15px;
    border-radius: 10px;
    transition: all .2s linear;
}
header ul li:hover{
    color: var(--white);
    background-color: var(--purple);
}
header svg{
    width: 1.6rem;
    height: 1.6rem;
    fill: var(--black);
}
nav{
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: all 1s;
}
nav li{
    padding: 15px 20px;
    border-bottom: 1px solid var(--white);
}
nav li:hover{
    background-color: var(--purple);
    color: var(--white);
}
.show-nav{
    max-height: 336px;
    height: fit-content;
    transition: all 1s;
}
@media (min-width: 900px) {
    header span{
        display: none;
    }
    nav{
        display: none;
    }
}
@media(max-width: 900px){
    header ul{
        display: none;
    }
    header span{
        display: flex;
    }
}
/* footer */
footer{
    background-color: var(--white);
}
footer svg{
    width: 2rem;
    height: 2rem;
}
footer .external-links{
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--black);
}
footer svg:hover{
    fill: var(--purple);
}
@media(max-width: 600px){
    footer svg{
        width: 1.6rem;
        height: 1.6rem;
    }
}
footer .internal-links{
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid var(--black);
    justify-content: space-between;
}
footer .internal-links p{
    padding: 10px 20px;
    font-weight: bold;
}
footer .internal-links li{
    padding: 10px 20px;
}
footer .internal-links li:hover{
    color: var(--purple);
}
@media (max-width: 850px) {
    footer .internal-links{
        padding: 10px 0;
        flex-direction: column;
    }
}
footer .support-links{
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: center;
}
footer .support-links a{
    color: var(--purple);
    display: flex;
}
footer .support-links img{
    width: 2rem;
    height: 2rem;
}

/* home */
.hero-home{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 40px;
    border-bottom: 5px solid var(--white);
}
.hero-home h1{
    margin: 40px 20px;
    margin-bottom: 30px;
    text-align: center;
}
.hero-home h1 span{
    color: var(--purple);
}
.hero-home form{
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-home form button{
    width: 50px;
    height: 50px;
    background-color: var(--purple);
    border-radius: 0 5px 5px 0;
}
.hero-home form input{
    height: 50px;
    width: calc(100% - 50px);
    max-width: 400px;
    border-radius: 5px 0 0 5px;
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 17px;
    border: 1px solid var(--white);
    background-color: var(--white);
}
.hero-home form button{
    display: flex;
    align-items: center;
    border: none;
    justify-content: center;
}
.hero-home form button svg{
    height: 30px;
    width: 30px;
    fill: var(--white);
}
.image-gallery-home {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 5px solid var(--white);
}
.image-gallery-home .img {
    width: 18%;
    height: auto;
    border-radius: 30px;
    border: 10px solid var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    overflow: hidden;
}
.image-gallery-home .img img{
    width: 100%;
    display: block;
    transition: transform .4s;
}
.image-gallery-home .img img:hover{
    transform: scale(1.3);
    transform-origin: 50% 50%;
}
@media (max-width: 800px) {
    .image-gallery-home .img{
        width: 28%;
    }
}
@media (max-width: 600px) {
    .image-gallery-home .img{
        width: 45%;
    }
}
@media (max-width: 400px) {
    .image-gallery-home{
        padding-right: 20px;
        padding-left: 20px;
    }
    .image-gallery-home .img{
        width: 100%;
    }
}
.about-home{
    margin: 40px 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 20px;
    border-bottom: 5px solid var(--white);
}
.mv-home{
    padding: 40px 20px;
    border-top: 5px solid var(--white);
}
.mv-home h2{
    margin-bottom: 30px;
}
.mv-home div{
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
}
.mv-home div .img{
    width: 30%;
    background-image: url("../images/v.webp");
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    background-repeat: no-repeat;
}
#mission div .img{
    background-image: url('../images/m.webp');
}
.mv-home .text-box{
    display: flex;
    flex-direction: column;
}
.mv-home .text-box div{
    display: flex;
    justify-content: end;
    padding-right: 20px;
    align-items: flex-end;
}
.mv-home .text-box div a{
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #7851A9;
    color: #EDE7F6;
}
@media (max-width: 750px) {
    .mv-home div{
        flex-direction: column;
    }
    .mv-home div .img{
        width: 100%;
        height: 300px;
    }
    #vision{
        display: none;
    }
}
@media (min-width: 750px) {
    #vision-mob{
        display: none;
    }
}

/* policies */
.policies-page{
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 15px;
}
.policies-page h2{
    margin-bottom: 20px;
    text-align: center;
}
.policies-page ul{
    padding-bottom: 20px;
    list-style: circle;
}
.policies-page h3{
    padding-bottom: 10px;
}
.policies-page ul li{
    padding-bottom: 5px;
}
.policies-page p{
    padding-bottom: 5px;
}

/* sitemap */
.sitemap-page{
    margin-top: 30px;
}
.sitemap-page ul {
    display: flex;
    padding: 0 15px 40px 15px;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.sitemap-page ul li {
    padding: 10px 15px;
    color: var(--black);
    background-color: var(--white);
    border-radius: 10px;
}
.sitemap-page ul li:hover {
    color: var(--purple);
}

/* terms policy help */
.htp-page h2{
    padding-bottom: 20px;
    text-align: center;
}
.htp-page{
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 25px;
}
.htp-page h3{
    padding-bottom: 10px;
}
.htp-page p{
    padding-bottom: 15px;
}
.htp-page ul{
    padding-bottom: 15px;
}