body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	gap: 2.5rem;
	margin: 0;
    background-color: #f5f5f7;
    color: #1d1d1f;
    font-family: "Inter", sans-serif;
    font-style: normal;
}

h1,
h2,
h3,
h4,
p,
ul,
li {
	margin: 0;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 2.2rem;
}

h3 {
	font-size: 1.5rem;
}

p,
label,
li {
	font-size: 1.6rem;
}

li {
	font-weight: 450;
}

button {
    cursor: pointer;
}


input[type="text"] {
	font-family: 'Montserrat';
	font-weight: 320;
    padding: 1rem;
	border: none;
    border-radius: 1rem;
    color: #505050;
    font-size: 0.9rem;
}

header {
	display: flex;
    justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
}

.menu-comp {
	display: flex;
	gap: 1rem;
}

.menu-mob {
	display: none;
	gap: 1.5rem;
}

.menu {
	border: 1px solid #a9c9f9;
    border-radius: 999rem;
    background: #e2ecfd;
    padding: 0.5rem 1.1rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.menu a,
.menu-mob a {
	font-size: 1rem;
	text-decoration: none;
	color: #1B1F23;
	font-weight: 450;
}

.menu a:hover {
	color: #3B82F6;
}

.logo-img {
	width: 8%;
}

.cart-button-mob {
	display: none !important;
}

main {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
	gap: 2.5rem;
	padding: 0 4.5rem;
}

.title {
	display: flex;
	justify-content: center;
	width: 100%;
	text-align: center;
}

.main_сontent {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

footer {
	border-top: 1px solid #e5e5e5;
	padding-top: 2rem;
}

.footer_top {
	padding: 0 1.5rem;
}

.footer-logo img {
	width: 6%;
}

.footer_row {
	display: flex;
    justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
}

.footer_row_info {
	display: flex;
	width: 70%;
	gap: 4rem;
}

.footer_col {
	display: flex;
    flex-direction: column;
	gap: 1rem;
	max-width: 45%;
}

.footer_col p {
	font-weight: 700;
	font-size: 1.3rem;
}

.footer_col a,
.business_hours {
	display: flex;
	gap: 0.8rem;
	text-decoration: none;
	color: #1B1F23;
	font-weight: 450;
}

.footer_col a svg,
.business_hours svg {
	color: #3B82F6;
}

.social_media {
	display: flex;
    gap: 1rem;
}

.footer_bottom {
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	background: #1B1F23;
    color: white;
	margin-top: 2.5rem;
}

.footer_bottom p {
	font-size: 0.9rem;
	font-weight: 500;
}

.subscribe {
	display: flex;
    flex-direction: column;
	max-width: 30%;
	gap: 1rem;
	background: #e2ecfd;
	padding: 1.5rem;
	border-radius: 1rem;
}

.subscribe_title {
	font-size: 1.3rem !important;
	font-weight: 620;
}

.subscribe p {
	font-size: 0.9rem;
}

.subscribe button {
    font-family: 'Montserrat';
    font-size: 1.2rem;
    font-weight: 600;
    background: #3B82F6;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 10px 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
	header {
		flex-direction: row-reverse;
	}
	
	.hamburger {
        display: flex;
    }
	
	.menu-comp {
	    display: none;
    }
	
	.menu-mob {
        position: absolute;
        top: 75px;
        left: 20px;
	    width: 70%;
        flex-direction: column;
        background: #3B82F6;
        padding: 20px;
        border-radius: 10px;
        z-index: 9999;
    }

    .menu {
        display: none;
    }

    .menu-mob.show {
        display: flex !important;
	    flex-direction: column;
    }
	
	.menu-mob a {
		color: #ffffff;
	}
	
	.cart-button-mob {
	    display: unset !important;
    }
	
	.cart-button {
		display: none !important;
	}
}

@media (max-width: 768px) {
	h1 {
	    font-size: 2.5rem;
    }
	
	h2 {
	    font-size: 2rem;
    }
		
	.footer_bottom p {
		font-size: 0.6rem;
	}
	
	.menu {
		display: none;
	}
	
	main {
		padding: 0 1.5rem;
	}
	
	p,
    label,
    li {
	    font-size: 1.4rem;
    }
}

@media (max-width: 500px) {
	.logo-img {
		width: 25%;
	}
	
	.footer_row {
		flex-direction: column;
		align-items: unset;
		gap: 4rem;
	}
	
	.footer_row_info {
		flex-direction: column;
	}
	
	.subscribe {
		max-width: unset;
	}
	
	.footer_col {
		max-width: unset;
	}
	
	.footer-logo img {
		width: 22%;
	}
	
	.email_support svg,
	.business_hours svg {
		display: none;
	}	
}

@media screen and (min-width: 500px) and (max-width: 768px) {
	.logo-img {
		width: 15%;
	}
	
	.footer_row {
		flex-direction: column;
		align-items: unset;
		gap: 4rem;
	}
	
	.footer_row_info {
		flex-direction: column;
	}
	
	.subscribe {
		max-width: 70%;
	}
	
	.footer_col {
		max-width: unset;
	}
	
	.footer-logo img {
		width: 14%;
	}
	
	.email_support svg,
	.business_hours svg {
		display: none;
	}	
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .email_support svg,
    .business_hours svg {
        display: none;
    }
}