@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url(https://fonts.googleapis.com/css?family=Gabriela);
@import url(https://fonts.googleapis.com/css?family=Open+Sans);




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 68.5%;
    overflow-x: hidden;
}
hr{
    height: 1px;
    
}


@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}        
section{
    min-height: 60vh;
    padding: 10rem 8rem;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    z-index: -1;
}
.header::after{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.612), transparent);
    transition: .5s;
}
.header:hover::after{
    left: 100%;
    cursor: pointer;
}
.header img{
   width: 70px;
   height: 50px;
}

.header.sticky {
    box-shadow: 0 10px 20px rgba(6, 6, 6, 0.716); 
    
}

.navbarX a{
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: .5s ease;
}
.navbarX a:hover,
.navbarX a.active
{

    color: #1cab5d;
    cursor: pointer;
}
.container{
    padding: 10px 5%;
}
#check{
    display: none;
}
.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    padding: 20px;
    cursor: pointer;
    display: none;
}
.header .btn1{
    display: inline-block;
    background: #1cab5d;;
    color: white;
    padding: 10px 25px;
    /* margin: 30px 0; */
    border: 2px solid #1cab5d;;
    border-radius: 30px;
    transition:  0.3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
}
.header .btn1:hover{
    transform: scale(1.2);
    box-shadow: 0 2px 10px #1cab5d;;
    cursor: pointer;
}
.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),url(photos/dbn1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
   background-position: center;
   color: #fff ;
}


.home .row{
    display: flex;
    align-items: center;
    margin-top: 6%;
    flex-wrap: wrap;
    justify-content: space-around;
}
span{
   color: #1cab5d;
   /* text-shadow: 2px 2px 2px #333; */
   /* -webkit-text-stroke: 3px #1cab5d; */
}
.home .col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 70%;
    padding: 20px;
}
.home .col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
    color: #fff !important;
}
.home .col-2 p{
    color: whitesmoke;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.2;
    
}

.btn-box{
    position: relative;
    display: flex;
    /* justify-content: space-between; */
    width: 34.5rem;
    gap: 50px;
    margin-top: 30px;
    height: 5rem;
}
.btn-box .btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 12rem;
    height: 80%;
    background: #1cab5d;
    border: .2rem solid #1cab5d;
    border-radius: .8rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: #fff;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.btn-box .btn:hover{
    transform: scale(1.2);
    box-shadow: 0 2px 10px #1cab5d;
    cursor: pointer;
}
.btn-box .btn:nth-child(2){
    background: transparent;
    color: #1cab5d;
}
.btn-box .btn:nth-child(2):hover{
    color: #fff;
}
.btn-box .btn:nth-child(2)::before{
    background: #1cab5d;
}
.btn-box .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1cab5d;
    z-index: -1;
    transition: .5s;
}
.btn-box .btn:hover::before{
    width: 100%;
}


/* contact section css starts */


.contact{
    min-height: 50vh;
    padding-bottom: 7rem;
    margin-top: -120px;
    
}
.contact form{
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    padding: 50px;
}
.contact form h3
{
    margin-bottom: 20px;
}

.contact form .cont
{
    background-color: whitesmoke;
    padding: 50px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
    
}

.contact form .cont2
{
    margin-top: 30px;
}



.contact form .cont2 #xx
{
    color: white;
    background-color: #1cab5d;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.contact form .cont2 #xx:hover
{
    background-color: transparent;
    color: #1cab5d;
}

.contact form .cont2 a
{
    color: black;
}
.contact form .cont2 a:hover
{
    color:#1cab5d;
    text-decoration:none;
}

.contact form .input-box{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contact form .input-box .input-field{
    position: relative;
    width: 49%;
    margin: .8rem 0;
}
.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
    width: 100%;
    height: 100%;
    padding: 1rem;
    font-size: 1rem;
    color: black;
    background: transparent;
    border-radius: .6rem;
    border: .1rem solid #1cab5d;
}



.textarea-field textarea{
    color: black;
}
.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
    color: #1cab5d;
}
.contact form .focus{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #1cab5d;
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;
}
.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus,
.contact form .textarea-field textarea:focus~.focus,
.contact form .textarea-field textarea:valid~.focus {
    width: 100%;
}
.contact form .textarea-field{
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
    color: white;
}
.contact form .textarea-field textarea{
    resize: none;
    color: black;
}
.contact form .btn-box.btns .btn{
    cursor: pointer;
}

