@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
}

body {
    background-color: #24252A;
}

footer {
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, #003633, #000d36);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
    
}

.layer2 {
    background-image: url('./wave-haikei (1) (1).svg');
}

li, a, button {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    margin: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-radius: 15px;
    background-color: #3232359c;
}

.logotext {
    height: 50px;
    width: 50px;
    -webkit-background-clip: text;
}

.nav__links {
    background-color: #3232359c;
    list-style: none;
}

.nav__links li {
    -webkit-background-clip: text;
    background-color: #3232359c;
    display: inline-block;
    padding: 0px 20px;
}

.nav__links li a {
    background-color: #3232359c;
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: #0088a9;
}

button {
    padding: 9px 25px;
    background-color: rgba(0, 136, 168, 1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    border-color: #3232359c;
}

button:hover {
    background-color: rgba(0, 136, 168, 0.8);
}

.container {
    max-width: 800px;;
    margin: auto;
    height: 40vh;
    align-items: center;
    justify-content: center;
    transform: translate(0px, 200px);
    font-family: 'Rubik', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.text {
    background: linear-gradient(90deg,#0059f3,#00eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h5 {
    font-size: 20px;
}


.spacer {
    aspect-ratio: 960/300;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.layer1 {
    background-image: url('./layered-waves-haikei (1).svg');
}

.coloums {
    margin: 5rem auto;
    width: min(90%, 75rem);
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2em;
}

.feature {
    padding: 30px;
    font-family: 'Rubik', sans-serif;
    background-color: #3232359c;
    border-radius: 10px;
}

.feature h2 {
    padding-bottom: 12px;
    color: white;
}

.feature p {
    color: white;
}

.feature img {
    padding-top: 40px;
}

.featuresgrid h1 {
    text-align: center;
    font-family: 'Rubik', sans-serif;
    color: white;
    font-size: 60px;
    text-decoration: underline;
    text-decoration-color: #0059f3;
}

.footerlogo {
    width: 60%;
    height: auto;
    margin-bottom: 30px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-family: 'Rubik', sans-serif;
}

.col p {
    width: fit-content;
    font-family: 'Rubik', sans-serif;
}

.email-id {
    width: fit-content;
    border-bottom: 2px solid #ccc;
    margin: 20px 0;
}

.shrink-txt {
    width: 10%;
}

.row ul li {
    list-style: none;
    margin-bottom: 12px;
}

.row ul li a {
    text-decoration: none;
    color: #fff;
}
.glow {
    -webkit-animation: glow 4s ease-in-out infinite alternate;
    -moz-animation: glow 4s ease-in-out infinite alternate;
    animation: glow 4s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
  from {
    box-shadow: 0 0 30px hsl(210, 100%, 50%), 0 0 40px #0040a1, 0 0 50px #0073ff;
  }
  to {
    box-shadow: 0 0 30px hsl(210, 100%, 50%), 0 0 40px #0040a1, 0 0 50px #0073ff, 0 0 60px #0066ff, 0 0 70px #004cff;
  }
  }
