@import url("https://fonts.googleapis.com/css2?family=Grechen+Fuemen&family=Montserrat+Alternates:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* 
         Change favorite color:

         Default (Red): hsl(358, 80%, 49%)
         Purple: hsl(265, 80%, 49%) - Blue: hsl(220, 80%, 49%)
         Pink: hsl(330, 80%, 49%) - Green: hsl(162, 70%, 40%)
         Orange: hsl(14, 80%, 49%)

         For more colors visit: https://htmlcolorcodes.com/
         -> Choose any color 
         -> Copy the color mode (HSL)
  */
  --hue: 220;
  --first-color: hsl(var(--hue), 80%, 49%);
  --first-color-alt: hsl(var(--hue), 76%, 45%);
  --white-color: hsl(0, 0%, 98%);
  --black-color: hsl(0, 0%, 1%);
  --text-color: hsl(var(--hue), 2%, 0%);
  --body-color: hsl(var(--hue), 100%, 1%);
  --container-color: hsl(var(--hue), 2%, 80%);
  --conic-gradient: conic-gradient(from 150deg at 50% 45%,
                  hsl(var(--hue), 80%, 20%) 0deg,
                  hsl(var(--hue), 80%, 48%) 140deg,
                  hsl(var(--hue), 80%, 20%) 360deg);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --second-font: "Grechen Fuemen", cursive;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 4rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1168px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}







*{
    margin: 0;
    padding: 0;
   font-family: "TIMES NEW ROMAN";
  font-weight: 100;
  font-style: normal;
}

@media(max-width: 980px){
    
    
.Wrapper h1{
    font-size: 2.5rem;
}
    .content-box1{
        flex-direction: column;
        width: 100%;
    }
    .card{
        min-width: 300px;
        margin: 10px auto;
    }
}



.header{
        min-height: 100vh;
        width: 100%;
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Images/rooms.jpg);
        background-position: center;
        background-size: cover;
        position: relative;
    }
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
nav-links{
    flex: 1;
    text-align: right;

}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-style: normal;
    font-family: "TIMES NEW ROMAN";
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #373c4f;
    display: block;
    margin: auto;
    transition: 0.5s;
    
}
.nav-links ul li:Hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;}
    
