.main_container {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 5%;
  margin-right: 5%;
  border: 15px solid #6d7e8c;
  margin-bottom: 25px;
  margin-top:25px;
}
.left_container {
  width: 30%;
  height: 400px;
}
.right_container {
  width: 70%;
  
}
.product_title 
{
  font-family: system-ui;
  font-size: 40px;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  background: #004188;
  
}
.product_title_m {
    display: none;
    font-size: 25px;
    font-weight: 700;
    padding: 15px;
    text-align: center;
    background: #004188;
    
  }

.product_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product_description ul li {
  line-height: 24px;
  font-size: 18px;
  color: #004188;
  margin-right: 5px;
}
.product_description ul{
    line-height: 23px;
    columns: 1;
    margin-left: 30px;
}
.product_description
{
    height: auto;
    width: 70%;
}
.contact_link {
    height: auto;
    width:30%;   
    display: flex;
    padding-right: 35px;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    
}
.contact_inner {
    width: 100%;
    border: white 5px solid;
    background-color: #113f8a;
    margin-bottom: 25px;
}
.contact_sub {
  display: flex;
  border: 1px solid white;
  margin: 10px 15px 10px 15px;
  justify-content: center;
}
.contact_span {
    font-weight: 700;
    font-size: 25px;
}
.r_content_product
{
  display: flex;
  flex-direction: row;
  width: 100%;
}

/*Responsive Design*/
@media(max-width:768px){
    .product_title_m{
      margin-bottom: 0px;
        display: block;
    }
    .product_title{
        display: none;
    }
    .main_container{
        flex-direction: column;
    }
    .left_container{
        width: 100%;
        height: auto;
    }
    .right_container{
        width: 100%;
    }
    .product_description ul{
        columns: 1;
    }
    .product_description{
        height: 100%;
        width: 100%;
        
    }
    .contact_inner{
        width: 100%;
    }
    .contact_link{
        padding-right: 0px;
        width: 100%;
    }
    .r_content_product
    {
      flex-direction: column;
    }

}

