@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');



body,p{
     font-family: "DM Sans", sans-serif;
}
h1,h2,h3,h4,h5,h6{
      font-family: "Anek Latin", sans-serif;
}

.top-header {
    background:#9c001d;
    padding-top: 8px;
    padding-bottom:4px;
        z-index: 10;
    position: relative;
}
.top-header .first p {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    margin-right: 15px;
}
.top-header .first p i {
    width: 30px;
    height: 30px;
    background:#f38001;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    margin-right: 10px;
}
.first a {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
}
.container
{
    width:90%;
    max-width:1350px;
}
.last ul li {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    border-radius: 30px;
    line-height: 30px;
}

.last ul {
    list-style-type: none;
    padding-left: 0px;
}
.last p{
    float:left;
    margin-right:10px;
}
.last p {
    float: left;
    margin-right: 10px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
}
.col-md-6.col-sm-6.last {
    justify-content: flex-end;
    display: flex;
}
.last ul li a {
    color: #000;
}


.menu-btn {
    position: absolute;
    top: 30px;
    right: 0px;
    width:50px;
    height:50px;
    border:none;
    background:#9c001d;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:9999;
    border-radius:5px;
}

.sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:320px;
    height:100vh;
    background:#9c001d;
    overflow-y:auto;
    transition:.4s ease;
    z-index:1002;
    box-shadow:5px 0 20px rgba(0,0,0,.2);
}

.sidebar.active{
    left:0;
}

.close-btn{
    border:none;
    background:none;
    font-size:35px;
    float:right;
    margin:15px;
    cursor:pointer;
}

.sidebar ul{
    list-style:none;
    margin-top:80px;
    padding-left: 0px;
}

.sidebar ul li{
    border-bottom:1px solid #dbd3cf;
}

.sidebar ul li a{
    display:block;
    padding:18px 25px;
    color:#000;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.sidebar ul li a:hover{
    background:#9c001d;
    color:#fff;
    padding-left:35px;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:1000;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}
.navbar-default {
    background-color:#fff;
    border-color: #fff;
}
.navbar
{
    margin-bottom: 0px;
}
.logos
{
           margin-top: 0px;
    height: 130px;
    }
.navbar-brand>img {
    display: block;
    width: 280px;
           position: relative;
   }
