@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --main-color : #dc143c;
  --btn-gredient : linear-gradient(to right, #dc143c, #680216);
}

*{
  margin:0;
  padding: 0;
  box-sizing: border-box;
}
/* general styling */
.error , .success{
  display:none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  color:#dc143c;
  padding:1em;
  background:lightgoldenrodyellow;
  border-left: 3px solid #680216;
}
.success{
  text-align: center;
  background:rgb(207, 255, 188);
  border-color: #0d4601;
  color: rgb(0, 128, 0);
}
a{
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 2px;
}
html{
  scroll-behavior: smooth;
}
body{
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #f3f3f3;
  font-family: 'Raleway', sans-serif;
  color:rgb(36, 36, 36);
  font-size:14px;
}
/* logo and get quote button */
.logo{
  width:150px;
  position: absolute;
  top:10px;
  left:20px;
}
.get-quote-btn{
  position: absolute;
  top:25px;
  right:20px;
  color:var(--main-color);
  background: #fff;  /* fallback for old browsers */
  /* background: var(--btn-gredient);
  background: var(--btn-gredient); */
  font-size:.7rem;
  padding:1em 1.5em;
  border-radius: 4px;
  font-weight: 900;
}
.get-quote-btn:hover{
  background:var(--btn-gredient);
  color:#fff;
}

/* header section styling */

header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height:100vh;
  color:rgb(255, 255, 255);
  /* background: #642B73; 
  background: -webkit-linear-gradient(to left, #C6426E, #642B73);  
  background: linear-gradient(to left, #C6426E, #642B73); */
  background-image:linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0,.5)), url(../images/drink.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
header h1{
  font-size: 4rem;
  font-weight: 900;
  /* font-style: italic; */
  text-transform: uppercase;
  margin-bottom:.5em;
  letter-spacing: 2px;
}
header h1 span{
  color:rgb(255, 255, 255);
}
header a{
  color:#fff;
  font-weight:700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding:12px 36px;
  border-radius: 4px;
  margin: 2em;
  transition: .2s;
  background: var(--btn-gredient);
}
header a:hover{
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.4);
}
header h3{
  font-size: 2rem;
  font-weight: 500;
}
header p{
  max-width: 650px;
  font-size: 1.5rem;
  padding: .5em;
  line-height: 2;
  font-family:Poppins, sans-serif;
}

@media (max-width: 700px){

  header h1{
    font-size: 2.5rem;
    margin-bottom: .6em;
    margin-top:1em;
  }
  header{
    padding:1em;
  }
  header p{
    font-size: 1.1rem;
    line-height: 1.7;
  }
  header a{
    margin:1.5em;
  }
}

/* logo sample section */
section{
  padding: 1em;
  max-width: 1024px;
  margin: auto;
  display: flex;
  flex-direction: column;
  margin: 1em auto;
}
section .title-text{
  color:#333;
  position: relative;
  text-align: left;
  font-size: 2.5rem;
  margin-bottom:1.5em;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}
.title-text::after{
  content:" ";
  position:absolute;
  background:var(--main-color);
  height:5px;
  bottom:-10px;
  left:0;
  text-align: center;
  width:100px;
}
.cards{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: auto;
  gap:20px;
}
.card{
  position: relative;
  background-color: #ececec;
  display:flex;
  flex-direction: column;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 4px;
}
.cards .card:hover{
  
}

