* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', sans-serif;
    color: #f4f5ef;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    box-sizing: border-box;
    animation: fadeIn ease 0;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    overflow-x: hidden !important;
    background-color: #131313;
    scroll-behavior: smooth;
}



/* -------- Animation -------- */


.tag {
    opacity: 0;
    transform: translate(0, 10vh);
    transition: all 1s;
    overflow: hidden;
    z-index: 1;
}

.tag.visible {
    opacity: 1;
    transform: translate(0, 0);
    overflow: hidden;
}

.tag1 {
    opacity: 0;
    transform: translate(5vw, 10vh);
    transition: all 1s;
    overflow: hidden;
}


.tag2 {
    opacity: 0;
    transform: translate(-5vw, 10vh);
    transition: all 1s;
    overflow: hidden;
}

.tag2.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.tag1.visible {
    opacity: 1;
    transform: translate(0, 0);
}



/* -------- Navbar -------- */


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 24px;
    animation-name: fadeInDown;
    animation-duration: 1s;
}


.navbar-logo {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease-in-out;

}


.navbar-logo :hover {
    transform: scale(0.85);
    transition: all 0.3s ease-in-out;
}

.navbar-logo img {
    width: 48px;
    height: auto;
    transition: all 0.3s ease-in-out;
}


/*--------- Index CSS ---------- */

.header-wrap {
    width: 100%;
    max-width: 1600px;
    height: 50vh;
    display: flex;
    align-content: center;
    align-items: center;
    background-color: #000;
    margin: 0 auto;
    z-index: -1;
    position: fixed;
}

.header-container {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: auto;
    padding: 96px 24px 0 24px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.header-container-logo {
    width: 30%;
    height: auto;
    display: flex;
   
    align-content: center;
   
}

.logo-animation {
    max-width: 400px;
    height: auto;
    animation: 
        fade-in-2 4s ease,
        flipV 5s ease;
         

}


/*-------
@keyframes swing-in-bottom-fwd {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        opacity: 1;
    }
}

------------*/

.flipV {
    animation-iteration-count:infinite;
}

@keyframes flipV {
    0%{
        transform: rotateX(180deg);
        opacity: 0;
    }
    100% {
        transform: rotateX(360deg);
        opacity: 1;
    }

    
}



@keyframes mymove {
    50% {background-position: center;}
  }

  @keyframes fade-in-2 {
    0% {opacity: 0;}
    
    85% {opacity: 0;}
    
    100%{opacity: 100%;}
  }

  @keyframes grow {
    0% {top: 0; }
    100% {top: 300px; }
}


  @keyframes fade-out-2 {
    0% {opacity: 100%;}
    
    85% {opacity: 100%;}
    
    100%{opacity: 0;}
  }



.header-container h1 {
    font-size:5vw;
    line-height: 1.1;
    color: #fafafa;

    /*--
    animation: slideInLeft;
    animation-duration: 1s;
    */

}

.header-container h2 {
    font-size:2.1vw;
    font-weight: 300;
    line-height: 1.2;
    overflow: hidden;
    color: #EEEEEE;
    /*--
    animation: slideInLeft;
    animation-duration: 1s;
    */

}


.index-container {
    width: 100%;
    margin-top: 30%;
    padding: 24px;
  

}

.left-copy-index {
    width: 100%;
    overflow: hidden;
}

/*---------- Parallax 2 ---------------------*/

.content-wrapper {
    position: relative;
  }

/* Section 1 - Normal scrolling */
.section-1 {
    background-color: #3498db;
    min-height: 70vh;
    padding: 20px;
    color: #fff;
    position: relative;
    z-index: -1;
  }
  
  /* Section 2 - Scrolls over Section 1 */
  .section-2 {
    background-color: #000;
    height: 60vh;
    padding: 20px;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Section 3 - Normal scrolling continues after Section 2 */
  .section-3 {
    background-color: #131313;
    min-height: 100vh;
    padding: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
  }

.parrallax-wrap {
    width: 100%;
    display: flex;
    align-content: center;
    margin: 0 auto;
}

.container-parrallx {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    z-index: 5;
   
}

.container-parrallx h1 {
    font-size: 4rem;
}

.container-parrallx-inner {
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    padding: 24px;
    z-index: 5;
}


.left-title-index {
    max-width: 100%;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    font-size: 4rem;
    text-align: left;
    line-height: 1;
    color: #37474F;
    margin-bottom: 24px;

}







/* -------- Pages Logo -------- */



.logo-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 24px;
    margin: 48px 0;
}



/*---------- Content ---------*/

.btn {
    font-family: 'Inter' sans-serif;
    font-size: 24px;
    color: #fafafa;
    text-decoration: none;
    display: inline-block;
    flex-direction: row;
    align-items: center;
}

.btn a {
    font-family: 'Inter' sans-serif;
    font-size: 24px;
    color: #fafafa;
    text-decoration: none;
    display: inline-block;
}

.logo {
    width: 125px;
    height: auto;
    display: flex;
    margin-right: 16px;
}

.container {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 32px;
  
}


.vid-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto; 
  }