.navbar-brand {
    float: left;
    height: 50px;
    padding: 0px;
    font-size: 18px;
    line-height: 20px;
}
#mainHeader a.btn
{
    float:right;
    margin-top:30px;
}
a.btn {
    background:#9c001d;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 32px;
    text-transform: uppercase;
    font-family: 'DM Sans';
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    float: left;
    margin-right: 50px;
    margin-top: 10px;
    margin-bottom: 25px;
    max-width: 200px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
.btn:hover
{
        background: linear-gradient(to bottom, #ffb347 0%, #f38001 100%);
        color:#fff;
}
.coverflow-container {
  width: 100%;
  height: 400px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.coverflow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cover-card {
  position: absolute;
  width:90%;
  height: 550px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Default state (hidden behind) */
.cover-card {
  opacity: 0;
  transform: translateX(0) scale(0.5) rotateY(0deg);
  z-index: 0;
}

/* Active center card */
.cover-card.active {
  opacity: 1;
  transform: translateX(0) scale(1.2) rotateY(0deg);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* 1 position left */
.cover-card.prev-1 {
  opacity: 0;
  transform: translateX(-150px) scale(0.9) rotateY(45deg);
  z-index: 9;
}

/* 2 positions left */
.cover-card.prev-2 {
  opacity: 0;
  transform: translateX(-250px) scale(0.7) rotateY(55deg);
  z-index: 8;
}

/* 1 position right */
.cover-card.next-1 {
  opacity: 0;
  transform: translateX(150px) scale(0.9) rotateY(-45deg);
  z-index: 9;
}

/* 2 positions right */
.cover-card.next-2 {
  opacity: 0;
  transform: translateX(250px) scale(0.7) rotateY(-55deg);
  z-index: 8;
}

/* Controls */
.controls {
  position: absolute;
  bottom: -10px;
  display: flex;
  gap: 20px;
  z-index: 20;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
section#section2 {
        padding: 50px 0px 0px 20px;
}
#section3 h1{
    margin-top:108px;
}
#section3
{
position:relative;
}
#section3:before
{
content:'';
position:absolute;
background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><g fill="%23FFFFFF"><path d="M0 0v99.7C62 69 122.4 48.7 205 66c83.8 17.6 160.5 20.4 240-12 54-22 110-26 173-10a392.2 392.2 0 0 0 222-5c55-17 110.3-36.9 160-27.2V0H0Z" opacity=".5"></path><path d="M0 0v74.7C62 44 122.4 28.7 205 46c83.8 17.6 160.5 25.4 240-7 54-22 110-21 173-5 76.5 19.4 146.5 23.3 222 0 55-17 110.3-31.9 160-22.2V0H0Z"></path></g></svg>');
width: 100%;
    height: 180px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px;
    top: 0px;
}
.title h1 {
    font-size: 50px;
    font-weight: 600;
      color:#9c001d;
        line-height: 55px;
}
.title h1 span
{
      background: #fdc702;
    text-shadow: 2px 2px 12px #fccbcb;
    border-radius: 10px;
    color: #9c001d;
    padding: 5px 20px;
    font-weight: 300;
}
#section2 .col-md-4 .service-box
{
    width:100%;
}
.title p {
    font-size: 18px;
    line-height: 30px;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
    text-align: justify;
    color: #000;
}
.title span.sub-title {
    background: #fdc702;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 100px;
    font-weight: 600;
    font-family: 'Anek Latin';
}
.total .images {
    width: 70px;
    min-width: 70px;
    height: 70px;
    background: #9c001d;
    margin-top: 5px;
    border-radius: 70px;
    border: 1px solid var(--color-set-one-bor-1);
    float: left;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-right: 20px;
    text-align: center;
    line-height: 67px;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
}

.total {
    position: relative;
    display: inline-block;
    margin-bottom:30px;
}
.total:before {
    position: absolute;
    content: '';
    background: #f29536;
    width: 4px;
    height: 140px;
    left: 34px;
    right: 0px;
    top: 30px;
}
.total h4 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
}
.sec .col-md-5 {
    margin-top: 50px;
}
.conx {
    display: table;
}
#section2 .sec{
      margin-top: 25px;
    border-top: 3px solid #9c001d5e;
   }
   #section2 .col-md-4
{
    margin-top:40px;
}
img.about
{
       border-radius: 10px;
}
section#footer {
    background:#9c001d;
    padding: 60px;
    padding-bottom: 10px;
}
#footer h4 {
    font-size: 28px;
    font-weight: 600;
    color:#fdc702;
    line-height: 30px;
    margin-bottom: 20px;
}
.add p b {
   display: block;
    color: #ffffff;
    text-decoration: underline;
    font-size: 18px;
}
#footer p {
    text-align: left;
    color:#fff;
}
#footer ul li a {
    font-size: 18px;
    line-height: 33px;
    text-align: left;
    color: #fff;
    margin-bottom: 10px;
}
#footer ul {
 list-style-type: disclosure-closed;
    padding-left: 20px;
}
p.center {
    text-align: center !important;
    border-top:1px solid #ffdfdf30;
    margin-top: 20px;
    padding-top: 17px;
}
#footer ul li{
    color:#fdc702;
}
#section3
{
    text-align: center;
    padding: 60px;
    background: #9c001d4d;
}
.ach .images {
    width: 100%;
    height: auto;
    border-radius: 100%;
        background: #fff;
}
.ach {
          background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    position: relative;
    z-index: 999;
   }
.ach h4 {
    font-size: 25px;
    font-weight: 600;
    padding: 0px;
    border-bottom: 1px solid #e8c3b8;
    padding-bottom: 10px;
}
#section3 .col-md-12.sec {
    margin-top: 20px;
}
.ach .images img{
       border-radius:30px;
    margin: 0 auto;
    display: block;
}
.ach p{
    font-size: 20px;
    text-align: center;
    color:#000;
    line-height: 20px;
}

