@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
   font-family: 'Quicksand', sans-serif;
  text-decoration: none;
}

html {
  -webkit-tap-highlight-color : transparent;
  scroll-behavior: smooth;
}

body {
  color: #fff;
  background-color: #7E72DF;
  background-image:
    radial-gradient(at 9% 50%, hsla(215, 90%, 73%, 1) 0px, transparent 50%),
    radial-gradient(at 72% 6%, hsla(331, 74%, 64%, 1) 0px, transparent 50%),
    radial-gradient(at 24% 19%, hsla(14, 90%, 74%, 1) 0px, transparent 50%),
    radial-gradient(at 65% 6%, hsla(6, 79%, 76%, 1) 0px, transparent 50%),
    radial-gradient(at 20% 50%, hsla(316, 72%, 64%, 1) 0px, transparent 50%),
    radial-gradient(at 44% 9%, hsla(40, 96%, 77%, 1) 0px, transparent 50%),
    radial-gradient(at 10% 9%, hsla(76, 65%, 63%, 1) 0px, transparent 50%)
  ;
  height: 100vh;
}

a {
  color: #fff;
}

img, video, iframe {
  width: 100%;
}

.container {
  display: flex;
  justify-content: center;
}

.glass-container {
  display: block;
  width: 100%;
  margin-top: 5vh;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.56);
  padding: 50px 10px 50px 10px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.6px);
  -webkit-backdrop-filter: blur(11.6px);
}

.logo {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

ul.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

li.nav-link {
  margin: 20px;
  font-size: 17px;
  font-weight: 300;
}

.content {
  display: flex;
  width: 100%;
}

.main {
  margin-top: 2vh;
  display: inline-block;
  padding: 15px;
}

.main h2 {
  font-size: 35px;
}

.main p {
  font-size: 16px;
  line-height: 23px;
}

button {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  border-color: #2668db;
  background-color: #2668db;
}

.image-wrapper {
  display: flex;
  margin-top: 5vh;
  position: relative;
}

.image-wrapper img {
  max-width: 500px;
}

.attrebute {
  position: absolute;
  bottom: -15px;
  right: 30px;
  font-size: 12px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-top: 10px;
  font-size: 15px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact:hover {
  border-color: #2668db;
  background-color: #2668db;
}

.contact ion-icon {
  margin-right: 5px;
  margin-top: 1px;
}

.baseboard {
  margin-top: 3vh;
  font-size: 12px;
  text-align: center;
  margin-bottom: -30px;
}

.superimpose {
  margin: 5px;
  text-align: center;
}

.superimpose img {
  border-radius: 10px;
  max-width: 250px;
}

.superimpose button, p {
  max-width: 250px;
}

.accordion {
  width: 90%;
  max-width: 400px;
  text-align: center;
  font-size: 13px;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  border-radius: 10px;
}

.accordion-header {
  padding: 10px;
  cursor: pointer;
}

.accordion-content {
  padding: 10px;
  display: none;
}

.accordion-header:hover + .accordion-content {
  display: block;
}

@media (min-width:800px) {
  .glass-container {
    max-width: 72vw;
  }
}

@media screen and (max-width: 1075px) {
  .content {
    flex-direction: column;
  }
}

@media screen and (max-width: 720px) {
  .logo {
    font-size: 22px;
  }
  
  li.nav-link {
    font-size: 13px;
  }
  
  .main h2 {
    font-size: 28px;
  }
  
  .main p {
    font-size: 15px;
  }
  
  button {
    font-size: 13px;
  }
  
  .image-wrapper img {
    max-width: 400px;
  }
}