
/* import */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200;300;400;500;600;700;800&display=swap');/* end import */
/* reset */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    color: #cd2469;
    text-decoration: none;
    border-bottom: solid 2px #cd2469;
    font-weight: 500;
}

/* end reset */

/* tools */

.container{
    width: 92vw;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    /* background-color: aqua; */
}

.modal_wrapper{
    background-color: rgba(0, 0, 0, 0.7);
    /* background-color: black; */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal_wrapper.show{
    opacity: 1;
    height: 100vh;
}

.modal_box{
    background-color: #fbfbfb;
    z-index: 11;
    padding: 20px;
    border-radius: 10px;
    opacity: 1;
    display: none;
    transform: translateY(-100vh);
    transition: transform 0.3s ease ;
    flex: 1;
    width: 90%;
    max-width: 700px;
}

.modal_box.show{
    transform: translateY(0);
    /* display: block; */
}

.modal_box .close_btn_wrapper{
    position: absolute;
    right: 0;
    top: -40px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.modal_box .close_btn_wrapper:hover{
    cursor: pointer;
    color: #cd2469;
}

.btn{
    text-decoration: none;
    border: none;
    text-transform: capitalize;
    background-image: linear-gradient(to right, #e62243 0%, #c1267d 100%), linear-gradient(to bottom, #fff, #fff);
    color: #ffffff;
    margin-top: 1rem;
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 900;
    font-size: 1em;
}

.btn:hover{
    background-image: none;
    background-color: #e62243 ;
}

.btn_line{
    border: 1px solid #cd2469;
    display: inline-block;
    text-transform: capitalize;
    align-self: flex-start;
    padding: 0.7rem 1.2rem;
    /* margin-top: 1rem; */
    margin: 1rem 0.5rem 0 0.3rem;
    /* border-radius: 2px; */
    letter-spacing: 3px;
    transition: color 0.3s ease , background-color 0.3s ease;
}

.btn_line:hover{
    background-color: #cd2469 ;
    color: #fff;
}

/* end tools */

/* form */

.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form .section_title_wrapper{
    background-color: #cd2469;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.4rem 0.5rem;
    width: 100%;
    margin-top: 2rem;
}

.form .section_title_wrapper h2:nth-child(1){
    font-size: 1.3rem;
    margin: 0.2rem 0;
}

.form .section_title_wrapper h2:nth-child(2){
    font-size: 1.1rem;
    margin: 0.2rem 0;
}


.form .input_wrapper{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    margin: 0.6rem 0;
}

.form .label_wrapper{
   display: flex;
   justify-content: space-between;
   font-weight: 400;
   padding: 0.3rem 0;
}

.form .label_wrapper i{
   color: #e62243;
   font-size: 0.7em;
   margin: 0 0.3em;
}

.form input , .form select{
    height: 2em;
    font-size: 1.2em;
    padding: 0.2em 0.5em;
    color: #545353;
    border-radius: 5px;
    border: #545353 solid 1px;
    outline: none;
    transition: border 0.5s ease;
 }

.form textarea{
   resize: none;
   font-size: 1.2em;
   padding: 0.9em 0.5em;
   color: #545353;
   border-radius: 5px;
   border: #545353 solid 1px;
   outline: none;
   transition: border 0.5s ease;
}

.form input.file{
   height: 2.5rem;
   font-size: 1.2em;
   padding: 0.4rem;
   color: #545353;
   border: #545353 solid 1px;
   outline: none;
   transition: border 0.5s ease;
}

.form input.submit{
   height: 2.5rem;
   font-size: 1.2em;
   padding: 0.4rem;
   color: #ffffff;
   background-color: #cd2469;
   border: #cd2469 solid 1px;
   outline: none;
   font-weight: 600;
   text-transform: uppercase;
   transition: background-color 0.5s ease;
   cursor: pointer;
}

.form input.submit:hover{
   background-color: #e62243;
}

.form input.error , .form select.error , .form textarea.error{
    border: #e62243 solid 1px;
}

.form input:focus , .form select:focus , .form textarea:focus{
   border: #cd2469 solid 1px;
   outline: none;
}

.form .error_text{
   color: #e62243;
   text-transform: capitalize;
   font-size: 0.9em;
   font-weight: 400;
   margin: 0 0.5rem;
}

.form img.captcha{
    width: 200px;
    margin-bottom: 1em;
}

.captcha-refresh {
    cursor: pointer;
}


/* end form */
body{
    font-size: 15px;
    line-height: 1.5em;
    font-family: 'Roboto', 'Changa',sans-serif;
    letter-spacing: 0.03em;
    font-weight: 300;
    background-color: #fbfbfb;
}

nav{
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

.notification_wrapper{
    background-color: #ffdd01;
    padding: 0.6rem 0;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-align: center;
    line-height: 1.8em;
}
.notification_wrapper .container{
    justify-content: center;
}

.header{
    background-color: #161027;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.75em;
    padding: 1rem 0;
    border-bottom: solid 4px #cd2469;
}

.header .container{
    justify-content: space-between;
    align-items: center;
}

.logo_wrapper a{
    border: none;
    display: flex;
    align-items: center;
}
.logo_wrapper img{
    height: 40px;
    margin-right: 20px;
}

.menu_wrapper{
    display: none;
}

.menu{
    display: flex;
    list-style: none;
    text-transform: uppercase;
}

.menu li{
    margin-left: 20px;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.menu li .submenu{
    list-style: none;
    position: absolute;
    background-color: #fff;
    color: #000000;
    top:100%;
    left: 0;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
    border-radius: 5px;
}

.menu li .submenu li{
    padding: 5px 20px;
    margin: 0;
    width: 100%;
    white-space: nowrap;
    transition: background-color 0.3s ease , color 0.3s ease ;
}

.menu li .submenu li a{
    color: inherit;
}

.menu li .submenu li:hover{
    background-color: #cd2469;
    color: #ffffff;
}

.menu li:hover .submenu{
    display: flex;
}

.menu li.active{
    color: #cd2469;
    border-bottom: #cd2469 solid 2px;
}

.menu li a{
    transition: color 0.3s ease;
}

.menu li:hover a{
    color: #cd2469;
}

.menu li a{
    text-decoration: none;
    color: inherit;
    border: none;
}

.menu_res_btn_wrapper{
    cursor: pointer;
}

.menu_res_btn_wrapper i{
    transition: transform 0.3s ease;
}

.menu_res_btn_wrapper i.rotate{
    transform: rotate(-180deg);
}

.menu_res_wrapper{
    background-color: #161027;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    position: absolute;
    transition: max-height 0.2s ease;
    color: #ffffff;
}
.menu_res_wrapper .menu li{
    background-color: #161027;
    margin: 0.7em 0;
    position: relative;
    width: 100%;
    text-align: center;
}

.menu_res_wrapper .menu li .submenu{
    display: flex;
    position: relative;
    width: 100%;
    white-space: 1px;
    margin-top: 5px;
}

.menu_res_wrapper .menu li .submenu li{
    width: 100%;
    background-color: #ffffff;
}

.menu_res_wrapper.show{
    max-height:500px;
    transition: max-height 0.6s ease;
}

.menu_res_wrapper ul{
    /* background-color: red; */
    display: flex;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

#search_modal .modal_box{
    background-color: #fbfbfb;
    padding: 0em 0;
    border-radius: 3em;

}

.search_form{
    display: flex;
    justify-content: center;
    width: 90vw;
    max-width: 1000px;
    align-items: center;

}

.search_form input[type=search]{
    width: 90%;
    height: 3em;
    border: none;
    padding: 0 0.5em;
    background-color: inherit;
    font-size: 1.5em;
    color: #7a7a7a;
}

.search_form input[type=search]:focus{
    outline: none;
}

.search_form .submit{
    width: 3em;
    height: 3em;
    border-radius: 1.5em;
    border: none;
    background-color: inherit;
    color: #7a7a7a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search_form .submit:hover{
    color: #000000;
}

#hero{
    background-color: #161027;
    background-image: url("../img/bg.svg");
    background-size: cover;

}

#hero .container{
    flex-direction: row;
    flex-wrap: wrap;
    /* background-color: #cd2469; */
    justify-content: space-around;
    min-height: 50vh;
}

.hero_text_wrapper{
    /* background-color: red; */
    width: 100%;
    height: auto;
    padding: 1rem 0.5rem ;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.hero_text_wrapper h3{
    text-transform: uppercase;
    color: #ffffff;
}

.hero_text_wrapper h2{
    text-transform: uppercase;
    font-size: 45px;
    font-weight: 900;
    margin: 0.4rem 0 1rem 0;
    color: #cd2469;
}

.hero_text_wrapper p{
    max-width: 350px;
    background-image: linear-gradient(to right, #e62243 0%, #c1267d 100%), linear-gradient(to bottom, #fff, #fff);
    padding: 0.5rem;
    text-align: justify;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 200;
    color: #ffffff;
}

.hero_text_wrapper strong{
    color: #ffffff;
    font-weight: 900;
    font-size: 1.1rem;
}

.hero_image_wrapper{
    /* background-color: blue; */
    display: flex;
    align-items: flex-end;
    padding: 1rem 1rem 0 1rem;
}

.hero_image_wrapper img{
    width: 250px;
}

#our_mission .container{
    flex-wrap: wrap;
}

.box_content_wrapper{
    width: 100%;
    color: #7a7a7a;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.box_content_wrapper .box_title{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 2rem;
}

.box_content_wrapper .box_content{
    font-size: 1em;
    line-height: 1.7em;
    text-align: justify;
    font-weight: 400;
}

.box_content_wrapper .box_content strong{
    color: #cd2469;
    font-weight: 500;
}

.box_content_wrapper .box_title span{
    color: #cd2469;
}

.box_image_wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_image_wrapper img{
    width: 90%;
}

#early_learning .container{
    flex-wrap: wrap-reverse;
}

#static{
    background-color: #40163b ;
    position: relative;
    color: #ffffff;
    margin-bottom: 50px;
}

#static .container {
    flex-direction: column;
    align-items: center;

}

#static .title{
    background-color: #40163b;
    text-transform: capitalize;
    width: 100%;
    text-align: center;
    position: relative;
    padding-top: 0.5rem;
    top: 30px;
}

