body{
    margin: 0;
    padding-bottom: 100px;

    -webkit-user-select: none !important; /* Safari */
    -moz-user-select: none !important;    /* Firefox */
    -ms-user-select: none !important;     /* IE 10 and IE 11 */
    user-select: none !important;         /* Standard syntax */
}

    html{
        scroll-behavior: smooth;
    }


a:link{
    text-decoration: none!important;
    -webkit-tap-highlight-color: transparent;

    
  }

  img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50%);
    transition: all 0.80s;
  }
  
  .show {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0%);
  }
  
  .logo:nth-child(1) {
    transition-delay: 100ms ;
  }
  
  .logo:nth-child(2) {
    transition-delay:200ms ;
  }
  
  .logo:nth-child(3) {
    transition-delay:300ms ;
  }
  
  .logo:nth-child(4) {
    transition-delay:400ms ;
  }
  
  .logo:nth-child(5) {
    transition-delay: 500ms ;
  }
  .logo:nth-child(6) {
    transition-delay: 600ms ;
  }
  
  .logo:nth-child(7) {
    transition-delay: 700ms ;
  }

  .logo:nth-child(8) {
    transition-delay: 700ms ;
  }  
  
  .logo:nth-child(9) {
    transition-delay: 700ms ;
  }  

  .logo:nth-child(10) {
    transition-delay: 700ms ;
  }









/*DESKTOP VIEW ONLY*/
.desktop{
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100vh;

    .top-nav-bar{
        width: 100%;
        height: 50px;
        background-color: #ffffff;
        border-bottom: 1px solid #D9D9D9;
        box-sizing: border-box;
        padding-left: 160px;
        padding-right: 160px;
        padding-top: 8px;
        padding-bottom: 8px;
        display: flex;
        justify-content: space-between;
        position: fixed;
        z-index: 6;


        .nav-btn-container{
            width: 500px;
            height: 100%;
            display: flex;
            gap: 36px;

            img{
                width: 23px;
                height: 28px;
            }

            .text-container{
                width: 100%;
                height: auto;
                display: flex;
                gap: 32px;
                align-items: center;

                .details{
                    font-size: 14px;
                    color: #000000;
                    font-family: inter;
                }

                .details:hover{
                    text-decoration: underline ;
                }

            }
        }

        .quotation{
            width: 160px;
            height: 100%;
            background-color: #1D3923;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;
        
            .details{
                font-size: 12px;
                color: #ffffff;
                font-family: inter;
            }
        }

        .quotation:hover{
            background-color: black;
        }
    }












    .page{
      width: 60%;
      height: auto;
      box-sizing: border-box;
      padding-top: 100px;
      margin-left: auto;
      margin-right: auto;



        .title{
            font-family: inter;
            font-size: 36px;
            font-weight: 700;
        }                
        
        .details{
            font-family: inter;
            font-size: 14px;
            font-weight: 400;
            margin-top: 6px;
            color: #5c5c5c;
            width: 400px;
        }

        .divider{
            width: 100%;
            height: 1px;
            background-color: #D9D9D9;
            margin-top: 40px;
            margin-bottom: 40px;
        }



        .flex{
          width: 100%;
          height: auto;
          display: flex;
          justify-content: space-between;

          .item{
            display: grid;
            margin-bottom: 160px;




            .flex-box{
                display: flex;
                gap: 16px;
                width: 100%;
                height: auto;
                margin-top: 60px;
              
              .material-symbols-rounded{
                color: #1D3923;
                font-size: 30px;

                font-variation-settings:
                'FILL' 0,
                'wght' 400,
                'GRAD' 0,
                'opsz' 24

              }

              .title{
                  font-family: inter;
                  font-size: 16px;
                  font-weight: 700;
              }                
              
              .details{
                  font-family: inter;
                  font-size: 14px;
                  font-weight: 500;
                  margin-top: 8px;
                  color: #5c5c5c;
              }

              .button{
                background-color: #1D3923;
                width: 240px;
                box-sizing: border-box;
                display: flex;
                padding-left: 16px;
                padding-right: 16px;
                padding-top: 10px;
                padding-bottom: 10px;
                border-radius: 100px;
                color: white;
                font-family: inter;
                font-size: 12px;
                margin-top: 32px;
                text-align: center;
                justify-content: center;
                align-items: center;
                gap: 16px;
                transition: 0.2s;

                .details{
                    font-family: inter;
                    font-size: 12px;
                    font-weight: 500;
                    margin-top: 0px;
                    color: #ffffff;
                    text-align: center;
                }

                  .material-symbols-rounded{
                  color: #ffffff;
                  font-size: 30px;

                  font-variation-settings:
                  'FILL' 0,
                  'wght' 300,
                  'GRAD' 0,
                  'opsz' 24

                }
              }

              .button:hover{
                transform: scale(1);
                background-color: black;
                gap: 60px;
                padding-left: 4px;
                padding-right: 16px;
              }
            }
          }
        }







    }

}

