* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: black;
}


/* User container starts here... */
.addOpacity {
    opacity: 50%;
}

/* SignUp Container: */
#userContainer {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: lime;
    width: 20%;
    /* background-color: dodgerblue; */
    background-color: rgb(1, 20, 1);
    /* background-image: url("Images/Ouijaboard.gif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    box-shadow: 2px 2px 10px red, -2px -2px 10px red;
    border-radius: 5%;
    padding: 10px 0px;
    box-sizing: border-box;
    z-index: 100;
    position: fixed;
    top: 25%;
    display: none;
}

#userContainer #hiFriend {
    color: red;
    font-family: Bloodlust;
    font-size: 6rem;
    text-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
    margin: 0;
}

/* Signin Container: */
#userContainer #signinContainer p {
    font-size: 1.5rem;
}

#userContainer #signinContainer form h2 i {
    background-color: yellow;
    color: black;
    font-size: 1.5rem;
    padding: 2px 10px;
    /* margin: 0px 5px; */
}

#userContainer #signinContainer form h2 i:hover {
    box-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
    background-color: aqua;
}

/* #userContainer #signinContainer form h2 {
    margin-top: 10px;
} */

#userContainer #signinContainer form input {
    background-color: red;
    border: none;
    outline: none;
    margin-top: 5px;
    padding-left: 5px;
    width: 75%;
    height: 25px;
    /* color: red; */
    font-size: 1rem;
}

#userContainer #signinContainer #signinButton {
    font-size: 1.4rem;
    padding: 2px 10px;
    margin: 5px;
    color: black;
    background-color: yellow;
    border: none;
}

#userContainer #signinContainer #signinButton:hover {
    background-color: aqua;
    box-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
}

#userContainer .regnow {
    display: flex;
    justify-content: space-around;
}

#userContainer #signinContainer #reset_1 {
    font-size: 1.4rem;
    padding: 2px 10px;
    margin: 5px;
    color: black;
    background-color: yellow;
    border: none;
}

#userContainer #signinContainer #reset_1:hover {
    background-color: aqua;
    box-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
}


/* Signup Container: */
#userContainer #signupContainer {
    margin-top: 20px;
}

#userContainer #signupContainer p {
    font-size: 1.5rem;
    margin: 0px 5px;
}

#userContainer #signupContainer #createAccount {
    font-size: 1.4rem;
    padding: 2px 10px;
    color: black;
    background-color: yellow;
    border: none;
}

#userContainer #signupContainer #createAccount:hover {
    background-color: aqua;
    box-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
}

#userContainer #signupContainer form input {
    background-color: red;
    border: none;
    outline: none;
    margin-top: 5px;
    padding-left: 5px;
    width: 75%;
    height: 25px;
    font-size: 1rem;
}

#userContainer #signupContainer #signupButton {
    font-size: 1.4rem;
    padding: 2px 10px;
    margin: 5px;
    color: black;
    background-color: yellow;
    border: none;
}

#userContainer #signupContainer #signupButton:hover {
    background-color: aqua;
    box-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
}

#userContainer #signupContainer #reset_2 {
    font-size: 1.4rem;
    padding: 2px 10px;
    margin: 5px;
    color: black;
    background-color: yellow;
    border: none;
}

#userContainer #signupContainer #reset_2:hover {
    background-color: aqua;
    box-shadow: 1px 1px 2px aqua, -1px -1px 2px aqua;
}

#userContainer #signupContainer #homepageLink {
    position: absolute;
    left: 0px;
    top: 30%;
    writing-mode: vertical-lr;
}

#userContainer #signupContainer #homepageLink a {
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
    /* background-color: yellow; */
}

#userContainer #signupContainer #homepageLink a:hover {
    background-color: red;
    /* box-shadow: 1px 1px 2px red, -1px -1px 2px red; */
}

#userContainer #signupContainer #signupForm {
    display: none;
}

/* User container ends here... */