#static .title h2 {
    background-color: #40163b;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 2rem;
    font-size: 1.5em;
    font-weight: 900;
    padding: 0.5rem 2rem;
    border-bottom: #cd2469 solid 3px;
}
#static .title h2 span {
    color: #95c11f ;
    text-transform: uppercase;
}

#static .box_wrapper {
    /* background-color: black; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
    top: 50px;
}

#static .box_wrapper .box {
    background-color: #161027;
    color: #ffffff;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0.3rem;
    border-radius: 10px;
}

#static .box_wrapper .box i{
    display: block;
    font-size: 3rem;
    margin: 1rem 0 1.5rem 0;
}

#static .box_wrapper .box h2{
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0 0.5rem 0;
}

#static .box_wrapper .box h3{
    display: block;
    font-size: 0.9em;
    font-weight: 300;
    color: #ffffff;
}

#awards .title_wrapper{
    width: 92vw;
    margin: 0 auto;
    max-width: 1200px;
}

#awards{
    margin: 2rem 0;
}

#awards .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#awards .title_wrapper h2 span{
    color: #cd2469;
}

#awards .wrapper{
    background-color: #161027;
    color: #fff;
    padding: 1rem 0;

}
#awards .wrapper .container{
    background-color: #161027;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#awards .box{
    background-color: transparent !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.1rem;
    position: relative;
    color: #cd2469;
    margin-bottom: 3rem;
}

#awards .box::after{
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,0) 10%, rgba(205,36,105,1) 50%, rgba(0,0,0,0) 90%);
    bottom: 0;
}

#awards .box i{
    font-size: 5em;
    margin:0.2em 0 0.8em 0;
}

#awards .title{
    text-align: center;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.3em;
}

#awards .title span{
    color: #cd2469;
}
#awards .team{
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 1em;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease , border-bottom 0.3s ease;
    border-bottom: 1px solid #979797;
}

#awards .team:hover{
    color: #cd2469;
    border-bottom: 1px solid #cd2469;
}

#awards .team a{
    border: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    display: block;
}

#news{
    margin: 2rem 0;
}

#news .container{
    flex-direction: column;
}

#news .title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#news .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#news .title_wrapper h2 span{
    color: #cd2469;
}

#news .news_box_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background-color: red; */
}

