@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;400;500;700&display=swap");
/* Base */
:root {
    --clr-primary: #29a396;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}
/*font-family: "Nunito", sans-serif;*/
html {
    scroll-behavior: smooth;
}

/*
body {
    min-height: 100vh;
    !*background: radial-gradient(#297a43, #787eb5);*!
    color: #fff;
    overflow-x: hidden;
}*/

.container {
    width: 100%;
    margin: 0 auto;
}

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

.header,
.section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.header::after,
.header::before,
.section::after,
.section::before {
    content: "";
    background: url(https://raw.githubusercontent.com/programmercloud/pgc-gym/main/img/blur-1.png);
    position: absolute;
    width: 400px;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
}

.header::after {
    left: -200px;
}

.header::before {
    right: -200px;
}

.mb {
    margin-bottom: 30px;
}

.mt {
    margin-top: 20px;
}

.section {
    /*background: #217339;*/
    position: relative;
    padding: 80px 0;
}

.section::after {
    left: -200px;
}

.section::before {
    width: 600px;
    right: -200px;
}

.section:nth-child(even) {
   /* background: #141615;*/
}

.section:nth-child(even)::after,
.section:nth-child(even)::before {
    display: none;
}

.primary {
    font-size: 35px;
    font-weight: 700;
}

.secondary {
    font-size: 25px;
    font-weight: 700;
}

.tertiary {
    font-size: 15px;
}

/* End Base */

/* Menu */
.menu {
    width: 100%;
    background: linear-gradient(to right, #0e0e0e 70%, #142d2a);
    padding: 12px 0;
}

.menu .container {
    justify-content: space-between;
}

.mobile-btn {
    display: none;
}

.logo {
    cursor: pointer;
}

.logo img {
    width: 80px;
    height: auto;
}

.nav {
    list-style: none;
}

.nav-item {
    display: inline-block;
    margin-right: 30px;
    font-size: 18px;
    font-weight: 400;
}

.nav-item a {
    text-decoration: none;
    color: #fff;
}

.nav-item:hover a {
    color: #29a396;
    transition: 0.3s linear;
}

.nav-item:last-of-type {
    margin-right: 0;
}

/* End Menu */

/* Buttons */
/*.btn {*/
/*    padding: 10px 28px;*/
/*    background: var(--clr-primary);*/
/*    border-radius: 40px;*/
/*    font-size: 20px;*/
/*    font-weight: 400;*/
/*    text-decoration: none;*/
/*    color: #fff;*/
/*    display: inline-block;*/
/*}*/

/*.btn:hover {*/
/*    background: #165f56;*/
/*    transition: 0.3s linear;*/
/*}*/

.btn-2 {
    font-size: 35px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s linear;
}

.btn-2:hover {
    color: #29a396;
}

/* End Buttons */

/* Header */
.text {
    width: 60%;
}

.visual {
    width: 40%;
}

.visual img {
    width: 100%;
}

.header h1 {
    font-size: 70px;
    font-weight: 700;
}

.header h1 span {
    color: var(--clr-primary);
}

/* End Header */

.section:nth-child(even) .visual {
    /*margin-right: 30px;*/
}

/* Trainer */
#trainer {
    text-align: center;
}

.trainer img {
    border-top-left-radius: 80px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 20px;
    margin-bottom: 10px;
    outline: 2px solid #fff;
    padding: 14px;
}

.trainer .mb {
    margin-bottom: 10px;
}

/* End Trainer */

/* Testimonial */
#testimonial .visual img {
    width: 100%;
    height: 90%;
    display: block;
    border-radius: 5%;

}
.custom-width{
    width: 280px;
}
.client {
    background: #fff;
    color: #787eb5;
    padding: 20px 10px;
    margin-right: 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    margin-top: 20px;
}

.client img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: calc(50% - 40px);
}

.client h2 {
    margin: 43px 0 10px 0;
}

/* End Testimonial */

/* Discount */
#discount {
    padding: 40px 0;
}

/* End  Discount */

/* Footer */
.footer {
    padding: 30px 0;
    border-top: 1px solid #fff;
    text-align: center;
}

/* End Footer */

/* Responsive */