.mapouter
{
    margin-top: 10px;
}


/* footer section css */
/* footer section css */

.footer{
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: linear-gradient(to right, #2c5364, #0f2027);
    color: #fff;
    padding: 100px 0 30px;
    height: auto;
    font-size: 13px;
    line-height: 20px;
}

.footer-iconTop a{
    right:2%;
    bottom: 2%;
    position: fixed;
    display: inline-flex;
    justify-content: center;
    background: #1cab5d;;
    align-items: center;
    padding: .8rem;
    border: .2rem solid #1cab5d;
    border-radius: .6rem;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}

.footer-iconTop a i{
    font-size: 2.4rem;
    color: wheat;
    transition: .5s;
}

.footer-iconTop a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #333;
    z-index: -1;
    transition: .5s;
}

.footer-iconTop a:hover::before{
    width: 100%;
}

.footer-iconTop a:hover i{
    color: #1cab5d;
}

.footer a
{
    text-decoration: none;
    color: #1cab5d;
}

.footer a:hover
{
    color: inherit;
}

.footer h4
{
    font-size: 18px;
    font-weight: bold;
}

.heart {
    color: #1cab5d;
}

.roww{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.coll{
    flex-basis: 25%;
    padding: 10px;
}
.coll:nth-child(2), .coll:nth-child(3){
    flex-basis: 15%;
}
.footer-logo{
    width: 80px;
    /* margin-bottom: 10px; */
}
.coll h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    transition: .3s;
}
.email-id:hover{
    color: #1cab5d;
}
.footer ul li{
    list-style: none;
    margin-bottom: 12px ;
}
.footer ul li a{
    text-decoration: none;
    color: #fff;
    transition: .3s;
}
.footer ul li:hover{
    color: #1cab5d;
    cursor: pointer;
}
.footer form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}
.footer form .far{
    font-size: 18px;
    margin-right: 10px;
}
.footer form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
.footer form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
.footer form button .fas{
    font-size: 16px;
    color: #ccc;
}
.social-icons .fab{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #1cab5d;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}  
.social-icons .fab:hover{
    color: #fff;
    background-color: #1cab5d;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}  
.copy{
    text-align: center;
}   
.underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}      
.underline span{
    width: 15px;
    height: 100%;
    background: #1cab5d;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}  
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           



/*Services page*/
/*What we offer section*/
    section {
    padding-top: 60px;
    margin:0;
    min-height: 100vh;
    }
    a, a:hover, a:focus, a:active {
        text-decoration: none;
        outline: none;
    }
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .bg-gray {
        background-color: #ffffff;
        color: black;
    }
    
    .site-heading h2 {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    }
    
    .site-heading h2 span {
    color: #1cab5d;
    }
    
    .site-heading h4 {
    display: inline-block;
    padding-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;

    }
    
    .site-heading h4::before {
    background: #1cab5d none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -25px;
    position: absolute;
    width: 50px;
    }
    
    .site-heading {
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -5px;
    }
    
    .carousel-shadow .owl-stage-outer {
    margin: -15px -15px 0;
    padding: 15px;
    }
    
    .we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
    background: #333 none repeat scroll 0 0;
    border: 2px solid;
    height: 15px;
    margin: 0 5px;
    width: 15px;
    }
    
    .we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
    background: #1cab5d none repeat scroll 0 0;
    border-color: #1cab5d;
    }
    
    .we-offer-area .item {
    background: transparent none repeat scroll 0 0;
    border-left: 2px solid #1cab5d;
    -moz-box-shadow: 0 0 10px #333;
    -webkit-box-shadow: 0 0 10px #333;
    -o-box-shadow: 0 0 10px #333;
    box-shadow: 0 0 10px #333;
    overflow: hidden;
    padding: 30px;
    position: relative;
    z-index: 1;
    color: black;
    }
    
    .we-offer-area.text-center .item {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    padding: 67px 40px 64px;
    }
    
    .we-offer-area.text-center .item i {
    background: #1cab5d none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: black;
    font-size: 40px;
    height: 80px;
    line-height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
    }
    
    .we-offer-area.text-center .item i::after {
    border: 2px solid #1cab5d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 90px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 90px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    }
    
    .we-offer-area.item-border-less .item {
    border: medium none;
    }
    
    .we-offer-area .our-offer-items.less-carousel .equal-height {
    margin-bottom: 30px;
    }
    
    .we-offer-area.item-border-less .item .number {
    font-family: "Poppins",sans-serif;
    font-size: 50px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    right: 30px;
    top: 30px;
    }
    
    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
    .we-offer-area.center-active .single-item:nth-child(2n) .item {
    background: #1cab5d none repeat scroll 0 0;
    }
    
    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
    .our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
    .we-offer-area.center-active .single-item:nth-child(2n) .item i,
    .we-offer-area.center-active .single-item:nth-child(2n) .item h4,
    .we-offer-area.center-active .single-item:nth-child(2n) .item p {
    color: #ffffff;
    }
    
    .we-offer-area .item i {
    color: #1cab5d;
    display: inline-block;
    font-size: 60px;
    margin-bottom: 20px;
    }
    
    .we-offer-area .item h4 {
    font-weight: 600;
    text-transform: capitalize;
    }
    
    .we-offer-area .item p {
    margin: 6px;
    }
    
    .we-offer-area .item i,
    .we-offer-area .item h4,
    .we-offer-area .item p {
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    }
    
    .we-offer-area .item::after {
    background: #1cab5d none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    width: 100%;
    z-index: -1;
    }
    
    .we-offer-area .item:hover::after {
    left: 0;
    }
    
    .we-offer-area .item:hover i,
    .we-offer-area .item:hover h4,
    .we-offer-area .item:hover p {
    color: #ffffff !important;
    }
    
    .we-offer-area.text-center .item:hover i::after {
    border-color: #ffffff !important;
    }
    
    .we-offer-area.text-center .item:hover i {
    background-color: #ffffff !important;
    color: #1cab5d !important;
    }
    
    .we-offer-area.text-left .item i {
    background: #1cab5d none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 60px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 30px;
    position: relative;
    width: 100px;
    z-index: 1;
    text-align: center;
    }
    
    .we-offer-area.text-left .item i::after {
    border: 2px solid #1cab5d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 120px;
    left: -10px;
    position: absolute;
    top: -10px;
    width: 120px;
    }

/*top section on services.html*/
.home2{
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),url(photos/dbn1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
   background-position: center;
   color: #fff ;
}


.row2{
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 6%;
    flex-wrap: wrap;
    justify-content: space-around;
}
.home2 .row2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
    color: #fff !important;
}
/*Infrastructure section on services.html*/
.secTech
{
    background: whitesmoke;
    padding-bottom: 30px;
}



