@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600&display=swap');
body{
    margin: 0;
    font-family: 'Work Sans', sans-serif;
}
h1{font-weight: 700;}
h3{color: #800000;}
h4{font-weight: 600;}
.main{
    background-image: url("../images/2.png");
    background-size:  100% 93.6%;
    background-repeat: no-repeat;
    /* background-size: cover; */
}
.fixed-top{
    background-color: #800000 !important;
    max-height: 3.5rem !important;
}
.navbar-brand{
    font-size: 2rem;
    font-weight: 700;
}



.nav-link{
    font-size: 1rem;
    font-weight: 600;
    color: #0697eb !important;
    text-transform: uppercase;
    padding-right: 2rem;
}
.navbar-nav.m-lg-auto {
	padding-bottom: 1rem;
    padding-left: 2rem;
    text-align: right;
}

.nav-link:hover{
    border-bottom: 1px solid #f9f2f2;
}
/* btn */
.btn-primary{
    background-color: #800000;
    border: #800000;
    padding: 1rem 3rem;
}
.btn-primary:hover{
    background-color: #f9f2f2;
    color: #800000;
    border: #800000 !important;
}
.btn-secondary{
    background-color: #f9f2f2;
    color: #800000;
    border: none;
}
.btn-secondary:hover{
    background-color: #902323;
    border: #f9f2f2 !important;
}

/* intro */
/* about */
.about-img{
    border: 35px solid #800000;
}

.progress-bar{
    background-color: #800000;
    color: #f9f2f2;
}
/* services */
#services, #pricing{
    background-color: #f9f2f2;
}
.card{
    background-color: #f9f2f2;
    margin: 0 0.5em;
    box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
    border: none;
}
.card:hover{
    background-color: #800000;
    color: #f9f2f2;
}

/* portfolio */
.content{
    position: relative;
    width: 90%;max-width: 400px;
    margin: auto;
    overflow: hidden;
}
.content .content-overlay{
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 99%;width: 100%;
    left: 0;top: 0;bottom: 0;right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s
}
.content:hover 
.content-overlay{opacity: 1}

.content-image{
    width: 100%;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px
}
.content-details{
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;width: 100%;top: 50%;left: 50%;
    opacity: 0;-webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s
}
.content:hover .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
}
.content-details h3{
    color: #fff;font-weight: 500;
    letter-spacing: 0.15em;margin-bottom: 0.5em;
    text-transform: uppercase
}
.content-details p{
    color: #fff;
    font-size: 0.8em
}
.fadeIn-bottom{top: 80%}

/* contact */
.contact-wrapper{
    background-color: #800000;
}

/* footer */
ul{
    display: flex;
  list-style: none;
  justify-content: center;
  padding-top: 20px;
}
ul li{
    flex-direction: row;
}
ul li a{
    text-decoration: none;
    color: #b5b2b2;
    padding: 20px;
}
ul li a:hover{
    color: #f9f2f2;
}

/* Center the social icons within the column */
.col-md-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* Style the social icons */
  .fab {
    font-size: 2rem;
    margin: 0.5rem;
    transition: color 0.2s ease-in-out;
  }
  
  /* Style the Twitter icon on hover */
  .fab.fa-twitter:hover {
    color: #1da1f2;
  }
  
  /* Style the LinkedIn icon on hover */
  .fab.fa-linkedin:hover {
    color: #0077b5;
  }
  
  /* Style the YouTube icon on hover */
  .fab.fa-youtube:hover {
    color: #ff0000;
  }
  