@media (max-width: 768px) {
    .flex {
        flex-direction: column;
        text-align: center;
    }

    .mobile-btn {
        display: block;
        font-size: 35px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 12px;
    }

    .menu.active .nav-item {
        display: block;
        margin: 30px 0;
    }

    .nav,
    .menu .btn {
        display: none;
    }

    .menu.active .nav,
    .menu.active .btn {
        display: block;
    }

    .menu.active {
        padding: 30px 0;
        width: 100%;
        transition: all 0.8s ease;
    }

    .text,
    .visual {
        width: 100%;
        margin-bottom: 20px;
    }

    .text h1 {
        font-size: 45px;
    }

    .primary {
        font-size: 28px;
    }

    .secondary {
        font-size: 22px;
    }

    .tertiary {
        font-size: 14px;
    }

    .trainer {
        margin-bottom: 20px;
    }

    .client {
        margin-bottom: 50px;
    }

    #discount .visual img {
        width: 70%;
        margin-bottom: 30px;
    }
}

@media (max-width: 530px) {
    .header::after,
    .header::before,
    .section::after,
    .section::before {
        display: none;
    }

    .primary {
        font-size: 25px;
    }

    .secondary {
        font-size: 20px;
    }

    .tertiary {
        font-size: 12px;
    }

    .text h1 {
        font-size: 34px;
    }

    /*.btn,*/
    /*.btn-2 {*/
    /*    font-size: 16px;*/
    /*}*/
}

/* End Responsive */


.youtube {
    position: fixed;
    bottom: 40px;
    right: 70px;
    text-decoration: none;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    box-shadow: 0 2px 2px 3px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.youtube p {
    font-size: 22px;
}

/*-----------countup strat----------------*/

.pbox {
    /*width: 100vw;*/
    height: 180px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.box {
    width: 16%;
    color: #0e0e0e;
    height: 45%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background: rgba(229, 232, 233, 0.301);
    border-radius: 8px;
    -webkit-box-shadow: 1px 21px 41px -8px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 21px 41px -8px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 21px 41px -8px rgba(0, 0, 0, 0.5);
}

/*countup end*/

/*banner slider*/
.carousel-inner img {
    width: 100%;
    height: 100%;
}

/*banner slider end*/
/*product-detail*/

/*product-detal-end*/


/* Card Styling */
.card-div {
    width: 20em;
    min-height: 20em;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: var(--card-main-color);
    margin: 0.6em;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease-in-out;
}

/* ======== General styling of all cards and heart divs ========== */
.img-div {
    width: 100%;
    height: 8em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

.img-div img {
    transform-origin: bottom;
    transform: translateY(7.5%);
    transition: transform 0.3s ease-in-out
}

/* === Styling the like Icon ==== */
.like-icon-div {
    padding: 1em 1em 0 1em;
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    font-size: 1.5em;
    color: var(--heart-icon-color);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: flex-end;
}

.like-icon-div-child {
    /* background-color: yellow; */
    width: 1em;
    height: 1em;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.heart-empty {
    position: absolute;
    left: 0;
    opacity: 1;
}

.heart-fill {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.25s ease-in-out, opacity 0.2s ease-in-out;
}


/* God of war image and heart-background*/
.gow-img-div img {
    width: 65%;
    transform: translateY(7.5%);
    /* background-color: whitesmoke; */
}

.dazai-img-div img {
    width: 80%;
    transform: translateY(7.5%);
}


.u4-img-div img {
    width: 50%;
    transform: translateY(7.5%);
}


/* ======== text Container Styling general ======== */

.text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: yellow; */
    padding: 0 1.5em;
    padding-top: 7em;
    padding-bottom: 1em;
    box-sizing: border-box;
}

.text-container .item-name,
.text-container .date {
    margin: 0.25em 0;
    text-align: center;
}

.text-container .item-name {
    font-size: 1.2em;
    font-weight: var(--title-font-weight);
    color: var(--heading-color);
}

.text-container .date {
    font-size: 0.9em;
    font-weight: var(--date-font-weight);
    color: var(--date-text-color);
}

/* === Pricing and cart div  ===== */
.pricing-and-cart {
    /* background-color: wheat; */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0.25em 0 1em 0;
}

.pricing {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.previous-price {
    font-size: 0.8rem;
    font-weight: var(--pricing-font-weight);
    color: var(--previous-price-text-color);
    text-decoration: line-through;
    /* background-color: whitesmoke; */
    text-align: left;
}

.current-price {
    color: var(--current-price-text-color);
    font-size: 1.3rem;
    font-weight: var(--pricing-font-weight);
    /* background-color: yellow; */
    margin: 0;
}

.pricing-and-cart {
    width: 100%;
}

.fa-shopping-cart {
    font-size: 1.3rem;
    top: 0;
    transform: translateY(50%);
}


/* ====== Hover effects ======= */
.card-div:hover .img-div img {
    transform: translateY(7.5%) scale(1.2);
}

.card-div:hover {
    transform: translate(0, -10px);
}

.like-icon-div-child:hover .heart-fill {
    opacity: 1;
    transform: scale(1);
}

.like-icon-div-child:hover .heart-empty {
    transition-delay: 0.25s;
    opacity: 0;
}

#card-1-like:checked ~ .heart-empty,
#card-2-like:checked ~ .heart-empty,
#card-3-like:checked ~ .heart-empty,
#card-4-like:checked ~ .heart-empty {
    opacity: 0;
}

#card-1-like:checked ~ .heart-fill,
#card-2-like:checked ~ .heart-fill,
#card-3-like:checked ~ .heart-fill,
#card-4-like:checked ~ .heart-fill {
    animation: like-animation 0.25s ease-in-out forwards;
}

#card-1-like:not(:checked) ~ .heart-fill,
#card-2-like:not(:checked) ~ .heart-fill,
#card-3-like:not(:checked) ~ .heart-fill,
#card-4-like:not(:checked) ~ .heart-fill {
    animation: unlike-animation 0.25s ease-in-out;
}


@keyframes like-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        color: var(--liked-heart-icon-color);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        color: var(--liked-heart-icon-color);
        transform: scale(1.0);
    }
}

