 /* Google Font CDN Link */
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
 *{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: "Poppins" , sans-serif;
   
 }
 /*contact form*/
 .contact-form{
   display:flex;
   justify-content:center;
   margin-bottom:100px;
   z-index:4;
 }
  
 .container-2{
   width: 85%; 
   
   background:linear-gradient(rgb(0,0,0,0.9),rgb(0,0,0,0.8));
   border-radius: 6px;
   padding: 20px 60px 30px 40px;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.9);
 }
 .container-2{
    color:white;
 }
 .container-2 .content-2{
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 .container-2 .content-2 .left-side-2{
   width: 25%;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   margin-top: 15px;
   position: relative;
 }
 .content-2 .left-side-2::before{
   content: '';
   position: absolute;
   height: 70%;
   width: 2px;
   right: -15px;
   top: 50%;
   transform: translateY(-50%);
   background: #efff;
 }
 .content-2 .left-side-2 .details-2{
   margin: 14px;
   text-align: center;
 }
 .content-2 .left-side-2 .details-2 i{
   font-size: 30px;
   color: #393a99;
   margin-bottom: 10px;
 }
 .content-2 .left-side-2 .details-2 .topic-2{
   font-size: 18px;
   font-weight: 500;
   color:white;
 }
 .content-2 .left-side-2 .details-2 .text-one-2,
 .content-2 .left-side-2 .details-2 .text-two-2{
   font-size: 14px;
   color: #afafb6;
 }
 .container-2 .content-2 .right-side-2{
   width: 75%;
   margin-left: 75px;
 }
 .content-2 .right-side-2 .topic-text-2{
   font-size: 30px;
   margin:10px;
   font-weight: 600;
   color: #2f2d94;
   font-family: 'Pacifico', cursive;
   text-shadow: 0px 0px 1px white;;
    
 }
 .right-side-2 .input-box-2{
   height: 50px;
   width: 100%;
   margin: 12px 0;
 }
 .right-side-2 .input-box-2 input,
 .right-side-2 .input-box-2 textarea{
   height: 100%;
   width: 100%;
   border: none;
   outline: none;
   font-size: 16px;
   background: #f0f1f8;
   border-radius: 6px;
   padding: 0 15px;
   resize: none;
   box-shadow:inset 0px 0px 10px rgb(0,0,0,1),0px 0px 15px rgb(0,0,0,0.6) ;
 }
 .right-side-2 .message-box-2{
   min-height: 110px;
 }
 .right-side-2 .input-box-2 textarea{
   padding-top: 6px;
 }
 .right-side-2 .button-2{
   display: inline-block;
   margin-top: 12px;
 }
 .right-side-2 .button-2 button{
   color: #fff;
   font-size: 18px;
   outline: none;
   border: none;
   padding: 8px 16px;
   border-radius: 6px;
   background: #1f1297;
   cursor: pointer;
   
   transition: all 0.3s ease;
 }
 .button-2 button:hover{
   background: #5c32d1;
 }
 
 @media (max-width: 950px) {
   .container-2{
     width: 90%;
     padding: 30px 40px 40px 35px ;
   }
   .container-2 .content-2 .right-side-2{
    width: 75%;
    margin-left: 55px;
 }
 }
 @media (max-width: 820px) {
   .container-2{
     margin: 40px 0;
     height: 100%;
   }
   .container-2 .content-2{
     flex-direction: column-reverse;
   }
  .container-2 .content-2 .left-side-2{
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .container-2 .content-2 .left-side-2::before{
    display: none;
  }
  .container-2 .content-2 .right-side-2{
    width: 100%;
    margin-left: 0;
  }
 }