.card h2{
  font-size: 2.1rem;
  text-transform: uppercase;
  margin-top:10px;
}
.card span.project-type{
  position: absolute;
  top:5px;
  left:5px;
  background-color: #fff;
  padding:5px 10px;
  font-size: .7rem;
  font-weight: 800;
  color:black;
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.card img{
  width:100%;
  height: auto;
  /* border-radius: 10px; */
}

.card-footer{
  padding:.5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  font-weight: bold;
}
.likes{
  display:flex;
  align-items: center;
  font-family: sans-serif;
  color:rgb(59, 59, 59);
}
.likes span{
  width:18px;
  margin-left:5px;
  cursor:pointer;
}
.likes span:hover{
  color:#dc143c;
}
.card-footer a{
  color:rgb(48, 48, 48);
}
.card-footer a:hover{
  color:rgb(8, 23, 240);
}
@media(max-width:700px){
  .cards{
    grid-template-columns: 1fr;
  }
  .cards div:first-of-type{
   
  }
  .title-text{
    font-size: 2rem;
  }
}





/* order now call to action section */
.order-now-cta{
  width:100%;
  /* border: 2px dashed #fff; */
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding:20px;
  background-color: #333;
  color:#fff;
  border-radius: 10px;;
}
.order-now-cta a{
  margin-top:1em;
  background: var(--btn-gredient);
  background: var(--btn-gredient);
  color:white;
  padding:8px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
}
.order-now-cta h2{
  text-transform: uppercase;
}



/* contact form */
.contact-form{
  max-width: 100%;
  border-radius: 10px;
  background-color: #f3f3f3;
  padding:2em 1.4em;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08);
}

.input{
  margin:10px;
  display:flex;
  flex-direction: column;
}
.input label{
  font-size: .9rem;
  margin-bottom:5px;
}
.input input{
  padding:.5em;
  border: 1px solid #aaa;
}
.input textarea{
  min-height:150px;
  padding: .5em;
  border: 1px solid #aaa;
}
.input button{
  border:none;
  padding: 1em 1em;
  text-transform: uppercase;
  cursor:pointer;
  letter-spacing: 1px;
  color:#fff;
  font-weight:700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: .2s;
  background: var(--btn-gredient);
}



/* footer */
#a{
  position:relative;
  background:#fff;
  width:100%;
  /* min-height: 100vh; */
}

.footer-wrapper{
  position:relative;
  max-width:1024px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 2em 0;
}

#a section{
  /* background-color: #ccc; */
  width:100%;
  color:#333;
}
.why-contact-us{
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.why-contact-us .material-icons{
  font-size: 7rem;
  color:#dc143c;
}
#a a{
  position:absolute;
  right:20px;
  bottom:20px;
  background-color:white;
  color:crimson;
  height:40px;
  width:40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:50px ;
  font-size: 1.5rem;
  font-weight: bolder;
}
#a a:hover{
  opacity: .7;
}
@media(max-width:700px){
  .footer-wrapper{
    grid-template-columns: 1fr;
  
  }

}

footer{
  background:#333;
  color:#777;
  padding-top:2em;

}
footer .address{
  font-size: 1.2rem;
  display:flex;
  justify-content: space-between;
  margin-bottom:2em;
  line-height: 1.5;
  font-style: normal;
}
address h4 {
  color:#777;
  font-style: normal;
  margin-bottom:10px;
}
address p{
  font-style: normal;
  font-size:.8em;
}
address a{
  display:inline-block;
  margin-top:.1em;
  font-family: sans-serif;
  text-decoration:none;
  color:#777;
  transition: color 300ms ease-out;
  font-size:.9rem;
  text-transform: unset;
  letter-spacing: 2px;;
}
address a:hover{
 color:white;
}
.payment-methods img{
  margin-top:1em;
  max-width:70px;
}
.payment-methods img:last-child{
  margin-left:10px;
  margin-bottom:6px;
}
.footer-logo{
  filter: opacity(0.40);
  margin-top:1em;
}
.copyright{
  text-align: center;
  padding:2em 0;
  background:#222;
}
.copyright p{
  margin-top:10px;
}
#top{
  color:white;
}

@media (max-width : 700px) {
  .address{
    flex-direction: column;
    margin-left:1em;
  }
  address h4 {
    margin-top:1.2em;
  }
  .footer-logo{
    margin-top:1em;
    margin-left:0;
  }
}