body, html {
    margin: 0 auto;
    padding: 0;
    overflow-y: scroll; 
    position: relative; 
    background-color: #0f0f0f;
    font-family: "Merriweather Sans", sans-serif;
}

.background-animation {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    z-index: 1; 
}

.svg-rectangle, .svg-circle, .svg-triangle {
    position: absolute;
    width: 108px;
    opacity: 42%;
}

header {
    max-width: 1200px;
    margin: 0 auto;
    }

nav {
  display: flex;
  justify-content: space-between;
  }
  
section {
  padding: 100px 20px 100px 20px;
  background-color: #090909;
  }
  
.sec_main {
  max-width: 1200px;
  z-index: 2;
  margin: 0 auto;
  backdrop-filter: blur(6px) saturate(100%);
  -webkit-backdrop-filter: blur(6px) saturate(100%);
  border-radius: 12px;
    position: relative;
    padding: 10px;
    }
  
p {
  color: white;
  font-weight: lighter;
  }
  
a {
  text-decoration: none;
  }
  
.logo {
  width: 300px;
  }
  
.btn_position_nav {
  display: flex;
  align-items: center;
}
 
.btn_position {
  margin-top: 80px;
  padding-bottom: 80px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  }
  
.btn_main {
  padding: 10px 32px;
  color: white;
  border: solid 1px #fff;
  border-radius: 4px;
  }
  
.btn_main:hover {
  background-color: white;
  padding: 10px 32px;
  color: black;
  border: solid 1px white;
  border-radius: 4px;
  transition: 0.3s ease;
  }
  


.content {
    position: relative; 
    z-index: 2; 
    padding: 20px;
    text-align: center;
}

h1 {
  margin: 0 auto;
  color: white;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 42px;
  text-transform: uppercase;
  }
  
h2 {
  color: white;
  font-size: 38px;
  text-transform: uppercase;
  }
  
.text_main {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.main_content {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  backdrop-filter: blur(6px) saturate(100%);
  -webkit-backdrop-filter: blur(6px) saturate(100%);
  border-radius: 12px;
}

.main_bg {
  max-width: 324px;
  margin: 0 auto;
  padding-top: 20px;
  
}

.title_two {
  margin-top: 100px;
  text-align: center;
  }

h3 {
  color: white;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.card_position {
  padding-top: 32px;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  gap: 32px;
}

.card_main {
  align-items: center;
  display: flex;
  flex-direction: column;
  background: #0000003b;
  z-index: 3;
  padding: 20px;
  border: solid 1px #111618;
  border-radius: 10px;
  backdrop-filter: blur(6px) saturate(100%);
  -webkit-backdrop-filter: blur(6px) saturate(100%);
}

.card_img {
  width: 90px;
  opacity: 80%;
  }

.card_text {
  text-align: center;
  font-size: 14px;
  max-width: 300px;
}

.grad {
  background: #8F1B48;
  background: linear-gradient(0deg, rgba(27, 105, 143, 0.08) 0%, rgba(9, 9, 9, 0) 100%);
}

h4 {
  margin: 0px;
  color: white;
  font-size: 28px;
  text-transform: uppercase;
  }

footer {
  text-align: center;
  padding: 40px;
  align-items: center;
  display: flex;
  flex-direction: column;
  background: #8F1B48;
  background: linear-gradient(180deg,rgba(27, 105, 143, 0.08) 0%, rgba(9, 9, 9, 0) 100%);
  }
    
.foot_text {
  max-width: 600px;
  }
    
.copy {
  }

@media (max-width: 800px) {

.logo {
  width: 192px;
}

.card_position {
  grid-template-columns: auto;
  justify-content: center;
  }
  
h1 {
  font-size: 30px;
  }
  
h2 {
  font-size: 24px;
  }
  
h4 {
  font-size: 24px;
  }
  
p {
  font-size: 14px;
  }
}


