@charset "UTF-8";

/* font import */
@import url('https://fonts.googleapis.com/css2?family=Battambang&family=Moulpali&family=Raleway:wght@500&display=swap');

#contact-container{
    margin-top: 200px;
    margin-bottom: 150px;
    font-family: 'Battambang',system-ui;
    color: #2D2B7C;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.19);
    border-radius: 15px;
}
#contact-container .row  #form{
    padding: 30px;
}
#contact-container .row  #form .btn{
    background-color: #0A509B;
}
#contact-container .row  #form .btn:hover{
    color: #0A509B;
    background-color: white;
}

#contact-container row #form form label{
    padding-top: 50px;
}
#contact-container .row  #map iframe{
    border-radius: 0px 15px 15px 0px;
    margin-left: 12px;
}
@media (max-width: 991px) {
    #contact-container .row  #map iframe{
        margin-top: 12px;
        border-radius: 15px ;
        margin-left: 0px;
    }

    #form {
        order: 1;
    }
    #map {
        order: 2;
        height: 80vh; 
    }
}
#social-container{
    margin-top: 50px;
    font-family: Raleway;
    color: #2D2B7C;

}
.social-icon {
    width: 60px; /* Adjust this value to your liking */
        height: auto;
        display: block;
        
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        

}
.social-icon:hover{
    transform: scale(1.1);
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #1F6DE0; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
  