*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Poppins', sans-serif !important;
}

a:hover {
  opacity: 0.85;
}

.main img {
  animation: zoomOutImg 0.3s forwards;
}

.main img:hover {
  animation: zoomInImg 0.3s forwards;
}

@keyframes zoomInImg {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

@keyframes zoomOutImg {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.cdiv:hover {
  background: #e7c623;
}

@media screen and (max-width:768px) {
  .back-to-top {
    right: 25px;
    bottom: 145px;
  }
}

.logo a{font-family: 'Poppins', sans-serif !important;}
.footercom{text-align: center;}