* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
}

header {
    background-color: #2F2F2F;
}

.header-flex {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1000px;
    margin: auto;
}

header .shop-name {
    background: -webkit-linear-gradient(180deg, #B44949, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
}

header .shop-name:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

header .nav {}

header .nav a {
    text-decoration: none;
    color: white;
    margin-right: 20px;
    text-transform: capitalize;
    font-size: 20px
}

header .nav a:hover {
    color: #E26565;
    transition: 0.5s;
}

header .contact-us {}

header .contact-us a {
    text-transform: capitalize;
    text-decoration: none;
    color: white;
    background-color: #B44949;
    padding: 10px 20px;
    border-radius: 5px;
}

header .contact-us a:hover {
    color: #B44949;
    background-color: white;
    transition: 0.5s;
}

.banner {
    background-image: url(img/clothes.png);
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: fondu;
    animation-duration: 10s;
    animation-delay: 5s;
    animation-iteration-count: infinite;
}

@keyframes fondu {
    0% {
        background-image: url(img/clothes.png);
    }

    33.33% {
        background-image: url(img/clothes2.png);
    }

    66.66% {
        background-image: url(img/clothes3.png);
    }

    100% {
        background-image: url(img/clothes.png);
    }
}

.banner-text {
    color: white;
    text-align: center;
    text-shadow: 5px 5px 5px black;
}

.banner-text h1 {
    font-size: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-text p {
    font-weight: 300;
    font-size: 20px;
}


.products {
    background-color: #F5F5F5;
}

.products h1 {
    font-size: 50px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: capitalize;
}

.products .products-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
    background-image: url();
    background-size: cover;
    background-position: center;
}

.products-card {
    padding: 30px;
    width: calc((100% - 60px) / 2);
    margin-bottom: 60px;
    transition-property: width;
    transition-duration: 2s;
    transition-timing-function: ease-in;
}

.products-card:hover {
    transition: 0.4s;
    transform: scale(1.2);
}

.image {
    background-size: cover;
    height: 350px;
}

img {
    max-width: 100%;
    height: auto;
}

.products h3 {
    text-align: center;
}

.products p {
    text-align: center;
}



.banner-mid {
    background-image: url(img/clothes4.png);
    background-position: top;
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team .team-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
    background-image: url();
    background-size: cover;
    background-position: center;
}

.team-card .image {
    background-size: cover;
    background-position: center;
    height: 400px;
}

.team {
    background-color: #F5F5F5;
}

.team-card {
    padding: 20px;
    width: calc((100% - 5px) / 3);
    margin-bottom: 60px;
}

.team-card:hover {
    transition: 0.4s;
    transform: scale(1.1);
    cursor: pointer;
}

.team h1 {
    font-size: 50px;
    margin-bottom: 40px;
    text-align: center;
    text-transform: capitalize;
}

.team h3 {
    text-align: center;
}

.team p {
    text-align: center;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 500px;
    width: 700px;
}

.map-text {
    margin-left: 50px;
}

.map-text h1 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    width: 250px;
    margin-bottom: 20px;
}

.map-text p {
    margin-top: 20px;
}

.map-text span {
    font-weight: 600;
}


footer {
    background-color: #2F2F2F;
}

footer .footer-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 20vh;
}

footer .about {
    width: 300px;
    color: white;
}

footer h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about p {
    font-weight: 300;
    font-size: 15px
}

footer i {
    font-size: 30px;
    margin-right: 40px;
    color: white;
}

.fa-facebook-f:hover {
    color: #4267B2;
    transition: 0.5s;
    transform: scale(1.3);
}

.fa-twitter:hover {
    color: #1DA1F2;
    transition: 0.5s;
    transform: scale(1.3);
}

.fa-instagram:hover {
    background: -webkit-linear-gradient(#A035B4, #F7B95B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.5s;
    transform: scale(1.3);
}

.fa-pinterest-p:hover {
    color: #E60023;
    transition: 0.5s;
    transform: scale(1.3);
}

footer span {
    display: inline-block;
    width: 1000px;
    text-align: center;
    color: white;
    padding: 20px 0;
}
