/*------------------------------------------------------------------
Project:Pro Counter
Author: The_Krishna        
-------------------------------------------------------------------*/
/*----------------Table of contents Start---------------------------
1.Default css
2.layout-1 section
---------Table of contents End-----------------------------------*/
/*------------------------ [Color codes] ------------------------                     
Background:
Content:
-------------------------------------------------------------------*/
/*----------------------- [ Default css ] -----------------------*/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
a:focus, a {
    outline: none;
    text-decoration: none;
    cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}
svg {
    vertical-align: middle;
}
input {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
    border: none;
    outline: none;
    width: 100%;
}
textarea {
    outline-width: 0;
    outline-offset: 0;
    outline: 0;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-family: "Syne", sans-serif;
    font-family: "Montserrat", sans-serif;
    height: 100%;
}
.row {
    --bs-gutter-x: 30px;
}
.container {
    width: 1290px;
    margin: auto;
    padding: 0 15px;
    height: 100%;
}
/*----------------------- [ Layout section Start ] -----------------------*/
#particles-js {
    width: 100%;
    height: 100vh;
    background-color: rgb(30, 27, 28);
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
}
.top-section {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
.layout-3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
h1 {
    white-space: nowrap;
    overflow: hidden;
    font-size: 80px;
    font-weight: 600;
    font-family: "Syne", sans-serif;
    font-style: normal;
    text-align: center;
    color: #FFF;
    animation: typing 10s steps(50) infinite, animated-cursor 600ms linear infinite;
    transition: all ease-in-out .35s;
    width: 0;
    position: relative;
    z-index: 1;
    border-right: solid 5px rgba(255, 255, 255, .75);
}
@keyframes typing {
    0% {
        width: 0;
    }
    25% {
        width: 70%;
    }
    48% {
        width: 100%;
    }
    50% {
        width: 100%;
    }
    55% {
        width: 100%;
    }
    75% {
        width: 70%;
    }
    85% {
        width: 30%;
    }
    100% {
        width: 0;
    }
}
@keyframes animated-cursor {
    0% {
        border-right-color: rgba(255, 255, 255, .75);
    }
    100% {
        border-right-color: transparent;
    }
}
#time {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
#time .circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
}
#time .circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 10px solid #1b1a1c;
    border-radius: 50%;
}
#time .circle::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background: #2f2e33;
    border-radius: 50%;
    border: 15px solid #4d4c51;
    box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.75),
        0 -2px 2px rgba(255, 255, 255, 0.5),
        inset 0 4px 2px rgba(0, 0, 0, 0.25),
        inset 0 -2px 2px rgba(255, 255, 255, 0.5);
}
#time .circle svg {
    position: relative;
    width: 200px;
    height: 200px;
    transform: rotate(270deg);
}
#time .circle svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 8px;
    stroke: #fff;
    stroke-linecap: round;
    transform: translate(5px, 5px);
    stroke-dasharray: 593;
    stroke-dashoffset: 0;
}
#time div {
    position: absolute;
    text-align: center;
    font-weight: 500;
    color: #fff;
    z-index: 10000;
    font-size: 60px;
    font-family: 'DS-Digital';
}
#time div span {
    position: absolute;
    transform: translateX(-50%) translateY(-15px);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Montserrat", sans-serif;
}
.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo img {
    width: 280px;
    height: auto;
}
.Desc-3 {
    font-size: 18px;
    max-width: 600px;
    font-weight: normal;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
}
.copy-social-3 {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    gap: 30px;
    height: 100%;
    position: relative;
}
.social-icon-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.social-icon-3 a {
    font-size: 22px;
    color: #FFF;
}
.copy-right-3 {
    font-size: 18px;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    color: #FFF;
    text-align: center;
}
.copy-right-3 a {
    color: #FFF;
}