*{
    text-decoration: none;
    list-style: none;
    }
    body{
        overflow-x: hidden;
    }
/* start navbar */
.navbar{
    background-color: RGB(85, 85, 85 ,0);
    font-family: "Roboto Serif", serif;
  font-style: normal;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-brand {
    color: RGB(255, 48, 91);
    font-size: 24px;
    padding: 18px 0px ;
    font-weight: 800;
    text-decoration: none solid rgb(255, 48, 91);
}
.nav-item a{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    padding: 20px 0px;

}
.navbar .navbar-nav .nav-link.active 
,.nav-link:focus , .nav-link:hover 
,.navbar-brand:hover{
    color: #FF305B; 
}
/* end navbar */

/* start home */
#home{
    height: 100vh;
    background-image: url(../images/home.jpg);
    background-size: cover;
}
.home-content h3{
      font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
      font-weight: 600;
      font-size: 24px;
      color:#FFFFFF ;
      margin: 0px 0px 10px;

}
.home-content h1{
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
      font-weight:700;
      font-size: 70px;
      color:#FF305B ;
      margin: 0px 0px 10px;
        text-transform: uppercase;

}
.home-content h4{
     font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
      font-weight:300;
      font-size: 26px;
      color:#FFFFFF ;
      margin: 0px 0px 10px;
        text-transform: capitalize;
}
/* End Home */
/* Start About*/
#about{
    margin-top: 100px;
  
}

.about-box{
    width:100%; max-width:400px;
 aspect-ratio: 1.05 / 1;
     border-radius :5px;
    box-shadow: 0 0 0 8px #555555 inset;
    position: relative;
    margin-right: 0;
    margin-top: 0;
    
}
.about-photo{
  
    position: absolute;
    top: 20px ;
    left: 25px;
     overflow: hidden;


}
.about-photo img{
    width: 100%;
    border-radius :5px;

}
.photo-overly{
    background-color:  rgba(0, 0, 0, 0.534);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    opacity: 0;
    transition: all 1s  ;
     
  display: flex;
  align-items: center;
  justify-content: center;
    
}

.icons{
    position: absolute;
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%);

}
.icons a{
    font-size: 20px;
    color: white;
}

.about-photo:hover .photo-overly {
    top: 0;
    opacity: 1;
}
.icons a:hover{
    color: #FF305B;
}
.column h2{
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
 font-weight:600;
      font-size: 34px;
      color:#333333 ;
      text-transform:uppercase;
      margin: 0px 0px 25px;
      padding:0px 0px 0px 13px ;
      position: relative;
}
.column h2:after {
    background: #ff305b ;
    content: "";
    height: 60%;
    left: 0;
    position: absolute;
    top: 10px;
    width: 4px;
}
.column p{
        font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
      color:#555555 ;
      margin: 0px 0px 25px;
        line-height:25px;
     
}
.profile-about{
    border: none;
  border-top: 1px dashed #999; 
  margin: 20px 0;
  padding-top: 20px;
}
.profile-about ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px 20px; 
    list-style: none;
    padding: 0;
    margin: 0;
}
.profile-about li {
     font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
      color:#555555;
      margin: 0px 0px 25px;
}
.profile-about li span{
    font-family: "Roboto Serif", serif;
         font-weight:600;
      font-size: 16px;
      color:#333333 ;
}
.profile-about li a{
    font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
           color:#7E7E7E;
               text-decoration: none;

   

}
/* end about */

/* start service */
#service{
    background-color: #F1F1F1;
    padding-bottom: 30px;
}


.text-service h2{
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
 font-weight :800;
      font-size: 40px;
      color:#333333 ;
      margin: 90px 0px 10px;
      padding: 0px 0px 20px;
      position: relative;
}
.text-service h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;           
  height: 1px;           
  background-color: #ff3b6b; 
   

}

.text-service h2::after {
  content: "";
  position: absolute;
  bottom: -6px;         
  left: 50%;
  transform: translateX(-50%);
  width: 70px;          
  height: 1px;           
  background-color: #ff3b6b;
}
.text-service h2 span::after {
  content: "";
  position: absolute;
  top: 92% ;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background-color: #ff3b6b;
}

.service-card svg { padding-top: 30px; font-size:30px; width:30px; height:25px; color:#ff3b6b; }
.service-card h3{
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
 font-weight :600;
      font-size: 24px;
      color:#333333 ;
      margin:0px 0px 10px;
}
.service-card p{
      font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
      color:#555555 ; 
      line-height: 25px
}
.column-hover{
     transition: all 0.5s ease;
}
.service-card{
          padding-top: 20px;
          padding-bottom: 20px;
    transition: all 0.5s ease;
}

.service-card:hover {
   background-color: rgb(255, 255, 255);
   
}
/* end service */
/*  start Portfolio */
.nav-pills .nav-link{
    background-color: transparent;
     font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
      font-style: normal;
    color: #333333;
}
.nav-pills .nav-link.active{
    background-color: transparent;
    color: #FF305B;
     font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
      font-style: normal;

}

#exampleModal{
    background-color: rgba(0, 0, 0, 0.74);
}

.portfolio {
    position: relative;
}

.portfolio-view{
background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
   top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s;
}
.portfolio-view svg {
    position: absolute;
    width: 25px;
    height: 30px;
    right: 30px;
    bottom: 30px;
    color: #ff305b;
}

.portfolio-view:hover{
    opacity: 1;
}
/*  end Portfolio */
.members  .icon svg{
    width: 50px;
    height: 30px;
    color: red;
}

#testimonel {
  overflow: hidden;
  padding: 100px 0;
}
.testimonel-item {
  background: #f1f1f1 none repeat scroll 0 0;
  border-radius: 5px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}
.testimonel-item:after {
  border-color: #ff305b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 191px;
  content: "";
  left: -199px;
  position: absolute;
  top: 0;
  width: 77px;
  height: 72px;
}
.testimonel-content {
  padding-left: 130px;
}
.testimonel-content a {
  color: #777777;
  font-size: 15px;
}
.testimonel-img {
  border-radius: 50%;
  margin: 12px auto;
  overflow: hidden;
  position: relative;
  width: 110px;
  position: absolute;
  
  z-index: 999;
}
.testimonel-item h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.review-reating {
  color: #f1c30d;
  margin-bottom: 12px;
}
.testimonel-content  p {
  font-size: 16px;
  font-style: italic;
}

.carousel-indicators [data-bs-target]{
border: 1px solid #ff305b;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin: 5px 3px;

}
.carousel-indicators .active{
    background: #ff305b ;
  border-radius: 10px;
  padding: 2px 5px;
}

#blog{
    background-color: whitesmoke;
    padding-bottom: 40px;
}
.blog-content {
  padding: 20px;
  background: white;
}
.blog-date  ,.blog-content p ,.blog-read a{
    font-family: "Roboto Serif", serif;
         font-weight:400;
      font-size: 16px;
      color: #555555;
      margin: 0px 0px 10px;
}  
.blog-content h3 a{
    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
 font-weight :600;
      font-size: 24px;
      color:#555555 ;
      text-transform: capitalize;
          text-decoration: none;

      transition: all 1s;
}

.blog-read  a{
          transition: all 1s;

}
.blog-read  a :hover{
    color: #FF305B;
}
 .blog-content a:hover{
    color:#FF305B;
}

#Subject{
  height: 50px;
}
#Massege{
  height: 100px;
  width: 400px;
}