@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    box-sizing: border-box;
   
}

:root {
    --colortertiary: #ececf1;
    --colorgreen: #4fff33;
    --colorRed: rgb(255, 51, 0);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: #fff;
}

html::-webkit-scrollbar-thumb {
    background: #10221b;
}

section {
    padding: 3rem 9%;
}

.forp{
    font-size: 1.2rem;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    border: 0.2rem solid #10221b;
    color: #10221b;
    cursor: pointer;
    background: none;
    font-size: 1.7rem;
    padding: 1rem 3rem;
}

.centre-align {
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

.btn:hover {
    background: #10221b;
    color: #fff;
}

.heading {
    text-align: center !important;
    margin-bottom: 2.5rem;
    font-size: 4rem;
    color: #10221b;
}

.search-form {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 10000;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
}

.search-form.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-form #close-search {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    cursor: pointer;
    color: #fff;
    font-size: 6rem;
}

.search-form #close-search:hover {
    color: #219150;
}

.search-form form {
    width: 70rem;
    margin: 0 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-form form input {
    width: 100%;
    font-size: 2rem;
    color: #fff;
    text-transform: none;
    background: none;
    padding-right: 2rem;
}

.search-form form input::-webkit-input-placeholder {
    color: #aaa;
}

.search-form form input:-ms-input-placeholder {
    color: #aaa;
}

.search-form form input::-ms-input-placeholder {
    color: #aaa;
}

.search-form form input::placeholder {
    color: #aaa;
}

.search-form form label {
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}

.search-form form label:hover {
    color: #219150;
}

.home {
    padding: 0;
}

.home .box {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 2rem 9%;
}

.home .box.second {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.home .box .content {
    width: 50rem;
}

.home .box .content span {
    font-size: 4rem;
}

.clh3 {
    color: #fff !important;
}

.clslid {
    color: #000 !important;
}

.home .box .content h3 {
    font-size: 6rem;

    padding-top: 0.5rem;
    text-transform: uppercase;
}

.home .box .content p {
    line-height: 2;
    color: #10221b;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 3rem;
    color: #10221b;
}

.category .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(29rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    gap: 1.5rem;
}

.category .box-container .box {
    text-align: center;
    padding: 1rem;
}

.category .box-container .box img {
    height: 20rem;
    width: 20rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.category .box-container .box h3 {
    font-size: 2rem;
    color: #219150;
}

.category .box-container .box p {
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 2;
}
.aboutsection {
    background: #eee;
}
.about {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
}

.about .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
}

.about .image img {
    width: 100%;
    -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.about .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.about .content h3 {
    font-size: 3rem;
    color: #219150;
}

.about .content p {
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 2;
}
.iframegrid{
    display: grid;
    grid-template-columns: 1fr;
}
.shop .slide {
    border: 0.2rem solid #10221b;
}

.shop .slide:hover .image .icons {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.shop .slide .image {
    position: relative;
    overflow: hidden;
    height: 30rem;
    width: 100%;
}

.shop .slide .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.shop .slide .image .icons {
    width: 100%;
    position: absolute;
    bottom: 2rem;
    left: 0;
    text-align: center;
    z-index: 10;
    -webkit-transform: translateY(7rem);
    transform: translateY(7rem);
}

.shop .slide .image .icons a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.7rem;
    background: #10221b;
    color: #fff;
    margin: 0 0.2rem;
}

.shop .slide .image .icons a:hover {
    background: #219150;
}

.shop .slide .content {
    padding: 1rem 0;
    text-align: center;
}

.shop .slide .content h3 {
    font-size: 2rem;
    color: #10221b;
}

.shop .slide .content .price {
    padding: 1rem 0;
    padding-top: 0.5rem;
    font-size: 2rem;
    color: #219150;
}

.shop .slide .content .stars i {
    font-size: 1.7rem;
    color: #10221b;
}

.packages {
    /* background: #eee; */
    padding-top: 5.7rem;
    /* background-image:url(../images/bg-kid.jpg); */
}

/* Package evenement et promotion */

.promotions {
    /* background: #eee; */
    padding-top: 5.7rem;
    /* background-image:url(../images/bg-kid.jpg); */
}


.promotions .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.promotions .box-container .box {
    text-align: center;
    background: #fff;
    border: 0.2rem solid #10221b;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.promotions .box-container .box:hover {
    background: #10221b;
}

.promotions .box-container .box:hover .content > * {
    color: #fff;
}

.promotions .box-container .box:hover .btn {
    border-color: #fff;
}

.promotions .box-container .box:hover .btn:hover {
    background: #fff;
    color: #10221b;
}

.promotions .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    padding: 2rem;
    padding-bottom: 0;
    border-radius: 0.5rem;
}

.promotions .box-container .box .image img {
    height: 100%;
    width: 60%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.5rem;
}

.promotions .box-container .box .content {
    padding: 2rem;
}

.promotions .box-container .box .content h3 {
    font-size: 2rem;
    color: #10221b;
}

.promotions .box-container .box .content p {
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 2;
}

.promotions .box-container .box .content .price {
    font-size: 2rem;
    color: #219150;
}

/* End */

.bag-pes{
background-color: #eee;
}

.pd-0 {
    padding-top: 0 !important;
}

.pag-tp {
    padding-top: 4rem !important;
}

.pag-gal {
    padding-top: 1rem !important;
}
.pd-2{
    padding-top:8rem !important;
}

.packages__outdoor {
    background: rgb(234, 226, 237);
    padding-top: 1.7rem;
}
 .cntclor{
  color: black;
} 

.cntclorS{
    color: var(--colorRed);
  } 

.packages .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.packages .box-container .box {
    text-align: center;
    background: #fff;
    border: 0.2rem solid #10221b;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.packages .box-container .box:hover {
    background: #10221b;
}

.packages .box-container .box:hover .content > * {
    color: #fff;
}

.packages .box-container .box:hover .btn {
    border-color: #fff;
}

.packages .box-container .box:hover .btn:hover {
    background: #fff;
    color: #10221b;
}

.packages .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    padding: 2rem;
    padding-bottom: 0;
    border-radius: 0.5rem;
}

.packages .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.5rem;
}

