footer{
    width: 100%;
    position: relative;
    bottom: 0;
    background: linear-gradient(to right,rgb(0, 60, 45),rgb(0, 45, 29));
    color: #fff;
    padding: 100px, 0, 30px;
    border-top-left-radius: 110px;
    font-size: 13px;
    line-height: 20px;
}

.row{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 35px;
    padding: 50px;
}

.col :nth-child(2), :nth-child(3){
    flex-basis: 15%;
}

.logo{
    width: 300px;
    margin-bottom: 40px;
    border-radius: 110px;
}

.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0px;
}

ul li{
    list-style: none;
    margin-bottom: 12px;

}

ul li a{
    text-decoration: none;
    
}

hr{
    width: 90%;
    border: 0;
    margin: 20px auto;
    border-bottom: 1px solid #ccc;
    
}

.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 28px;
    left: 0;
    overflow: hidden;
}
.underline span{
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
    
}

@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}

.getintouch{
    border-bottom: 4px solid rgba(0, 45, 29, 0.6);
    
    
}

@media (max-width: 700px){
    footer{
        bottom: unset;

    } 
    .col{
        flex-basis: 100%;
        
      
    }
    
    .col :nth-child(2), :nth-child(3){
        flex-basis: 100%;
        
    }

}
@media (min-width: 1300px) {
    #menuToggle {
      display: none; /* Hide the toggle button on larger screens */
    }
  
    #menuList {
      display: flex !important; /* Ensure the menu is always visible on desktops */
    }
    desc{
        align-items: center;
    }
  }

  video {
    object-fit: cover;
    object-position: center center; /* Default focus in the center (for PC and larger screens) */
  }
  
  @media (max-width: 768px) {
    video {
      object-position: 40%; /* Focus on the left side for smartphones */
    }
}
  

