/* ====> CREDIT : CURIOSITY - Developed by SHIVA, also known as @CURIOUSHIVA <==== */

/* Universal Values */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000ea;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Cardo", sans-serif;
}
/* Universal Values Ends */

/* ===> Curiosity - Homepage Starts <=== */
/* Header */
/* Web Heading  */
.web-heading {
    padding: 100px 0 30px 0;
    color: #fff;
    text-align: center;
}

.web-heading h1 {
    position: relative;
    font-size: 70px;
    z-index: 1;
    padding: 0 5px;
    display: inline-block;

}

.web-heading h1:before {
    content: "";
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2cbc85;
    z-index: -1;
}

.web-heading h2 {
    margin: 0 0 5px 0;
    font-size: 30px;
    font-weight: 700;
}

.web-heading p {
    color: #ffffff;
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 20px;
}

/* Web Heading End  */
/* Header End */


/* Main */
/* Main Content Heading */
.web-content-heading {
    color: #fff;
    text-align: center;
}

.web-content-heading h2 {
    font-size: 40px;
    font-weight: 300;
    padding: 0 5px 0 5px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.web-content-heading h2:before {
    content: "";
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2cbc85;
    z-index: -1;
}

.web-content-heading p {
    font-size: 18px;
    margin-top: 15px;
}

/* Main Content Heading End  */

/* Main Content Cards*/
.web-content-conatiner {
    padding: 3rem 0px;
    height: 100%;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cont {
    height: 350px;
    width: 390px;
    padding: 20px;
    perspective: 1000px;
}

.card {
    padding-top: 100px;
    transform-style: preserve-3d;
    background-position: center center;
    width: 100%;
    transition: all 0.5s ease-in-out;
    border-radius: 10px;
}


.card:hover {
    background-position: 80% 20%;
    transform: rotate3d(0.5, 1, 0, 30deg);
}

.card-content-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.811);
    border-radius: 0px 0px 10px 10px;
    box-shadow: #2cbc85 0px 15px 40px -20px;
    transition: all 0.5 ease-in-out;
    padding: 50px 25px 25px 25px;
    transform-style: preserve-3d;
}

.card-title {
    color: white;
    font-size: 25px;
    font-weight: 1000;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 20px);
}

.card-title:hover {
    transform: translate3d(0px, 0px, 50px);
}

.card-content {
    padding-top: 15px;
    color: white;
    font-size: 15px;
    color: rba(185, 185, 185);
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 20px);
}

.card-content:hover {
    transform: translate3d(0px, 0px, 50px);
}


.symbol-box {
    position: absolute;
    top: 75px;
    left: 25px;
    height: 60px;
    width: 60px;
    background-color: black;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: #2cbc85 0px 20px 60px 0px;
    transform: translate3d(0px, 0px, 50px);
}

.symbol-box span {
    display: block;
    text-align: center;
}


.symbol-box .symbol {
    font-size: 20px;
    font-weight: 900;
    color: rgb(214, 214, 214);
}

/* Main Content Cards End*/
/* Main End */


/* Footer */
/* Admin's Socials */
.footer-container {
    padding: 50px 0 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.dev-credit p {
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.dev-credit p:before {
    content: "";
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2cbc85;
    z-index: -1;
}

.dev-socials {
    gap: 20px;
    margin-top: 28px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.dev-socials i {
    font-size: 30px;
    color: white;
}

.dev-socials a {
    text-decoration: none;
}

.dev-socials img {
    display: inline-block;
    height: auto;
    width: 130px;
}
/* Admin's Socials End */
/* Footer End  */
/* ===> Curiosity - Homepage End <=== */

 

/* ===> CURIOSITY - ENDS HERE <=== */