 body{
    background: #5C258D;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #4389A2, #5C258D);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #4389A2, #5C258D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 }
 .contact{
 padding: 4%;
 height: 400px;
 }
 .col-md-3{
  =
 padding: 4%;
 border-top-left-radius: 0.5rem;
 border-bottom-left-radius: 0.5rem;
 }
 .contact-info{
 margin-top:10%;
 }
 .contact-info img{
 margin-bottom: 15%;
 }
 .contact-info h2{
 margin-bottom: 10%;
 }
 .col-md-9{
  
 padding: 3%;
 border-top-right-radius: 0.5rem;
 border-bottom-right-radius: 0.5rem;
 }
 .contact-form label{
 font-weight:600;
 }
 .contact-form button{
 background: #25274d;
 color: #0e0d0d;
 font-weight: 600;
 width: 25%;
 }
 .contact-form button:focus{
 box-shadow:none;
 } 
  
  .brand:before {
    background-size: 100% 100%;
    content: "Botix.ai";
    line-height: 205px;
    color: #f5f2f7;
    /* fill: none; */
    font-size: 20px;
    font-family: "HEAVITAS", "Helvetica Rounded", Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: absolute;
    z-index: 99999 !important;
  }
  
  svg path {
    position: absolute;
  
    stroke-width: 2;
    top: 0;
    left: 0;
    /*mix-blend-mode: multiply;*/
    transform-origin: 50% 50%;
    transform: rotate(0deg);
    animation: 4s linear infinite;
  }
  
  .logo svg path:nth-child(1) {
    opacity: 1;
    animation-name: rotate-1;
    animation-delay: 0.5s;
  }
  .logo svg path:nth-child(2) {
    opacity: 0.5;
    animation-name: rotate-2;
    animation-delay: 0.6s;
  }
  .logo svg path:nth-child(3) {
    opacity: 0.8;
    animation-name: rotate-3;
    animation-delay: 0.7s;
  }
  
  @keyframes scale-1 {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes rotate-0 {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotate-1 {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes rotate-2 {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(-360deg);
    }
  }
  
  @keyframes rotate-3 {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(0deg);
    }
  }