html,body{
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Nunito Sans', sans-serif;
  background: var(--whiteColor);
}
*{
  padding: 0;
  margin: 0;
  
}
/* common css */
 h2 {
  color: var(--contentColor);
  font-weight: 800;
  
}
.content p{
    font-size: 18px;
    color: var(--contentColor);
    font-weight: 500;
    
}
#buttonbacktop {
 
  background-color: #eeba2b;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 85px;
  right: 17px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#buttonbacktop i{
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
#buttonbacktop:hover {
  cursor: pointer;
  background-color: #333;
}
#buttonbacktop:activebtnbt {
  background-color: #555;
}
#buttonbacktop.showbtnbt {
  opacity: 1;
  visibility: visible;
}
.btn{
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  transition: all 0.3s ease;
}
.btn:hover{
  opacity: 0.5;
}
.deep-yellow-btn {
  background: #8d722c;
  background: radial-gradient(
    circle,
    #8d722c 0%,
    rgb(246, 206, 115) 0%,
    #8d722c 100%
  );
  transition: all 0.3s ease;
  color: var(--commonColor) !important;
  font-weight: 800 !important;
  text-shadow: 0.5px 0.5px #ffffff;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
}
.deep-yellow-btn:hover{
  opacity: 0.8;
}


/* root css */
:root{
  --whiteColor:#fff;
  --grayHover:#f1f1f1;
  --backColor:#000;
  --navColor:#ffffff;
  --commonColor:#051d40;
  --contentColor:#011329;
  --contentColorExtra:#bf7608;
  --nameColor:#afc1d0;
  --commonShadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.05)
}
@font-face {
  font-family: BodoniFLF;
  src: url(fonts/BodoniFLF-Bold.ttf);
}
@font-face{
  font-family: BeVietnam;
  src: url(fonts/BeVietnam-Regular.ttf);
}