#news .news_box_wrapper::after {
    content: "";
    width: calc(100%/3 - 10px);
  }

#news .box{
    background-color: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    /* background-color: yellow; */
    margin: 1rem 0;
    border-top: 13px solid #cd2469;
}

#news .image_wrapper{
    overflow: hidden;
    width: 100%;
    max-height: 250px;
    position: relative;
}

#news .image_wrapper .tag_wrapper{
    color: #fff;
    position: absolute;
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 2;
}

#news .image_wrapper .tag_wrapper span{
    background-color: #cd2469;
    padding: 0.1rem 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 400;
    margin-right: 5px;
    margin-bottom: 7px;
    border-radius: 5px;
}

#news .image_wrapper img{
    width: 100%;
    transition: transform 0.3s ease , filter 0.3s ease ;
}

#news .image_wrapper img:hover{
    transform: scale(1.1);
    filter: grayscale(1) blur(2px);
}

#news .content_wrapper{
    display: flex;
    flex-direction: column;
}

#news .detail_wrapper{
    display: flex;
    flex-direction: row;
    color: #cd2469;
    margin-top: 5px;
}

#news .detail_wrapper div{
    margin-left: 5px;
    margin-right: 15px;
}

#news .detail_wrapper span{
    font-weight: 500;
    font-size: 0.8em;
}

#news h2{
    color: #cd2469;
    font-weight: 800;
    font-size: 1.2em;
    margin: 0.5rem 0 0.3rem 0;
}

#news p{
    text-align: justify;
    font-weight: 300;
    font-size: 0.9em;
}

#news .btn_see_more{
    border: 1px solid #cd2469;
    display: inline-block;
    text-transform: capitalize;
    align-self: flex-start;
    padding: 0.7rem 1.2rem;
    margin-top: 1rem;
    border-radius: 8px;
    letter-spacing: 3px;
    transition: color 0.3s ease , background-color 0.3s ease;
}

#news .btn_see_more:hover{
    background-color: #cd2469 ;
    color: #fff;
}

#sponser .container{
    flex-wrap: wrap;
    justify-content: space-between;
}

#sponser .container div{
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 0 5rem;
    display: flex;
    align-items: center;
}

#sponser .container img{
    width: 100%;
}

footer{
    background-color: #161027;
    border-top: 8px solid #cd2469;
    margin-top: 1rem;
    color: #fff;
}

footer .container{
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
}

footer .col1 {
    width: 100%;
    margin-bottom: 2rem;
}

footer .col2 {
    width: 100%;
    margin-bottom: 2rem;
}

footer .col3 {
    width: 100%;
    margin-bottom: 2rem;
}

footer .title {
    color: #cd2469;
    font-weight: 900;
    font-size: 1.2em;
    text-transform: uppercase;
}

footer p {
    padding: 0 1rem;
    font-size: 0.9em;
    text-align: justify;
    line-height: 1.7rem;
}

footer .social_wrapper {
    font-size: 1.4rem;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

footer .social_wrapper a {
    color: #fff;
    border: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

footer .social_wrapper a:hover {
    color: #cd2469;
}

footer .col2 ul {
    list-style: none;
    text-align: center;
    color: #fff;
}

footer .col2 li {
    border-bottom: 1px solid #979797;
    padding: 0.7rem 0;

}

footer .col2 li i {
    font-size: 0.3rem;
    margin-right: 0.5rem;
}

footer .col2 li:last-child {
    border-bottom: none
}

footer .col2 ul a{
    border: none;
    color: #fff;
    font-weight:300;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease;
}

footer .col3 div{
   display: flex;
   margin-bottom: 0.5rem;
   margin-top: 0.5rem;
}

footer .col3 div strong{
   color: #cd2469;
   font-weight: 800;
   font-size: 1.1em;
}

footer .col3 div i{
   font-size: 1.1em;
}

footer .col2 ul a:hover{
    color: #cd2469;
}

footer .copyright{
    background-color: #cd2469;
    font-weight: 500;
    font-size: 0.9em;
}

footer .copyright .container{
    padding: 0.6rem 0;
}

.page_title_wrapper{
    margin: 1.3rem 0 0 0;
    width: 100%;
    background-image: linear-gradient(to right, #e62243 0%, #c1267d 100%), linear-gradient(to bottom, #fff, #fff);
    text-transform: uppercase;
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 800;
    padding: 0.9rem 0;
    line-height: 1.5em;
}

.page_subtitle_wrapper{
    color: #cd2469;
    font-weight: 800;
    padding: 0.3rem 0;
    text-transform: uppercase;
    position: relative;
    line-height: 1.2em;
}

.page_subtitle_wrapper h3{
    background-color:#fbfbfb;
    position: relative;
    z-index: 2;
    padding: 0.5rem 1rem;
    margin-left: 20px;
}

.page_subtitle_wrapper::after{
    content: '';
    position: absolute;
    height: 8px;
    width: 100%;
    top: 40%;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to right, #e62243 0%, #c1267d 100%), linear-gradient(to bottom, #fff, #fff);
}

#intro_wro_wrapper .container{
    flex-wrap: wrap;
    margin-top: 1rem;
}

#intro_wro_wrapper .container div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 1rem 0;
    text-align: justify;
    font-size: 1em;
    font-weight: 400;
    line-height: 2em;
}

#intro_wro_wrapper .container img{
    width: 70%;
    height: auto;
}

#intro_wro_wrapper .container span{
    color: #cd2469;
    font-weight: 500;
}

#category_wrapper{
    background-color: #161027;
}

#category_wrapper .title_wrapper{
    background-color: #40163b;
    clip-path: polygon(0 0, 0 60% , 50% 100% ,100% 60% , 100% 0);
    padding: 2rem 0 3.5rem 0;
    position: relative;
}

#category_wrapper .title_wrapper::before{
    background-color: #fff;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 58%, 0 60% , 50% 100% ,100% 60% , 100% 58% , 50% 98%  );
    /* padding: 2rem 0 3.5rem 0; */
}

#category_wrapper .title_wrapper .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#category_wrapper .title_wrapper h2{
    color: #cd2469;
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom: 1.9rem;
    text-align: center;
}

