* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Poppins-Regular';
}

:root {
  --pink: #b00cf7;
  --white: #ffffff;
  --black: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
a {
  padding: 0;
  margin: 0;
}


/*************************************** hero_section **************************************/
.new_landing_hero_section {
  padding: 100px 0;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.dotted_bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 105%;
}

.dotted_bg::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/dotted-pattern.png");
  z-index: -1;
  background-size: 15px;
  opacity: 0.1;
}

.hero_section_text {
  text-align: center;
}

.new_landing_get_img {
  justify-content: center;
  margin: 30px 0;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid #f0f0f0;
}

.new_landing_get_img img {
  max-width: 110px;
  max-height: 50px;
  object-fit: contain;
}

.new_landing_get_img .esc_logo {
  width: auto !important;
}

.hero_section_text h1 {
  font-family: 'Poppins-Bold';
  font-size: 48px;
}

.hero_section_text h2 {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.ocean {
  height: 8%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--pink);
}

.wave {
  background: url("../img/wave.svg") repeat-x;
  position: absolute;
  top: -198px;
  width: 6400px;
  height: 198px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.wave:nth-of-type(2) {
  top: -175px;
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
  0% {
    margin-left: 0;
  }

  100% {
    margin-left: -1600px;
  }
}

@keyframes swell {

  0%,
  100% {
    transform: translate3d(0, -25px, 0);
  }

  50% {
    transform: translate3d(0, 5px, 0);
  }
}



.new_landing_button_section {
  margin-top: 50px;
}

.know_more {
  position: relative;
  padding: 10px 50px;
  border-radius: 30px;
  border: none;
  color: var(--white);
  cursor: pointer;
  background-color: var(--pink);
  transition: all 0.2s ease;
  font-size: 18px;
}

.know_more a {
  text-decoration: none;
  color: var(--white);
}

.know_more:active {
  transform: scale(0.96);
}

.know_more:before,
.know_more:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}

.know_more:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--pink) 20%, transparent 30%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--pink) 15%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 2s ease;
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
      40% 90%, 55% 90%, 70% 90%;
  }

  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
      50% 50%, 65% 20%, 90% 30%;
  }

  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
      50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.know_more:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--pink) 15%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%),
    radial-gradient(circle, var(--pink) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
      70% -10%, 70% 0%;
  }

  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
      105% 0%;
  }

  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
      110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}



.bg_black {
  background-color: var(--black);
}

.bg_black:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, var(--black) 20%, transparent 30%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--black) 15%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 2s ease;
}

.bg_black:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, var(--black) 15%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%),
    radial-gradient(circle, var(--black) 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}

/*************************************** end_hero_section **************************************/

/*************************************** new_landing_our_product_section **************************************/
.common_space {
  padding: 100px 0;
}

.landing_common_title {
  text-align: center;
  font-family: 'Poppins-Bold';
}

.landing_common_title h3 {
  font-size: 34px;
}

/*************************************** end_new_landing_our_product_section **************************************/


/*************************************** responsive_css **************************************/
@media (max-width: 1399.98px) {
  .common_space {
    padding: 80px 0;
  }
}

@media (max-width: 1199.98px) {
  .common_space {
    padding: 60px 0;
  }
  .landing_common_title h3 {
    font-size: 30px;
  }
}

@media (max-width: 991.98px) {
  .new_landing_hero_section {
    padding: 80px 0;
  }

  .hero_section_text h1 {
    font-size: 42px;
  }

  .new_landing_get_img {
    margin: 20px 0;
  }

  .hero_section_text h2 {
    font-size: 24px;
  }
  .common_space {
    padding: 40px 0;
  }
  .landing_common_title h3 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {}

@media (max-width: 575.98px) {
  .new_landing_hero_section {
    padding: 40px 0;
  }

  .hero_section_text h1 {
    font-size: 34px;
  }

  .new_landing_get_img img {
    max-width: 120px;
  }
  .common_space {
    padding: 30px 0;
  }
  .landing_common_title h3 {
    font-size: 26px;
  }
  
}

@media (max-width: 425.98px) {
  .hero_section_text h1 {
    font-size: 28px;
  }

  .hero_section_text h2 {
    font-size: 20px;
  }

  .new_landing_get_img {
    margin: 10px 0;
  }

  .know_more {
    padding: 8px 40px;
  }

  .new_landing_hero_section {
    height: 80vh;
  }

  .new_landing_get_img {
    padding: 5px 20px;
  }

  .new_landing_button_section {
    margin-top: 30px;
  }
  .dotted_bg{
    height: 95%;
  }
  .dotted_bg::after{
    height: 95%;
  }
}

/*************************************** end_responsive_css **************************************/