.wrapper{
    font-family: 'Montserrat', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 500px;
  height: 100%;
  background: transparent;
  color: #333;
  margin: 10px auto 0;
  }

  .wrapper .title{
  padding: 30px 20px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1cab5d;
  }


  .wrapper .tabs_wrap{
  padding: 20px;
  }

  .wrapper .tabs_wrap ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  }

  .wrapper .tabs_wrap ul li{
    width: 135px;
    text-align: center;
    background: #333;
    color: #fff;
    border-right: 1px solid #c1c4c9;
    padding: 13px 15px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }

  .wrapper .tabs_wrap ul li:first-child{
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  }

  .wrapper .tabs_wrap ul li:last-child{
  border-right: 0px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  }

  .wrapper .tabs_wrap ul li:hover,
  .wrapper .tabs_wrap ul li.active{
  background: #1cab5d;
  color: #fff;
  }

  .wrapper .container .item_wrap{
  padding: 10px 20px;
  border-bottom: 1px solid #ebedec;
  cursor: pointer;
  }

  .wrapper .container .item_wrap:hover{
  background-color: #1cab5d;
  color:#fff;
  }

  .wrapper .container .item{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  }

  .item_wrap .item .item_left{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  }

  .item_wrap .item_left .data{
    margin-left: 20px;
    }

  .item_wrap .item_left .data .name{
  font-weight: 600;
  }