#category_wrapper .title_wrapper h3{
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 300;
    margin-bottom: 0.9rem;
    text-align: center;
}

#category_wrapper .content_wrapper{
    color: #fff;
}

#category_wrapper .content_wrapper .container{
    flex-direction: column;
}

#category_wrapper .content_wrapper .cat_box{
    /* background-color: #95c11f; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#category_wrapper .content_wrapper .cat_box .img_wrapper{
    width: 170px;
    padding: 10px;
}

#category_wrapper .content_wrapper .cat_box .img_wrapper img{
    width: 100%;
}

#category_wrapper .content_wrapper .cat_box .detail_wrapper{
    font-size: 1.1em;
    width: 100%;
    padding-left: 3rem;
}

#category_wrapper .detail_wrapper h2{
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.8em;
    margin-bottom: 1.5rem;
    margin-top: 0.8rem;
}

#category_wrapper .detail_wrapper h2 span{
    font-weight: 900;
}

#category_wrapper .detail_wrapper div{
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

#category_wrapper .detail_wrapper div strong{
    margin-right: 0.5rem;
    text-transform: capitalize;
    font-size: 0.8em;
}

#category_wrapper .detail_wrapper div span{
    font-size: 0.9em;
}


#session{
    margin: 4rem 0;
}

#session .container{
    flex-direction: column;
}

#session .title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#session .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#session .title_wrapper h2 span{
    color: #cd2469;
}

#session .session_box_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

#session .session_box_wrapper::after {
    content: "";
    width: calc(100%/3 - 10px);
  }

#session .box{
    background-color: #fff;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#session .year{
    color: #cd2469;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

#session .country{
    color: #cd2469;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

#session .prefix{
    color: #cd2469;
    font-size: 1.1rem;
    font-weight: 900;
    margin-top: 1em;
}

#session .suffix{
    color: #cd2469;
    font-size: 1.1rem;
    font-weight: 900;
}

#session img{
    width:200px;
}

#session .title{
    text-align: center;
    color: #545353;
    margin: 1rem 0;
    font-size: 1.3em;
    line-height: 1.5rem;
    text-transform: uppercase;
}

#session a{
    text-transform: uppercase;
    font-weight: 500;
}

#session a:hover{
    background-color: #e62243;
}

#wro_session_intro_wrapper{
    margin: 1rem 0;
}

#wro_session_intro_wrapper .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wro_session_intro_wrapper .title_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* #wro_session_intro_wrapper .title_wrapper h2:nth-child(1){
    color: #545353;
    font-size: 2.5em;
    font-weight: 900;
}

#wro_session_intro_wrapper .title_wrapper h2:nth-child(2){
    color: #cd2469;
    font-size: 3.9em;
    font-weight: 900;
    margin: 1.5rem 0 0.2rem 0;
    text-align: center;
} */

#wro_session_intro_wrapper .title_wrapper h2:nth-child(1){
    color: #cd2469;
    font-size: 1.5em;
    font-weight: 900;
    margin: 1rem 0 1rem 0;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2em;
}

#wro_session_intro_wrapper .title_wrapper #subject{
    color: #545353;
    font-size: 2em;
    font-weight: 900;
    text-align: center;
    line-height: 1.2em;
    margin-top: 0.4em;
    margin-bottom: 0.4em;
}

#wro_session_intro_wrapper .title_wrapper #prefix, #wro_session_intro_wrapper .title_wrapper #suffix{
    color: #545353;
    font-size: 1.3em;
    line-height: 1em;
    text-align: center;

}

#wro_session_intro_wrapper .title_wrapper #suffix{
    color: #cd2469;
}

#wro_session_intro_wrapper .intro_wro_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

#wro_session_intro_wrapper .intro_wro_wrapper .img_wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

#wro_session_intro_wrapper .intro_wro_wrapper .img_wrapper img{
    width: 250px;
}

#wro_session_intro_wrapper .intro_wro_wrapper .intro_wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    text-align: justify;
    line-height: 1.7rem;
    font-weight: 400;
}

#wro_session_intro_wrapper .intro_wro_wrapper .intro_wrapper strong{
    color: #cd2469;
}

#wro_session_intro_wrapper .btn{
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#wro_session_intro_wrapper .btn span:nth-child(1){
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

#wro_session_intro_wrapper .btn.deactive{
    background-image: none;
    background-color: #7a7a7a;
}

#wro_session_intro_wrapper .unpublish{
    background-color: #ffdd01;
    padding: 1rem 1rem;
    font-weight: 300;
    text-transform: capitalize;
    margin-top: 1rem;
}

#sponsors{
    margin: 4rem 0;
}

#sponsors .container{
    flex-direction: column;
    border: solid 1px #cd2469;
    border-radius: 8px;
    align-items: center;
    padding: 1em;
    background-color: #FFFFFF;
}

#sponsors .title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sponsors .title_wrapper h2{
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #cd2469;
}

#sponsors .box_wrapper{
    height: auto;
    margin: 1rem 0 0.3rem 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

#sponsors .box_wrapper .sponsors_item_wrapper{
    border: none;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
}

#sponsors .box_wrapper .sponsors_item_wrapper.gold{
    border: solid 2px 	#ffd700;
    border-radius: 5px;
    padding: 10px;

}

#sponsors .box_wrapper .sponsors_item_wrapper.gold span{
    position: absolute;
    color: #ffd700;
    background-color: #ffffff;
    padding: 2px 10px;
    text-transform: uppercase;
    left: 50%;
    margin-left: -50px;
    top: -15px;
    width: 100px;
    text-align: center;
    font-size: 1.3em;
    /* margin-top: -50px; */
}


#sponsors .box_wrapper .sponsors_item_wrapper img{
    width: 90%;
    max-width: 300px;
    max-height: 300px;
    margin-bottom: 1em;
    margin-top: 1em;
}

#sponsors .box_wrapper .sponsors_item_wrapper h2{
    font-size: 1.2em;
    color: #545353;
    font-weight: 500;
    text-transform: uppercase;
}

#rule{
    margin: 4rem 0;
}

#rule .container{
    flex-direction: column;
}

#rule .title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#rule .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#rule .title_wrapper h2 span{
    color: #cd2469;
}