/* Media Query for User container: */
@media (max-width: 880px) {
    #userContainer {
        width: 35%;
    }
}

@media (max-width: 580px) {
    #userContainer {
        width: 60%;
    }

    #userContainer .regnow {
        justify-content: space-evenly;
    }

    #userContainer #hiFriend {
        font-size: 4.5rem;
    }

    /* Singnin Container: */
    #userContainer #signinContainer #signinButton {
        font-size: 1.3rem;
    }

    #userContainer #signinContainer #reset_1 {
        font-size: 1.3rem;
    }

    #userContainer #signinContainer form h2 {
        font-size: 1.5rem;
    }

    #userContainer #signinContainer form .social i {
        font-size: 1.5rem;
    }


    /* Signup Container: */
    #userContainer #signupContainer #signupButton {
        font-size: 1.3rem;
    }

    #userContainer #signupContainer #reset_2 {
        font-size: 1.3rem;
    }

    #userContainer #signupContainer form h2 {
        font-size: 1.5rem;
    }
}

/* User container & its media queries ends here... */

/* Fonts declaration: */
@font-face {
    font-family: Lobster;
    src: url(Fonts/Lobster-Regular.ttf);
}

@font-face {
    font-family: Bloodlust;
    src: url(Fonts/bloodlust.ttf);
}

@font-face {
    font-family: Bloodlust3d;
    src: url(Fonts/bloodlust3d.ttf);
}

@font-face {
    font-family: Who-Asks-Satan;
    src: url(Fonts/who_\ asks_satan.ttf);
}

@font-face {
    font-family: Fraunces;
    src: url(Fonts/Fraunces-Italic-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
}

@font-face {
    font-family: True-Lies;
    src: url(Fonts/True_Lies.ttf);
}

@font-face {
    font-family: Aclonica;
    src: url(Fonts/Aclonica-Regular.ttf);
}



/* Main page & homePage starts here... */
.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.wrapper .homePage {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.wrapper .homePage #welcome-logo {
    width: 70px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.wrapper .homePage .logo {
    position: absolute;
    top: 5px;
}

.wrapper .homePage .logo span {
    font-family: Fraunces;
    font-size: 3.5rem;
    margin: 5px;
    color: black;
    text-shadow: 2px 2px 10px lime, -2px -2px 10px lime;
    font-weight: bold;
}

.wrapper .homePage #check-btn {
    text-shadow: 2px 2px 5px aqua;
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 1.8rem;
    display: none;
}

.red {
    color: red;
}

.wrapper .homePage ul {
    display: inline-block;
    padding: 5px 10px;
    background-image: url(Images/particles_7.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 2px dotted gold;
    border-radius: 50%;
    box-shadow: 2px 2px 10px red, -2px -2px 10px red;
    position: absolute;
    top: 55px;
}

.wrapper .homePage ul li {
    list-style: none;
    display: inline-block;
}

.wrapper .homePage ul li a {
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: orange;
    display: block;
    margin: 0px 10px;
    transition: 0.5s ease;
}

.active {
    color: aqua;
    transform: rotate(180deg);
}

.wrapper .homePage ul li a:hover {
    transform: rotate(180deg);
    color: aqua;
}

/* User Login button / user container: */
.wrapper .homePage #userRegistration {
    position: absolute;
    right: 10px;
    top: 10px;
}

.wrapper .homePage #userRegistration button {
    width: 75px;
    font-size: 1.5rem;
    padding: 2px;
    background-color: transparent;
    color: lime;
    border-color: red;
}

.wrapper .homePage #userRegistration button:hover {
    background-color: red;
    color: white;
    /* border: none; */
}

/* Change Background starts here */
.wrapper .homePage #backgroundCategories {
    position: absolute;
    left: 0;
    bottom: 150px;
    display: none;
    writing-mode: vertical-lr;
}

.wrapper .homePage #backgroundCategories button {
    width: 75px;
    font-size: 1.2rem;
    border: none;
    color: yellow;
    background: darkred;
    writing-mode: horizontal-tb;
}