/* upcoming event post about landing */
/* */
#Upcoming{
    padding: 50px 0;
    color: black;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sub-title{
    text-align: center;
    font-weight: 600;
    font-size: 2.5rem;
}
.upcoming-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 60px;
    margin-top: 50px;
}
.work{
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.7);
}
.work p{
    line-height: 1.7;
}
.work img{
    width: 100%;
    height: 70vh;
    border-radius: 10px;
    display: block;
    
    transition: transform 0.5s;
}
.work-details{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.detail{
    color: orangered;
    font-weight: 500;
    text-decoration: underline;
}
.layer{
    width: 100%;
    height: 0;
    /* background: linear-gradient(#1cab5d, #1cab5d61); */
    background: linear-gradient(to right, #2c536493, #0f2027a1);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transform: height 0.5s;
    color: white !important;
}
.layer h3{
    margin-top: 1.7rem;
    font-size: 18px;
   font-weight: 700;
   margin-bottom: 10px;
   color: #1cab5d !important;
}


.work:hover img{
    transform: scale(1.1);
}
.work:hover .layer{
    height: 100%;
    cursor: pointer;
}
.read-btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    border: 3px solid #1cab5d;
    padding: 14px 50px;
    border-radius: 6px;
    background: #1cab5d;
    text-decoration: none;
    display: inline-block;
    color: black;
    transition: background 0.5s;
}
.read-btn:hover{
    background: #fff;
    border: 3px solid #fff;
    color: #1cab5d ;
    cursor: pointer;
}

/* landing slider css */
#cara{
    /* background: linear-gradient(to right, #2c5364, #0f2027); */
     background: linear-gradient(to right, white, whitesmoke); 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.slider1{
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotate 30s linear infinite;
}
.slider1 span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*45deg)) translateZ(350px);
}
.slider1 span img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: 5s; 
    cursor: pointer;
}
.slider1 span:hover img{
    transform: translateY(-50px) scale(1.2);
}
@keyframes rotate{
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }
    100%{
        transform: perspective(1000px) rotateY(360deg);
    }
}

  /*Upcoming events page*/
  /*Tables*/
    .table {
        width:100%;	
        margin-top: 0;
        font-weight: 550;
        border-collapse: collapse;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    }

    .table-header {
        display:flex;
        width:100%;
        background:#1cab5d;
        color: white;
        padding: 20px;
        font-weight: 700;
    }

    .table-row {
        display:flex;
        width:100%;
        padding: 10px;
    }
    
    .table-row:nth-of-type(even) {
        background-color: #f3f3f3; /*Every second row has a different bg-color*/
    }

    .table-row:hover {
        font-weight: bold;
        color: white;
        background-color: #1cab5d;
    }

    .row2 .col-6 h2{
        text-align: center;
        font-size: 30px;
        font-weight: 700;
        color: #1cab5d;
        margin-top: 0;
        top: -70px;
        position: relative;
    }

    .table-data, .header__item {
        flex: 1 1 20%;
        text-align:center;
    }

    .header__item {
        text-transform:uppercase;
    }

    .col-8
    {
        text-align: center;
    }


/*Events section on Events page*/



.mainEvents
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    justify-content: center;
    text-align: center;
    background: whitesmoke;
    color: black;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1.6em;
    margin-top: 0;
    height: fit-content;

}

