.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px 48px;
}
.container-fluid {
  padding: 0 48px;
}

 html {
    line-height: 1.15; 
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }
  body {
    margin: 0;
    font-family: 'Gilroy-Regular';
  }
  main {
    display: block;
  }
  * {
    outline: none;
}
.col-65 {
  max-width: 65%;
  width: 100%;
}
.col-60 {
  max-width: 60%;
  width: 100%;
}
.col-50 {
  max-width: 50%;
  width: 100%;
}
.col-40 {
max-width: 40%;
width: 100%;
}
.col-35 {
  max-width: 35%;
  width: 100%;
}
.col-34 {
max-width: 34%;
width: 100%;
}

h2 {
    font-size: 40px;
    line-height: 44px;
    font-family: 'Gilroy-Bold';
    color:#161A1D;
    letter-spacing: -0.4px;
}
*{
  box-sizing: border-box;
}
  hr {
    box-sizing: content-box; 
    height: 0; 
    overflow: visible;
  }
  
  a {
    background-color: transparent;
  }
  b,
  strong {
    font-weight: bolder;
    font-family: 'Gilroy-Bold';
  }
  
  img {
    border-style: none;
  }
 
  textarea {
    overflow: auto;
  }
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; 
    padding: 0; 
  }
  /* Remove padding and margin */
* {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .clear {
    clear: both;
  }
  .right {
    float: right;
  }
  .left {
    float: left;
  }
  p{
    color: #161A1D;
}
section {
  overflow: hidden;
}
.desktop {
  display: block !important;
}
.mobile, .tablet {
  display: none !important;
}
@media screen and (max-width: 1024px){
  .join_btn.desktop {
    display: none !important;
  }
.container {
  padding: 0px 23px;
}
.tablet {
  display: block !important;
}
}

  @media screen and (max-width: 767px){
    .desktop {
      display: none !important;
    }
    .mobile {
      display: block !important;
    }
    .col-65 {
      max-width: 100%;
    }
    .col-60 {
      max-width: 100%;
    }
    .col-50 {
        max-width: 100%;
    }
    .col-40 {
      max-width: 100%;
    }
    .col-35 {
      max-width: 100%;
    }
    .col-34 {
      max-width: 100%;
      }
      .container-fluid {
        padding: 0 23px;
    }
  }
  /* Modal container */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #161A1D80; /* Semi-transparent background */
    overflow: scroll;
    /* min-height: 650px; */
}

/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 120px auto;
    margin-bottom: 60px;
    padding: 64px 52px;
    width: 80%;
    max-width: 800px;
    border-radius: 16px;
    position: relative;
    /* max-height: 100%; */
    /* overflow: scroll; */
    /* height: 100%; */
}

.modal-content a {color: #137D00;font-family: 'Gilroy-Bold';}
.modal-content p {
  font-family: 'Gilroy-Medium';
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  font-weight: 400;
  margin-bottom: 16px;
}
.modal-content h4 {
  font-family: 'Gilroy-Bold';
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.closeModal {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #137D00;
    width: 36px;
    height: 36px;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

@media screen and (max-width: 767px){
  .modal-content {
  width: 90%;
  }
}