.wrapper .homePage #backgroundCategories button:hover {
    color: lime;
    background: transparent;
}

.wrapper .homePage #changeBackground {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin-bottom: 5px;
    writing-mode: vertical-lr;
    z-index: 100;
}

.wrapper .homePage #changeBackground a {
    display: inline-block;
    font-size: 1.3rem;
    text-decoration: none;
    color: lime;
}

.wrapper .homePage #changeBackground a:hover {
    background-color: darkred;
    color: aqua;
    padding: 3px 3px;
    box-shadow: 2px 2px 2px aqua;
}

/* Change Background ends here... */

.wrapper .homePage .heading-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10%;
}

.wrapper .homePage .heading-text h1 {
    text-align: center;
    font-family: Lobster;
    color: black;
    font-size: 5rem;
    padding: 10px 20px;
    background: transparent;
    border-radius: 10px;
    box-shadow: 2px 2px 20px aqua, -2px -2px 20px aqua;
    display: inline-block;
    text-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
    margin: 10px 25px;
    cursor: pointer;
}

.wrapper .homePage .heading-text p {
    font-size: 2rem;
    text-align: center;
    color: lime;
    text-shadow: 1px 1px 1px black, -1px -1px 1px black;
    margin-top: 5px;
}

.wrapper .homePage .heading-text .work-links {
    text-align: center;
}

.wrapper .homePage .heading-text .work-links a {
    font-size: 1.5rem;
    text-align: center;
    width: 100px;
    text-decoration: none;
    color: aqua;
    padding: 5px 15px;
    background: darkred;
    display: inline-block;
    border-radius: 50%;
    box-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
    transition: 0.3s ease-in-out;
}

.wrapper .homePage .heading-text .work-links a:hover {
    background-color: aqua;
    color: red;
    transform: translateY(7px);
}


/* Random Quote Machine: */
.wrapper .homePage .heading-text #Qoute-Machine {
    max-width: 70%;
    position: relative;
    top: 20px;
    /* padding: 10px; */
    box-sizing: border-box;
    text-align: center;
}

.wrapper .homePage .heading-text #Qoute-Machine #quote-box span {
    color: yellow;
    text-shadow: 1px 1px 1px black, -1px -1px 1px black;
    font-size: 1.8rem;
}

.wrapper .homePage .heading-text #Qoute-Machine #quote-box #author {
    color: red;
    font-size: 1.8rem;
    font-weight: bold;
}

.wrapper .homePage .heading-text #Qoute-Machine #quote-box #new-quote {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 1.5rem;
    background-color: darkred;
    color: aqua;
    border: none;
    outline: none;
    border-radius: 20px;
}

.wrapper .homePage .heading-text #Qoute-Machine #quote-box #new-quote:hover {
    box-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
}

/* Random Quote Machine ends here: */

.wrapper .homePage #submitPage {
    z-index: 100;
    position: relative;
    top: 50px;
    color: white;
    font-size: 2rem;
}

.wrapper .homePage video {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* homePage section ends here... */



/* Templates section starts here... */

.wrapper .templates {
    text-align: center;
    width: 100%;
    margin-bottom: 200px;
}

.wrapper .templates .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wrapper .templates .heading h1 {
    font-family: Lobster;
    font-size: 4rem;
    display: inline-block;
    color: black;
    background: transparent;
    padding: 5px 20px;
    text-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
    box-shadow: 2px 2px 20px aqua, -2px -2px 20px aqua;
    border-radius: 10px;
}

.wrapper .templates .heading p {
    font-size: 1.5rem;
    color: lime;
    margin: 10px;
    /* text-shadow: 2px 2px 5px aqua, -2px -2px 5px aqua; */
}

.wrapper .templates #top-btn {
    text-decoration: none;
    color: aqua;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    background-color: darkred;
    box-shadow: 2px 2px 5px aqua, -2px -2px 5px aqua;
    position: fixed;
    bottom: 0px;
    right: 0px;
    /* display: none; */
}

