:root{
    font-size: 62.5%; 
    --black: #242424;
    --red: #FE7075;
    --green: #4ABEA8;
    --grey: #AFAFAF;
    --blue: #325FFF;
    --lightgrey: #F0F0F0;
    --yellow:#FEE8B1;
    --purple: #4870FD;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-display: swap;
    position: relative;
    color: var(--black);
    font-weight: 400;

}
.row{
    max-width: 100%;
}
.post, .page{
    margin: 0;
}
.container{
    max-width: 73.96%;
    margin: auto;
}
.button{
    text-decoration: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: fit-content;
}

.buttons-cont{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    position: relative;
}
.o-7{
    opacity: .7;
}
.primary{
    color: var(--black);
}
.red{
    color: var(--red);
    fill: var(--red);
}
.blue{
    color: var(--blue);
    fill: var(--blue);
}
.purple{
    color: var(--purple);
    fill: var(--purple);
}
.green{
    color: var(--green);
    fill: var(--green);
}
.grey{
    color: var(--grey);
}
.white{
    color: white;
    fill: white;
}
.br-1{
    border-radius: 1rem !important;
}
.br-2{
    border-radius: 2rem !important;
}
.tag{
    padding: 1.5rem 2rem;
    display:inline-block;
    margin-bottom: 1.5rem;
}
.grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 2.6vw, 2.6vw); /* Adjusts gap between columns */
  }
.grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 1.56vw, 2.6vw); /* Adjusts gap between columns */
  }
  .grid-four{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 1.56vw, 2.6vw); /* Adjusts gap between columns */

  }
  #footer-join{
    background-color: #f9f9f9;

  }
  .join{
    background: url(../resources/images/general/join.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    text-align: center;
}
.join a{
    background: linear-gradient(45deg,#6183fd ,#2a59ff);
    padding: 2rem 4rem;
    border-radius: 1000px;
    display: inline-flex;
 
}
.card{
    border: .1rem solid var(--grey);
    background: white;
}
.card img{
    height: 3.6rem;
    margin-left: auto;
    margin-right: auto;
}
.tick{
    width:3rem;
    height:3rem;
    object-fit:contain;
}
.support-list{
    list-style:none;
    padding: 0  !important;
}
.support-list.right{
    float:right;
}
.support-item{
    display: flex;
    column-gap:1.5rem;
    align-items: start;

}
#support .row{
    align-items:center;
}
.img{
    max-width: 100%;
    width: 100%;
}
#services .nav-link{
    padding:1.3rem 1.8rem;
    color: var(--black);
    font-weight: 400;
}
#services .nav-link.active{
    padding:1.3rem 1.8rem;
    color: white !important;
    font-weight: 600;
    background: #4870FD;
}
#services .nav-pills{
    gap: 2rem;
    justify-content: center;
}
.tab-content img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.tab-pane.show.active{
    display: flex !important;
    gap: clamp(20px, 2.6vw, 2.6vw );
    justify-content: center;
    flex-wrap: wrap;
}
.tab-pane .card{
    max-width: 43rem;
    
}
@media screen and (max-width:1300px){
    .container{
        max-width: 90%;
    }
}
@media screen and (max-width:1200px){
    .container{
        max-width: 90%;
    }
    .grid-four, .grid-three{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:768px){
    .container{
        max-width: 96%;
    }
    br{
        display: none;
    }
    .grid {
        grid-template-columns: 1fr; /* Switch to 1 column on smaller screens */
      }
      [class^="col"]{
        margin-bottom: 2rem;
      }
}