/*Events tabs on events page*/
.mainEvents #wrap2{
    font-family: 'Montserrat', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 800px;
  height: fit-content;
  background: transparent;
  color: #333;
  margin:0;
  top: -85px;
  position: relative;
  }


/*Events tabs on events page*/
.wrapper .tabs_wrap ul #diff{
width: 135px;
    text-align: center;
    background: #333;
    color: #1cab5d;
    border-right: 1px solid #c1c4c9;
    padding: 13px 15px;
cursor: pointer;
-webkit-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
}

/*Events tabs on events page*/
.wrapper .tabs_wrap ul #diff:hover,
.wrapper .tabs_wrap ul #diff.active{
background: #1cab5d;
color: #fff;
}

/*Events tabs on events page*/
.wrapper .container #dif{
    color: black;
    text-align: center;
    border:none;
    padding: none;
    height: fit-content;
    }

/*Events tabs on events page*/
.wrapper .container #dif:hover{
    background-color: transparent;
    }

.item_wrap .item_left .data #name2{
    color: #1cab5d;

    }
    
.item_wrap .item_left .data p{
    margin-bottom: 20px;
    }
.con2{
    height: fit-content;
}

/*View More buttons*/
.btnX, .btnY, .btnY2{
    display: inline-block;
    background: #1cab5d;
    color: white;
    padding: 16px 25px;
    margin: 30px 0;
    border: 2px solid #1cab5d;
    border-radius: 30px;
    transition:  0.3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
}
.btnX:hover, .btnY:hover, .btnY2:hover{
    transform: scale(1.2);
    box-shadow: 0 2px 10px #1cab5d;
    cursor: pointer;
}

.btnY2{
    color: #1cab5d;
    background: transparent;
}

.btnY2:hover{
    color: #fff;
    background: #1cab5d;
}

.bootInfo
{
    margin-top: 50px;
    display: none;
    color: #333;
}

.bootInfo ol{
    list-style-type: decimal;
}

.bootInfo p
{
    margin-bottom: 20px;
}

/*Index Page*/
/*About section on Index Page*/
.aboutHome{
    background-color: #fff;
}
/* about section starts */
#about{
    padding: 80px 0;
    color: black;
    background-color: #fff;
  }
#about .container{
    padding: 10px 5%;
}
  .row{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .about-col-1{
      flex-basis: 35%;
  }
  .about-col-1 img{
      width: 100%;
      /* height: 450px; */
      border-radius: 15px;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.7);
  }
  .about-col-2{
    margin-top: 7%;
      flex-basis: 60%;
  }
  .about-col-2 h1{
    font-size: 2.5rem;
    /* text-align: center; */
    margin-bottom: 5px;
}
.about-col-2 .cname{
    font-size: 1.7rem;

}
  .clear-fix{
      content: '';
      display: table;
      clear: both;
  }
  .about-col-2 p{
    margin-bottom: 5px;
    line-height: 2;
  }
  .about-col-2 .gls{
    font-size: 30px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
  }
 /* ----mission,vison about secttion css */
 /* about section starts */