/* owlCarousel starts here: */

.wrapper .templates .container .owl-carousel .item {
    transition: 0.5s ease-in-out;
}

.wrapper .templates .container .owl-carousel .item a img:hover {
    transform: scale(1.01);
}

.wrapper .templates .container .owl-carousel .item .item-content {
    margin-top: 2px;
    background-color: darkred;
}

.wrapper .templates .container .owl-carousel .item .item-content p {
    color: lime;
    font-size: 1.5rem;
    margin: 0;
}

.wrapper .templates .container .owl-carousel .item .item-content a {
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: black;
    border-radius: 50%;
    background-color: gold;
    padding: 4px 4px;
    display: inline-block;
    transition: 0.3s ease;
}

.wrapper .templates .container .owl-carousel .item .item-content a:hover {
    background-color: lime;
}

/* owlCarousel ends here: */

/* Templates container starts here... */

.wrapper .templates #templates-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.wrapper .templates #templates-container .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 210px;
    height: 275px;
    margin: 10px 10px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.wrapper .templates #templates-container .item:hover {
    box-shadow: 2px 2px 10px 2px lime, -2px -2px 10px 2px lime;
    border-top-right-radius: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 20px;
}

.wrapper .templates #templates-container .item img {
    width: 100%;
}

.wrapper .templates #templates-container .item .item-content {
    width: 100%;
    height: 20%;
    background-color: darkred;
}

.wrapper .templates #templates-container .item .item-content p {
    color: lime;
    font-size: 16px;
    text-align: center;
}

/* Templates section ends here... */




/* Services section starts here... */
.wrapper #services {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 200px;
}

.wrapper #services #services-heading {
    font-family: Lobster;
    font-size: 4rem;
    display: inline-block;
    color: black;
    background: transparent;
    padding: 5px 20px;
    text-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
    box-shadow: 2px 2px 20px aqua, -2px -2px 20px aqua;
    border-radius: 10px;
}

.wrapper #services .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Bootstrap 4.0 flipcard... */
.wrapper #services .container .flip-card {
    background-color: transparent;
    width: 300px;
    height: 200px;
    margin: 5px;
    border: 1px solid lime;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.wrapper #services .container .flip-card .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}


/* Do an horizontal flip when you move the mouse over the flip box container */
.wrapper #services .container .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.wrapper #services .container .flip-card .flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}


/* Style the front side (fallback if image is missing) */
.wrapper #services .container .flip-card .flip-card-front {
    background-image: linear-gradient(to right, darkgreen, black);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem;
}

.wrapper #services .container .flip-card .flip-card-front h2 {
    font-size: 3rem;
    color: orange;
}

.wrapper #services .container .flip-card .flip-card-front p {
    color: yellow;
    font-size: 2rem;
}

/* Style the back side */
.wrapper #services .container .flip-card .flip-card-back {
    background-image: linear-gradient(to right, black, darkred);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 10px;
    text-align: left;
    transform: rotateY(180deg);
}

.wrapper #services .container .flip-card .flip-card-back span {
    color: aqua;
    font-size: 1.5rem;
}

.wrapper #services .container .flip-card .flip-card-back span i {
    font-size: 1.5rem;
    color: red;
    margin-right: 5px;
}

/* CodePen Link: */
.wrapper #services #codepen-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.wrapper #services #codepen-link p {
    font-size: 2rem;
    color: lime;
}

.wrapper #services #codepen-link a {
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
}

.wrapper #services #codepen-link a i {
    font-size: 1.5rem;
    color: lime;
}

.wrapper #services #codepen-link a span {
    color: red;
    font-size: 2rem;
    transition: 0.3s ease;
}

.wrapper #services #codepen-link a span:hover {
    color: lime;
}

/* Services section ends here... */




/* Contact section starts here... */