/*--------- Masonary Layout -------------------*/


.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two equal columns */
    grid-gap: 20px;
    /* Gap between items */
    width: 100%;

}

.grid-item {
    background-color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

/* Masonry-like effect */
.grid-item:nth-child(odd) {
    grid-row-end: span 2;
    /* Make odd-numbered items taller to mimic masonry */
}

/* Add responsiveness for smaller screens */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;

        /* Single column on small screens */
    }
}


.grid-item img {
    max-width: 100%;
    height: auto;
}



/* ----------------------- End Masonary -------------------------------- */





.lft_content_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 48px 0;

}


.left-title {
    max-width: 80%;
    font-weight: 700;
    font-family: Merriweathersans, sans-serif
    letter-spacing; -1px;
    animation: fadeIn 5s;
    font-size: 4rem;
    text-align: left;
    line-height: 1;
    color: #bdbdbd;
    margin-bottom: 24px;

}


.left-copy-container {
    display: flex;
    width: 100%;
    margin-bottom: 48px;

}

.left-copy {
    width: 50%;
    overflow: hidden;
}

.left-copy p {
    margin-bottom: 16px;
    padding: 0 16px 0 0;
}

.right-copy-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 24px 0;

}

.right-copy {
    width: 50%;
    height: auto;
    margin: 48px 0;

}


.right-copy p {
    margin-bottom: 16px;
}

.image-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.row-image {
    width: 49%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.row-image-lg {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}



.label2 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #bdbdbd;
}

.label3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #bdbdbd;
    padding: 16px 0;
}


.roles-details-conatainer {
    display: flex;
    width: 100%;

}


.role_details {
    display: flex;
    width: 70%;
    justify-content: space-between;

}

.role_details_box {
    display: flex;
    flex-direction: column;
    padding: 0 16px 0 0;
    max-width: 300px;
    margin: 0 24px 24px 0;
}

.role_details_box_text {
    color: #Fafafa;
    font-weight: 600;
    margin: 0;
}



.pages_hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    max-width: 1440px;
    height: auto;
    padding: 24px 0;
    margin: 0 auto;

}

.pages_hero img {
    max-width: 95%;
    display: flex;
    align-items: center;
    height: auto;
    margin: 0 auto;
    animation: fadeInBottom .4s;
    transform: translate3d(0, 10px, 0);
    transition: 0.25s all ease-in-out;

}


.pages_hero_2 img {
    max-width: 100%;
    display: flex;
    align-items: center;
    height: auto;
    margin: 0 0 48px 0;
    animation: fadeInBottom .4s;
    transform: translate3d(0, 10px, 0);
    transition: 0.25s all ease-in-out;

}


.pages_hero_vid {
    max-width: 100%;
    display: flex;
    align-items: center;
    height: auto;
    padding: 32px;
    margin: 0 0 48px 0;
    animation: fadeInBottom .4s;
    transform: translate3d(0, 10px, 0);
    transition: 0.25s all ease-in-out;

}

.pages_hero_nda {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    max-width: 1440px;
    height: auto;
    padding: 24px 0;
    margin: 0 auto;

}


.pages_hero_nda img {
    max-width: 95%;
    display: flex;
    align-items: center;
    height: auto;
    margin: 0 auto;
    animation: fadeInBottom .4s;
    transform: translate3d(0, 10px, 0);
    transition: 0.25s all ease-in-out;
    opacity: .1;

}

.bottom-left-nda {
    position: absolute;
    bottom: 8px;
    left: 16px;
}


.pages_blockquote {
    border-left-width: 2px;
    border-left-color: #d8d8d8;
    margin-bottom: 1.6em;
    margin-left: -16px;
    font-size: 1em;
    font-style: italic;
    line-height: 1.45em;
}

/*--------- Blockquote --------------------*/

blockquote {
    border-left: 5px solid #37474F;
    padding: 10px 20px;
    color: #Fafafa;
}

blockquote img {
    width: 72px;
    height: auto;
    border-radius: 50px;
    margin-right: 12px;

}


.quote-btm-block {
    display: flex;

}

.quote-name {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    font-style: normal
}

.quote-copy {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    font-style: normal
}






/*-------------- METRICS ------------------*/


.desc_box {
    width: 100%;
    padding: 48px 0 0 48px;
}


