.abt_section{
    justify-content: start;
    flex-direction: column;
    padding-left: 103px;
    gap: 32px;
    height: auto;
}
.abt_container{
    padding: 0px 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.abt_left{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px 16px;
    width: 52%;
    align-items: start;
}
.abt_right{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 100px 16px;
    justify-content: center;
    width: 48%;
    border-radius: 8px;
    background: rgba(68, 71, 79, 0.20);
}
.abt_title{
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    margin: 0px;
}
.abt_subtitle{
    color: #CBCBCB;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.137px;
    margin: 0px;
}
.abt_righttop{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}
.abt_righttextbar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 500px;
}
.abt_righttitle{
    color: #FFF;
    font-family: Inter;
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    margin: 0px;
}
.abt_rightsubtitle{
    color: var(--button-default, #FFF);
    font-family: Inter;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0px;
}
.abt_textboxbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}
.abt_textbox, .abt_textbox:focus{
    display: flex;
    width: 340px;
    height: 42px;
    padding: 8px 12px;
    color: var(--default-text, #9B9B9B);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 11.921px;
    justify-content: center;
    color: var(--default-text, #9B9B9B);
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--input-border, #748294);
    background: var(--input-field, #131517);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.28);
}
.abt_textbox::placeholder{
    color: var(--default-text, #9B9B9B);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 11.921px;
}
.abt_btn{
    display: flex;
    height: 42px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8.855px;
    border-radius: 4px;
    border: 1px solid #748294;
    background: var(--asset-bg, #26272E);
    box-shadow: 3.32px 4.427px 4.427px 0 rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22.137px; /* 138.354% */
}
.abt_btn:hover{
    border: 1px solid #FFFFFF;
    background-color: #22282f;
    color: #FFFFFF;
}
.abt_partnermain{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0px 16px;
    width: 100%;
}
.abt_partnertitle{
    color: var(--darl-teal, #01C1B6);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 35px;
    margin: 0px;
}
.partners-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0px 16px;
}
.partners-wrapper img{
    width: 80px;
}
/* Hide scrollbar */
.partners-wrapper::-webkit-scrollbar {
  display: none;
}

.partner-card {
  min-width: 120px;
  height: 120px;
  background: #2e5d57;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  max-width: 70%;
  max-height: 70%;
}

/* Arrow Buttons */
.partner-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: #2b2f32;
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* shown only if overflow */
}

.partner-btn.left {
  left: 0;
}

.partner-btn.right {
  right: 0;
}
.part_container{
    padding: 0px 42px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 700px) {
    .abt_section{
        padding-left: 0px;
    }
    .abt_container{
        flex-direction: column;
        padding: 0px 24px;
    }
    .abt_left{
        width: 100%;
        padding: 30px 0px 0px;
    }
    .abt_righttop{
        flex-direction: column-reverse;
    }
    .abt_container{
        width: 100%;
    }
    .abt_subtitle{
        font-size: 14px;
    }
    .abt_textboxbar{
        flex-direction: column;
        align-items: start;
    }
    .abt_textbox, .abt_textbox:focus{
        width: 100%;
    }
    .abt_btn{
        width: 100%;
    }
    .abt_right{
        padding: 36px 16px;
        width: 100%;
    }
    .partners-wrapper img{
        width: 54px;
    }
    .partners-wrapper{
        gap: 8px;
    }
}