.wrapper .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}

.wrapper .contact #span-top {
    position: fixed;
    bottom: 55px;
    right: 15px;
    font-size: 1.5rem;
    color: lime;
    writing-mode: vertical-rl;
    z-index: 100;
}

.wrapper .contact #top-btn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    font-size: 30px;
    color: red;
    display: none;
    cursor: pointer;
    z-index: 99;
}

.wrapper .contact #top-btn:hover {
    color: lime;
}

.wrapper .contact .contact-text {
    text-align: center;
}

.wrapper .contact .contact-text h1 {
    font-family: Lobster;
    color: black;
    font-size: 4rem;
    display: inline-block;
    text-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
    padding: 0px 10px;
}

.wrapper .contact .contact-text p {
    font-size: 1.7rem;
    color: lime;
    text-shadow: 1px 1px 1px black, -1px -1px 1px black;
}

.wrapper .contact .contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper .contact .contact-links a {
    font-size: 1.5rem;
    width: 120px;
    text-align: center;
    text-decoration: none;
    color: aqua;
    padding: 0px 10px;
    margin: 5px;
    background-color: darkred;
    display: inline-block;
    border-radius: 50%;
    box-shadow: 2px 2px 10px aqua, -2px -2px 10px aqua;
    transition: 0.5s ease;
}

.wrapper .contact .contact-links a:hover {
    background-color: aqua;
    color: red;
    transform: translateY(5px);
}

.wrapper .contact form h4 {
    background-color: darkred;
    padding: 5px;
    text-align: center;
    color: lime;
    text-shadow: 2px 2px 10px red;
    border-radius: 4px;
}

.wrapper .contact form label {
    color: lime;
    font-size: 1.5rem;
}

.wrapper .contact form input {
    background: transparent;
    font-size: 1.5rem;
    color: black;
    box-shadow: 0 0 10px aqua;
    border: none;
}

.wrapper .contact form input:focus {
    padding: 2px;
}

.wrapper .contact form textarea {
    background: transparent;
    font-size: 1.5rem;
    color: black;
    box-shadow: 0 0 10px aqua;
    border: none;
    outline: none;
}

.wrapper .contact form #submit {
    padding: 5px 10px;
    color: lime;
    background-color: darkred;
    transition: 0.3s;
}

.wrapper .contact form #submit:hover {
    background-color: aqua;
    color: red;
}

.wrapper .contact form #reset {
    padding: 5px 10px;
    color: lime;
    background-color: darkred;
    transition: 0.3s;
}

.wrapper .contact form #reset:hover {
    background-color: aqua;
    color: red;
}

/* .wrapper .contact #thumbs-up {
    font-size: 2rem;
    color: white;
} */


/* marquee tag: */
.wrapper .marquee-container {
    width: 100%;
}

.wrapper .marquee-container marquee {
    position: absolute;
    bottom: 0;
    background-color: darkred;
}

.wrapper .marquee-container marquee a {
    color: white;
    font-size: 1.5rem;
}

.wrapper .marquee-container marquee small {
    color: white;
    font-size: 1.5rem;
}

.wrapper marquee a:hover {
    color: aqua;
}





/* Media Queries... */

