*{
    margin: 0;
    box-sizing: border-box;
}
.container{
    background-color: rgb(236, 249, 240);
}

/* navigation bar */
.nav-menu{
    position: sticky;
    top: 0;
    z-index: 1;
}
.nav-menu a{
    font-size: 20px;
    font-weight: bolder;
    transition: 0.5s;
}
.nav-menu a:hover{
    font-size: 22px;
    text-shadow:  0 0 5px red, 0 0 15px red;
}

.call-us a:hover{
    color: #ffff93;
    text-shadow: 0 0 5px red, 0 0 15px red;
    box-shadow: 0 0 5px #ffff93, 0 0 15px #ffff93, 0 0 30px #ffff93, 0 0 50px #ffff93;
}


/* footer */
.footer{
    background-color: black;
    color: white;

}
.footer ul{
    list-style: none;
}
.footer a{
    text-decoration: none;
    font-weight: bolder;
    color: aqua;
    transition: 0.5s;
}
.footer a:hover{
    font-size: 20px;
    color: #ffff93;
}
.footer i{
    font-size: 20px;
    font-weight: bolder;
    color: rgb(232, 255, 86);
}
.footer-widget{
    margin-top: 30px;
}
.footer .widget{
    margin: 30px;
}



/* get content in middle */
.middle{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* content animation */
.scroll_anim{
    animation: scroll_anim linear;
    animation-timeline: view();
    animation-range: entry 0%  cover 40%;
}
@keyframes scroll_anim{
    from{
        opacity: 0.5;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}


/* member */
.member .card{
    width: 260px;
}
.member .contacts{
    font-size: 25px;
    display: flex;
    justify-content: space-evenly;
}


/* registration */
.register .items{
    background-color: #bff2ff;
    padding: 20px;
    border-radius: 15px;
}
.register span{
    font-weight: bolder;
}
.register a{
    text-decoration: none;
    color: #000000;
}


/* blog */
.blog .col{
    margin-bottom: 20px;
}
.blog .col .card{
    height: 230px;
    background-color: #bff2ff;
}
.blog .col img{
    width: 100%;
    height: 250px;
}
.blog .button{
    display: flex;
    justify-content: end;
    margin: 0 20px 20px 0;
}


/* value */
.value{
    height: 400px;
    background-color: #bff2ff;
    padding: 10px;
    border-radius: 15px;
}
.value .number{
    width: 80px;
    height: 80px;
    background-color: black;
    color: wheat;
    border-radius: 50%;
    font-size: 40px;
    font-weight: bolder;
}



/* gallery part */
.carousel img{
    width: 100%;
    height: 500px;
}
.gallery img{
    width: 100%;
    height: 300px;
    margin-top: 25px;
    border-radius: 10px;
    transition: 1s;
}
.gallery-1 img:hover{
    scale: 1.1;
    box-shadow: 0 0 5px red, 0 0 15px red, 0 0 30px red;
}
.gallery-2 img:hover{
    opacity: 0.5;
    box-shadow: 0 0 5px red, 0 0 15px red, 0 0 30px red;
}



/* contact */
.contact .contact-form{
    background-image: url(./Images/Basic/background\ for\ contact\ form.gif);
    background-size: cover;
    background-position: center;
    border-radius: 25px;
}
.contact .contacts{
    font-size: 25px;
    display: flex;
    justify-content: space-evenly;
}
.cont a{
    text-decoration: none;
}
.cont .element{
    width: 45%;
    height: 250px;
    background-color: #bff2ff;
    border-radius: 10px;
    overflow-wrap: break-word;
}




@media (max-width: 768px) {
    .cont .element{
    width: 100%;
    height: 280px;
}
}

