.about_content{
    display: flex;
        flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
.aboutPage .banner_content{
    padding: 50px 0 50px;
}
.about_list{
        display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-left: -3rem;
}
.about_list_left{
    width: 500px;
    height: 385px;
    background: url('../images/about/data-center-allianceit.svg') 0 0 no-repeat;
    background-size: contain;
}
.about_item {
    width: 48%;
    text-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  /* background for the card */
  background: rgba(255,255,255,0.03);
  /* ensures backdrop-filter shows */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 0;              /* base stacking for pseudo */
  cursor: pointer;
  color: #fff;
  backdrop-filter: blur(70px);
    box-shadow: 0px 1.2px 29.92px 0px #452A7C1A;
    /*  border: 3px solid; 
    /* border-image-source: linear-gradient(155.31deg, rgba(255, 255, 255, 0.5) 12.33%, rgba(255, 255, 255, 0) 34.31%, rgba(255, 255, 255, 0) 52.66%, rgba(255, 255, 255, 0.54) 74.67%); */
  
}

.about_item img.icon{
        width: 40px;
    margin-bottom: 0.5rem;
}
/* gradient border */
.about_item::before {
  content: "";
  position: absolute;
  inset: 0;                 /* top:0; right:0; bottom:0; left:0; */
  padding: 2px;             /* border thickness */
  border-radius: inherit;   /* follow parent's radius */
  pointer-events: none;
  z-index: 1;

    
    background: linear-gradient(86.16deg, rgba(255, 255, 255, 0.2) 11.14%, rgba(255, 255, 255, 0.035) 113.29%);

  /* mask out the center so only the ring remains */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /* Chrome / Safari */
  mask-composite: exclude;     /* Firefox (may require latest) */
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
    mask-composite: exclude; 
}
.about_item_title{
    font-size: 16px;
    line-height: 27px;
    font-family: 'Inter-reg', sans-serif;
    background: linear-gradient(91.35deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 103.32%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about_item_desc{
        font-size: 14px;
    line-height: 24px;
    font-family: 'Inter-light';
}
.serve_sqr{
    display: flex;
}
.serve_sqr .expert_sqr_btm{
        margin-left: -2rem;
}
.serve_sqr .expert_txt{
        text-align: left;
}
.aboutPage .about_widget::before{
    top: -100% !important;
}
.aboutPage .btn-cta{
        font-size: 14px;
}
.aboutPage .pentagon_logo { 
    margin: 0rem auto 0 !important;
}
@media (max-width: 767px) {
    .aboutPage .about_widget::before {
        top: 0 !important;
            width: 100%;
    }
    .about_content{ flex-direction: column;}
    .about_list_left {
    width: 100%;height: 300px;}
    .about_list {
    flex-direction: column;
    margin-left: 0;}
    .about_item {
    width: 100%;}
}