#rule .box_wrapper{
    border: solid 1px #161027;
    height: auto;
    margin: 1rem 0 0.3rem 0;
}

#rule .box_title_wrapper{
    background-color: #161027;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    text-transform: uppercase;
    cursor: pointer;
}

#rule .box_title_wrapper h2{
    font-weight: 400;
}

#rule .box_wrapper .content{
    padding: 0rem 1rem;
    max-height:0;
    overflow: hidden;
    transition: max-height 0.2s ease ;
}

#rule .box_wrapper .content.show{
    max-height: 500px;
    transition: max-height 0.5s ease ;
}

#rule .box_wrapper .content .item{
    display: flex;
    align-items: baseline;
    margin: 0.5rem 0;
}

#rule .box_wrapper .content .item i{
    color: #cd2469;

}

#rule .box_title_wrapper i{
    transition: transform 0.3s ease;
}

#rule .box_title_wrapper i.rotate{
    transform: rotate(-90deg);
}

#rule .box_wrapper .content .item h2{
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

#rule .box_wrapper .content .item h2 span{
    color: #7a7a7a;
}

#registered_teams{
    margin: 4rem 0;
}

#registered_teams .container{
    flex-direction: column;
}

#registered_teams .title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#registered_teams .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#registered_teams .title_wrapper h2 span{
    color: #cd2469;
}

#registered_teams .content_wrapper{
    display: none;
}

#registered_teams .content_wrapper table{
    width: 100%;
    text-align: center;
    border-spacing: 0;
    border: 1px solid #cd2469;
    border-radius: 7px;
    overflow: hidden;
}

#registered_teams .content_wrapper table tr:nth-child(1){
    background-image: linear-gradient(to right, #e62243 0%, #c1267d 100%), linear-gradient(to bottom, #fff, #fff);
    color: #ffffff;
}

#registered_teams .content_wrapper table tr{
    transition: background-color 0.3s ease ;
}

#registered_teams .content_wrapper table tr:hover{
    background-color: #d1d1d1;
}

#registered_teams .content_wrapper table tr:nth-child(odd){
    background-color: #E2E2E2;
}

#registered_teams .content_wrapper table th{
    padding: 0.5rem 0.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1em;
}

#registered_teams .content_wrapper table td a{
    display: block;
    border: none;
    color: inherit;
    margin: 0;
    padding: 0.5rem 0.4rem;
    font-weight: 400;
}


#registered_teams .content_wrapper_res{
    display: flex;
    flex-direction: column;
}

#registered_teams .content_wrapper_res .team_wrapper{
    width: 100%;
    border: solid 1px #cd2469;
    border-radius: 8px;
    overflow: hidden;
    margin: 0.5rem 0;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper{
   display: flex;
   flex-wrap: nowrap;
   width: 100%;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper .title{
    background-image: linear-gradient(to right, #e62243 0%, #c1267d 100%), linear-gradient(to bottom, #fff, #fff);
    width: 100px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9em;
    color: #ffffff;
    padding: 0.8rem 0.2rem;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper .content{
    text-align: left;
    padding: 0.8rem 0.5rem;
    width: calc(100%-100px);
    flex: 1;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper .content.green , #registered_teams .content_wrapper table td a.green{
    color: #177704;
    font-weight: 500;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper .content a{
    font-size: 1.1em;
    transition: color 0.3s ease;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper .content a:hover{
    color: #e62243;
}

#registered_teams .content_wrapper_res .team_wrapper .row_wrapper:nth-child(even) .content{
   background-color: #E2E2E2;
}


#pagination .container{
    justify-content: center;
}

#pagination .page_wrapper ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

#pagination .page_wrapper a{
    border: none;
    text-transform: capitalize;
    color: inherit;
    padding: 0.5rem 1rem;
    display: inline-block;
}

#pagination .page_wrapper ul li{
    margin: 0 0.3rem;
    background-color: #FFFFFF;
    color: #cd2469;
    border: #E2E2E2 solid 1px;
    height: 100%;
    transition: background-color 0.3s ease ;
}

#pagination .page_wrapper ul li:hover{
    color: #fff;
    background-color: #cd2469;
}

#pagination .page_wrapper ul li.active{
    color: #fff;
    background-color: #cd2469;
}

.register_info_wrapper{
   margin: 2rem 0;
}

.register_info_wrapper .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.register_info_wrapper .container h2:nth-child(1){
    font-weight: 900;
    font-size: 2em;
    color: #545353;
    text-align: center;
    line-height: 1.2em;
}

.register_info_wrapper .container h2:nth-child(2){
    font-weight: 900;
    font-size: 2.5em;
    color: #cd2469;
    margin: 1.5rem 0 1rem 0;
}

.register_info_wrapper .container a{
    margin: 0 0 1rem 0;
}

.register_info_wrapper .container span{
    text-align: center;
    margin: 0.2rem;
    font-weight: 500;
}

.register_info_wrapper .container .fee{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 1.5em;
    margin: 1.5rem;
    text-transform: capitalize;
}

.register_info_wrapper .container .fee h2:nth-child(1){
    font-size: 1em;
    margin-bottom: 0.3rem;

}

.register_info_wrapper .container .fee h2:nth-child(2){
    font-size: 1.2em;
    margin: 0.2rem;
}



.register_info_wrapper .success{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    border: solid 1px #d1d1d1;
    padding: 0.5rem 2rem;
    border-radius: 10px;
}

.register_info_wrapper .success i{
    color: #95c11f;
    margin: 2rem 0 2rem 0;
}

.register_info_wrapper .success h2:nth-child(2){
    font-size: 1.9rem;
    color: #95c11f;
    text-transform: uppercase;
}

.register_info_wrapper .success h2:nth-child(3){
    font-size: 1.2rem;
    color: #545353;
    margin: 1rem;
    text-transform: capitalize;
}

.register_info_wrapper .success h2:nth-child(3) span{
    font-size: 1.5rem;
    color: #cd2469;
    font-weight: 900;
}

.register_info_wrapper .warning{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    border: solid 1px #d1d1d1;
    padding: 0.5rem 2rem;
    border-radius: 10px;
}

.register_info_wrapper .warning i{
    color: #cd2469;
    margin: 2rem 0 2rem 0;
}