.metrics_box {
    display: flex;
    max-width: 50%;
    height: auto;
    padding: 8px;
}

.metrics_box_lt {
    display: flex;
    align-items: center;
    max-width: 50%;
    height: auto;
    padding: 8px;
    border-right: solid 5px #e2e2e2;
}

.metrics_box_rt {
    display: flex;
    align-items: center;
    padding: 8px;
    font-size: large;
    font-weight: 600;
    margin-left: 8px;
}


/*---------- Work Thumbs ----------*/

.portfolio-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 48px;

}


.portfolio-box-9 {
    background-image: url(../img/workthumbs/workday-bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-9:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/workday.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.portfolio-box-8 {
    background-image: url(../img/workthumbs/impulse-bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-8:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/impulse.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.portfolio-box-7 {
    background-image: url(../img/workthumbs/pure_storage-bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-7:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/pure_storage.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-6 {
    background-image: url(../img/workthumbs/lexteck_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-6:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/lextech.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-5 {
    background-image: url(../img/workthumbs/us_bank_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.1);

}

.portfolio-box-5:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/us_bank.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    transition: background-image 1.05s;
    transition: transform 0.3s;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-4 {
    background-image: url(../img/workthumbs/td_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-4:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/td.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-3 {
    background-image: url(../img/workthumbs/apptimize_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-3:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/apptimize.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-2 {
    background-image: url(../img/workthumbs/copart_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-2:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/copart.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-1 {
    background-image: url(../img/workthumbs/outbid_bw.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-box-1:hover {
    transform: scale(1.05);
    background-image: url(../img/workthumbs/outbid.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: center;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




/* ------------- For legacy pages ---------------------------*/

.pages_image-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 72px;
}

.pages_image-row img {
    width: 75%;

}

.pages_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
}

.pages_copy {
    width: 50%;
    padding: 0 20px;
}

.pages_copy p {
    margin-bottom: 16px;
}

.pages_right {
    width: 60%;
    background-color: red;
}

.pages_container img {
    max-width: 600px;
    height: auto;
}






/* ------------- Footer ====================*/


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: 600;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #00ceeb;
    margin: 0 16px 0 8px;
}


.material-symbols-outlined-2 {
    font-family: 'Material Symbols Outlined';
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #fff;
    margin: 0 16px 0 8px;
}



.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #000;
    padding: 5% 0;


}

.footer img {
    max-width: 96px;
    height: auto;
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1680px;
    margin: 0 auto;
    padding: 24px;
}

.footer-box {
    width: 48%;
    display: flex;
    align-items: center;
    margin-bottom: 5%;
}

.footer-box-bottom {
    display: flex;
    flex-direction: column;
    margin-bottom: 3%;
}

.footer h1 {
    color: #FAFAFA;
    font-size: 5vw;
}

.footer h2 {
    color: #fafafa;
    font-size: 2.5rem;
    font-weight: 400;
}

.footer h3 {
    color: #bdbdbd;
    font-size: 24px;
}


.footer h4 {
    color: #FAFAFA;
    font-size: 24px;
    font-weight: 500;
}


.footer a {
    color: #37474F;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    transition: all 0.4s ease-in-out;
}

.footer a:hover {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    transform: scale(0.95);
    transition: all 0.4s ease-in-out;

}



/*--------- Test Animation --------------------*/

.circ {
    width: 200px;
    height: 200px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
    margin: 2rem 2rem 0;
}

.circ-empty {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: inline-block;
    margin: 2rem 2rem 0;
    align-content: center;
    align-items: center;
    display: flex;
}

.circ-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #546E7A;
    width: 125px;
    height: 125px;
}

.circ-logo img {
    width: 100px;
    height: auto;
}



.c1 {
    animation: grow 1.5s ease,
    colorize 2s,
    drop;
}

.c2 {
    background-color: #15ede2;
    animation: colorize 2s 1s forwards;
}

.c3 {
    animation: drop 2s forwards;
}

@keyframes grow {

    0%, 100% {transform: scale(1);}

    50% {transform: scale(2); }
}

@keyframes drop {
    0% {top: 0;}
    100% {top: 300px; }
}

@keyframes colorize {
    0% {background-color: #f9f871 }
    100% {background-color: #546E7A }
}




.dot {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}





/* ----------------- Masonry 2 -------------------------- */




.masonry-container {
    display: flex;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
}

.column {
    flex: 1;
    padding: 10px;
}

.item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item:nth-child(even) {
    margin-top: 40px; /* This creates the masonry staggered effect */
}

/* Responsive Layout */
@media screen and (max-width: 1200px) {
    .masonry-container {
        flex-direction: column;
    }
    
    .column {
        width: 100%;
        margin-bottom: 20px;
    }
}





  