.main-layout{
      position:relative;
      width:100%;
      height:700px;
    }

    /* COMMON ICON */

    .feature{
      position:absolute;
      text-align:center;
      width:220px;
    }

    .feature img{
      width:100%;
      object-fit:contain;
    }

    /* POSITIONS */

    /* TOP CENTER */
    .licensed{
      top:0;
      left:50%;
      transform:translateX(-50%);
    }

    /* LEFT TOP */
    .transparency{
      top:120px;
      left:120px;
    }

    /* RIGHT TOP */
    .trusted{
      top:120px;
      right:120px;
    }

    /* LEFT BOTTOM */
    .process{
      bottom:40px;
      left:60px;
    }

    /* RIGHT BOTTOM */
    .customer{
      bottom:40px;
      right:60px;
    }

    /* CENTER LOGO */

    .center-logo{
      position:absolute;
      left:50%;
      bottom:8%;
      transform:translateX(-50%);
      width:300px;
    }

    .center-logo img{
      width:100%;
      object-fit:contain;
    }

    /* RESPONSIVE */

    @media(max-width:992px){

      .main-layout{
        height:auto;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:40px;
      }

      .feature,
      .center-logo{
        position:relative;
        top:auto;
        left:auto;
        right:auto;
        bottom:auto;
        transform:none;
      }

      .feature{
        width:180px;
      }

      .center-logo{
        width:180px;
      }
    }

    @media(max-width:768px){

      .title{
        font-size:34px;
        text-align:center;
      }

      .feature{
        width:150px;
      }

      .center-logo{
        width:150px;
      }
    }