#mission{
    padding: 80px 0;
    color: black;
  }
  .mission-container{
    padding: 10px 5%;
}
  .mission-row{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
  }
  .mission-about-col-1{
      flex-basis: 35%;
  }
  .mission-col-1 img{
      width: 100%;
      height: auto;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.7);
      border-radius: 0 20px 0 20px;
      transition: 0.5s;
  }
  .mission-col-1:hover img{
    /* transform: scale(1.1); */
    cursor: pointer;
    
    border-radius:  20px 0 20px 0;
  }
  .mission-about-col-2{
      flex-basis: 60%;
  }
  .mission-sub-title{
    margin-bottom: 30px;
      font-size: 50px;
      font-weight: 600;
  }
  .mission-about-col-2 p{
    line-height: 1.7;
    font-weight: 500;
   }
  .tab-titles{
      display: flex;
      margin: 20px 0 40px;
  }
  .tab-links{
      margin-right: 70px;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
      position: relative;
  }
  .tab-links::after{
      content: '';
      width:  0;
      height: 3px;
      background: #1cab5d;
      position: absolute;
      left: 0;
      bottom: -8px;
      transition: 0.5s;
  }
  .tab-links.active-link::after{
      width: 70%;
  }
  .tab-contents ul li{
      list-style: none;
      margin: 10px 0;
  }
  .tab-contents ul li span{
      color: #1cab5d;
      font-size: 16px;
  }
  .tab-contents{
      display: none;
  }
  .tab-contents.active-tab{
      display: block;
  }
  .clear-fix{
      content: '';
      display: table;
      clear: both;
  }
  /* gamechangers section */
  .gChanger-container{
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 1200px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.gChanger-header{
    text-align: center;
    font-size: 2.7rem;
}
.gChanger-container .gChanger-card{
    position: relative;
    width: 320px;
    height: 460px;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    margin: 40px 30px;
}
.gChanger-container .gChanger-card .gChanger-box{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
}
.gChanger-container .gChanger-card .gChanger-box .gChanger-content{
    padding: 20px;
    text-align: center;
}

.h{
    font-size: 2.5rem;
    color: #777;
    margin-bottom: 5px;
    z-index: 1;
    transition: 0.5s;
}
.h span{
    font-size: 3.2rem;
}
.gChanger-container .gChanger-card .gChanger-box .gChanger-content p{
    font-size: 1em;
    font-weight: 300;
    margin-top: 10px;
    text-align: justify;
    padding: 0 10px;
    line-height: 1.7;
    color: #777;
    z-index: 1;
    transition: 0.5s;
}


.gChanger-container .gChanger-card .gChanger-box:hover{
    transform: translateY(-50px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
   background: linear-gradient(to right, #2c5364, #0f2027);
    cursor: pointer;
}

.gChanger-container .gChangercard .gChanger-box:hover .gChanger-content h3{
    color: #fff;
}
.gChanger-container .gChanger-card .gChanger-box:hover .gChanger-content p{
    color: #fff;
}
 
/* .clm {
    float: left;
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
  }

.clm #cont{
    margin-top:20px;
    margin-right:30%;
}

.clm .gls, .clm p{
    margin-bottom: 20px;
}

.clm .gls{
  font-size: 30px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.clm .gls:after {
    background-color: #1cab5d;
    bottom: -10px;
    height: 2px;
    width: 40px;
    position: absolute;
    content: "";
    display: block;
    transition: transform 0.3s ease-in-out;
    transform: scaleX(1);
    transform-origin: left;
  }

  .clm:hover .gls:after {
    transform: scaleX(2);
  }

.clm p{
    line-height: 1.7;
}

.clm h1{
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.clm img{
    margin-left:20%;
    max-width:50%;
    box-sizing: border-box;
    box-shadow: 2px solid #333;
} */

/*View More buttons*/
.btnZ{
    display: inline-block;
    background: transparent;
    color: black;
    padding: 16px 25px;
    margin: 30px 0;
    border: 2px solid #1cab5d;
    border-radius: 30px;
    transition:  0.3s ease-in-out;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
}
.btnZ:hover{
    transform: scale(1.2);
    color: white;
    background:#1cab5d;
    cursor: pointer;
}

/*Our Clients section on home page*/
.ocSec{
    /* background-color: #333; */
    background: linear-gradient(to right, #2c5364, #0f2027);
}

.ocText{
    text-align: center;
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 180px;
    margin-top: 50px;
  }

/*Our Clients image slider*/
.arrow {
    font-size: 2em;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    transition: 2s ease;
  }
  .arrow#left-arrow {
    -webkit-transform: translate(-11em, -50%);
    -moz-transform: translate(-11em, -50%);
    -ms-transform: translate(-11em, -50%);
    -o-transform: translate(-11em, -50%);
    transform: translate(-11em, -50%);
  }
  .arrow#right-arrow {
    -webkit-transform: translate(10em, -50%);
    -moz-transform: translate(10em, -50%);
    -ms-transform: translate(10em, -50%);
    -o-transform: translate(10em, -50%);
    transform: translate(10em, -50%);
  }
  .arrow:hover {
    color: #1cab5d;
  }
  
  .slider {
    margin-top: 100px;
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
  }
  
  .slide {
    float: left;
    position: relative;
    width: 33.33333%;
    height: 100%;
    overflow-x: hidden;
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  }
  .slide#slide-center {
    z-index: 1;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.75);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
  }
  
  .slide-holder {
    width: 300%;
    height: 100%;
    display: block;
    position: relative;
    top: 0;
    -webkit-transform: translateX(-33.33333%);
    -moz-transform: translateX(-33.33333%);
    -ms-transform: translateX(-33.33333%);
    -o-transform: translateX(-33.33333%);
    transform: translateX(-33.33333%);
  }

  .slide:hover {
    transform: scale(1.3);
  }
  
  .slide-bg {
    width: 33.33333%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin: 0;
  }
  
  /*Upcoming events section on Home Page*/
  .ue{
    background-color: whitesmoke;
    text-align: center;
  }

  .ue #tafel{
    width: 80%;
    margin-left: 10%;
  }

  .ueText{
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    color: #1cab5d;
    margin-bottom: 30px;
  }

  .ue .btnY2{
    margin-right: 15px;
  }

  .ue .btnY:hover{
    background: transparent;
    color:#1cab5d;
  }