@media (max-width:540px) {

    /* For Home page */
    .wrapper .homePage #welcome-logo {
        width: 55px;
        top: 0;
        left: 0;
    }

    .wrapper .homePage .logo span {
        font-size: 3rem;
    }

    .wrapper .homePage #check-btn {
        display: block;
        cursor: pointer;
        left: 18px;
        top: 16px;
    }

    .wrapper .homePage ul {
        text-align: center;
        display: none;
        top: 50px;
    }

    .wrapper .homePage ul li {
        display: block;
    }

    .wrapper .homePage ul li a {
        /* font-size: 1.3rem; */
        margin: 10px;
    }

    .wrapper .homePage .heading-text {
        margin-top: 30%;
    }

    .wrapper .homePage .heading-text h1 {
        /* font-size: 3.5rem; */
        padding: 5px 10px;
    }

    .wrapper .homePage .heading-text p {
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .wrapper .homePage .heading-text .work-links a {
        font-size: 1.2rem;
        width: 85px;
        padding: 5px;
    }

    .wrapper .homePage .heading-text #Qoute-Machine #quote-box span {
        font-size: 1.5rem;
    }

    .wrapper .homePage .heading-text #Qoute-Machine #quote-box #author {
        font-size: 1.5rem;
    }

    .wrapper .homePage .heading-text #Qoute-Machine #quote-box #new-quote {
        padding: 7px;
        font-size: 1.3rem;
    }

    .wrapper .homePage #backgroundCategories {
        bottom: 130px;
    }

    .wrapper .homePage #backgroundCategories button {
        width: 65px;
    }

    .wrapper .homePage #changeBackground a {
        font-size: 1.1rem;
    }

    .wrapper .homePage #userRegistration {
        flex-direction: column;
    }

    .wrapper .homePage #userRegistration button {
        font-size: 1.2rem;
        width: 60px;
    }

    /* For Templates Section: */
    .wrapper .templates .heading h1 {
        font-size: 3rem;
    }

    .wrapper .templates .heading p {
        font-size: 0.8rem;
    }

    .wrapper .templates #templates-container .item {
        width: 140px;
        height: 200px;
        margin: 5px 5px;
        box-shadow: none;
    }

    .wrapper .templates #templates-container .item img {
        width: 100%;
    }

    .wrapper .templates #templates-container .item .item-content {
        height: 16%;
    }

    .wrapper .templates #templates-container .item .item-content p {
        font-size: 12px;
    }

    /* For Services Section: */
    .wrapper #services #services-heading {
        font-size: 3rem;
    }

    .wrapper #services .container .flip-card {
        width: 125px;
        height: 180px;
        padding: 0px;
    }

    .wrapper #services .container .flip-card .flip-card-front h2 {
        font-size: 2rem;
    }

    .wrapper #services .container .flip-card .flip-card-front p {
        font-size: 1.3rem;
    }

    .wrapper #services .container .flip-card .flip-card-back {
        padding-left: 5px;
    }

    .wrapper #services .container .flip-card .flip-card-back span {
        font-size: 1.2rem;
    }

    .wrapper #services .container .flip-card .flip-card-back span i {
        font-size: 1.2rem;
    }

    /* CodePen Link: */
    .wrapper #services #codepen-link p {
        font-size: 1.5rem;
        padding: 0px 20px;
    }

    /* For Contact section */
    .wrapper .contact .contact-text h1 {
        font-size: 3.5rem;
    }

    .wrapper .contact .contact-text p {
        font-size: 1.5rem;
    }

    .wrapper .contact .contact-links {
        flex-direction: column;
    }

    .wrapper .contact .contact-links a {
        font-size: 1.3rem;
        margin-top: 10px;
    }

    .wrapper .contact #span-top {
        right: 5px;
    }

    .wrapper .contact #top-btn {
        right: 2px;
        font-size: 25px;
    }

}




@media (max-width: 320px) {

    .wrapper .templates #templates-container .item {
        width: 120px;
        height: 180px;
    }
}


@media (max-width: 280px) {

    .wrapper .homePage .logo span {
        font-size: 2rem;
    }

    .wrapper .homePage ul {
        top: 40px;
    }

    .wrapper .templates #templates-container .item {
        width: 110px;
        height: 170px;
    }

    .wrapper #services .container .flip-card {
        width: 100px;
        height: 200px;
    }

    .wrapper #services .container .flip-card .flip-card-front h2 {
        font-size: 1.8rem;
    }

    .wrapper #services .container .flip-card .flip-card-back span {
        font-size: 1.1rem;
    }
}


@media (max-width: 272px) {
    .wrapper .homePage .heading-text .website-buttons {
        flex-direction: column;
    }
}