.ach:before {
    top: 0px;
    content: "";
    width: 90%;
    height: 10px;
    background:#9c001d;
    z-index: 9999;
    position: absolute;
    border-radius: 83px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    left: 7.5%;
}

section#contact {
    background: #a33b1d40;
    padding-top: 40px;
    padding-bottom: 40px;
}
section#message {
    background: #fdc70238;
    padding-top: 40px;
    padding-bottom: 40px;
}
#contact .add p b {
    display: block;
    color: #9c001d;
    text-decoration: underline;
    font-size: 18px;
}
#contact h1{
    margin-bottom: 15px;
}
#contact iframe
{
    border-radius: 10px;
}
#contact a {
    color: #000;
}


.sidebar .menu,
.sidebar .submenu{
    list-style:none;
    margin:0;
    padding:0;
}

.sidebar .menu > li{
    border-bottom:1px solid rgba(255,255,255,.15);
}

.sidebar .menu > li > a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
}
.sidebar
{
    padding-top: 100px;
}
.close-btn
{
        margin-top: -84px;
        color:#fff;
}
.sidebar .submenu{
    display:none;
    background:rgba(255,255,255,.05);
}

.sidebar .submenu li a{
    display:block;
    padding:12px 35px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
}

.sidebar .submenu li a:hover{
    color:#fff;
    background:rgba(255,255,255,.08);
}

.submenu-toggle span{
    font-size:22px;
    transition:.3s;
}

.submenu-toggle.active span{
    transform:rotate(45deg);
}
.submenu{
    display:none;
}

.submenu.show{
    display:block;
}

.submenu-toggle span{
    transition:.3s;
}

.submenu-toggle.active span{
    transform:rotate(45deg);
}
#message h6::first-letter {
    font-size: 48px;
    font-weight: 700;
    color: #9c001d;
    float: left;
    line-height: 1;
    margin-right: 0px;
}
#message h6 {
    font-size: 31px;
    font-weight: 700;
    color: #9c001d;
    line-height: 55px;
}
#message p b {
    font-weight: 700;
    background: linear-gradient(to bottom, #7c4433 0%, #9c001d 100%);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 32px;
    text-transform: uppercase;
    font-family: 'DM Sans';
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    float: left;
    margin-right: 50px;
    margin-top: 10px;
    margin-bottom: 25px;
    /* max-width: 200px; */
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
#message .col-md-5 img {
    border-radius: 50px;
}
#message h1 {
    text-align: center;
    margin-bottom: 40px;
}
#message h2{
        font-size: 40px;
    font-weight: 600;
    color: #9c001d;
    line-height: 55px;
    background: #fdc702;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-shadow: 2px 2px 12px #fccbcb;
      color: #9c001d;
    padding: 5px 20px;
    }
.col-md-12.pro {
    background: #fff;
        border-radius: 30px;
    padding-left: 0px;
}
#message .pro .col-md-4{
        background:#9c001d;
    padding: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
#message .pro .col-md-4 img{
    border-radius: 20px;
}
#about1 .head
{
    text-align: center;
    margin-bottom: 30px;
}
section#about1 {
    background:#9c001d47;
    padding-top: 40px;
    padding-bottom: 40px;
}
section#about2 {
    background: #fdc70230;
    padding-top: 40px;
    padding-bottom: 40px;
}
#about1 h5 {
    font-size: 22px;
    font-weight: 600;
    color:#9c001d;
    line-height: 30px;
}
.images {
    position: relative;
    width: 100%; 
  }
  .images img
  {
    position: relative;
  }
.images::before {
    content: "";
       content: "";
    background-color: #9c001d;
    position: absolute;
    width: 45%;
    height: 45%;
    right: 8px;
    top: -20px;
    border-radius: 15px;
}
.pts p {
    text-align: center;
    font-size: 17px;
}
.pts {
    background: #fdc702;
    padding: 23px;
    text-align: center;
    border-radius: 20px;
    transition: 0.5s;
    height: 280px;
    position: relative;
    margin-bottom: 20px;
}
.pts span {
    position: absolute;
    background: #ffffff;
    width: 55px;
    height: 35px;
    color: #000000;
    font-weight: 900;
    font-family: 'DM Sans';
    border-radius: 30px;
    font-size: 22px;
    left: 0px;
    right: 0px;
    text-align: center;
    margin: 0 auto;
    top: -17px;
    border:4px solid #9c001d;
    line-height: 28px;
}
.pts h4 {
    font-size: 25px;
    font-weight: 600;
    color: #9c001d;
    line-height: 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}
