*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
:root{
    --font-color: #230324;
    --font-color2:#F27493;
    --bg-color: #ffff;
    --big-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1.1rem;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header{
   position: fixed;
    z-index: 10000;
    width: 100%;
}
nav{
    background: var(--font-color);
    height: 50px;
    width: 100%;
 
}
label.logo{
    color: var(--font-color2);
    font-size: 1.2rem;
    line-height: 50px;
    padding: 0 100px;
    font-weight: bold;
    text-transform: uppercase;
}
nav ul{
    float: right;
    margin-right: 50px;
}
nav ul li{
    display: inline-block;
    line-height: 50px;
    margin: 0 5px;
}
nav ul li a{
    color: var(--font-color2);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 7px 13px;
    border-radius: 8px;
    text-transform: uppercase;
}
a.active,a:hover{
    background: white;
    transition: .5s;
}
.checkbtn{
    font-size: 25px;
    color: var(--font-color2);
    float: right;
    line-height: 50px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
.translet{
    color: white;
    background: none;
}
.translet:hover{
    background: none;
    color: #F27493;
}

header.sticky{
    background: #230324;
    padding: 10px 8%;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}
.sticky .logo{
    color: var(--font-color2);
}
.sticky a{
    color: var(--font-color2);
}
#check{
    display: none;
}
.text{
    float: right;
}
@media (max-width: 952px) {
    label.logo{
        font-size: 0.8rem;
        padding-left: 30px;
    }
    nav ul li a{
        font-size: 16px;
    }
    
}
@media (max-width: 952px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: var(--font-color);
        top: 50px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    ul li a:hover{
        letter-spacing: .8rem;
    }
    .text{
        position: fixed;
        background: var(--font-color);
        top: 0px;
        text-align: center;
        transition: all .5s;
        margin: -6rem 0rem;
    }

    nav ul li{
        display: block;
        margin: 40px 0 ;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
    a:hover,a.active{
        background: none;
        color: white;
    }
    #check:checked ~ ul{
        left: 0;
    }
    #check:checked ~ section{
        opacity: 0;
    }
} 
/* section{
    display: flex;
    height: 100vh;
    width: 100%;
} */
.cards-list{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #230324;
    padding: 80px 80px ;
}
.cards-list a{
    background: none;
}
.card{

    margin: 6px auto;
    width: 340px;
    height: 250px;
    border-radius: 40px;
    background: #230324;
    cursor: pointer;
    transition: 0.4s ease;
}

.card-img{
    width: inherit;
    height: inherit;
    
}
.card-img img{
    width: inherit;
    height: inherit;
    border-radius: 30px;
    object-fit: cover;
    border: var(--font-color2) 6px solid;
    transition: 0.4s ease;
}
.card-img img:hover{
    margin-top:  -10px;
}
.card-title{
    background: var(--font-color2);
    border-radius: 30px;
    color: var(--font-color);
    text-align: center;
    font-weight: bold;
    margin-top: 0px;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 2px 30px;
}


footer{
    background: #000000f9;
}
.footercontainer{
    width: 100%;
    padding: 20px 30px 20px ;
}
.socialicons{
    display: flex;
    justify-content: center;
}
.socialicons a{
    text-decoration: none;
    padding: 8px;
    background-color: white;
    margin: 10px;
    border-radius:50% ;
}
.socialicons a i{
    font-size: 1.4rem;
    color: black;
    opacity: 0.9;
}
.socialicons a:hover{
    background-color: #111;
    transition: 0.4s;
}
.socialicons a:hover i{
    color: white;
    transition: 0.4s;
}
.footernav{
    margin: 30px 0;
}
.footernav ol{
    display: flex;
    justify-content: center;
}
.footernav ol li  a{
    background: none;
    color: white;
    margin: 20px;
    font-size: 0.8rem ;
    opacity:0.4 ;
    transition: 0.4s;
    text-transform: uppercase;
}
.footernav ol li:hover  a{
    opacity: 1;
    background: none;
}
.Address{
    padding: 10px;
    text-align: center;
    color: white;
    opacity: 0.4;
}
.footerbottom{
    background-color: #000;
    padding: 10px;
    text-align: center;

}
.footerbottom p{
    color: white;
    font-size: 0.8rem;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px ;
}
@media (max-width:700px) {
    .footernav ol{
    flex-direction: column;
}
.footernav ol li{
    width: 100%;
    text-align: center;
    margin: 10px;
}
}