.register_info_wrapper .warning h2{
    font-size: 1rem !important;
    color: #545353 !important;
    text-transform: uppercase !important;
}


#detail{
    margin: 2rem 0;
}

#detail .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#detail .body{

    font-size: 1.2em;
    line-height: 1.9rem;
    margin: 2rem 0;

}

#detail img{
    max-height: 500px;
    max-width: 90%;

}



#detail .body p{
    margin: 1rem 0;
    text-indent: 1rem;
}

#detail .body p strong{
    color: #cd2469;
}

#detail .body h3{
    color: #cd2469;
    font-weight: 900;
    font-size: 2rem;
    line-height: 2rem;
    margin: 1.5rem 0;
}

#detail .tags{
    width: 100%;
    padding: 2rem 0;
}

#detail .tags {
    width: 100%;
    padding: 2rem 0;
    font-size: 1em;
    color: #cd2469;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    border-bottom: #e1e1e1 solid 1px;
}

#detail .tags a{
    border: none;
    /* background-color: #e2e2e2; */
    padding: 0.2rem 0.8rem;
    margin: 0.2rem 0.2rem;
    border: #e1e1e1 1px solid;
    border-radius: 3px;
    color: #545353;
    font-weight: 300;
    transition: background-color 0.3 ease;
}

#detail .tags a:hover{
    background-color: #e2e2e2;
}

#comments .container{
    flex-direction: column;
}

#comments .container .title{
    color: #cd2469;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

#comments .box{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

#comments .box .avatar_wrapper{
    width: 80px;
    height: 80px;
    border: #e1e1e1 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #545353;
}

#comments .box .content{
    width: calc(100% - 80px - 1rem);
    padding: 0r;
    border: #e1e1e1 1px solid;
    margin-left: 1rem;
    border-radius: 5px;
    margin-top: 20px;
}

#comments .box .title{
    background-color: #E2E2E2;
    color: #545353;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.2rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
}

#comments .box .content p{
    padding: 0em 1em 1em 1em;
    font-size: 0.9em;
}

#comments .comment_form{
    /* background-color: red; */
    display: flex;
    align-items: flex-start;
    width: 100%;
}

#contact_us .container{
    flex-direction: column;
}

#contact_us .success_message_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    min-height: 50vh;
}

#contact_us .success_message_wrapper i{
    margin-bottom: 3rem;
    color: #cd2469;
}

#contact_us .success_message_wrapper h2{
    text-transform: uppercase;
    font-size: 2em;
    margin-bottom: 1rem;
    color: #cd2469;
    line-height: 1.2em;
    text-align: center;
    font-weight: 800;
}

#contact_us .success_message_wrapper span{
    font-size: 1.1em;
    text-align: center;
}

#team_info .team_info_wrapper{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#team_info .team_info_wrapper .image_wrapper{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#team_info .team_info_wrapper .image_wrapper img{
    width: 100%;
}

#team_info .team_info_wrapper .image_wrapper .image_title{
    background-color: #cd2469;
    text-align: center;
    color: #ffffff;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-weight: 500;
    padding: 5px 0;
}

#team_info .team_info_wrapper .info_wrapper{
    border: #cd2469 solid 1px;
    width: 100%;
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}


#team_info .team_info_wrapper .info_wrapper .info_table{
    display: flex;
    flex-direction: column;

}

#team_info .team_info_wrapper .info_wrapper .info_table .section_title{
    background-color: #cd2469;
    text-align: center;
    font-weight: 500;
    padding: 5px 0;
    text-transform: uppercase;
    color: #ffffff;
}

#team_info .team_info_wrapper .info_wrapper .info_table .row{
    display: flex;
    flex-direction: row;
}

#team_info .team_info_wrapper .info_wrapper .info_table .row:nth-child(odd){
    background-color: #eeeded;
}

#team_info .team_info_wrapper .info_wrapper .info_table .row .title{
    width: 30%;
    text-align: right;
    font-weight: 500;
    color: #545353;
    padding: 5px 10px 5px 0;
    text-transform: capitalize;
}

#team_info .team_info_wrapper .info_wrapper .info_table .row .value{
    width: 70%;
    text-align: left;
    padding: 5px 0;
    text-transform: capitalize;
}

#team_info .awards {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

#team_info .awards i {
    font-size: 2em;
    line-height: 1em;
    margin-bottom: 1rem;
    color: #545353;
}

#team_info .awards h2 {
    font-size: 1.2em;
    font-weight: 900;
    color: #545353;
}

#team_info .awards h2 span{
    color: #cd2469;
}

#error404 .container{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 700px;
}

#error404 .container h2:nth-child(1){
    font-size: 5em;
    line-height: 1em;
    color: #979797;
    margin: 2rem  0 1rem 0;
    font-weight: 900;
}

#error404 .container h3:nth-child(2) {
    font-weight: 500;
    font-size: 1.5em;
    text-transform: capitalize;
    margin-bottom: 4rem;
    color: #545353;
}

#error404 .container h2:nth-child(3){
    font-size: 2em;
    line-height: 1em;
    color: #cd2469;
    margin: 2rem  0 1rem 0;
    font-weight: 900;
}

#error404 .container h3:nth-child(4){
    font-weight: 400;
    font-size: 1.2em;
    text-transform: capitalize;
    margin-bottom: 0.9rem;
    color: #545353;
}

#error404 .container form{
    display: flex;
    flex-direction: column;
    width: 100%;

}
#error404 .container input{
    height: 2rem;
    font-size: 1.2em;
    padding: 0.9em 0.5em;
    color: #545353;
    border-radius: 5px;
    border: #545353 solid 1px;
    outline: none;
    transition: border 0.5s ease;
}