@keyframes unlike-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        color: var(--heart-icon-color);
        transform: scale(1.0);
    }
}

.product {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    margin: auto;
    min-height: 30em;
    padding: 3em 1em 1em 1em;
}

/*contact*/
input[type=text], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 2px 0;
    /*border: none;*/
    /*  background: #f1f1f1;*/
}

input[type=text]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}
input[type=number], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 2px 0;
    /*border: none;*/
    /*  background: #f1f1f1;*/
}

input[type=number]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}
input[type=email], input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 2px 0;
    /*border: none;*/
    /*  background: #f1f1f1;*/
}

input[type=email]:focus, input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit button */
/*.btn {*/
/*    background-color: #04AA6D;*/
/*    color: white;*/
/*    padding: 16px 20px;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    !*width: 100%;*!*/
/*    opacity: 0.9;*/
/*}*/

/*.btn:hover {*/
/*    opacity: 1;*/
/*}*/

.bg-img {
    /* The image used */
    background-image: url("image/sliders1.jpg");

    min-height: 380px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.conatct-1 {
    position: absolute;
    right: 0;
    margin: 20px;
    max-width: 300px;
    padding: 16px;
    background-color: white;
}

/*contact-end*/
/*feedback*/
.clear {
    clear: both;
}

img {
    max-width: 100%;
    border: 0px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

a:focus,
a:active,
a:visited,
a:hover {
    text-decoration: none;
    outline: none;
}

a:hover {
    color: #e73700;
}

h2 {
    margin-bottom: 48px;
    padding-bottom: 16px;
    font-size: 20px;
    /*line-height: 28px;*/
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}

h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 36px;
}

/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
    position: relative;
    width: 400px;
}

.line-title::before,
.line-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 2px;
}

.line-title::before {
    width: 100%;
    background: #f2f2f2;
}

.line-title::after {
    width: 32px;
    background: #e73700;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
    padding: 60px 50px;
}

.game-section .owl-stage {
    margin: 15px 0;
    display: flex;
    display: -webkit-flex;
}

.game-section .item {
    margin: 0 15px 60px;
    width: 320px;
    height: 400px;
    display: flex;
    display: -webkit-flex;
    align-items: flex-end;
    -webkit-align-items: flex-end;
    background: #343434 no-repeat center center / cover;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.game-section .item.active {
    width: 500px;
    box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}

