* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* common css */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.2;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
}

body {
  font-family: 'Roboto', sans-serif;
}

/* landing css */

#main_banner {
  background-image: url('../images/banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
}

#main_banner .row {
  align-items: center;
}

.main_banner-block {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 20px 0;
}

.gif-box {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.container-fluid {
  max-width: 90%;
  margin: 0 auto;
}

.main_banner-content {
  text-align: center;
}

#main_banner .img-box img {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	display: block;
}

.logo-box {
  position: absolute;
  top: 30px;
}

.logo-box img {
  width: 100%;
  max-width: 140px;
  margin-bottom: 0px;
}

.gif-box img {
  width: 100%;
  max-width: 250px;
}

.main_banner-content ul li {
  margin-bottom: 15px;
}

.main_banner-content ul li a.btn img {
  max-width: 345px;
  width: 100%;
} 



@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.zoom-in-out-box {
  animation: zoom-in-zoom-out 2s ease-in-out infinite;
}