.packages .box-container .box .content {
    padding: 2rem;
}

.packages .box-container .box .content h3 {
    font-size: 2rem;
    color: #10221b;
}

.packages .box-container .box .content p {
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 2;
}

.packages .box-container .box .content .price {
    font-size: 2rem;
    color: #219150;
}

.services {
    background: #eee;
}
.backcolor {
    background-color: #fff;
}
.backcol {
    background-color: rgb(234, 226, 237);
}
.services__horaire {
    background: #fff;
}

.services .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(31rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
    gap: 1.5rem;
}

.services .box-container .box {
    text-align: center;
    padding: 2rem;
    border: 0.2rem solid #10221b;
    border-radius: 0.5rem;
    background: #fff;
}

.services .box-container .box:hover {
    background: #10221b;
}

.services .box-container .box:hover img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.services .box-container .box:hover p {
    color: #fff;
}

.services .box-container .box:hover .btn {
    border-color: #fff;
    color: #fff;
}

.services .box-container .box:hover .btn:hover {
    background: #fff;
    color: #10221b;
}

.services .box-container .box img {
    height: 10rem;
    margin-bottom: 1rem;
}

.services .box-container .box h3 {
    font-size: 2rem;
    color: #219150;
}

.services .box-container .box p {
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 2;
}

.reviews .slide .text {
    padding: 2rem;
    font-size: 1.5rem;
    font-style: italic;
    background: #eee;
    border-radius: 0.5rem;
    color: #10221b;
    line-height: 2;
    position: relative;
    z-index: 0;
    margin-bottom: 3rem;
}

.reviews .slide .text::before {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0.7rem;
    height: 3rem;
    width: 3rem;
    background: #eee;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.reviews .slide .user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.reviews .slide .user img {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
}

.reviews .slide .user h3 {
    font-size: 2rem;
    color: #10221b;
}

.reviews .slide .user span {
    color: #219150;
    font-size: 1.5rem;
}

