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

/*************** landing page ***************/
#home-page  {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 100vh;
    background-image: url('fw_images/garments.jpg');
    background-size: cover;
}
#home-page .box {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
    transition: 0.6s;
    background: #060c21;
    color: transparent;
}
#home-page .box:hover {
    height: 400px;
}
#home-page .box .image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}
#home-page .box .image-box img {
    max-width: 100%;
    opacity: 0.1;
    transition: 0.5s;  
    margin: 0 auto;
}
#home-page .box:hover .image-box img {
    opacity: 1;   
}
#home-page .box:before {
    content: ' ';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background-color: #fff;
    z-index: -1;
}
#home-page .box:after {
    content: ' ';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background-color: #fff;
    z-index: -2;
    filter: blur(40px);
}
#home-page .box:before, .box:after {
    background: linear-gradient(235deg, #89ff00, #010615, #00bcd4);
}
#home-page .box:nth-child(2):before, .box:nth-child(2):after {
    background: linear-gradient(235deg, #89ff00, #010615, #fbff00);
}
#home-page .box .content {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 90px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    text-align: center;
}
#home-page .box:hover .content {
    opacity: 1;
}
#home-page .box:hover .content h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
}
#home-page .box:hover .content h2 span{
    font-size: 14px;
    color: #fff;
    font-weight: 200;
    letter-spacing: 2px;
}
#home-page .leather {
    height: 280px;
    width: 280px;
    text-align: center;
}
/*************** landing page ***************/
/***************** about page start *****************/
.about-section {
    width: 100%;
    min-height: 180vh;
    background-color: #ddd;
}
.about-container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 100px;
}
.about-content-section {
    float: left;
    width: 55%;
}
.image-section {
    float: right;
    width: 40%;
}
.image-section img {
    width: 100%;
    height: auto;
}
.about-content-section .about-title {
    text-transform: uppercase;
    font-size: 28px;
}
.about-content-section .about-content h3{
    margin-top: 20px;
    color: #5d5d5d;
    font-size: 21px;
}
.about-content-section .about-content p{
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.5;
}
.about-picture {
    box-shadow: -20px -20px 20px black;
    border-radius: 20px;
    margin-top: 40px;
}
.about-content-section .social {
    margin: 40px 40px;
}
.about-content-section .social i{
    color: #a52a2a;
    font-size: 30px;
    padding: 0 10px;
}
.about-content-section .social i:hover{
    color: #3d3d3d;
}
@media screen and (max-width: 768px) {
    .about-container {
        width: 80%;
        display: block;
        margin: auto;
        padding-top: 50px;
    }
    .about-content-section .about-title {
        text-align: center;
        font-size: 19px;
    }
    .about-content-section {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }
    .image-section {
        float: none;
        width: 100%;
        display: block;
        margin: auto;
    }
    .iamge-section img {
        width: 100%;
        height: auto;
        display: block;
        margin: auto;
    }
}
/***************** about page end *****************/
/***************** contact page starts *****************/

.contact-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}

.contact-container:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("fw_images/contact/contact.jpg") no-repeat center;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 10px 10px 19px 5px rgba(0,0,0,0.19);
}

.left{
	background: url("fw_images/contact/contact.jpg") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right{
	padding: 25px 40px;
}

h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #2ecc71;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
    resize: none;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #2ecc71;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.btn:hover{
    background-color: #27ae60;
}

.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}
.contact-container .social {
    margin: 40px auto;
}
.contact-container .social i{
    color: #a52a2a;
    font-size: 30px;
    padding: 0 10px;
}
.contact-container .social i:hover{
    color: #3d3d3d;
}

@media screen and (max-width: 880px){
	.contact-box{
		grid-template-columns: 1fr;
	}
	.left{
		height: 200px;
	}
}

