/* ZİGZAG CSS*/


* {
  box-sizing: border-box;
}

.zigzag .container {
  padding: 20px;
}

/* Clear floats */
.zigzag .row:after {
  content: "";
  display: table;
  clear: both
}

/* 2/3 column */
.zigzag .column-66 {
  float: left;
  width: 50%;
     

}

.zigzag .column-66 img{}

/* 1/3 column */
.zigzag .column-33 {
  float: left;
  width: 50%;
  padding: 40px;

    font-size: 19px; 
    font-weight: 300;
    line-height: 35px;
    font-weight: normal;
    color: #666;
    border-radius: 5px;
}

.zigzag .column-33 h3{padding: 30px 0px; font-size:32px; font-weight: 600; color:#000}

/* Add responsiveness - make the columns appear on top of each other instead of next to each other on small screens */
@media screen and (max-width: 1000px) {
 .zigzag .column-66,
  .zigzag .column-33 {
    width: 100%;
    text-align: center;
  }
    
/* ZİGZAG CSS*/
    
    .btn {

    margin-bottom: 0.5rem;
    margin-top: 15px;
    margin-right: 0.25rem;
    padding: 0.9rem 1.3rem 0.8rem;
    font-size: 0.65rem;
    letter-spacing: 0.025rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    border-radius: 1.5rem;
    text-shadow: none;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block !important;
}
    
    .btn:focus {
    color: var(--color-white);
    box-shadow: inherit;
}
.btn:hover,
.btn:active,
.btn.active {
    color: var(--color-white);
    box-shadow: var(--btn-hover-default);
}