*{
    box-sizing: border-box;
    margin: 0;
    font-family: poppins;
}
.align-items-center {
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.d-flex {
    display: flex;
}
.gap-15 {
    gap: 15px;
}



.flt-container{
    width: 1200px;
    margin: 0 auto;
}

.box-blue {
    background-color: #F0FFEE;
    border-radius: 22px;
    padding: 15px;
    box-shadow: 0px 3px 6px #0000000A;
    border: 1px solid #E8E8E8;
    margin-top: 20px;
    display: flex;
    gap: 20px;
}
a{
    text-decoration: none;
    color: inherit;
}
.call-us{
    display: flex;
    gap: 15px;
    flex: 1;
    align-items: center;
}
.social-icon img {
    max-width: 100%;
}
.logo-contenr-wrap .text span {
    font-size: 18px;
    color: #000;
    margin-bottom: 0px;
    font-weight: bold;
}
.logo-contenr-wrap .text span.ft-700{
    font-size: 22px;
    font-weight: bolder;
}
.logo-contenr-wrap .text p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0px;
}
.logo-brand{
    flex: 1;
}
.logo-brand .logo {
    text-align: center;
    border-right: 1px solid #E8E8E8;
    padding: 0px 10px;
    margin-top: 15px;
    display: inline-block;
}
.logo-brand .logo:last-child{
    border-right: 0;
}
.mntitle{
    font-size: 27px;
    font-weight: bold;
}
.pplrfltbx{
    margin-top: 40px;
}
.fltdlsld{
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
    max-width: 100%;
}
.fltdlsld::-webkit-scrollbar{
    height: 0;
}
.fltdlitm{
    border: 1px solid #F5F5F5;
    box-shadow: inset 0 -1px 6px 0 #CCD9E3;
    border-radius: 18px;
    padding: 15px;
    width: 100%;
    flex: 1;
    min-width: 320px;
    max-width:32%;
    cursor: pointer;
}
.fltdlitm.flx-27{
    flex: 1.3;
}
.fltdlitm.flx-13{
    flex: 1.3;
}
.flimtp>img{
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 3px 6px 0 #e5e5e5;
}
.fltbx{
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 9px 0 #e5e5e5;
    border-radius: 28px;
    padding: 5px 8px 5px 5px;
    position: relative;
    top:-15px;
    left: 8px;
    background: #fff;
    width: fit-content;
}
.flticn{
    padding: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #E38035;
}
.flticn img{
    display: block;
}
.flticttl{
    font-size: 12px;
    font-weight: 600;
}
.flittl{
    font-size: 20px;
    font-weight: 600;
}
.alnbx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trptype{
    font-size: 14px;
}
.trprc{
    font-size: 25px;
    font-weight: 700;
}
.clcntrbx{
    margin-top: 40px;
}
.clitmbx{
    display: flex;
justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.clmitm{
    background: #F9F9F9;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    text-align: center;
}
.clttl{
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    text-wrap-style: pretty;
}
.nte{
    font-size: 12px;
    color: #121212;
    margin-top: 10px;
}
.nte a{
    text-decoration: underline;
    color: #2196f3;
}

.fltcont{
    margin-top: 40px;
}
.fltcont p{
    font-size: 15px;
    color: #121212;
    margin-top: 10px;
}

.stcbx{
    margin: auto;
    margin-top: 40px;
    min-width: max-content;
    padding: 10px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: none;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%,0);
    box-shadow: 0 2px 6px 0 #0000008f;
}
.ternt{
    font-size: 25px;
    cursor: pointer;
}

@keyframes slideUp {
    from {
      bottom: -50px;
      opacity: .5;
    }
    to {
      bottom: 10px;
      opacity: 1;
    }
  }


  .slide-up {
    display: flex; 
    animation: slideUp 0.3s ease;
  }