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





/* Body */

body {
  margin: 0;
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, rgba(180,214,255,1) 0%, rgba(255,255,255,1) 50%, rgba(180,214,255,1) 100%);

}


/* banner */
body #banner{
    margin-top: 105px; 
    background: rgb(0,74,173);
    background: linear-gradient(0deg, rgba(0,74,173,1) 0%, rgba(93,224,230,1) 100%);
}
.container-fluid .row .col-8 .col-8{
  padding-left: 15px;
  padding-top: 15px;
}
.container-fluid .row .col-8 .col-4 img{
  padding-left: 15px;
}
.container-fluid .row .col-8 .col-8 h1{
  font-size: calc(0.1em + 2vw);
  font-family: 'Moulpali', sans-serif;
}
.container-fluid .row .col-8 .col-8 h2{
  font-size: calc(0.1em + 2vw);
  font-family:'Raleway', sans-serif;
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes slideIn {
  0% {transform: translateX(100%);}
  100% {transform: translateX(0);}
}

@keyframes drop {
  0% {transform: translateY(-100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}

#banner .row .col-8 .col-4 img {
  animation: drop 2s ease-in-out;
}

#banner .row .col-8 .col-8 h1,
#banner .row .col-8 .col-8 h2 {
  animation: fadeIn 5s ease-in-out;
}

#banner .row .col-4 img {
  animation: slideIn 2s ease-in-out;
}


/* section */
section .container {
  padding: 2em;
}

section .container .row  {
margin-top: 5%;
  padding: 5%;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  background-color: white;
  border-radius: 15px;
  transition: transform 0.3s ease-out;
}
section .container .row:hover{
    box-shadow: #86b7fe 0px 0px 20px 0px;
    transform: scale(1.05);
}
.section-container .container .row .col-lg-8 div h1{
  font-family: 'Raleway', sans-serif;
  font-size: large;
  font-weight: 600;
  font-size: 36px;
  color: #0A509B;
}
.section-container .container .row .col-lg-8 div p {
  margin-top: 40px;
  font-family: 'Raleway', sans-serif;
  font-size:x-large; 
  text-align: left;
} 
@media screen and (max-width: 767px) {
  .section-container .container .row .col-lg-8 div h1{
    font-size: 30px;
  }
  .section-container .container .row .col-lg-8 div p {
    font-size: 20px;
    text-align: left;
  }
  
}



html {
  scroll-padding-top: 67px;
}


#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 */
}


  




 