@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
}

:root{
	--bg-color: #ffffff;
	--text-color: #121212;
	--main-font: 2.2rem;
	--p-font: 1.1rem;
}
body{
	background: var(--bg-color);
	color: var(--text-color);
}
header{
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	position: fixed;
	background: var(--bg-color);
	box-shadow: 0px 2px 18px 0 rgb(129 162 182 / 20%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 10%;
	transition: .3s;
}
.logo{
	color: var(--text-color);
	font-size: var(--main-font);
	font-weight: 600;
	line-height: 0.8;
}
.logo1{
	height: 50px;
}
section{
  display: flex;
}
.container{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, auto));
	align-items: center;
	gap: 2rem;
	text-align: center;
	cursor: pointer;
	padding-top: 2rem;
  width: 100%;
}
.box{
	padding: 0px 20px 10px 20px;
	background: transparent;
	box-shadow: 5px 30px 56.1276px rgb(55 55 55 / 12%);
	border-radius: 10px;
	position: relative;
	transition: all .35s ease;
}
.box img{
	width: 100%;
	height: auto;
}
.box h4{
	font-size: 15px;
	letter-spacing: 1px;
	margin-bottom: 8px;
}
.box h5{
	font-size: 14px;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.box .cart i{
	position: absolute;
	top: 0;
	left: 0;
	width: 35px;
	height: 35px;
	background: var(--text-color);
	color: var(--bg-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.box:hover{
	transform: translateY(-5px);
}

#myLinks a{
	text-decoration: none;
	color: #121212;
	padding: 9px;
}

#intro{
  flex-direction: column;
  text-align: center;
  padding: 10px;
  font-size: 1.2rem;
  line-height: 42px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
  display:block
}


.btn{
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid black;
  color: black;
  outline: none;
  transition: .6s ease;
  text-decoration: none;
}




#contact{
  background: url(../media/bgcontact.jpg) no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.contact-page{
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-info, .contact-form{
  flex: 1;
}
.item{
  margin-bottom: 24px;
  font-size: 16px;
  color: #fff;
}
.headings2{
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400px;
}
.icon{
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  text-align: center;
  color: black;
  border-radius: 50%;
  margin-right: 16px;
  display: inline-block;
}
.contact-form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.text{
  width: calc(50% - 10px);
  height: 50px;
  padding-right: 12px;
  padding-top: 10px;
  border: none;
  color: #fff;
  margin-bottom: 45px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0rem;
}
textarea{
  width: 100%;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  padding: 12px;
  background-color: #fff;
  border: none;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.button{
  padding: 10px 35px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  outline: none;
  transition: .6s ease;
  text-decoration: none;
  margin-left: auto;
}
.button:hover{
  cursor: pointer;
  background-color: white;
  color: black;
  box-shadow: 0 0 5px white, 0 0 10px white, 0 0 15 px white ;
  font-weight: bold;
  text-decoration: none;
}

.footer{
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
}
a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

.headings{
  font-size: 2.5rem;
  text-align: center;
  margin: 40px 0px;
  width: 100%;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}