* {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*==================================================================

About Section 

===================================================================*/



.about-two-left {
    padding: 10px;
    width: 40%;
    float: left;
  }
  
  
  .about-two-right {
    padding: 10px;
    width:55%;
    float: right;
  }
  
  /* Responsive layout - makes a one column-layout instead of two-column layout */
  @media (max-width: 1000px) {
   
    .about-two-left {
        width: 100%;
      }      
      .about-two-right {
        width: 100%;
      }
  }
  
/*==================================================================

Talks Section
  
===================================================================*/
  
  .talks-two-left {
    padding: 10px;
    width: 20%;
    vertical-align: top;
    float: left;
  }
  
  
  .talks-two-right {
    padding: 10px;
    width: 80%;
    float: right;
  }
  
  /* Responsive layout - makes a one column-layout instead of two-column layout */
  @media (max-width: 1000px) {

    .talks-two-left {
        width: 100%;
      }      
      .talks-two-right {
        width: 100%;
      }
  }