/*  IMPORT GOOGLE FONT START */

@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@500&family=Poppins&display=swap');

/*  IMPORT GOOGLE FONT END */

/*  COMMON STYLE START */
:root {
    --gradientone: #000000;
    --gradienttwo: #00acc1;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Advent Pro', sans-serif;
    color: #2C4A64;
}

body {
    margin: 0;
}

p {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    color: #333333;
    font-weight: bold;
}

.header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, var(--gradientone) 0%, var(--gradienttwo) 100%);
    color: white;
}

.logo {
    width: 50px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.flex {
    /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.content {
    position: relative;
    height: auto;
    text-align: center;
    background-color: white;
    padding: 15px 5px;
}
/*  COMMON STYLE END */

/* WAVES ANIMATION STYLE START  */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/* WAVES ANIMATION STYLE START  */

/*  MOBILE STYLE START */
@media (max-width: 768px) {
    .waves {
        min-height: 40px;
    }
}
/*  MOBILE STYLE END */

/*  CIRCLE ANIMATION STYLE START */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}


@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 20%;
    }

}
/*  CIRCLE ANIMATION STYLE END */

/*  COUNTDOWN STYLE START */

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}

.countdown>div {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
    width: 115px;
    height: 115px;
    border-radius: 0px 15px 0px 15px;
    background: #fff9f961;
    border: 1px solid white;
}

.number {
    font-weight: 500;
    font-size: 44px;
    color: white;
}

div span:last-of-type {
    font-size: 12px;
    color: white;
    font-weight: bold;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.flexCol {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
}

.h1 {
    font-size: 60px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 8px;
}

#subscribe input {
    color: black;
    vertical-align: middle;
    width: 218px;
    border: 1px solid var(--gradienttwo);
    padding: 0 10px;
    height: 40px;
    text-align: left;
    background: transparent;
}

#subscribe input[type="button"] {
    background: linear-gradient(60deg, var(--gradientone) 0%, var(--gradienttwo) 100%);
    width: auto;
    padding: 0px 25px;
    cursor: pointer;
    margin-left: -5px;
    font-weight: bold;
    height: 40px;
    display: inline-block;
    color: white;
}

input[type='color'] {
    padding: 0;
    width: 150%;
    height: 150%;
    margin: -25%;
    display: none;
}
/*  COUNTDOWN STYLE END */


/*  COLOR PICKER STYLE START */

.cp_wrapper {
    overflow: hidden;
    height: 70px;
    width: 70px;
}

.color_picker {
    position: absolute;
    z-index: 1;
    left: 1%;
    top: 3%;
}

.color_picker_image {
    height: 70px;
    width: 70px;
    position: absolute;
}

/*  COLOR PICKER STYLE END */

/* SETTINGS START */
.settings_div{
    position: absolute;
    z-index: 1;
    right: 1%;
    top: 3%;    background: #ffffffb0;
    padding: 9px;
    border-radius: 3px;
}
.settings_div div {
    padding:  8px 0;
}
.settings_div input{
    padding: 4px;
}
/* SETTING END */