#about2 .head {
    text-align: center;
    margin-bottom: 30px;
}
.sec .pts {
    background: #9c001d;
}
.sec .pts h4{
    color:#fdc702;
}
#time .sec p
{
    color:#fff;
}
.pts:hover {
    transform: translate(10px, 10px);
}
.gallery-section{
    width:90%;
    margin:60px auto;
}

.filter-buttons{
    text-align:center;
    margin-bottom:30px;
}

.filter-buttons button{
    padding:12px 25px;
    border:none;
    cursor:pointer;
    margin:5px;
    font-size: 18px;
       background: #fdc702;
    transition:.3s;
    border-radius:5px;
}

.filter-buttons button.active,
.filter-buttons button:hover{
    background:#9c001d;
    color:#fff;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:10px;
    cursor:pointer;
    transition:.4s;
}

.gallery-item img{
    width:100%;
    display:block;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* Popup */

.popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup img{
    width:53%;
    max-height:98%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
    opacity: 1;
}
.close:hover,.close:focus
{
    color: #fff!important;
    opacity: 1!important;
}
.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:35px;
    color:#fff;
    cursor:pointer;
    user-select:none;
    padding:15px;
    transition:.3s;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.prev:hover,
.next:hover{
    color:#fff;
}
section#gallery {
    background: #fdc70238;
    padding-top: 40px;
    padding-bottom: 40px;
}
.add a {
    color: #fff;
}
section#forms {
    background: #a33b1d40;
    padding-top: 40px;
    text-align: center;
    padding-bottom: 40px;
}
section#time {
    background: #fdc70238;
    padding-top: 40px;
    padding-bottom: 40px;
}
   #time table {
            width: 100%;
                   border-collapse: collapse;
                   }
        #time th,#time td {
            border: 1px solid #333;
            padding: 10px;
            text-align: center;
        }
        #time th {
            background-color:#9c001d;
            color: white;
        }
        #time .break {
            background-color:#fdc702;
            font-weight: bold;
        }
        #time tr:nth-child(odd) {
            background-color: #f8f8f8;
            font-weight: bold;
        }
#time h5 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 55px;
}
.img-responsive.round
{
    border-radius: 5px;
}
#time .head {
    text-align: center;
    margin-bottom: 40px;
}
#time p a {
    color: #000;
}
.col-md-12.seco {
    margin-top: 40px;
    padding-top: 30px;
    box-shadow: 0 -9px 2px -6px rgb(180 56 20 / 42%);
}
ul.lists li {
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    color: #000;
    margin-bottom: 5px;
}
ul.lists {
    list-style-type: disclosure-closed;
    padding-left: 20px;
}
.custom-navbar {
    position: relative;
    width: 100%;
    z-index: 9999;
    transition: all .3s ease;
}

.custom-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    box-shadow: 0 3px 12px rgba(0,0,0,.12);
    animation: slideDown .35s ease;
}