#error404 .container input:focus {
    border: #cd2469 solid 1px;
    outline: none;
 }

 #error404 .container input.submit{
    height: 2.5rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.2em;
    padding: 0.4rem;
    color: #ffffff;
    background-color: #cd2469;
    border: #cd2469 solid 1px;
    outline: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.5s ease;
    cursor: pointer;
 }

 #error404 .container input.submit:hover{
    background-color: #e62243;
 }

 #sponsors_partners .container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
 }

 #sponsors_partners .container .title_wrapper h2{
    color: #c1267d;
    text-transform: uppercase;
    font-size: 1.3em;
    margin: 10px 0;
 }

 #sponsors_partners .container .box_wrapper{
    border: solid 1px #c1267d;
    margin: 15px 10px 15px 10px;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 5px;
 }

 #sponsors_partners .container .box_wrapper .box_content{
   display: flex;
   flex-wrap: wrap;
   justify-content: space-around;
   width: 100%;
 }

 #sponsors_partners .container .box_wrapper .box_content .item_wrapper{
    max-width: 200px;
    max-height: 300px;
    margin: 40px 20px 40px 20px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
 }

 #sponsors_partners .container .box_wrapper .box_content .item_wrapper.gold{
    border: solid 2px 	#ffd700;
    border-radius: 5px;
    padding: 20px 10px;
    position: relative;
 }

 #sponsors_partners .container .box_wrapper .box_content .item_wrapper.gold span{
    position: absolute;
    color: #ffd700;
    background-color: #ffffff;
    padding: 2px 10px;
    text-transform: uppercase;
    left: 50%;
    margin-left: -50px;
    top: -15px;
    width: 100px;
    text-align: center;
    font-size: 1em;
 }

 #sponsors_partners .container .box_wrapper .box_content .item_wrapper img{
    width: 100%;
 }

 #sponsors_partners .container .box_wrapper .box_content .item_wrapper h2{
    color: #545353;
    font-size: 1em;
    font-weight: 500;
    margin-top: 5px;
 }

 #about_us .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
 }

 #about_us .container i{
    margin:1em 0 1em 0;
    color: #c1267d;
 }

 #about_us .container h2{
    margin:1em 0 1em 0;
    color: #c1267d;
    font-weight: 900;
    font-size: 1.9em;
    line-height: 1.2em;
    text-align: center;
 }

 #about_us .container span{
    font-size: 1.1em;
    text-align: center;
    line-height: 1.8em;
    max-width: 800px;
    font-weight: 400;
    color: #545353;
 }

 #about_us .container span strong{
    color: #c1267d;
 }

 #about_us .side{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.1em;
    text-align: justify;
    line-height: 1.8em;
    font-weight: 400;
    color: #545353;
 }

 #about_us .side strong{
    color: #c1267d;
 }

 #about_us .side>*{
    flex-basis: 100%;
 }

#activities{
    margin: 2rem 0;
}

#activities .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#activities .title_wrapper h2 span{
    color: #cd2469;
}

#activities .wrapper{
    background-color: #161027;
    color: #fff;
    padding: 1rem 0;
}

#activities .wrapper ul{
    list-style: none;
    padding-left: 3em;
}

#activities .wrapper ul li{
    margin-top: 10px;
    font-size: 1em;
    font-weight: 400;
}

#activities .wrapper ul li::before {
    content: "\2022";
    color: #cd2469;
    font-weight: bold;
    font-size: 1.5em;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

#shop_brands{
    margin: 2rem 0;
}

#shop_brands .container{
    flex-direction: column;
}

#shop_brands .title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

#shop_brands .title_wrapper h2{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #545353;
}

#shop_brands .title_wrapper h2 span{
    color: #cd2469;
}

.brands_box_wrapper{
    /* background-color: red; */
    padding: 10px;
    margin-bottom: 40px;
    border-left: 13px solid #CD2469;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.brands_box_wrapper img{
    margin: 0 30px;
    width: 200px;
    margin-bottom: 20px;
}

.brands_box_wrapper div{
    flex: 3;
    margin: 0 30px;
}

.brands_box_wrapper div h2{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 2rem;
    color: #CD2469;
}

.brands_box_wrapper div p{
    text-align: justify;
}

.all_products_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background-color: red; */
}

.all_products_wrapper::after {
    content: "";
    width: calc(100%/3 - 10px);
  }

#poroducts .box{
    background-color: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    /* background-color: yellow; */
    margin: 1rem 0 0 0;
    border: 1px solid #cd2469;
    border-radius: 8px;
    overflow: hidden;
}

#poroducts .container{
    display: flex;
    flex-direction: column;
}
#poroducts .image_wrapper{
    overflow: hidden;
    width: 100%;
    max-height: 250px;
    position: relative;
}


#poroducts .image_wrapper img{
    width: 100%;
    transition: transform 0.3s ease , filter 0.3s ease ;
}

#poroducts .image_wrapper img:hover{
    transform: scale(1.1) rotate(5deg);
}

#poroducts .content_wrapper{
    display: flex;
    flex-direction: column;
    padding: 15px;
}
#poroducts .detail_wrapper{
    display: flex;
    flex-direction: row;
    color: #cd2469;
    margin-top: 5px;
}

#poroducts .detail_wrapper div{
    margin-left: 5px;
    margin-right: 15px;
}

#poroducts .detail_wrapper span{
    font-weight: 500;
    font-size: 0.8em;
}

#poroducts h2{
    color: #cd2469;
    font-weight: 800;
    font-size: 1.2em;
    margin: 0.5rem 0 0.3rem 0;
}

#poroducts p{
    text-align: justify;
    font-weight: 300;
    font-size: 0.9em;
}

#poroducts .btn_see_more{
    border: 1px solid #cd2469;
    display: inline-block;
    text-transform: capitalize;
    align-self: flex-start;
    padding: 0.7rem 1.2rem;
    margin-top: 1rem;
    border-radius: 8px;
    letter-spacing: 3px;
    transition: color 0.3s ease , background-color 0.3s ease;
}
#poroducts .btn_line.bg{
    background-color: #cd2469 !important;
    color: #ffffff;
}
#poroducts .btn_line.bg:hover{
    background-color: #c1267d !important;
    color: #ffffff;
}
#poroducts .btn_line{
   margin-left: 0;
   width: 100%;
   text-align: center;
}

#poroducts .btn_see_more:hover{
    background-color: #cd2469 ;
    color: #fff;
}