/* booking section */

.booking .book-form {
    padding: 2rem;
    /* background: #eee; */
}
.heading-title{
    font-size: 40px;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 50px;
}

.book-form {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(photos/zulus-493566_1280.jpg);
    background-repeat: repeat;
    background-size: cover;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .3);
    border-radius: 4px;
    margin-bottom: 40px;
}

.booking .book-form .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.booking .book-form .flex .inputBox {
    flex: 1 1 41rem;
}

.booking .book-form .flex .inputBox input {
    width: 100%;
    padding: 1.2rem 1.4rem;
    font-size: 1.6rem;
    color: black;
    text-transform: none;
    margin-top: 1.5rem;
    border: .1rem solid #222;
}

.booking .book-form .flex .inputBox input:focus {
    background: #1cab5d;
    color: #fff;
}

.booking .book-form .flex .inputBox input::placeholder {

    color: #1cab5d;
}

.booking .book-form .flex .inputBox input:focus::placeholder {

    color: white;
}

.booking .book-form .flex .inputBox span {
    font-size: 1.5rem;
    color: white;
}

.booking .book-form .btn {
    margin-top: 2rem;

}

.datum{
    color: #1cab5d;
}


.inputBox select {
    width: 100%;
    padding: 1.2rem 1.4rem;
    font-size: 1.6rem;
    color: #777;
    text-transform: none;
    margin-top: 1.5rem;
    border: .1rem solid #222;
    /* position: relative;
    padding: 16px 30px 16px 85px; */
}

img {
    width: 100%;
}

.form-btn {
    display: inline-block;
    background: #1cab5d;
    margin-top: 1rem;
    color: #fff;
    font-size: 1.7rem;
    border-radius: 8px;
    padding: 1rem 3rem;
    cursor: pointer;
    transition: .2s linear;
}

.form-btn:hover {
    background: red;
}

/* contact section css starts */

footer a:hover
{
    text-decoration: none;
}

#reg{
    display: none;
}

/* -----@mdeia functions for all screens */
/* @media functions section */
@media (min-width: 1200px) {
    html {
        font-size: 75%;
    }

}
@media (min-width: 991px) {
    .header {
        padding: 2rem 4%;
    }

    section {
        padding: 10rem 4% 2rem;
    }

    .home {
        padding: 0 4%;
    }

    .footer {
        padding: 2rem 4%;
    }
}