/*
.contact-container {
    width: 80%;
    height: 550px;
    background-color: rgba(0, 0, 0, 0.5);
    display: grid;
    place-content: center;
    margin: 0 auto;
    backdrop-filter: blur(50px);
    border-radius: 20px;
    border: 3px solid #fff;
    margin-bottom: 20px;
    box-shadow: 10px 10px 10px black;
}
.contact-container h1 {
    color: #fff;
    text-transform: uppercase;
    padding: 20px 0;
}
.contact-container .form-group {
    width: 400px;
    margin: 20px 0;
}
.contact-container .form-group input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 1em;
    border-radius: 20px;
}
.contact-container .form-group textarea {
    border: none;
    outline: none;
    width: 100%;
    resize: none;
    padding: 20px;
    border-radius: 20px;
    font-size: 1em;
}
.contact-container .button {
    width: 40%;
    height: 50px;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 600;
    background-color: rgb(2, 123, 252);
    color: #fff;
    border: none;
    transition: 0.5s;
    border-radius: 20px;
    margin: 0 auto;
}
.contact-container .button:hover {
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.contact-container .social {
    margin: 40px auto;
}
.contact-container .social i{
    color: #a52a2a;
    font-size: 30px;
    padding: 0 10px;
}
.contact-container .social i:hover{
    color: #3d3d3d;
}
@media (max-width: 600px) {
    .contact-container {
        max-width: 100%;
    }
    .contact-container form {
        min-width: 100px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
}
*/
/***************** contact page end *****************/
body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(#fff, #505378);
}
.header {
    background: radial-gradient(#fff, #ffd6d6);
}
.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
}
nav {
    flex: 1;
    text-align: right;
}
nav ul {
    display: inline-block;
    list-style-type: none;
}
nav ul li {
    display: inline-block;
    margin-right: 20px;
}
a {
    text-decoration: none;
    color: #555;
}
p {
    color: #555;
}
.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col-2 {
    flex-basis: 50%;
    max-width: 300px;
}
.col-2 img {
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}
.explore_button {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 2s;
}
.explore_button:hover {
    background: #563434;
}
.header .row {
    margin-top: 70px;
}
.categories {
    margin: 70px 0;
}
.col-3 {
    flex-basis: 30%;
    max-width: 250px;
    margin-bottom: 30px;
}
.col-3 img {
    width: 100%;
}
.small-contianer {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.col-4 img {
    width: 100%;
}
.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}
.title::after {
    content: '';
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
h4 {
    color: #555;
    font-weight: normal;
    text-align: center;
}
.col-4 p {
    font-size: 14px;
}
.rating .fa {
    color: #ff523b;
}
.col-4:hover {
    transform: translateY(-50px);
    box-shadow: 10px 10px 10px #222;
    border: 1px solid #fff;
    transition: 0.5s all ease-in-out;
}
.menu-icon {
    width: 28px;
    margin-left: 20px;
    display: none;
}

/********offer***********/

.offer {
    background: radial-gradient(#fff, #ffd6d6);
    margin-top: 80px;
    padding: 30px 0;
}
.col-2 .offer-img {
    padding: 50px;
}
small {
    color: #555;
}

/********testimonial***********/
.testimonial {
    padding-top: 100px;
    background: #fff;
}
.testimonial .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.5s;
}
.testimonial .col-3 img {
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;
}
.testimonial .col-3:hover {
    transform: translateY(-50px);
}
.fa.fa-quote-left {
    font-size: 34px;
    color: #ff523b;
}
.fa fa-quote-left {
    font-size: 34px;
    color: #ff523b;
}
.col-3 p {
    font-size: 12px;
    margin: 12px 0;
    color: #777;
}
.testimonial .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 16px;
}
/********brands***********/
.brands {
    margin: 100px auto;
}
.col-5 {
    width: 160px;
}
.col-5 img {
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}
.col-5 img:hover {
    filter: grayscale(0);
}
/********footer***********/
.footer {
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p {
    color: #8a8a8a;
}
.footer h3 {
    color: #fff;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1 {
    flex-basis: 30%;
}
.footer-col-2 {
    flex: 1;
    text-align: center;
}
.footer-col-2 img {
    widows: 180px;
    margin-bottom: 20px;
}
.footer-col-3, .footer-col-4 {
    flex-basis: 12%;
    text-align: center;
}
ul {
    list-style-type: none;
}
.app-logo {
    margin-top: 20px;
}
.app-logo img{
    width: 140px;
}
.footer hr {
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}
.copyright {
    text-align: center;
}
/******** media query for menu ***********/
@media only screen and (max-width: 800px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li {
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a {
        color: #fff;
    }
    .menu-icon {
        display: block;
        cursor: pointer;
    }
}

/******** products page ***********/
.row-2 {
    justify-content: space-between;
    margin: 100px auto 50px;
}
select {
    border: 1px solid #ff523b;
    padding: 5px;
}
select:focus {
    outline: none;
}

.page-button {
    margin: 0 auto 80px;
}
.page-button span {
    display: inline-block;
    border: 1px solid #ff523b;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.page-button span:hover {
    background-color: #ff523b;
    color: #fff;
}

/******** media query for less than 600 screen size ***********/
@media only screen and (max-width: 600px) {
    .row {
        text-align: center;
    }
    .col-2, .col-3, .col-4 {
        flex-basis: 100%;
    }
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px 0;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }
}


/******** single product detail ***********/
.single-product {
    margin-top: 80px;
}
.single-product .col-2 img {
    padding: 0;
}
single-product .col-2 {
    padding: 20px;
}
.single-product h4 {
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}
.single-product select {
    display: block;
    padding: 10px;
    margin-top: 20px;
}
.single-product input {
    width: 50%;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
}
input:focus {
    outline: none; 
}
.single-product .fa {
    color: #ff523b;
    margin-left: 10px;
}
.small-img-row {
    display: flex;
    justify-content: space-between;
}
.small-img-col {
    flex-basis: 24%;
    cursor: pointer
}

/****price tag****/
.price-tag {
    color: #a83232;
    font-weight: bold;
}