.game-section .item:after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.game-section .item-desc {
    padding: 0 24px 12px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transform: translateY(calc(100% - 54px));
    -webkit-transform: translateY(calc(100% - 54px));
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.game-section .item.active .item-desc {
    transform: none;
    -webkit-transform: none;
}

.game-section .item-desc p {
    opacity: 0;
    -webkit-transform: translateY(32px);
    transform: translateY(32px);
    transition: all 0.4s ease-in-out 0.2s;
    -webkit-transition: all 0.4s ease-in-out 0.2s;
}

.game-section .item.active .item-desc p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.game-section .owl-theme.custom-carousel .owl-dots {
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
    h2 {
        margin-bottom: 32px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 50px 30px;
    }

    .game-section .item {
        margin: 0 12px 60px;
        width: 260px;
        height: 360px;
    }

    .game-section .item.active {
        width: 400px;
    }

    .game-section .item-desc {
        transform: translateY(calc(100% - 46px));
        -webkit-transform: translateY(calc(100% - 46px));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    h2 {
        margin-bottom: 32px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 32px;
    }

    .line-title {
        width: 330px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 50px 30px 40px;
    }

    .game-section .item {
        margin: 0 12px 60px;
        width: 240px;
        height: 330px;
    }

    .game-section .item.active {
        width: 360px;
    }

    .game-section .item-desc {
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
    .custom-width{
        width: 90% !important;
        padding-left: 70px;
    }
    h2 {
        margin-bottom: 20px;
    }

    h3 {
        margin: 0 0 8px;
        font-size: 19px;
        line-height: 24px;
    }

    .line-title {
        width: 250px;
    }

    /* -------- Landing page ------- */
    .game-section {
        padding: 30px 15px 20px;
    }

    .game-section .item {
        margin: 0 10px 40px;
        width: 200px;
        height: 280px;
    }

    .game-section .item.active {
        width: 270px;
        box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    }

    .game-section .item-desc {
        padding: 0 14px 5px;
        transform: translateY(calc(100% - 42px));
        -webkit-transform: translateY(calc(100% - 42px));
    }
}

/*feedback end*/

.button {
    background-color: #004A7F;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: 20px;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
    0% { background-color: #444a97; -webkit-box-shadow: 0 0 3px #444a97; }
    50% { background-color: #217339; -webkit-box-shadow: 0 0 40px #217339; }
    100% { background-color: #444a97; -webkit-box-shadow: 0 0 3px #444a97; }
}

@-moz-keyframes glowing {
    0% { background-color: #444a97; -moz-box-shadow: 0 0 3px #444a97; }
    50% { background-color: #217339; -moz-box-shadow: 0 0 40px #217339; }
    100% { background-color: #444a97; -moz-box-shadow: 0 0 3px #444a97; }
}

@-o-keyframes glowing {
    0% { background-color: #444a97; box-shadow: 0 0 3px #444a97; }
    50% { background-color: #217339; box-shadow: 0 0 40px #217339; }
    100% { background-color: #444a97; box-shadow: 0 0 3px #444a97; }
}

@keyframes glowing {
    0% { background-color: #444a97; box-shadow: 0 0 3px #444a97; }
    50% { background-color: #217339; box-shadow: 0 0 40px #217339; }
    100% { background-color: #444a97; box-shadow: 0 0 3px #444a97; }
}
/*feedback*/



@media(min-width:768px)
{
    .carousel-caption {
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
    }
}



.ombre-externe {
    background-color: white;
    padding: 1rem;
    -moz-box-shadow: 20px 20px 36px rgba(0,0,0,0.2);
    -webkit-box-shadow: 20px 20px 36px rgba(0,0,0,0.2);
    box-shadow: 20px 20px 36px rgba(0,0,0,0.2);
}

.ombre-interne {
    padding: 5vw;
    background-color: white;
    -webkit-box-shadow: inset 8px 0px 14px -1px rgba(0,0,0,0.4);
    -moz-box-shadow: inset 8px 0px 14px -1px rgba(0,0,0,0.4);
    box-shadow: inset 8px 0px 14px -1px rgba(0,0,0,0.4);
}


h5
{
    font-size:4vw;
    font-family: 'Caveat', cursive;
}

p
{
}
/*feedback end*/
.checked {
    color: orange;
}
