/*@font-face {
  font-family: Gatsby;
  src: url(../font/GatsbyflfBold-owMo.ttf)
}*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Mulish, sans-serif;
}
/* variables */
:root {
    --primary: ;
    --secondary: #212529;
    --accent: #0dcaf0;
    --button: linear-gradient(to left,#FDA7DF,#9980FA,#FDA7DF)
}
.hero {
    background: url(../assets/img/file-63pDq5W31MneSq2ZTqi4TRNh.png) center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 60px 0 60px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: Gatsby, sans-serif;
}

.hero:before{
    content:"";
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero .wave
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../assets/img/wave.png);
    background-size: 1000px 100px;
}
.hero .wave.wave1
{
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}
.hero .wave.wave2
{
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
}
.hero .wave.wave3
{
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
}
.hero .wave.wave4
{
    animation: animate2 10s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
}
@keyframes animate
{
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}
@keyframes animate2
{
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}


.navbar img {
    width: 50px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    color: #fff;
    z-index: 1029;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.about .content {
    background-color: 
color-mix(in srgb, #009cea, transparent 95%);
    padding: 40px;
}

.card {
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}
/* form */
.container-frm{
    background: var(--accent);
}
/* footer */
.container-fluid{
    background: var(--secondary);
}
.container-fluid h3{
    font-weight: bold;
    background: linear-gradient(to right,#fdfdfd,#ebedee 70%);
    background: linear-gradient(90deg,#fc00ff,#00dbde);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn1{
    transition: 0.6s ease;
    background-size: 200%;
    background-image: var(--button);
    cursor: pointer;
    border: none;
}
.btn1:hover{
    background-position: right;
    transform: scale(.9);
    color: white;
}