.blogs .slide {
    text-align: center;
    padding: 2rem;
}

.blogs .slide img {
    height: 25rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.5rem;
}

.blogs .slide .icons {
    background: #10221b;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    top: -2rem;
    display: inline-block;
}

.blogs .slide .icons a {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 1rem;
}

.blogs .slide .icons a:hover {
    color: #219150;
}

.blogs .slide .icons a i {
    padding-right: 0.5rem;
    color: #219150;
}

.blogs .slide h3 {
    font-size: 2rem;
    color: #10221b;
}

.blogs .slide p {
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 2;
    color: #10221b;
}

.newsletter {
    background: #eee;
}

.newsletter .content {
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
}

.newsletter .content p {
    font-size: 1.5rem;
    line-height: 2;
    color: #10221b;
}

.newsletter .content form {
    margin-top: 2rem;
    background: #fff;
    border-radius: 5rem;
    border: 0.2rem solid #10221b;
    padding: 0.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.newsletter .content form .form__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.newsletter .content form .email {
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: #10221b;
    padding: 0 1.3rem;
}

.newsletter .content form .btn {
    margin-top: 0;
    border-radius: 5rem;
    background: #10221b;
    color: #fff;
}

.newsletter .content form .btn:hover {
    background: none;
    color: #10221b;
}

.clients .silde {
    text-align: center;
}

.clients .silde img {
    height: 12rem;
}

/* Gallery photos */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgb(234, 226, 237);
    justify-content: center;
}

.box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery .box-container .box {
    height: 25rem;
    flex: 1 1 30rem;
    border: 1rem solid #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.gallery .box-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery .box-container .box .content {
    position: absolute;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    padding-top: 5rem;
    text-align: center;
}

.gallery .box-container .box .content h3 {
    font-size: 2.5rem;
    color: #333;
}

.gallery .box-container .box .content p {
    font-size: 1.5rem;
    color: #666;
    padding: 1rem 0;
}

.gallery .box-container .box:hover .content {
    top: 0;
}

.review .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.changeworld {
    text-align: center !important;
    font-size: 3.5rem;
    padding: 1rem;
    color: #666 !important;
}

.changeworld span {
    color: rgb(255, 55, 0);
    text-align: center;
}

/*  */

.pagination {
    width: 100%;
    float: left;
    padding-top: 15px;
    text-align: center;
}
.pagination div {
    display: inline-block;
    margin: 0 10px;
}
.pagination .page {
    color: gray;
}
.pagination .prev,
.gallery .pagination .next {
    color: #000;
    border: 1px solid #000;
    font-size: 15px;
    padding: 7px 15px;
    cursor: pointer;
}

.pagination .prev.disabled,
.pagination .next.disabled {
    border-color: gray;
    color: gray;
    pointer-events: none;
}

.caption {
    position: absolute;
    left: 0px;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    width: 100%;
    color: #ffffff;
    text-align: center;
}

/* End Gallery photos */

/* *****************FEATURE***************** */
.mt-4 {
    margin-top: 4rem;
}
.feature {
    width: 100%;
}
.feature__element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 23px 41px 23px -26px rgba(70, 70, 112, 0.12);

    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}
.feature__element:hover {
    background-color: var(--colortertiary);
}
.feature__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem 2.5rem;
}
.feature__element ion-icon {
    font-size: 2.5rem;
    align-self: center;
    color: var(--colorprimary);
}
.feature__element h3 {
    color: var(--colorprimary);
    font-size: 2.5rem;
}

.feature__element p {
    color: var(--colorprimary);
    font-size: 1.5rem;
}

@media (max-width: 950px) {
    .feature__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .feature__content {
        grid-template-columns: 1fr;
    }
    .about {
      grid-template-columns:1fr;}
    .about .child4{
      grid-row: 3;
    }
    .about .child8{
        grid-row: 7;
      }
      .about .child12{
        grid-row: 11;
      }
      .about .child16{
        grid-row: 15;
      }
      .about .child20{
        grid-row: 19;
      }
      .about .child24{
        grid-row: 23;
      }
    .about .child9{
      grid-row: 7;
    }
}
/* .feature__element p {
} */