@media (max-width: 769px) {
    html{
        font-size: 70%;
    }
    section{
        padding: 10rem 4% 2rem;
    }
    body{
        overflow-x: hidden;
    }

  
    .home {
        padding: 0 4%;
    }
    .home .col-2 h1 {
        font-size: 35px;
        line-height: 50px;
    }

    .home .col-2 p {
        font-size: 1.7rem;
    }

    .home2 .row2 h1 {
        font-size: 40px;
        text-align: center;
    }

    
    .header {
        padding: 1.3 5%;
        width: 100%;
        justify-content: space-between;
    }

    .footer img{
        width: 90px;
        height: auto;
     }

.header .btn1 {
  
    margin-right: 50%;
}
#cara {
    margin-top: 90%;
}
    .footer {
        padding: 2rem 4%;
    }
    .container{
        max-width: 720px;
       }
       .image{
        margin: 0 50px 0 50px;
        width: 100%;
        border-radius: 30px;
        padding: 0;

    }
       .image,
       img {
           width: 440px;
           height: 300px;}
    .icons{
        display: inline-flex;
            margin-right: 0;
    }
    #check:checked~.icons #menu-icon{
        display: none;
    }
    
    .icons #close-icon{
        display: none;
        /* background: black;
        border-radius: 20px;
        padding: 20px; */
    }
    #check:checked~.icons #close-icon{
        display: block;
    }
    .navbarX{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.navbarX{
        height: 17.7rem;
    }
    .navbarX a{
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        transition: .3s ease;
        opacity: 0;
    }

    .contact{
        flex-basis: 100%;
        min-width: 280px;   
    }

    #check:checked~.navbarX a{
        transform: translateY(0);
        transition-delay: calc(.15s * var(--i));
        opacity: 1;
    }

    .about-col-1, .about-col-2{
        flex-basis: 100%;
     }

    .about-col-1{
        margin-bottom: 30px;
    }

    .about-col-1 img{
        width: auto;
        height: 50vh;
    }

    .about-col-2 p{
        width: 300px;
        font-size: 1.5rem;
    }

    .mission-about-col-2{
        max-width: 330px;
    }

    .tab-titles{
        max-width: 300px;
    }

    #oh{
        margin-top: 40px;
    }

    .footer{
        background: linear-gradient(to right, #2c5364, #0f2027); 
        padding: 40px;
        width: 100%;
        padding-bottom: 80px;
    }

    #slider{
        max-width: 380px;
    }

    .coll{
        flex-basis: 100%;
    }

    .register-container{
        min-width: 280px;
    }

    .cont{
        min-width: 280px;
        margin-left: -30%;

    }
    .cont .row .col-6{
        min-width: 100%;
    }

    #ib{
        margin-top: 30px;
    }


    .contact form .input-box .input-field{
        position: relative;
        width: 100%;
        margin: .8rem 0;
        flex-basis: 100%;
    }

    #bts{
        position: relative;
        max-width: 100%;
        margin: .8rem 0;
        flex-basis: 48%;
    }    

    /*services page @media*/
    .secTech .tabs_wrap, .secTech .title{
        flex-basis: 100%;
        max-width: 370px;
        
    }

    /*upcoming events page @media*/

    #wrap2{
        height: 1800px;

    }

    #wrap2 .title{
        margin-left: -10%;
        flex-basis: 100%;
        max-width: 370px;
        
    }

    #wrap2 .tabs_wrap
    {
        margin-left: -10%;
        flex-basis: 100%;
        max-width: 370px;
    }

    #wrap2 .item{
        margin-left: -25%;
        flex-basis: 100%;
        max-width: 360px;
        
    }

    .mainEvents{
        background-color: whitesmoke;

    }
    #ev2 {

        font-size: smaller;
    }

    #eb{
        font-size: large;
    }

    #ev2 .table{
        max-width: 380px;
    }
   
    .user-input-box{
        margin-bottom: 12px;
        width: 100%;
        
    }
    .user-input-box:nth-child(2n){
        justify-content: space-between;
    }
    .gender-category{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .main-user-info{
        max-height: 380px;
        overflow: auto;
    }
    .main-user-info::-webkit-scrollbar{
        width: 0;
    }
    
  
}