@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --ff: "Montserrat",sans-serif;
}

li.logo img{
    height: 100%;
    width: 100%;
}

li.logo a{
    width: 300px;
}

nav{
    background-color: black;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav li{
    height: 70px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
    font-family: var(--ff);
    font-weight: 600;
}

nav a:hover{
    color: rgb(110, 108, 108);
}

nav li.logo:last-child{
    margin-left: auto;
}

.sideBar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: rgba(135, 194, 253, 0.385);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sideBar li{
    width: 100%;
}

.sideBar a{
    width: 100%;
}

.sideBar a:hover{
    color: white;
}

.sideBar li:hover{
    background-color: rgba(33, 127, 222, 0.385);
}

li.close:hover{
    background-color: transparent;
    
}

li.close a:hover{
    cursor: default;
}

li.close svg:hover{
    cursor: pointer;
    fill: white;
}

li.menu svg:hover{
    cursor: pointer;
    fill: rgb(76, 76, 76);
}

.menu{
    display: none;
}

div.background{
    width:100%;
    height: 900px;
    background: url("./images/2.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

*{
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-family: var(--ff);
}

h1{
    color: #FFFFFF;
    font-family: var(--ff);
    text-align: center;
    font-size: 80px;
    padding: 20px;
}

h1.header{
    font-weight: 300;
}

span.header2{
    font-weight: bold;
}

div.banner{
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
    margin-bottom: 25px;
    text-align: center;
}

div.frostyBg{
    position: relative;
    width: 1200px;
    height: 600px;
    background: linear-gradient(135deg, rgba(77, 81, 87, 0.4), rgba(77, 81, 87, 0.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0  rgba(0,0,0,0.37);
    border-radius: 40px;
    margin: auto;
}

div .row1 {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;

}

div.image img{
   height: 100%;
   width: 100%;
}

.womens, .mens, .youngchosen, .kids, .lifegroups, .foundation{
    width: 210px;
    height: 270px;
    margin: 10px 50px;
    background-color: #FFFFFF;
    transition: 0.3s ease-in-out;
}

.womens:hover, .mens:hover, .youngchosen:hover, .kids:hover, .lifegroups:hover, .foundation:hover{
    transform: scale(1.1);
}

div.heading, div.heading2{
    background-image: linear-gradient(180deg, rgba(100, 171, 255, 0.9), rgba(25, 66, 115, 0.9));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    font-size: 25px;
}

div.heading{
    margin-top: 20px;
    font-weight: bold;
}

div.heading2{
    font-weight: 450;
}

div.button{
    color: black;
    text-align: center;
    font-weight: 500;
    margin-top: 18px;
}

div.button a{
    text-decoration: none;
    color: black;
    text-align: center;
    font-weight: 500;
    margin-top: 18px;
}

.button a:hover{
    color: #3c3b3b;
}

div.image{
    height: 123px;
    width: 170px;
    background-color: black;
    margin: auto;
    margin-top: 20px;
}


footer{
    background-color: #292727;
    padding-top: 25px;
}

footer div{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footerpages{
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--ff);
    font-size: 20px;
}

div.links ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 30px;
    
}

div.links ul{
    text-align: center;
}

h2{
    color: #FFFFFF;
    font-family: var(--ff);
    font-weight: 500;
}

.links ul li a:hover{
    color: #aaa;
}

.socials li{
    list-style: none;
    display: inline-block;
    margin: 25px 43px;
}

i{
    color: #FFFFFF;
    font-size: 50px;
}

div.socials li a i{
    text-align: center;
}
div.socials li a i:hover{
    color: #aaa;
}
div.bottom{
    background-color: #3c3b3b;
    margin-top: 20px;
}

.bottom p{
    color: #FFFFFF;
}

@media (max-width: 1180px) {
    .hideMobile{
        display: none;
    }
    
    .menu{
        display: block;
    }
}


@media (max-width:1024px) {
    
    footer{
        background-color: #292727;
        padding-top: 25px;
    }
    
    footer div{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: start;
    }
    
    .footerpages{
        text-decoration: none;
        color: #FFFFFF;
        font-family: var(--ff);
        font-size: 20px;
    }
    
    div.links ul li{
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 10px 30px;
        
    }
    
    div.links ul{
        text-align: start;
    }
    
    h2{
        color: #FFFFFF;
        font-family: var(--ff);
        font-weight: 700;
        margin: 0 30px;
        font-size: 20px;
    }
    
    .links ul li a:hover{
        color: #aaa;
    }
    
    .socials li{
        list-style: none;
        display: inline-block;
        margin: 25px 20px;
    }
    
    i{
        color: #FFFFFF;
        font-size: 20px;
    }
    
    div.socials li a i{
        text-align: center;
    }
    div.socials li a i:hover{
        color: #aaa;
    }
    div.bottom{
        background-color: #3c3b3b;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .bottom p{
        color: #FFFFFF;
        font-size: 15px;

    }
}

@media (max-width:450px) {

    .sideBar{
        width: 100%;
    }

}

@media (max-width:1024px) {

    .hideMobile{
        display: none;
    }
    
    .menu{
        display: block;
    }

    nav a{
        height: 100%;
        padding: 0 30px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: white;
        font-family: var(--ff);
        font-weight: 600;
    }

    .nav ul li a:hover::after{
        width: 0;
    }
    
}

@media (max-width:540px) {

    div.background{
        width:100%;
        height: 2000px;
        background: url("./images/2.JPG");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    h1{
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
        font-size: 25px;
        padding: 20px;
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.banner{
        width: 100%;
        height: 140px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    li.logo a{
        width: 220px;
    }
    
    div.frostyBg{
        position: relative;
        width: 350px;
        height: 1800px;
        background: linear-gradient(135deg, rgba(77, 81, 87, 0.4), rgba(77, 81, 87, 0.4));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px 0  rgba(0,0,0,0.37);
        border-radius: 40px;
        margin: auto;
    }
    
    div .row1 {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    
    }
    
    div.image img{
       height: 100%;
       width: 100%;
    }
    
    .womens, .mens, .youngchosen, .kids, .lifegroups, .foundation{
        width: 210px;
        height: 270px;
        background-color: #FFFFFF;
        transition: 0.3s ease-in-out;
    }
    
    .womens:hover, .mens:hover, .youngchosen:hover, .kids:hover, .lifegroups:hover, .foundation:hover{
        transform: scale(1.1);
    }
    
    div.heading, div.heading2{
        background-image: linear-gradient(180deg, rgba(100, 171, 255, 0.9), rgba(25, 66, 115, 0.9));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        text-align: center;
        font-size: 25px;
    }
    
    div.heading{
        margin-top: 20px;
        font-weight: bold;
    }
    
    div.heading2{
        font-weight: 450;
    }
    
    div.button{
        color: black;
        text-align: center;
        font-weight: 500;
        margin-top: 18px;
    }
    
    div.button a{
        text-decoration: none;
        color: black;
        text-align: center;
        font-weight: 500;
        margin-top: 18px;
    }
    
    .button a:hover{
        color: #3c3b3b;
    }
    
    div.image{
        height: 123px;
        width: 170px;
        background-color: black;
        margin: auto;
        margin-top: 20px;
    }
    
}

@media (min-width:768px) and (max-width:1024px) {

    div.background{
        width:100%;
        height: 1200px;
        background: url("./images/2.JPG");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    h1{
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
        font-size: 60px;
        padding: 20px;
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.banner{
        width: 100%;
        height: 170px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    div.frostyBg{
        position: relative;
        width: 600px;
        height: 900px;
        background: linear-gradient(135deg, rgba(77, 81, 87, 0.4), rgba(77, 81, 87, 0.4));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px 0  rgba(0,0,0,0.37);
        border-radius: 40px;
        margin: auto;
    }
    
    div .row1 {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
    
    }
    
    div.image img{
       height: 100%;
       width: 100%;
    }
    
    .womens, .mens, .youngchosen, .kids, .lifegroups, .foundation{
        width: 210px;
        height: 270px;
        margin: 10px 20px;
        background-color: #FFFFFF;
        transition: 0.3s ease-in-out;
    }
    
    .womens:hover, .mens:hover, .youngchosen:hover, .kids:hover, .lifegroups:hover, .foundation:hover{
        transform: scale(1.1);
    }
    
    div.heading, div.heading2{
        background-image: linear-gradient(180deg, rgba(100, 171, 255, 0.9), rgba(25, 66, 115, 0.9));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        text-align: center;
        font-size: 25px;
    }
    
    div.heading{
        margin-top: 20px;
        font-weight: bold;
    }
    
    div.heading2{
        font-weight: 450;
    }
    
    div.button{
        color: black;
        text-align: center;
        font-weight: 500;
        margin-top: 18px;
    }
    
    div.button a{
        text-decoration: none;
        color: black;
        text-align: center;
        font-weight: 500;
        margin-top: 18px;
    }
    
    .button a:hover{
        color: #3c3b3b;
    }
    
    div.image{
        height: 123px;
        width: 170px;
        background-color: black;
        margin: auto;
        margin-top: 20px;
    }
    
}

@media (min-width:1180px) and (max-width:1180px) {

    div.background{
        width:100%;
        height: 120vh;
        background: url("./images/2.JPG");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    h1{
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
        font-size: 80px;
        padding: 20px;
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.banner{
        width: 100%;
        height: 200px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    div.frostyBg{
        position: relative;
        width: 1000px;
        height: 600px;
        background: linear-gradient(135deg, rgba(77, 81, 87, 0.4), rgba(77, 81, 87, 0.4));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px 0  rgba(0,0,0,0.37);
        border-radius: 40px;
        margin: auto;
    }
    
    div .row1, .row2 {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    
    }
    
    div.image img{
       height: 100%;
       width: 100%;
    }
    
    .womens, .mens, .youngchosen, .kids, .lifegroups, .foundation{
        width: 210px;
        height: 270px;
        background-color: #FFFFFF;
        transition: 0.3s ease-in-out;
    }
    
    .womens:hover, .mens:hover, .youngchosen:hover, .kids:hover, .lifegroups:hover, .foundation:hover{
        transform: scale(1.1);
    }
    
    div.heading, div.heading2{
        background-image: linear-gradient(180deg, rgba(100, 171, 255, 0.9), rgba(25, 66, 115, 0.9));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        text-align: center;
        font-size: 25px;
    }
    
    div.heading{
        margin-top: 20px;
        font-weight: bold;
    }
    
    div.heading2{
        font-weight: 450;
    }
    
    div.button{
        color: black;
        text-align: center;
        font-weight: 500;
        margin-top: 18px;
    }
    
    div.button a{
        text-decoration: none;
        color: black;
        text-align: center;
        font-weight: 500;
        margin-top: 18px;
    }
    
    .button a:hover{
        color: #3c3b3b;
    }
    
    div.image{
        height: 123px;
        width: 170px;
        background-color: black;
        margin: auto;
        margin-top: 20px;
    }
    
}
  

@media (min-width:1025px) {

    nav a{
        height: 100%;
        padding: 0 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: #aaa;
        font-family: var(--ff);
        font-weight: 600;
    }

    .nav ul li.hideMobile a:hover::after{
        width: 0;
    }
    
}
