@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --ff: "Montserrat",sans-serif;
}

*{
    padding: 0;
    margin: 0;
}

body{
    background-color: #F3EFE9;
}

div.body{
    width: 100%;
    height: 1400px;
}

div.banner{
    width:100%;
    height: 350px;
    background-image: url(../images/womens\ header.png);
    background-repeat: no-repeat;
    background-position: center;

}

h1.header{
    text-align: center;
    font-family: var(--ff);
    color: #62232C;
    font-size: 80px;
    font-weight: 300;
}

span{
    font-weight: bold;
}

div.info p{
    padding: 0;
    color: #000000;
    font-size: 30px;
    font-family: var(--ff);
    text-align: center;
    line-height: 70px;
    margin: 80px 0;
}

div.button{
    display: flex;
    align-items: center;
    justify-content: center;
}

a.button{
    text-decoration: none;
    font-weight: normal;
    font-size: 20px;
    background: none;
    color: #62232C;
    font-family: var(--ff);
    border: solid 3px #62232C;
    padding: 15px 15px;
    border-radius: 20px;
    text-align: center;
}

a.button:hover{
    color: black;
    font-weight: 700;
    border-color: black;
}

div.back i{
    font-size: 40px;
    margin-bottom: 120px;
}

div.back i:hover{
    color: #3c3b3b;
}

div.pics{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

div.pictures{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

div.pictures{
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 10px;
    background: repeating-conic-gradient(from var(--a), #62232C 0%, #62232C 5%, transparent 5%, transparent 40%, #62232C 50%);
    animation: animate 4s linear infinite;
}

div.pictures::before{
    z-index: -1;
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: repeating-conic-gradient(from var(--a), #62232C 0%, #62232C 5%, transparent 5%, transparent 40%, #62232C 50%);
    animation: animate 4s linear infinite;
    animation-delay: -1s;
    border-radius: 10px;
}

img{
    width: 230px;
    height: 230px;
    border-radius: 10px;
    inset: 8px;
    border: 8px solid #F3EFE9;
}


@property --a{
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes animate{
    0%{
        --a: 0deg;
    }
    100%{
        --a: 360deg;
    }
}

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: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:540px) {

    *{
        padding: 0;
        margin: 0;
    }
    
    body{
        background-color: #F3EFE9;
    }
    
    div.body{
        width: 100%;
        height: 1700px;
    }
    
    div.banner{
        width:100%;
        height: 300px;
        background-image: url(../images/womens\ header.png);
        background-repeat: no-repeat;
        background-position: center;
    
    }
    
    h1.header{
        text-align: center;
        font-family: var(--ff);
        color: #62232C;
        font-size: 40px;
        font-weight: 300;
    }
    
    span{
        font-weight: bold;
    }

    div.back i{
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
    div.info p{
        padding: 0 20px;
        color: #000000;
        font-size: 20px;
        font-family: var(--ff);
        text-align: center;
        line-height: 50px;
        margin: 20px 0;
    }
    
    div.button{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    a.button{
        text-decoration: none;
        font-weight: normal;
        font-size: 20px;
        background: none;
        color: #62232C;
        font-family: var(--ff);
        border: solid 3px #62232C;
        padding: 15px 15px;
        border-radius: 20px;
        text-align: center;
    }
    
    a.button:hover{
        color: black;
        font-weight: 700;
        border-color: black;
    }
    
    div.back i{
        margin-bottom: 120px;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
    div.pics{
        margin-top: 10px;
        width: 100%;
        height: 800px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    div.pictures{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
    
    div.pictures{
        position: relative;
        width: 230px;
        height: 240px;
        border-radius: 10px;
        background: repeating-conic-gradient(from var(--a), #62232C 0%, #62232C 5%, transparent 5%, transparent 40%, #62232C 50%);
        animation: animate 4s linear infinite;
    }
    
    div.pictures::before{
        z-index: -1;
        content: '';
        position: absolute;
        width: 230px;
        height: 240px;
        background: repeating-conic-gradient(from var(--a), #62232C 0%, #62232C 5%, transparent 5%, transparent 40%, #62232C 50%);
        animation: animate 4s linear infinite;
        animation-delay: -1s;
        border-radius: 10px;
    }
    
    img{
        width: 200px;
        height: 210px;
        border-radius: 10px;
        inset: 8px;
        border: 8px solid #F3EFE9;
    }
    
    
    @property --a{
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
    }
    
    @keyframes animate{
        0%{
            --a: 0deg;
        }
        100%{
            --a: 360deg;
        }
    }
    
}

@media (min-width:767px) and (max-width:1024px) {

    *{
        padding: 0;
        margin: 0;
    }
    
    body{
        background-color: #F3EFE9;
    }
    
    div.body{
        width: 100%;
        height: 1900px;
    }
    
    div.banner{
        width:98%;
        height: 350px;
        background-image: url(../images/womens\ header.png);
        background-repeat: no-repeat;
        background-position: center;
    
    }
    
    h1.header{
        text-align: center;
        font-family: var(--ff);
        color: #62232C;
        font-size: 80px;
        font-weight: 300;
    }
    
    span{
        font-weight: bold;
    }
    
    div.info p{
        color: #000000;
        font-size: 30px;
        font-family: var(--ff);
        text-align: center;
        line-height: 70px;
        margin: 80px 0;
        padding: 0 20px;
    }
    
    div.button{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    a.button{
        text-decoration: none;
        font-weight: normal;
        font-size: 30px;
        background: none;
        color: #62232C;
        font-family: var(--ff);
        border: solid 3px #62232C;
        padding: 15px 15px;
        border-radius: 20px;
        text-align: center;
    }
    
    a.button:hover{
        color: black;
        font-weight: 700;
        border-color: black;
    }
    
    div.back i{
        margin-bottom: 120px;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
    div.pics{
        width: 100%;
        height: 650px;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    div.pictures{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    div.pictures{
        position: relative;
        width: 280px;
        height: 300px;
        border-radius: 10px;
        background: repeating-conic-gradient(from var(--a), #62232C 0%, #62232C 5%, transparent 5%, transparent 40%, #62232C 50%);
        animation: animate 4s linear infinite;
    }
    
    div.pictures::before{
        z-index: -1;
        content: '';
        position: absolute;
        width: 280px;
        height: 300px;
        background: repeating-conic-gradient(from var(--a), #62232C 0%, #62232C 5%, transparent 5%, transparent 40%, #62232C 50%);
        animation: animate 4s linear infinite;
        animation-delay: -1s;
        border-radius: 10px;
    }
    
    img{
        width: 250px;
        height: 270px;
        border-radius: 10px;
        inset: 8px;
        border: 8px solid #F3EFE9;
    }
    
    
    @property --a{
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
    }
    
    @keyframes animate{
        0%{
            --a: 0deg;
        }
        100%{
            --a: 360deg;
        }
    }
    
}
