/* css to reset all the designs */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Qwitcher+Grypen:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
  --primary: #D81324;
  --secondary: #0B2154;
  --light: #F2F2F2;
  --dark: #111111;
  --white:#fff;
  --gold:#eb8406;
  --green: #4da391;
}


/******* footer ************/


footer{
    margin-top: 1.5rem;
    background: linear-gradient(to right, #693dab, #cd29a2);;
  }
  
  .footercontainer {
    padding: 20px;
    text-align: center;
  }
  
  footer h1 {
    margin-bottom: 20px;
  }
  
  footer p {
    line-height: 1.6;
  }
  
  .logo {
    margin-bottom: 30px;
  }
  
  .logo img {
    max-width: 200px;
  }
  
  .footercontact {
    margin-bottom: 20px;
  }
  
  .footercontact a {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
  }
  .footercontact i{
  color: #fff;  
  padding-right: 10px;
  }

  .footercontact a:hover{
    color: var(--primary);
  }
  
  .social {
    margin-bottom: 20px;
  }
  


   .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

 .btn.btn-social:hover {
    color: var(--primary);
}

 footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

 footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

 .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}


  .social  {
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  
  footer .services h2 {
    color: #fff;
    margin-bottom: 20px;
  }
  
  
  .services .service{
  display: inline-block;
  }
  .service_border{
    border-right: 2px solid var(--white);
  }
  
  .services .service h3 {
    color: #fff;
    font-size: 1em;
    margin: 0 10px;
    border-radius: 5px;
  } 
  
  .footer {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    color: #fff;
  
  }
  
  .footer p {
    margin: 0;
    position: relative;
  }
  .footer p::after{
    content: '';
    position: absolute;
    top: -10px; 
    left: 50%;
    width: 80%; 
    height: 2px; 
    background-color: var(--white); 
    transform: translateX(-50%);
  }
  