/**********features end*******************/

/* End video */

.footer {
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(0, 0, 0, 0.5)),
            to(rgba(0, 0, 0, 0.5))
        ),
        url(../images/bowling4.png) no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../images/bowling4.png) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    padding: 1.5rem 0;
    color: #fff;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box a i {
    color: #219150;
    padding-right: 0.5rem;
}

.footer .box-container .box a:hover {
    color: #219150;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .credit {
    text-align: right;
    margin-top: 2.5rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 1rem;
    color: #fff;
}

.footer .credit span {
    color: #219150;
}

@media (max-width: 1200px) {
    /* .header {
    padding: 2rem;
  } */
    section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
        scroll-padding-top: 7rem;
    }
    .home .box {
        padding: 2rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-position: right !important;
    }
    .home .box.second {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-position: left !important;
    }
    .home .box .content {
        text-align: center;
    }
    .home .box .content span {
        font-size: 3rem;
    }
    .home .box .content h3 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    /* .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -110%;
    background: #fff;
    z-index: 10000;
    width: 35rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .navbar.active {
    left: 0;
    -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
  }
  .header .navbar a {
    margin: 1rem 0;
    font-size: 3rem;
  }
  .header .navbar #nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
  } */
    .swiper-button-next::after,
    .swiper-button-prev::after {
        display: none;
    }
}

.accessoire {
    font-family: 'Fira Sans', 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    color: rgba(255, 0, 0, 0.45);
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
    .heading {
        font-size: 3rem;
    }
    .newsletter .content form {
      border-radius: 1rem;
      flex-direction: column;
      gap: 2rem;
      
  }
}

/**********Regle start*******************/
.step {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* background: darkgray;  */
}
.step__content {
    gap: 2.5rem;
    padding-top: 3rem;
}
.step__number {
    font-size: 6.5rem;
    font-weight: 600;
    color: #424270c5;
    margin-bottom: 1.2rem;
    position: relative;
    text-align: center;
}

.step__number::after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step__number::after {
    width: 30%;
    padding-bottom: 30%;
    background-color: var(--colortertiary);
    z-index: -1;
}
.step__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.step__text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--colorprimary);
    align-self: center;
}
.step__body a {
    text-decoration: none;
    display: inline-block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    align-self: flex-start;
}
.step__body a:hover {
    color: var(--colorsecondary);
}

.section__title {
    color: var(--colorprimary);
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
}
.section__title::after {
    position: relative;
    top: 0.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    display: block;
    width: 75px;
    height: 2px;
    background: var(--colorprimary);
    text-align: center;
}

.feature__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1rem 2.5rem;
}

.step__number {
    font-size: 6.5rem;
    font-weight: 600;
    color: #424270c5;
    margin-bottom: 1.2rem;
    position: relative;
    text-align: center;
}

.step__number::after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step__number::after {
    width: 30%;
    padding-bottom: 30%;
    background-color: var(--colortertiary);
    z-index: -1;
}
.step__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.step__text {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--colorprimary);
    align-self: center;
}
.step__body a {
    text-decoration: none;
    display: inline-block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    align-self: flex-start;
}
.step__body a:hover {
    color: var(--colorsecondary);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.step__text {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--colorprimary);
    align-self: center;
}
@media (max-width: 900px){
    .step__number::after {
        width: 41%;
        padding-bottom: 41%;}
        .step__number {
            font-size: 8.5rem;}
}
@media (max-width: 650px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .step__number::after {
        width: 17%;
        padding-bottom: 17%;
    }
    .step__number {
        font-size: 4.5rem;
    }
    .grid-2-col {
        grid-template-columns: 1fr ;
        gap: 2rem;
    }
    .positiontwo{
        grid-row: 1;
    }
}
@media (max-width: 400px){
    .step__number::after {
        width: 20%;
        padding-bottom: 20%;
    }
    .step__number {
        font-size: 4rem;
    }
}

/**********Regle End*******************/

/* New regle */