body.menu-space {
    padding-top: 90px; /* Change based on navbar height */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.lab p {
    max-width: 85%;
    float: left;
    text-align: left;
}
.lab {
    background: #fdc70245;
    padding: 20px;
    height: 250px;
    transition: 0.5s;
    padding-left: 55px;
        position: relative;
    margin-bottom: 20px;
    border-radius: 99px;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
.lab h3 {
    font-size: 23px;
    font-weight: 600;
    color: #9c001d;
    line-height: 30px;
}
.lab:hover,#time .sec{
    background: #9c001d!important;
}
.lab:hover{
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
     padding-left: 0px;
         padding-right: 55px;
     }
.lab:hover h3,.lab:hover p
{
text-align: right;
}
.lab:hover p{
 float:right;
}
.lab:hover h3,.lab:hover p,.lab.sec h3,.lab.sec p{
    color:#fff;
}
.lab:hover h3,.lab:hover p{
    animation: flash 1s infinite;
}
@keyframes flash {
    0%, 100% {
        opacity: 1;
           }
    50% {
        opacity: 0.4;
         }
}

.service-box{
    width:360px;
    height:420px;
    perspective:1200px;
    position: relative;
}

.service-inner{
    width:100%;
    height:100%;
    position:relative;
    transform-style:preserve-3d;
}

.service-front,
.service-back{
    position:absolute;
    inset:0;
    border-radius:20px;
    overflow:hidden;
    backface-visibility:hidden;
    transition:.65s cubic-bezier(.2,.8,.2,1);
}

/* FRONT */

.service-front{
    background:#9c001d;
    color:#fff;
    padding:40px;
    z-index:2;
}

.service-front .number{
    font-size:70px;
    color:#fdc702;
}

.service-front .icon{
    margin:30px 0;
}

.service-front h3{
    font-size:34px;
    margin-bottom:20px;
}
.service-front p{
color:#fff;
}
.service-front h3 span{
    color:#ffb400;
}

/* BACK */

.service-back{
    background:#fdc702;
    transform:rotateY(90deg);
    transform-origin:right center;
}

.service-back .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.service-back .content{
    position:relative;
    color:#fff;
    padding:40px;
    display: flex;
    height:100%;
        flex-direction:column;
    justify-content:center;
}
.service-front h3 span{
    display: block;
}
.service-back .number{
    font-size:70px;
    color:#a33b1d;
}

.service-back h3{
    font-size:34px;
    color:#a33b1d;
    margin:15px 0;
}
.service-back p{
    font-size: 16px;
    line-height: 25px;
}
.service-back h3 span{
    color:#000;
}

.service-back a{
    margin-top:30px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
}

/* HOVER */

.service-box:hover .service-front{
    transform:rotateY(-90deg);
    transform-origin:left center;
}

.service-box:hover .service-back{
    transform:rotateY(0deg);
}
section#acti {
    background: #fdc70238;
    padding-top: 40px;
    padding-bottom: 40px;
}
#acti .col-md-3
{
    margin-bottom: 20px;
}
.col-md-12.lines {
    padding-left: 0px;
    padding-right: 0px;
}
.ach .images::before
{
    display: none;
}
section#acti1 {
    background: #fdc70238;
    padding-top: 40px;
    padding-bottom: 40px;
}
#acti1 .col-md-3
{
    margin-bottom: 20px;
}
#acti1 .service-box {
    width: auto;
}
#about1 h4 {
    font-size: 24px;
    font-weight: 600;
    color: #9c001d;
    line-height: 30px;
}
#about1 ul {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 10px;
}
#about1 ul li {
    float: left;
    width: 180px;
    margin-right: 5px;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    color: #000;
    padding-left: 0px;
}
#about1 b {
    font-size: 19px;
    color: #000;
}
.second
{
    margin-top:50px;
}
.warpper{
  display:block;
  flex-direction: column;
  align-items: center;
}
.tab {
    cursor: pointer;
    padding: 15px;
    margin: 0px 2px;
    background: linear-gradient(to bottom, #7c4433 0%, #9c001d 100%);
    display: inline-block;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
    margin-top: 30px;
}
.panels{
  background:#fffffff6;
  box-shadow: 0 2rem 2rem #00000080;
  min-height:200px;
  width:100%;
  max-width:100%;
  border-radius:30px;
  overflow:hidden;
  padding:20px;  
      margin-top: 20px;
}
.panel{
  display:none;
  animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
  font-size:1.5em;
  font-weight:bold
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel,
#four:checked ~ .panels #four-panel,
#five:checked ~ .panels #five-panel,
#six:checked ~ .panels #six-panel,
#seven:checked ~ .panels #seven-panel,
#eight:checked ~ .panels #eight-panel,
#nine:checked ~ .panels #nine-panel{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab,
#four:checked ~ .tabs #four-tab,
#five:checked ~ .tabs #five-tab,
#six:checked ~ .tabs #six-tab,
#seven:checked ~ .tabs #seven-tab,
#eight:checked ~ .tabs #eighttab,
#nine:checked ~ .tabs #nine-tab{
  background:#fffffff6;
  color:#000;
  border-top: 3px solid #000;
}
#banner {
    position: relative;
    background-image: url(../images/banner-bg.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
}
section#banner:before {
    position: absolute;
    content: '';
    background: #9c001dbf;
    width: 100%;
    height: 100%;
    top: 0px;
}
section#banner h2 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 30px;
    text-align: center;
    position: relative;
    z-index: 999;
    padding-top: 100px;
}
#banner p {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 30px;
    text-align: center;
    position: relative;
    z-index: 999;
    padding-top: 10px;
}
.sec .pts p
{
    color:#fff;
}
.home #section2 h1 {
    text-align: center;
}
.home .pts img.img-responsive {
    border-radius: 999px;
    border: 10px solid #9c001d;
    margin-bottom: 20px;
    clip-path: border-box;
}
.home .pts
{
    height:auto;
}
.home .sec .pts img.img-responsive {
    border-color: #fdc702;
}
.home .service-back .content
{
    padding: 10px;
}
.home #section2
{
    padding-bottom: 50px;
}