.text-box p{
    margin: 10px 0 40px;
font-size: 14px;
color: #fff;}

.hero-btn{
    display: inline-block;
    text-decoration: None;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-style: normal;
    font-family: "TIMES NEW ROMAN";
    
}

.hero-btn:hover{
    border: 1px solid #373c4f;
    background: #373c4f;
    transition: 1s;
}
nav .fa{
    display: none;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
   .nav-links{
        position: fixed;
        background: #373c4f;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
       transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
     .nav-links ul{
         padding: 30px;}

}   
    /*----- course -----*/
    
.course{
        width: 80%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
    }
.course1{
        width: 60%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
    }
    h1{
        font-size: 36px;
        font-weight: 600;
    }
     P{
         font-size: 14px;
        font-weight: 300;
         line-height: 22px;
         padding: 10px;
    }

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.Act{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
.Act1{
    flex-basis: 50%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
.Act2{
    
    flex-basis: 80%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}
h10{
  font-size: 36px;
 font-weight: 600;
text-align:left;   
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;    
    
}


h29{
    text-align: center;
    font-weight: 800;
    margin: 10px 0; 
    color: #FF0000;
     font-size: 14px;
 
    
}

h11{
    text-align: left;
    font-weight: 600;
    margin: 10px 0;    
    
}
h6{
     text-align: center;
    font-weight: 700;
    margin: 10px 0;   
    font-style: normal;
    font-family: "TIMES NEW ROMAN";
}


.Act:Hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
.Act{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.Act img{
    width: 85%;
}


.Campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;

}
.campus-col{
    flex-basis: 400px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img {
    width: 99%;
    display: block;
}

    
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.layer:hover
{
    background: rgba(0, 0, 0, 0.17);
}
.layer h4
{   width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}


.layer:hover h4
{
    bottom: 49%;
    opacity: 1;  
}
.reviews {
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.Review-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.Review-col p{
    padding: 0;
}
.Review-col h3{
    margin-top: 15px;
    text-align: left;
}
.Review-col .fa{
    color: 	#FF4433;}

/*----- call for action -----*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(Images/h.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;   
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;   
    }
@media(max-width: 700px)
{
    .cta h1 {font-size: 24px;
    }
}

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}
.icons .fa{
    color: 	#FF4433;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o{
   color: #373c4f;    
}
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Images/55.jpg);
    background-position: center;
    background-size: auto;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    
    margin-top: 100px;
}
.sub-header1{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Images/69.jpg);
    background-position: bottom;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header1 h1{
    
    margin-top: 100px;
}

.sub-header2{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Images/lol.jpg);
    background-position: bottom;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header2 h1{
    
    margin-top: 100px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}


.Screen123{
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
   flex-basis: 48%;
    padding: 30px 2px;
}

.about-col1{
   flex-basis: 80%;
    padding: 30px 2px;
}

.about-col img{
    
    width: 100%}

.about-col1{
   flex-basis: 97%;
    padding: 30px 2px;
}

.about-col1 img{
    
    width: 100%}

.about-col h1{
    
padding: 0;
}

.about-col p{
    
padding: 15px 0 25px;
}
.red-btn{
    border: 1px solid #373c4f;
    background: transparent;
    color: #373c4f;
}
.red-btn:hover{
    color: #fff;
}
.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 65%;
}









.slider{
    width: 800px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.slide{
    width: 500%;
    height: 500px;
    display: flex;
}
.slide input{
    display: none;
}
.st{
width: 20%;
}
.st img{
    width: 800px;
    height: 500px;
}




.nav-m{
    position: absolute;
    width: 800px;
    margin-top: -40px;
    justify-content: center;
    display: flex;
      
}
.m-btn{
    width: 50px;
    height: 10px;
    border: 2px solid #fff;
    margin: 6px;
    cursor: pointer;
    transition: 0.4s;
}
input[name="radio-btn"]{
    position: aboslute;
    visibility: hidden;}


.m-btn:not(:last-child){
    margin-right: 30px;
}
.m-btn:hover{
    background-color: #fff;
}

#radio1:checked ~.first{
    margin-left: 0;
}
#radio2:checked ~.first{
    margin-left: -20%;
}
#radio3:checked ~.first{
    margin-left: -40%;
}

#radio4:checked ~.first{
    margin-left: -60%;
}
#radio7:checked ~.first{
    margin-left: 0;
}
#radio8:checked ~.first{
    margin-left: -20%;
}
#radio9:checked ~.first{
    margin-left: -40%;
}
#radio10:checked ~.first{
    margin-left: -60%;
}

#radio13:checked ~.first{
    margin-left: -80%;
}
#radio15:checked ~.first{
    margin-left: 0;
}
#radio16:checked ~.first{
    margin-left: -20%;
}
#radio17:checked ~.first{
    margin-left: -40%;
}
#radio18:checked ~.first{
    margin-left: -60%;
}

#radio19:checked ~.first{
    margin-left: -80%;
}
#radio22:checked ~.first{
    margin-left: 0;
}
#radio29:checked ~.first{
    margin-left: -20%;
}
#radio30:checked ~.first{
    margin-left: -40%;
}

#radio23:checked ~.first{
    margin-left: -60%;
}
#radio38:checked ~.first{
    margin-left: -80%;
}











.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: #222;
    padding: 0;
}

.blog-right{
    flex-basis: 32%;
}
.blog-right h3{
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');
    opacity: 0.7;
    color: #fff;
    padding: 7px 0;
    font-size: 25px;
    margin-bottom: 20px;
}

.blog-right h1{
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');
    opacity: 0.7;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    box-sizing: border-box;
}
.Comment-box2{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px; 
}
.Comment-box h3{
   text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form{
    margin: 10px 0;
}
@media(max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
}
.location{
    width: 90%;
    margin: auto;
    padding: 20px 0;
    
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
  flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: 	#FF4433;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;}





    .music-player{
        background: #D3D3D3;
        width: 1080px;
        padding: 5px 10px;
        text-align: left;
    }

h8{
    
    text-align: center;
    font-size: 30px;
    margin: 0;
    padding-top: 10px;
}

.gallary{
    
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.content1{
    
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    float: left;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    padding-top: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
    transition: 0.4s;   
}

.content1:hover{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
    transform: translate(0px, -8px);
}
.content1 img{
    width: 200px;
    height: 200px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

h7{
font-size: 26px;
    text-align: center;
    color: #222f3e;
    margin: 0;
}



.fa{
    font-size: 26px;
    transition: 0.4s;
    margin: 3px;
}

@media(max-width:1000px){
    .content1{
        width: 46px;
    }
}
@media(max-width:750px){
    .content1{
        width: 100%;
    }
}

.about-col1 img{
    
    width: 55%}


.collapsable{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible input{
    display: none;
}
.collapsible label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');
    font-size: 18px;
    margin-bottom: 10px;
       color: #fff;
}


.collapsible label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.collapsible input:checked ~ .collapsible-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}

.collapsable1{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible1 input{
    display: none;
}
.collapsible1 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
   background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
       color: #fff;
    margin-bottom: 10px;
}


.collapsible1 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible1 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible1-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.collapsible1 input:checked ~ .collapsible1-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}


.collapsable2{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible2 input{
    display: none;
}

.collapsible2 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
    margin-bottom: 10px;
       color: #fff;
}


.collapsible2 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible2 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible2-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.collapsible2 input:checked ~ .collapsible2-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}

.collapsable3{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible3 input{
    display: none;
}
.collapsible3 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
       color: #fff;
    margin-bottom: 10px;
    
}


.collapsible3 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible3 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible3-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.collapsible3 input:checked ~ .collapsible3-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}

/*----- NEW -----*/

.Wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fafafa;
    padding-top: 35px;
    font-family: 'TIMES NEW ROMAN';
}

.Wrapper h1{
    font-size: 3em;
    margin-bottom: 15px;
    padding: 5px 15px;
}
.content-box1{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
}
.card{
     min-height: 250px;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fff;
    margin: 10px 5px;
    transition: 0.3s;
    perspective: 1000px;
    position: relative;
}

.card-inner{
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.card:hover .card-inner{
    transform: rotateY(-180deg);
}
.card-front, .card-back{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    
}
.card-back{
    transform: rotateY(180deg);
}



.card i{
    margin-bottom: 20px;
}
.card h2{
    margin-bottom: 10px;
    text-align: center;
}
.card p{
    color: #6c757d;
    text-align: center;
}
.card:hover {
background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');
    opacity: 0.7;
    color: #fff;
}
.card:hover p{
    color: #fff;
}
.card:hover i{
    color: #fff
}


.content-box2{
    width: 1000px;
    margin: 100 auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 35px;
}
.card2{
    min-height: 200px;
    width: 130px;
    padding: 100px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fff;
    margin: 10px 5px;
    transition: 0.3s;
    perspective: 1000px;
    position: relative;
}

.card-inner{
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.card2:hover .card-inner{
    transform: rotateY(-180deg);
}

.card2 i{
    margin-bottom: 20px;
}
.card2 h2{
    margin-bottom: 10px;
    text-align: center;
}
.card2 p{
    color: #6c757d;
    text-align: center;
}
.card2:hover {
background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/1.jpg');
    opacity: 0.7;
    color: #fff;
}
.card2:hover p{
    color: #fff;
}
.card2:hover i{
    color: #fff
}

.card3{
      min-height: 1000px;
    width: 1000px;
    padding: 100px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fff;
    margin: 10px 5px;
    transition: 0.3s;
    perspective: 1000px;
    position: relative;
}


.card3 i{
    margin-bottom: 20px;
}
.card3 h2{
    margin-bottom: 10px;
    text-align: center;
}
.card3 p{
    color: #6c757d;
    text-align: center;
}
.card3:hover {
background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/3.png');
    opacity: 0.7;
    color: #fff;
}
.card3:hover p{
    color: #fff;
}
.card3:hover i{
    color: #fff
}
.card3:hover .card-inner{
    transform: rotateY(-180deg);
}


@media(max-width: 980px){
    
    
.Wrapper h1{
    font-size: 2.5rem;
}
    .content-box1{
        flex-direction: column;
        width: 100%;
    }
    .card{
        min-width: 300px;
        margin: 10px auto;
    }
}

@media(max-width: 750px){
    
    
.Wrapper h1{
    font-size: 2.5rem;
}
    .content-box2{
        flex-direction: column;
        width: 100%;
    }
    .card2{
        min-width: 130px;
        margin: 10px auto;
    }
}

@media(max-width: 750px){
    
    
.Wrapper h1{
    font-size: 2.5rem;
}
    .content-box3{
        flex-direction: column;
        width: 100%;
    }
    .card3{
        min-width: 130px;
        margin: 10px auto;
    }
}

   .Act1:Hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.Act1{
    flex-basis: 110%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.Act2:Hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}
.Act2{
    flex-basis: 50%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.Act2 img{
    width: 100%;
}
 

.container1 {
    background: #fff;
    padding: 20px;
    font-family: "TIMES NEW ROMAN";
    width: 500px;
    box-shadow: 0 0 5px #000;
}

.head {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text {
    margin: 10px 0;
    font-family: "TIMES NEW ROMAN";
    font-size: 0.9em;
}

.commentbox {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.commentbox > img {
    width: 30px;
    height: 30px;
    border-radius: 40%;
    /* float: left; */
    margin-right: 10px;
    object-fit: cover;
    object-position: center;
}

.content {
    width: 100%;
}

.user {
    border: none;
    outline: none;
    margin: 5px 0;
    color: #808080;
    margin-left: 20px;
    padding: 10px;
}

.commentinput > input {
    border: none;
    padding: 10px;
    padding-left: 0;
    outline: none;
    border-bottom: 2px solid blue;
    margin-bottom: 10px;
    width: 95%;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #808080;
}

.buttons > button {
    padding: 5px 10px;
    background: lightgrey;
    color: #808080;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
}

.buttons > button.abled {
    background: blue;
    color: #fff;
}

.policy {
    margin: 20px 0;
    font-size: 0.8em;
    font-family: "TIMES NEW ROMAN";
    color: #808080;
}

.policy a {
    text-decoration: none;
    color: blue;
}

.notify {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.notify > input {
    margin-right: 5px;
    border: 2px solid #808080;
}

.parents {
    font-family: "TIMES NEW ROMAN";
    display: flex;
    margin-bottom: 30px;
}

.parents h1 {
    font-size: 0.9em;
}

.parents p {
    margin: 10px 0;
    font-size: 0.9em;
}

.parents > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    object-position: center;
}

.engagements {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.engagements img {
    width: 20px;

}

.engagements img:nth-child(1) {
    margin-right: 10px;
    width: 25px;
}

.date {
    color: #808080;
    font-size: 0.8em;
}
.about-col2{
   flex-basis: 80%;
    padding: 30px 2px;
}

.about-col2 img{
    
    width: 100%}
    

.collapsable4{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible4 input{
    display: none;
}

.collapsible4 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
    margin-bottom: 10px;
       color: #fff;
}


.collapsible4 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible4 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible4-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: #222;
}
.collapsible4 input:checked ~ .collapsible4-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}
.collapsable5{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible5 input{
    display: none;
}

.collapsible5 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
    margin-bottom: 10px;
       color: #fff;
}


.collapsible5 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible5 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible5-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: #222;
}
.collapsible5 input:checked ~ .collapsible5-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}
.collapsable6{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible6 input{
    display: none;
}

.collapsible6 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
    margin-bottom: 10px;
       color: #fff;
}


.collapsible6 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible6 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible6-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: #222;
}
.collapsible6 input:checked ~ .collapsible6-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}
.collapsable7{
 max-width: 450px;
overflow: hidden;
font-weight: 500;
}
.collapsible7 input{
    display: none;
}

.collapsible7 label{
    position: relative;
    font-weight: 500;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .1), 0 4px 11px 0 rgba(0, 0,0, .08);
    color: #373c4f;
    display: block;
    cursor: pointer;
    padding: 20px 0;
    border-radius: 5px;
    z-index: 10;
    background: linear-gradient(90deg,rgba(2,2,36,0.7)0%,rgba(9,9,221,0.7)35%,rgba(0,212,255,0.7)100%), url('Images/43.jpg');;
    font-size: 18px;
    margin-bottom: 10px;
       color: #fff;
    
}


.collapsible7 label:after{
    content: "";
    position: absolute;
    right: 15px;
    top: 20px;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}
  

.collapsible7 input:checked + label:after{
   transform: rotate(90deg);
}

.collapsible7-text {
    max-height: 1px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    top: -100%;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: #222;
}
.collapsible7 input:checked ~ .collapsible7-text{
    
    max-height: 1500px;
    padding-bottom: 25px;
    background: #fff;
    box-shadow: 0 5px 11px 0 rgba(0,0,0, 0.1), 0 4px 11px 0 rgba(0, 0,0, 0.08);
    opacity: 1;
    top: 0;
}

@media(max-width:500px){
    .slider img{
        width: 85%;
    }
}






.card-back h7{
   color: #fff;
}



#slide{
    width:max-content;
    margin-top:50px;
}
.item{
    width:200px;
    height:300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top:50%;
    transform: translate(0,-50%);
    border-radius: 20px;
    box-shadow:  0 30px 50px #505050;
}
.item:nth-child(1),
.item:nth-child(2){
    left:0;
    top:0;
    transform: translate(0,0);
    border-radius: 0;
    width:100%;
    height:100%;
    box-shadow: none;
}
.item:nth-child(3){
    left:50%;
}
.item:nth-child(4){
    left:calc(50% + 220px);
}
.item:nth-child(5){
    left:calc(50% + 440px);
}
.item:nth-child(n+6){
    left:calc(50% + 660px);
    opacity: 0;
}
.item .content{
    position: absolute;
    top:50%;
    left:100px;
    width:300px;
    text-align: left;
    padding:0;
    color:#eee;
    transform: translate(0,-50%);
    display: none;
    font-family: system-ui;
}
.item:nth-child(2) .content{
    display: block;
    z-index: 11111;
}
.item .name{
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    animation:showcontent 1s ease-in-out 1 forwards
}
.item .des{
    margin:20px 0;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.3s 1 forwards
}
.item button{
    padding:10px 20px;
    border:none;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.6s 1 forwards
}
@keyframes showcontent{
    from{
        opacity: 0;
        transform: translate(0,100px);
        filter:blur(33px);
    }to{
        opacity: 1;
        transform: translate(0,0);
        filter:blur(0);
    }
}
.buttons{
    position: absolute;
    bottom:30px;
    z-index: 222222;
    text-align: center;
    width:100%;
}
.buttons button{
    width:50px;
    height:50px;
    border-radius: 50%;
    border:1px solid #555;
    transition: 0.5s;
}.buttons button:hover{
    background-color: #bac383;
}

.container10{

    width:1000px;
    height:600px;
    padding:50px;
    background-color: black;
    box-shadow: 0 30px 50px #dbdbdb;
    position: relative;
}
#slide{
    width:max-content;
    margin-top:50px;
}
.item{
    width:200px;
    height:300px;
    background-position: 50% 50%;
    display: inline-block;
    transition: 0.5s;
    background-size: cover;
    position: absolute;
    z-index: 1;
    top:50%;
    transform: translate(0,-50%);
    border-radius: 20px;
    box-shadow:  0 30px 50px #505050;
}

.item:nth-child(1),
.item:nth-child(2){
    left:0;
    top:0;
    transform: translate(0,0);
    border-radius: 0;
    width:100%;
    height:100%;
    box-shadow: none;
}
.item:nth-child(3){
    left:50%;
}
.item:nth-child(4){
    left:calc(50% + 220px);
}
.item:nth-child(5){
    left:calc(50% + 440px);
}
.item:nth-child(n+6){
    left:calc(50% + 660px);
    opacity: 0;
}
.item .content{
    position: absolute;
    top:50%;
    left:100px;
    width:300px;
    text-align: left;
    padding:0;
    color:black;
    transform: translate(0,-50%);
    display: none;
    font-family: system-ui;
}
.item:nth-child(2) .content{
    display: block;
    z-index: 11111;
}
.item .name{
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    animation:showcontent 1s ease-in-out 1 forwards
}
.item .des{
    margin:20px 0;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.3s 1 forwards
    color: #ffffff;
}
.item button{
    padding:10px 20px;
    border:none;
    opacity: 0;
    animation:showcontent 1s ease-in-out 0.6s 1 forwards
    color:#ffffff;
}
@keyframes showcontent{
    from{
        opacity: 0;
        transform: translate(0,100px);
        filter:blur(33px);
    }to{
        opacity: 1;
        transform: translate(0,0);
        filter:blur(0);
    }
}
.buttons1{
    position: absolute;
    bottom:30px;
    z-index: 222222;
    text-align: center;
    width:100%;
}
.buttons1 button{
    width:50px;
    height:50px;
    border-radius: 50%;
    border:1px solid #555;
    transition: 0.5s;
}
.buttons1 button:hover{
    background-color: #bac383;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body,html{
    height: 100%;
    margin: 0;
    font-family: 'poppins',sans-serif;
}
.background{
    background-image: url(Images/1001.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
align-items: center;
justify-content: center;
}
.background1{
    background-image: url(Images/15.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
align-items: center;
justify-content: center;
}

.booking-form{
    background-color: rgba(255,255,255,0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 80%;
    margin: 0 auto;
    color:black;
}
.booking-form h2{
    text-align: center;
    color: #fff;
}

.booking-form h6{
    text-align: center;
    color: red;
}

.booking-form form{
    display: flex;
    flex-direction: column;
}
.booking-form input{
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.booking-form button{
    margin-top:10px;
    padding: 10px;
    background-color: #4CAF50;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media(max-width:1000px){
    .nav-m{
        width: 100%;
    }
}

.booking-form button:hover{
    background-color: #45a049;
}

.Act6{
    flex-basis: 100%;
    border-radius: 10px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}
.Act6 img{
    width: 100%;
}
#hidden-input{
display:none;
}

.hero-btn1{
    display: inline-block;
    text-decoration: None;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    font-style: normal;
    font-family: "TIMES NEW ROMAN";
    
}


.services__card{
    background-color: var(--container-color);
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    border-radius: 1.5rem;
}

.services__card1{
    background-color: red;
    padding: 1.5rem 0.5rem 1rem 0.5rem;
    border-radius: 1.5rem;
}

.services__icon{
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}



.services__circle{
    
    width: 3rem;
    height: 3rem;
    background-color: var(--text-color);
    border-radius: 50%;
    position: absolute;
    top: -3.5rem;
    transition: transform .4s;
}
.services__name{
    font-size: var{--h3-font-size};
      color: var(--text-color);
    margin-bottom: 1rem;
}

.services__description{
    
  color: var(--text-color);
}

.services__card:hover .services__circle{
    transform: translate(.25rem, -.25rem);
    
   
}



/* Hero */
.hero {
  margin-bottom: 200px;
}

.hero .container5 {
  background: url('../Home.png') no-repeat;
  background-size: contain;
   max-width: 110%;
  height:1000px;

}

.hero .hero-content {
  width: 100%;
}



.container82{
    display: flex;
    align-items: center;
    justify-content: center;
   background:#ccc;
    padding: 10px 15px;
}

.wrapper10{
    max-width: 1200px;
    position: relative;
}

.wrapper10 .carousel10
{
    font-size: 0px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    scroll-behavior: smooth;
}

.carousel10.dragging1{
    cursor: grab;
    scroll-behavior: auto;
}
.carousel10.dragging1 img{
    pointer-events: none;
}


.wrapper10 i{
    background: #fff;
    height: 46px;
    position: absolute;
    width: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    top: 50%;
    transform: translateX(-10%);
}

.wrapper10 i:first-child{
    left: -23px;
    display: none;
}

.wrapper10 i:last-child{
    right: -23px;
}


.carousel10 img{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel10 video{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel10 vdeo:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel10 video {
        width: calc(100% /1);
    }
}



@media screen and (max-width: 550px){
    .carousel10 video {
        width: 100%;
    }
}




.carousel10 img:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel10 img {
        width: calc(100% /1);
    }
}



@media screen and (max-width: 550px){
    .carousel10 img {
        width: 100%;
    }
}














.container83{
    display: flex;
    align-items: center;
    justify-content: center;
 background:#ccc;
    padding: 10px 15px;
}

.wrapper11{
    max-width: 1200px;
    position: relative;
}

.wrapper11 .carousel11
{
    font-size: 0px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    scroll-behavior: smooth;
}

.carousel11.dragging1{
    cursor: grab;
    scroll-behavior: auto;
}
.carousel11.dragging1 img{
    pointer-events: none;
}


.wrapper11 i{
    background: #fff;
    height: 46px;
    position: absolute;
    width: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    top: 50%;
    transform: translateX(-10%);
}

.wrapper11 i:first-child{
    left: -23px;
    display: none;
}

.wrapper11 i:last-child{
    right: -23px;
}


.carousel11 img{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel11 video{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel11 vdeo:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel11 video {
        width: 100%;
    }
}



@media screen and (max-width: 550px){
    .carousel11 video {
        width: 100%;
    }
}




.carousel11 img:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel11 img {
        width: 100% ;
    }
}



@media screen and (max-width: 550px){
    .carousel11 img {
        width: 100%;
    }
}










.container84{
    display: flex;
    align-items: center;
    justify-content: center;
    background:#ccc;
    padding: 10px 15px;
}

.wrapper12{
    max-width: 1200px;
    position: relative;
}

.wrapper12 .carousel12
{
    font-size: 0px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    scroll-behavior: smooth;
}

.carousel12.dragging2{
    cursor: grab;
    scroll-behavior: auto;
}
.carousel12.dragging2 img{
    pointer-events: none;
}


.wrapper12 i{
    background: #fff;
    height: 46px;
    position: absolute;
    width: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    top: 50%;
    transform: translateX(-10%);
}

.wrapper12 i:first-child{
    left: -23px;
    display: none;
}

.wrapper12 i:last-child{
    right: -23px;
}


.carousel12 img{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel12 video{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel12 vdeo:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel12 video {
        width: 100%;
    }
}



@media screen and (max-width: 550px){
    .carousel12 video {
        width: 100%;
    }
}




.carousel11 img:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel12 img {
        width: 100%;
    }
}



@media screen and (max-width: 550px){
    .carousel12 img {
        width: 100%;
    }
}





.container85{
    display: flex;
    align-items: center;
    justify-content: center;
    background:#ccc;
    padding: 10px 15px;
}

.wrapper13{
    max-width: 1200px;
    position: relative;
}

.wrapper13 .carousel13
{
    font-size: 0px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    scroll-behavior: smooth;
}

.carousel13.dragging3{
    cursor: grab;
    scroll-behavior: auto;
}
.carousel13.dragging3 img{
    pointer-events: none;
}


.wrapper13 i{
    background: #fff;
    height: 46px;
    position: absolute;
    width: 46px;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    top: 50%;
    transform: translateX(-10%);
}

.wrapper13 i:first-child{
    left: -23px;
    display: none;
}

.wrapper13 i:last-child{
    right: -23px;
}


.carousel13 img{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel13 video{
    height: 440px;
    width: calc(100% /1);
    object-fit: cover;
    margin-left: 14px;  
}

.carousel13 vdeo:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel13 video {
        width: 100% ;
    }
}



@media screen and (max-width: 550px){
    .carousel13 video {
        width: 100%;
    }
}




.carousel13 img:first-child{
    margin-left: 0px;
}


@media screen and (max-width: 900px){
    .carousel13 img {
        width: 100%;
    }
}



@media screen and (max-width: 550px){
    .carousel13 img {
        width: 100%;
    }
}






/* .policy {
    width: 100px;
} */

/* body::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F88379;
} */

/* body::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    transform: skew(20deg);
    background: #F2D2BD;
    z-index: -1;
} */

/* 
F88379 !IMPORTANT
F2D2BD !IMPORTANT
#9F2B68
F2D2BD
DE3163
*/


/* .comment {
    width: 400px;
    background: #fff;
    padding: 10px;
    border-left: 3px solid purple;
}

.comment div {
    width: 100%;
    margin: 20px 0;
}

.comment div input {
    width: 100%;
    outline: none;
    border: none;
}

.comment div textarea {
    width: 100%;
    outline: none;
    border: none;
    resize: none;
    font-family: Arial, sans-serif;
}

.comment div:nth-child(2) {
    margin-bottom: 0;
}

.comment div:last-child {
    margin: 0;
    text-align: right;
}

.comment div button {
    padding: 5px 15px;
    background: purple;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
}

.posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
}

.parent {
    background: #fff;
    padding: 10px;
    width: 400px;
} */

/* 

#36454F
#023
#353935
28282B


/*=============== EXPLORE ===============*/

.explore{
    position: relative;
}
.explore__image{
    position: absolute;
    overflow: hidden;
}
.explore__img{
    width: 200%;
    height: 333px;
    object-fit: cover;
    object-position: center;
}

.explore__shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradienT(180deg,
                 hsl(0, 0%, 0%) 5%,
                 hsLa(0, 0%, 0%, 0) 40%,
                 hsLa(0, 0%, 0%, 0) 60%,
                  hsl(0, 0%, 0%) 92%);
                 
}
.explore__content{
  
    position: relative;
    padding-top: 26rem;
    text-align: center;
    row-gap: 2.5rem;
}

.explore__user{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: .5rem;
}
.explore__perfil{
    width: 30px;
    border-radius: 50%;
}
.explore__name{
    font-size: var(--small-font-size);
    color: var(--title-color);
}