.mobile{
    display: none;
}













































































































































































@media only screen and (max-width:750px) {
    .desktop{
        display: none;
    }

    /*MOBILE VIEW ONLY*/
    .mobile{
        display: block;

        .nav-bar{
            z-index: 6;
            position: fixed;
            display: flex;
            width: 100%;
            height: 54px;
            background-color: #ffffff;
            border-bottom: 1px solid #cccccc;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;

            .logo{
                width: 18px;
                height: auto;
            }

            .menu{
                position: absolute;
                width: 74px;
                height: 45px;
                right: 0;

                .click-box{
                    width: 100%;
                    height: 100%;
                    align-content: center;
                    box-sizing: border-box;
                    padding-right: 10px;
                    
                    .bar{
                        width: 32px;
                        height: 4px;
                        background-color: #d9d9d9;
                        border-radius: 100px;
                        transition: 0.3s
                    }
                }

                .click-box:hover{
                    .bar{
                        transform: scale(0.9);
                    }
                }
            }
        }

        .grid{
            width: 100%;
            height: auto;
            background-color: #EDEDED;
            display: grid;
            gap: 10px;
            padding-top: 50px;

            .page{
                box-sizing: border-box;
                padding-left: 32px;
                padding-right: 32px;
                padding-top: 36px;
                padding-bottom: 36px;
                width: 100%;
                height: 100%;
                box-sizing: border-box;
                background-color: white;

                .title{
                    font-family: inter;
                    font-size: 26px;
                    font-weight: 700;
                }                
                
                .details{
                    font-family: inter;
                    font-size: 14px;
                    font-weight: 400;
                    margin-top: 6px;
                    color: #5c5c5c;
                }

                .divider{
                    width: 100%;
                    height: 1px;
                    background-color: #D9D9D9;
                    margin-top: 40px;
                    margin-bottom: 40px;
                }

                .flex-box{
                    display: flex;
                    gap: 16px;
                    width: 100%;
                    height: auto;
                    margin-top: 60px;
                  
                  .material-symbols-rounded{
                    color: #1D3923;
                    font-size: 30px;

                    font-variation-settings:
                    'FILL' 0,
                    'wght' 400,
                    'GRAD' 0,
                    'opsz' 24

                  }

                  .title{
                      font-family: inter;
                      font-size: 16px;
                      font-weight: 700;
                  }                
                  
                  .details{
                      font-family: inter;
                      font-size: 14px;
                      font-weight: 500;
                      margin-top: 8px;
                      color: #5c5c5c;
                  }

                  .button{
                    background-color: #1D3923;
                    width: auto;
                    box-sizing: border-box;
                    display: flex;
                    padding-left: 16px;
                    padding-right: 16px;
                    padding-top: 10px;
                    padding-bottom: 10px;
                    border-radius: 12px;
                    color: white;
                    font-family: inter;
                    font-size: 12px;
                    margin-top: 32px;
                    text-align: center;
                    justify-content: center;
                    align-items: center;
                    gap: 16px;
                    transition: 0.2s;

                    .details{
                        font-family: inter;
                        font-size: 14px;
                        font-weight: 500;
                        margin-top: 0px;
                        color: #ffffff;
                        text-align: center;
                    }

                      .material-symbols-rounded{
                      color: #ffffff;
                      font-size: 30px;

                      font-variation-settings:
                      'FILL' 0,
                      'wght' 300,
                      'GRAD' 0,
                      'opsz' 24

                    }
                  }

                  .button:hover{
                    transform: scale(0.9);
                    background-color: black;
                    gap: 60px;
                    padding-left: 4px;
                    padding-right: 4px;
                  }
                }
            }
        }
    }
}