.col-md-12.lines img {
    border-radius: 10px;
    margin-top: 20px;
}
.home #section2
{
    background-color:#ffedeaad;
}



























@media (min-width: 1024px) and (max-width: 1280px) 
{
    #about1 ul li {
    float: left;
    width: 160px;
    margin-right: 5px;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: #000;
    padding-left: 0px;
}
    .tab
    {
            padding: 10px;
            font-size: 12px;
    }
    .service-box {
    width: 300px;
    height: 420px;
    }
    .gallery-section {
      margin: 30px auto;
}
        .filter-buttons button {
    padding: 12px 20px;
        font-size: 15px;
    }
    ul.lists li {
    font-size: 14px;
    line-height: 30px;
    text-align: justify;
    color: #000;
    margin-bottom: 0px;
}
    #message h6 {
    font-size: 23px;
    }
    #message h2 {
    font-size: 35px;
    }
    .pts p
    {
        line-height: 22px;
    }
    .pts
    {
            height: 230px;
    }
    .pts h4 {
    font-size: 20px;
    font-weight: 600;
    color: #9c001d;
    line-height: 24px;
    }
  .first a {
    color: #fff;
    font-size: 15px;
  }
  .top-header .first p
{
    margin-bottom: 0px;
}
.last p
{
    font-size: 15px; 
}
.cover-card
{
    height:auto;
}
.title p {
    font-size: 14px;
    line-height: 26px;
}
.title h1 {
    font-size: 40px;
    font-weight: 600;
    color:#9c001d;
    line-height: 50px;
}
.title span.sub-title {
    background: #fdc702;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 600;
    font-family: 'Anek Latin';
}
.total h4 {
    font-size: 23px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
}
#footer h4 {
    font-size: 20px;
    font-weight: 600;
       line-height: 30px;
    margin-bottom: 20px;
}
#footer ul li a
{
    font-size: 14px;
}
.ach .images {
           float: left;
              height: auto;
        width: 100%;
        margin: 0px;
        margin-bottom:10px;
}
.ach p {
    font-size: 18px;
    text-align: center;
    color: #000;
    line-height: 20px;
}
.ach h4 {
    font-size: 20px;
 }
a.btn
{
    font-size: 15px;
}
.ach
{
    height:auto;
}
}



