.about-banner{
    height: 544px;
    position: relative;
}

.bg-about-section{
    position: absolute;
    top: 0;
    bottom: 0;
    width:100%;
    height:544px;
    opacity: .8;
    background: linear-gradient(136deg, #2da6cc, #2e82a3, #301065);
    /* background:linear-gradient(278.25deg, rgba(65, 157, 197, 0.8) -1.51%, rgba(116, 163, 198, 0.8) 28.84%, rgba(96, 194, 228, 0.8) 59.19%, rgba(86, 188, 196, 0.8) 104.97%), #000000; */
    background-size: 600% 600%;
    -webkit-animation: gradientAnimation 16s ease infinite;
    -moz-animation: gradientAnimation 16s ease infinite;
    -o-animation: gradientAnimation 16s ease infinite;
    animation: gradientAnimation 16s ease infinite;
}
 
/* linear-gradient(114.13deg, #2FBEC2 -5.35%, #2E82A3 22.85%, #301065 89.65%) */
 
@-webkit-keyframes gradientAnimation {
    0%{background-position:0% 30%}
    50%{background-position:100% 71%}
    100%{background-position:0% 30%}
}
@-moz-keyframes gradientAnimation {
    0%{background-position:0% 30%}
    50%{background-position:100% 71%}
    100%{background-position:0% 30%}
}
@-o-keyframes gradientAnimation {
    0%{background-position:0% 30%}
    50%{background-position:100% 71%}
    100%{background-position:0% 30%}
}
@keyframes gradientAnimation {
    0%{background-position:0% 30%}
    50%{background-position:100% 71%}
    100%{background-position:0% 30%}
}

.home-blog-text{
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    z-index: 1;
}

.about-heading-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about-grid-list{
    list-style: none;
    padding: 0;
    max-width: max-content;
}

.marketing-icon{
    margin-top: -10px !important;
}

.about-list-heading{
    margin-top: 22px;
    margin-bottom: 8px;
}

.about-grid-list li{
    padding: 6px 0px;
}

/* .about-process{
    bg
} */

.about-process .about-heading-container{
    margin-bottom: 80px;
}

.process-card-container{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-process-card{
    background-color: #0E120F;
    background-image: url('../images/about/about-process-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 32px 48px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.color-box-container{
    display: flex;
    gap:0.5rem;
}

 .process-color-box{
    background-color: #1D71B8;
    height: 59px;
    width: 160px;
}


.process-color-box2{
    background-color: #308CDA;
    height: 59px;
    width: 240px;
}

.process-color-box3{
    background-color: #46A2F1;
    height: 59px;
    width: 320px;
}

.process-color-box4{
    background-color: #79C1FF;
    height: 59px;
    width: 160px;
}

.process-btn-container{
    display: flex;
    justify-content: center;
}

.process-btn-container a{
    max-width: max-content;
}

.process-btn-container a:hover{
    cursor: pointer;
}

.key-things-grid{
    margin-top: 80px;
}

.key-grid-item{
    max-width: 450px;
    width: 100%;
}

.about-message-img{
    max-width: 300px;
    max-height: 324px;
}

.about-message-para{
    font-size: 22px;
    font-family: 'Satoshi-Regular';
    font-weight: 400;
    line-height: 32px;
}

.about-undertext{
    font-family: 'Satoshi-Regular';
    font-weight: 400;
}


/* ----------------------------- Modal and Form Styling  */

body .modal-dialog { /* Width */
    max-width: 1000px;
    width: auto !important;
    display: inline-block;
    height: 80vh;
} 

.modal-dialog .modal-content{
    padding: 1.5rem;

}

.modal {
    z-index: -1;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  
  .modal-open .modal {
     z-index: 9999;
  }

  .modal-contact{
    background-color: #F8FAFB;
  }