#poroducts .item_wrapper{
    display: flex;
    flex-direction: column;

}
#poroducts  .item_wrapper .detail_wrapper{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    margin: 10px 0;
}

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper{
    margin: 0;
    flex: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__main-image {
    max-width: 500px;
    max-height: 600px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid #cd2469;
    border-radius: 8px;
    overflow: hidden;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__slider-wrap {
    max-width: 500px;
    min-height: 100px;
    display: flex;
    align-items: center;
    margin: 0;

  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__slider {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__image {
    max-width: 180px;
    max-height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    margin: 0.25rem;
    border: 1px solid #cd2469;
    border-radius: 8px;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__image:first-child {
    margin-left: 0;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__image:last-child {
    margin-right: 0;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__image:hover {
    opacity: 1;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__image--active {
    opacity: 1;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__slider::-webkit-scrollbar {
    height: 10px;
  }

#poroducts  .item_wrapper .detail_wrapper .product_images_wrapper .product__slider::-webkit-scrollbar-thumb {
    background-color: #cd2469;
    border-radius: 50px;
  }

#poroducts  .item_wrapper .detail_wrapper .product_info_wrapper{
    flex: 4;
    margin: 0;
    padding: 0 20px;
    position: relative;
}

#poroducts  .item_wrapper .detail_wrapper .product_info_wrapper .title{
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 2rem;
    color: #cd2469;
}
#poroducts  .item_wrapper .detail_wrapper .product_info_wrapper .sub_title{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 0.1rem;
    color: #979797;
}

#poroducts  .item_wrapper .detail_wrapper .product_info_wrapper .short_desc{
    text-align: justify;
    font-weight: 300;
    font-size: 0.9em;
    color: #545353;
    margin: 25px 0 10px 0;
}
#poroducts  .item_wrapper .detail_wrapper .product_info_wrapper .info_table{
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-top: 30px;
    padding: 0;

}

#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .info_table .row{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .info_table .row div{
    margin: 0;
    margin-right: 5px;
    font-size: 0.9em;
}

#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .info_table .row:nth-child(odd){
    background-color: #FBFBFB;
}
#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .info_table .row:nth-child(even){
    background-color: #E2E2E2;
}


#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .info_table .row .property{
    color: #545353;
    text-transform: capitalize;
    font-weight: 400;
    padding: 5px 10px;
}

#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .info_table .row .value{
    color: #545353;
    text-transform: capitalize;
    font-weight: 500;
    padding: 5px 0px;
}
#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .price_wrapper{
    display: flex;
    font-weight: 900;
    margin: 0;
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 20px;
}

#poroducts .item_wrapper .detail_wrapper .product_info_wrapper .btn_group{
    margin: 0;
    position: sticky;
    top: 0;
    left: 0;
}


#shop_brands .title_wrapper h2 span{
    color: #cd2469;
}

#poroducts  .item_wrapper .desc_wrapper{
    border-top: 13px solid #cd2469;
    margin-top: 20px;
}

#poroducts  .item_wrapper .desc_wrapper .title{
    font-weight: 900;
    font-size: 30px;
    text-transform: uppercase;
    margin: 20px 0;
}

.form .section_product{
    width: 100%;
    max-width: 700px;
    margin: 0.6rem 0;
}

.form .section_product .list_wrapper{
    padding: 5px 0;
}

.form .section_product .list_wrapper .item{
   display: flex;
   justify-content: start;
   align-items: center;
   flex-wrap: nowrap;
   margin: 10px 0;
   border: #979797 solid 1px;
   padding: 5px 0 ;
}

.form .section_product .list_wrapper .item .img_wrapper{
    width: 80px;
    height: 50px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.form .section_product .list_wrapper .item .img_wrapper img{
    width: 100%;
}

.form .section_product .list_wrapper .item .info_wrapper{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    flex: 1;
}

.form .section_product .list_wrapper .item .title_wrapper{
    flex: 1;
    font-weight: 600;
    color: #979797;
    margin-bottom: 10px;
}
.form .section_product .list_wrapper .item .title_wrapper .title{
    color: #545353;
}
.form .section_product .list_wrapper .item .title_wrapper .code{
    color: #979797;
    font-size: 0.9rem;
}

.form .section_product .list_wrapper .item .detail_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.form .section_product .list_wrapper .item .qnty_wrapper{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;

}

.form .section_product .list_wrapper .item .qnty_wrapper span{
    border-radius: 5px;
    font-weight: 400;
    display: inline-block;
    width: 35px;
    margin: 0 5px;
    background-color: #FFFFFF;
    border: 1px solid #d1d1d1;
    padding: 3px;
    text-align: center;
}

.form .section_product .list_wrapper .item .qnty_wrapper i{
    cursor: pointer;
    transition: color 0.2s ease;
}

.form .section_product .list_wrapper .item .qnty_wrapper i:hover{
    color: #cd2469;
}

.form .section_product .list_wrapper .item .price_wrapper{
    width: 130px;
    font-weight: 500;
    color: #cd2469;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form .section_product .list_wrapper .item .action_wrapper{
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.form .section_product .list_wrapper .item .action_wrapper i{
    transition: color 0.2s ease;
}

.form .section_product .list_wrapper .item .action_wrapper i:hover{
    color: #cd2469;
}


.form .section_product .add_wrapper{
    border: dashed #CD2469 2px;
    background-color: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #177704;
    cursor: pointer;
    margin: 0px 0;
}

.form .section_product .add_wrapper span{
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 5px;
}

.form .section_product .add_wrapper:hover{
    background-color: #f7f7f7;
}


.btn_wrapper{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
}
.btn_group{
    height: 2.5rem;
    font-size: 1.1em;
    padding: 0.4rem;
    outline: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.5s ease;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border: 0;
    flex: 1;
}

.btn_group.success{
    background-color: #cd2469;
    border: #cd2469 solid 1px;
    color: #ffffff;
}
.btn_group.mute{
    background-color: #d1d1d1;
    border: #979797 solid 1px;
    color: #545353;
}
.btn_group.disable{
    cursor: auto;
    background-color: #d1d1d1;
    border: #979797 solid 1px;
    color: #9d9d9d;
}

.loader_wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    padding: 0.5rem;
    opacity: 0.8;
  }

.loader_wrapper.hidden {
    display: none;
  }

  .loader_wrapper .loader {
    height: 2.5rem;
    width: 2.5rem;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .loader_wrapper .loader {
    animation: spin 1s linear infinite;
    border-radius: 9999px;
    border-width: 4px;
    border-style: solid;
    border-color: #ffffff;
    --tw-border-opacity: 1;
    border-top-color: #cd2469;
    background-color: transparent;
  }