@media only screen and (max-width:480px)
{
    .prev, .next
    {
        background: #000;
            font-size: 21px;
    }
    .popup img {
    width: 90%!important;
    max-height: 98%!important;
    border-radius: 10px;
}
    #about1 b {
    font-size: 18px;
    color: #000;
}
    .home .pts p {
    text-align: center;
}
    #banner
    {
        height:115px;
    }
    section#banner h2
    {
            font-size: 30px;
                    margin-bottom: 5px;
                padding-top: 30px;
    }
    #banner p{
        line-height: 20px;
            padding-top: 4px;
    }
    .tab {
    cursor: pointer;
    padding: 15px;
    margin: 0px 2px;
    background: linear-gradient(to bottom, #7c4433 0%, #9c001d 100%);
    display: block;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
    margin-top: 20px;
}
    #about1 ul li {
    float: none;
    width: 100%;
    }
    .lab p
    {
        line-height: 24px;
    }
    .lab:hover
    {
            padding-right: 30px;
    }
    .lab {
    background: #fdc70245;
    padding: 20px;
            height: 200px;
      padding-left: 30px;
       border-radius: 0px;
    }
    #time .head {
    text-align: center;
    margin-bottom: 15px;
}
    ul.lists li {
    font-size: 14px;
    line-height: 23px;
    text-align: left;
    color: #000;
    margin-bottom: 10px;
}
    .col-md-12.seco.two {
    display: flex;
    flex-direction: column;
}
.col-md-12.seco.two .col-md-8
{
    order:1;
}
.col-md-12.seco.two .col-md-4
{
    order:2;
}
    #contact .col-md-6{
padding-left:0px;
padding-right: 0px;
    }
    .gallery-section {
     margin: 0px auto;
}
    .filter-buttons button
    {
        width:100%;
    }
    #message h6 {
    font-size: 25px;
    font-weight: 700;
    color: #9c001d;
    line-height: 50px;
}
    #message h2 {
    font-size: 30px;
    font-weight: 600;
    color: #9c001d;
    line-height: 40px;
    }
    .col-md-12.pro {
    background: #fff;
    border-radius: 30px;
    padding: 15px;
}
    #message p b {
      font-size: 14px;
    text-align: center;
    padding: 16px 22px;
    display: flex;
        float: none;
    margin-right: 0px;
  
}
    .images::before
    {
              top: auto!important;
    border-radius: 15px;
    bottom: -13px!important;
    }
    .container {
    width: 100%;
    max-width: 1350px;
}
.title p
{
    text-align: left;
    font-size: 14px;
}
section#footer {
        padding: 35px 0px;
}
#footer h4 {
    font-size: 22px;
}
.title p,#footer ul li a {
    font-size: 14px;
}
section#section2
{
    padding: 15px 0px;
}
.title h1 {
    font-size: 27px;
    font-weight: 600;
    margin-top: 13px;
    color:#9c001d;
    line-height: 37px;
}
.ach .images {
    width: 100%;
    height: auto;
    border-radius: 100%;
    margin: 0px;
    background: #fff;
}
.total h4 {
    font-size: 20px;
}
.total p{
    text-align:left;
}
.total {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
#section3 {
    text-align: center;
    padding: 35px 0px;
}
.ach {
       height: auto;
    margin-bottom: 20px;
}
.top-header .first p {
    font-size: 13px;
    color: #fff;
    display: inline-block;
    margin-right: 6px;
}
.top-header .first p i {
    width: 23px;
    height: 23px;
    background: #9c001d;
    text-align: center;
    line-height: 22px;
    border-radius: 30px;
    margin-right: 5px;
}
#mainHeader a.btn {
    float: right;
    margin-top: 20px;
}
.first a {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
}
.col-md-6.col-sm-6.last {
    justify-content: center;
    display: flex;
}
.last p {
    float: none;
    margin-right: 10px;
    color:#fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
}
.logos {
    box-shadow: none;
    background: #fff;
    border-radius: 0px;
    margin-top: 0px;
    height: auto;
}
.navbar-brand>img {
    display: block;
    width: 160px;
    margin-top: 0px;
    text-align: center;
    margin-left: 0px;
    position: relative;
}
a.btn {
    background: linear-gradient(to bottom, #7c4433 0%, #9c001d 100%);
    color: #fff;
    font-weight: 700;
    margin-top: 23px;
    font-size: 10px;
    padding: 10px 15px;
}
.menu-btn {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: #9c001d;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}
section#section01 {
    margin-top: 0px;
    height: auto;
            margin-bottom: 20px;
}
.coverflow-container
{
   height: 230px;
}
.cover-card {
    width: 80%;
    height: auto;
}
.nav-btn
{
    width:25px;
    height:25px;
}
body,html
{
    overflow-x:hidden;
}
}





