*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root{
    --section-color: #21293c;
    --secondry-color: #0ccad6;
    --footer-color:#0c1524;
    --body-color: #0a0d15;
}
html{
    scroll-behavior: smooth;
    scrollbar-color: var(--section-color);
}
body{
    background-color: var(--body-color);
    min-height: 100vh;
    max-width: 100vw;  
    overflow-x: hidden;
}
.section-pt{
    padding-top: calc(110px + 1.5rem);
}
.container-max-800{
    width: 100%;
    max-width: 800px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
@media (min-width: 768px) {
    .w-md-25{
        width: 25% !important;
    }
    .w-md-100{
        width: 100% !important;
    }
    .w-md-75{
        width: 75% !important;
    }
    .w-md-50{
        width: 50% !important;
    }

}
@media (min-width: 992px) {
    .w-lg-25{
        width: 25% !important;
    }
    .w-lg-35{
        width: 35% !important;
    }
    .w-lg-100{
        width: 100% !important;
    }
    .w-lg-75{
        width: 75% !important;
    }
    .w-lg-50{
        width: 50% !important;
    }
}
img{
    max-width: 600px;
}
button{
    background-color: var(--secondry-color) !important;
    color: rgb(252, 249, 249) !important;
    transition: transform 0.3s !important;
    box-shadow: none !important;
}
button:hover{
    transform: translateY(1px) scale(1.05);
}
/* start style for button click animation */
.btn-click{
    animation: btn-click 0.3s 1 ease-in-out;
}
@keyframes btn-click{
    100% {
        transform: translateY(1px) scale(0.95);
    }
}
/* start style for button click animation */
#nav{
    position: fixed !important;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background-color: var(--body-color);
    transition: 0.3s;
}

@media (max-width: 768px){
    #logo svg g{
        transform: scale(0.8);
    }
}
#nav div ul li a{
    font-size: 18px;
    border-radius: 3px;
    transition: box-shadow 0.3s, background-color 0.3s;
}
#nav div ul li a.active{
    background-color: var(--section-color);  
    color: var(--secondry-color) !important;
    box-shadow: 0px 0px 3px 1px #75a5aa;
}
#nav div ul li a:hover{
    background-color: var(--section-color);
    color: var(--secondry-color) !important;
    box-shadow: 0px 0px 3px 1px #75a5aa;
}

#cards{
    background-image: url("/svg&img/bg-quotes.png");
    background-repeat: no-repeat;
    background-position: 0px 109px;
}
#storage div a{
    color: var(--secondry-color);
}
/* start arrow animation style */
#storage div a:hover svg{
    animation: move-x 0.5s infinite ease-in-out;
}
@keyframes move-x{
    50% {
        transform: translateX(10px);
    }
}
/* end arrow animation style */
#cards .card{
    background-color: var(--section-color);
}
#cards .card div img{
    width: clamp(50px, 25%, 70px);
}
#cards .card div p{
    font-size: 15px;
}
#subscrib{
    background-color: var(--section-color);
}
#subscrib div input[type="email"]{
    border: 4px dashed transparent !important;
}
#subscrib div input[type="email"]:focus{
    box-shadow: none !important;
    transition: border 0.2s;
    border: 4px dashed var(--secondry-color) !important;
}
footer{
    background-color: var(--footer-color);
}
footer::before{
    content: "";
    width: 100%;
    height: 100px;
    background-color: var(--footer-color);
    position: absolute;
    bottom: 100%;
    left: 0px;
    z-index: -1;
}
footer .container{
    background-image: url("/svg&img/logo.svg");
    background-repeat: no-repeat; 
    background-position: 5px 0px;
}
footer .container p{
    font-size: 15px;
}
footer .container .icons a{
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    transition: border 0.3s;
}
footer .container .icons a:hover{
    border: 2px solid var(--secondry-color);
}
footer .container .icons a i{
  color: var(--secondry-color);   
}