﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

.header, .footer {
    width: 100% !important;
    /*background: linear-gradient(#7873f5, #1b85c0) !important;*/
    background: linear-gradient(#4072a3, #58a9d4) !important;
    color: #fff !important;
}
.header {
    height: 70px;
}
    .header .navbar-brand{
        padding:5px!important;
    }
    .footer {
        min-height: 70px;
    }
.text-white, .text-white a {
    color: #fff !important;
}
.footer-links td{
    padding:5px 15px;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    padding-top:80px!important;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 160px) !important;
    /*background: linear-gradient(135deg, #fff, #e5dfdf, #c6e2f3, #f4e3fb);*/
    /*#ff6ec4, #7873f5, #4ade80, #facc15*/ background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    text-align: center;
    color: #0d89c6!important;
}
.center-xy {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*.hero-content{
    display:flex;
}*/
.hero-content{
  
  width:80%!important
}
.hero-content h1 {
    font-size: 3rem;
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s forwards 0.5s;
    width:100%;
    clear:both;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 1s forwards 1s;
    width: 100%;
    clear: both;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    /*background: rgba(255,255,255,0.2);*/
    color: white;
    font-weight: bold;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, background 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.5s;
}

    .hero-btn:hover {
        transform: scale(1.05);
        background: #7873f5;
        text-decoration:none!important;
        padding:11px 30px 13px 30px;
    }

/* Animations */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    0% {
       
        transform: translateY(1%); /* Start from below the element's natural position */
    }

    50% {
       
        transform: translateY(3%); /* End at the element's natural position */
    }
    100% {
      
        transform: translateY(1%); /* Start from below the element's natural position */
    }
}

.hero-img{
    animation: slideUp 1s ease-out infinite; /* Name, duration, easing, fill-mode */
    
}
.d-none{
    display:none!important;
}
.dtma{
    display:table;
    margin:0px auto;
}