/* tab view -portrait:
-------- */
@media (min-width: 768px) and (max-width: 1024px)
{
    .popup img {
    width: 75%;
    max-height: 98%;
    border-radius: 10px;
}
    #banner
    {
            height: 200px;
    }
    section#banner h2
    {
        padding-top: 70px;
    }
     .tab {
    cursor: pointer;
    padding: 15px;
    margin: 0px 2px;
    background: linear-gradient(to bottom, #7c4433 0%, #9c001d 100%);
    display: block;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 0.5rem 0.8rem #00000080;
    margin-top: 20px;
}
    #about1 ul li {
    float: none;
    width: 100%;
    }
    .service-box {
    width: auto;
    }
     .lab p
    {
        line-height: 24px;
    }
    .lab:hover
    {
            padding-right: 30px;
    }
    .lab {
    background: #fdc70245;
    padding: 20px;
            height: 200px;
      padding-left: 30px;
       border-radius: 0px;
    }
    #message h2 {
    font-size: 30px;
    }
    #message h6 {
    font-size: 25px;
    }
    #message p b
    {
        float:none;
        display: block;
    align-items: center;
    gap: 15px;
    text-align: center;
    }
    .col-md-12.pro {
    background: #fff;
    border-radius: 30px;
    padding: 10px;
}
    .pts
    {
        height:auto;
    }
    img.img-responsive {
    width: 100%;
}
    .ach .images {
    width: 100%;
    height: auto;
    border-radius: 100%;
    margin: 0px;
    background: #fff;
}
.ach .txt p
{
    text-align: center;
}
      .container {
    width: 100%;
    max-width: 1350px;
}
.title p
{
    text-align: left;
}
section#footer {
        padding: 35px 0px;
        padding-bottom: 10px;
}
#footer h4 {
    font-size: 22px;
}
.title p,#footer ul li a {
    font-size: 16px;
}
section#section2
{
    padding: 35px 0px;
}
.title h1 {
    font-size: 30px;
    font-weight: 600;
      color:#9c001d;
    margin-top: 13px;
        line-height: 37px;
}
.top-header .first p
{
    margin-bottom: 0px;
}
.total h4 {
    font-size: 20px;
}
.total p{
    text-align:left;
}
.total {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
#section3 {
    text-align: center;
    padding: 35px 0px;
}
.ach {
     margin-bottom: 20px;
}
.top-header .first p {
    font-size: 13px;
    color: #fff;
    line-height: 35px;
    display: inline-block;
    margin-right: 6px;
}
.top-header .first p i {
    width: 23px;
    height: 23px;
    background: #9c001d;
    text-align: center;
    line-height: 22px;
    border-radius: 30px;
    margin-right: 5px;
}
.first a {
    color:#fff;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
}
.last p {
    float: none;
    margin-right: 10px;
    color:#fff;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
}
.logos {
    box-shadow: none;
    background: #fff;
    border-radius: 0px;
    margin-top: 0px;
    height: auto;
}
.navbar-brand>img {
    display: block;
    width: 190px;
    margin-top:-3px;
    text-align: center;
    margin-left: 0px;
    position: relative;
}
.gallery-section {
    width: 90%;
    margin: 0px auto;
}
.col-md-12.seco.two {
    display: flex;
    flex-direction: column;
}
.col-md-12.seco.two .col-md-8
{
    order:1;
}
.col-md-12.seco.two .col-md-4
{
    order:2;
}
a.btn {
    background: linear-gradient(to bottom, #7c4433 0%, #9c001d 100%);
    color: #fff;
    font-weight: 700;
    margin-top: 23px!important;
    font-size: 10px;
    padding: 10px 15px;
}
.menu-btn {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: #9c001d;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}
    
.coverflow-container
{
   height: 230px;
}
.cover-card {
    width: 80%;
    height: auto;
}
.nav-btn
{
    width:25px;
    height:25px;
}
body,html
{
    overflow-x:hidden;
}
}