.presentation__content {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contain {
    padding: 0 8.75rem;
    max-width: 85rem;
    margin: 0 auto;
}

@media (max-width: 28.125rem) {
    .contain {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .home__title--blue {
        font-size: 1rem;
        font-weight: 300;
    }
}

@media (max-width: 68.75rem) {
    .contain {
        padding-left: 6.5rem;
        padding-right: 6.5rem;
    }
}

.presentation__subtitle {
    display: flex;
    font-size: 1.4rem;
    color: var(--colorblack);
    justify-content: space-evenly;
    word-spacing: 0.21rem;
    cursor: pointer;
}
/* Presentation bar */

.presentation__bar {
    display: flex;
    justify-content: space-evenly;
    background-color: #219150;
    height: 0.3rem;
    margin-top: -1.8rem;
}
.bar__one {
    width: 20%;
    height: 0.3rem;
    background-color: var(--colorRed);
    margin-left: -50%;
}
.bar__two {
    width: 20%;
    height: 0.3rem;
    background-color: var(--colorRed);
    justify-self: center;
    margin: 0 auto;
    display: none;
}
.bar__three {
    width: 20%;
    height: 0.3rem;
    background-color: var(--colorRed);
    margin-right: -50%;
    display: none;
}
.presentation__text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.presentation__text p {
    text-align: center;
    padding: 0 9rem;
}
.text__two p {
    text-align: left;
}
.text__two,
.text__three {
    display: none;
}

@media (max-width: 59.4rem) {
    .presentation__subtitle {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        border: 0.1rem solid var(--colorBlue);
        justify-content: center;
        width: 90%;
        align-self: center;
    }

    .presentation__bar {
        display: flex;
        justify-content: space-evenly;
        background-color: #2a9bd463;
        height: 0.3rem;
        margin-top: -1.8rem;
    }

    .bar__one {
        width: 20%;
        height: 0.3rem;
        background-color: var(--colorBlue);
        margin-left: -55%;
    }
    .bar__two {
        width: 20%;
        height: 0.3rem;
        background-color: var(--colorBlue);
        justify-self: center;
        margin: 0 auto;
        display: none;
    }
    .bar__three {
        width: 20%;
        height: 0.3rem;
        background-color: var(--colorBlue);
        margin-right: -55%;
        display: none;
    }

    .presentation__subtitle .subtitle1,
    .presentation__subtitle .subtitle2 {
        border-bottom: 0.1rem solid var(--colorgreen);
        text-align: center;
        width: 100%;
    }
    .presentation__subtitle .subtitle3 {
        width: 100%;
        text-align: center;
    }
    .presentation__subtitle .subtitle1 {
        background-color: var(--colorgreen);
        color: var(--colorWhite);
    }
    .presentation__bar {
        display: none;
    }
    .presentation__text p {
        text-align: center;
        padding: 0 4.5rem;
    }

    .contain {
        padding-left: 6.5rem;
        padding-right: 6.5rem;
    }
}
/* End */
/*700px*/
@media (max-width: 43.75rem) {
    .contain {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }
}

.home__title {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}
.home__title--blue {
    color: var(--colorBlue);
}

/* End new regle */

.kiddysection {
    background: rgb(234, 226, 237);
    padding-top: 7rem;
}

.kiddysection__team {
    background: rgb(234, 226, 237);
    padding-top: 4.9rem;
}

.kiddy {
    background: rgb(234, 226, 237);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.1rem;
}

.kiddy .image {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
    padding-right: 5rem;
    padding-bottom: 5rem;
}

.kiddy .image img {
    width: 100%;
    -webkit-box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
    box-shadow: 4rem 4rem 0 rgba(0, 0, 0, 0.1);
}

.kiddy .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
    flex: 1 1 42rem;
}

.kiddy .content h3 {
    font-size: 3rem;
    color: #219150;
}

.kiddy .content p {
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem 0;
    line-height: 2;
}

#menu-bar {
    font-size: 3rem;
    cursor: pointer;
    color: #666;
    border: 0.1rem solid #666;
    border-radius: 0.3rem;
    padding: 0.5rem 1.5rem;
    display: none;
}
