@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Montserrat", sans-serif;
}
.container{
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
    
}
/* header */
.header{
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid hsla(0, 1%, 22%, 0.1);
    z-index: 10000;
    position: sticky;
    top: 0;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
}
.header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo img{
    vertical-align: middle;
    height:80px;
    padding: 10px;
}
.header .menu .head{
    display: none;
}
.header .menu ul{
    list-style: none;
}
.header .menu > ul > li{
    display: inline-block;
}
.header .menu > ul > li:not(:last-child){
    margin-right: 30px;
}
.header .menu .dropdown{
    position: relative;
}
.header .menu a{
    text-decoration: none;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    color: hsl(0, 0%, 0%);
    line-height: 1.5;
    display: block;
}
.header .menu a:hover{
    color: #b30000;
}
.header .menu > ul > li > a{
    padding: 24px 0;
}
.header .menu > ul > .dropdown > a{
    padding-right: 15px;
}
.header .menu i{
    font-size: 15px;
    pointer-events: none;
    user-select: none;
    position: absolute;
    color: hsl(0, 0%, 0%);
    top: calc(50% - 5px);
}
.header .menu > ul > li > i{
    right: 0;
}
.header .menu .sub-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    padding: 15px 0;
    background-color: #ffffff;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}
.header .menu .sub-menu-right{
    left: 100%;
    top: 0;
}
/* .header .menu .sub-menu-left{
    top: 0;
    left: auto;
    right: 100%;
} */
.header .menu li:hover > .sub-menu{
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}
.header .menu .sub-menu a{
    padding: 6px 24px;
    font-size: 14px;
    color: rgb(0, 0, 0);
}
.header .menu .sub-menu .dropdown > a{
    padding-right: 34px;
}
.header .menu .sub-menu span{
    background-image: linear-gradient(hsl(64, 100%, 65%), hsl(298, 100%, 54%));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}
.header .menu .sub-menu li:hover > a > span{
    background-size: 100% 1px;
}
.header .menu .sub-menu i{
    /* transform: rotate(-90deg); */
    right: 24px;
}
.header-right{
    display: flex;
}
.header-right > *{
    margin-left: 25px;
}
.header-right .icon-btn{
    background-color: red;
    cursor: pointer;
    border: none;
    padding: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    color: hsl(0, 0%, 100%);
    font-size: 18px;
    border-radius: 5px;
}
.header-right .icon-btn:hover{
    background-color: #fff;
    color: #c50000;
    border: 0.5px solid #c50000;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
}
.header-right .open-menu-btn{
    display: none;
}
@media(max-width:991px){
    .header{
        padding: 2px 0;
    }
    .header .menu{
        position: fixed;
        right: 0;
        top: 0;
        width: 320px;
        height: 100%;
        /* background-color: hsl(165, 100%, 25%); */
        background-color: #d30000;
        padding: 15px 30px 30px;
        overflow-y: auto;
        z-index: 1;
        transform: translateX(100%);
    }
    .header .menu.open{
        transform: none;
    }
    .header .menu .head{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    .header .menu a:hover{
        color: #ffe600;
    }
    .header .menu .close-menu-btn{
        height: 35px;
        width: 35px;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        cursor: pointer;
        border: none;
    }
    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after{
        content: '';
        position: absolute;
        width: 80%;
        height: 2px;
        background-color: hsl(0, 0%, 100%);
    }
    .header .menu .close-menu-btn::before{
        transform: rotate(45deg);
    }
    .header .menu .close-menu-btn::after{
        transform: rotate(-45deg);
    }
    .header .menu > ul > li {
        display: block;
    }
    .header .menu > ul > li:not(:last-child){
        margin-right: 0;
    }
    .header .menu li{
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
    }
    .header .menu li:first-child{
        border-top: 1px solid hsla(0, 0%, 100%, 0.25);
    }
    .header .menu > ul > li > a{
        padding: 12px 0;
    }
    .header .menu > ul > .dropdown > a{
        padding-right: 34px ;
    }
    .header .menu i{
        height: 34px;
        width: 34px;
        border: 1px solid hsla(0, 0%, 100%, 0.25);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }
    #other-service{
        margin-bottom: 5px;
    }
    .header .menu .dropdown.active > i{
        background-color: hsla(0, 0%, 100%, 0.25);
        transform: rotate(180deg);
    }
    .header .menu .sub-menu{
        position: static;
        opacity: 1;
        transform:none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    .header .menu .dropdown.active > .sub-menu{
        display: block;
    }
    .header .menu .sub-menu li:last-child{
        border: none;
    }
    .header .menu .sub-menu a{
        padding: 12px 0 12px 15px;
    }
    .header .menu .sub-menu a:hover{
        color: #460000f5;
    }
    .header .menu .sub-menu .sub-menu a{
        padding-left: 30px;
    }
    .header .menu .sub-menu .sub-menu .sub-menu a{
        padding-left: 45px;
    }
    .header .menu .sub-menu span{
        background-image: none;
    }
    .header .menu .sub-menu i{
        transform: none;
        right: 0;
    }
    .header-right .icon-btn{
        display: none;
    }
    .header-right .open-menu-btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 44px;
        cursor: pointer;
        position: relative;
        background-color: transparent;
        border: none;
    }
    .header-right .open-menu-btn .line{
        height: 2px;
        width: 30px;
        background-color: hsl(0, 0%, 0%);
        position: absolute;
    }
    .header-right .open-menu-btn .line-1{
        transform: translateY(-8px);
    }
    .header-right .open-menu-btn .line-3{
        transform: translateY(8px);
    }
}




.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    z-index: 1000;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.close-btn {
    float: right;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}
.popup input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.popup button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    /* background: #28a745; */
    background: #c50000;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease-in;
}
.popup button:hover{
    background: #e90a0a;
}
.popup select {
    color: rgb(19, 0, 0);
}
.popup select option{
    color: red;
}
  
  /* owl-couroswe-3 */
  .owl-carousel-3 {
    height: 100vh !important;
  }
  .image{
    height: 100vh;
    width: 100%;
  }
  .image img{
    height: 100%;
  }
  .owl-carousel-3 .owl-nav {
    display: block !important;
    width: 100%;
    background-color: aqua;
    position: absolute;
    top: 40%;
    /* transform: translateY(-50%); */
  }
  .owl-carousel-3 .owl-nav .owl-next{
    position: absolute;
    right: 20px;
  }
  .owl-carousel-3 .owl-nav .owl-prev{
    position: absolute;
    left: 20px;


  }
  .owl-carousel-3 .owl-nav .owl-prev span,
  .owl-carousel-3 .owl-nav .owl-next span{
    font-size: 60px;
    color: #fff;
    width: 50px;
    padding: 10px;
  }





  .about{
    display: flex;
    background-color: rgb(255, 255, 255);
    justify-content: space-around;
    align-items: center;
    padding: 15px;
  }
  .about .abt-container{
    width: 600px;
    text-align: justify;
    padding: 20px;
    text-align: initial;
    word-spacing: 2px;
    margin-bottom: 50px;
  }
  .about .abt-container h4{
    font-size: 18px;
    margin-top: 50px;
    padding-bottom: 10px;
    color: #c50000;
  }
  .about .abt-container h1{
    font-size: 38px;
    padding-bottom: 20px;
    color: #02101b;
  }
  .about .abt-container p{
    font-size: 18px;
    line-height: 25px;
    text-align: justify;
  }
  .about .abt-container button{
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    width: 300px;
    height: 50px;
    background-color: #c50000;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 40px;
    transition: 0.3s ease-in-out;
  }
  .about .abt-container button:hover{
    background-color: white;
    color: #c50000;
    border: 1px solid #c50000;
    box-shadow: 0 0 5px hsla(0, 100%, 50%, 0.5);
  }
  .abt-img{
    width: 500px;
    height: 350px;
    border-radius: 2px;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
  }
  .abt-images {
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: auto;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

  @media (max-width:790px) {
    .about{
        flex-wrap: wrap;
    }
    /* .abt-img{
        width: 100%;
    } */
    .about .abt-container{
        width: 100%;
    }
  }





.services{
    min-height: 100vh;
    background: linear-gradient(#fff1f1 , #ffcccc);
}
.services h1{
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #b30000;
}
.service-container{
    display: flex;
    align-items: center;
    justify-content: center;

}
.card-list .card-item {
    list-style: none;
}
.card-wrapper {
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px 10px;
    overflow: hidden;
}
.card-list .card-item .card-link {
    user-select: none;
    display: block;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}
.card-list .card-item .card-link:active {
    cursor: grabbing;
}
.card-list .card-item .card-link:hover {
    border-color: #df2c2c;
    transform: translateY(-10px);
}
.card-list .card-link .card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}
.card-list .card-link .badge {
    color: #5372f0;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 16px 0 18px;
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;
}
.card-list .card-link .badge.private{
    color: #b22485;
    background: #f7dff5;
}
.card-list .card-link .badge.surveillance{
    color: #b25a2b;
    background: #ffe3d2;
}
.card-list .card-link .badge.vip{
    color: #205c20;
    background: #d6f8d6;
}
.card-list .card-link .badge.cash{
    color: #856404;
    background: #fff3cd;
}
.card-list .card-link .badge.audit{
    color: #b22485;
    background: #f7dff5;
}
.card-list .card-link .badge.personal{
    color: #b22485;
    background: #f7dff5;
}
.card-list .card-link .badge.aviation{
    color: #b25a2b;
    background: #ffe3d2;
}
.card-list .card-link .badge.event{
    color: #205c20;
    background: #d6f8d6;
}
.card-list .card-link .badge.investigation{
    color: #856404;
    background: #fff3cd;
}
.card-list .card-link .badge.training{
    color: #b22485;
    background: #f7dff5;
}
.card-list .card-link .badge.parking{
    color: #205c20;
    background: #d6f8d6;
}
.card-list .card-link .card-title {
    font-size: 14px;
    color: "#000";
    font-weight: 600;
}
.card-list .card-link .card-button {
    height: 35px;
    width: 35px;
    color: #df2c2c;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    border: 2px solid #df2c2c;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}
.card-list .card-link:hover .card-button{
    color: #fff;
    background: #df2c2c;
}
.card-wrapper .swiper-pagination-bullet {
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #df2c2c;
}
.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}
.card-wrapper .swiper-slide-button  {
    color: #df2c2c;
    margin-top: -35px;
    height: 10px;
    width: 20px;
    font-size: 30px;
    font-weight: bolder;
    cursor: pointer;
}
.search-btn-right{
    position: absolute;
    top: 50%;
    right: 10px;
}
.search-btn-left{
    position: absolute;
    top: 50%;
    left: 0px;
}
@media screen and (max-width:768px) {
    .card-wrapper{
        margin: 0 10px 25px;
    }
    .card-wrapper .swiper-slide-button {
        display: none;
    }
}


.why-us{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 50px;
    background: #ffffffb2;
    
}
.choose-container{
    width: 500px;
    padding: 10px;
}
.choose-container h1{
    font-size: 28px;
    margin-top: 100px;
    margin-left: 50px;
    letter-spacing: 2px;
    color: #b30000;
}
.choose-container p{
    font-size: 14px;
    margin-left: 50px;
    margin-top: 30px;
    letter-spacing: 2px;
    text-align: justify;
}
.choose-container button{
    margin-left: 50px;
    margin-top: 100px;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    width: 300px;
    height: 50px;
    background-color: #c50000;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}
.choose-container button:hover{
    background-color: white;
    color: #c50000;
    border: 1px solid #c50000;
    box-shadow: 0 0 5px hsla(0, 100%, 50%, 0.5);
}

.counter-container{
    /* background: #b6f6ff; */
    height: 70vh;
    /* width: 100%; */
    margin-left: 100px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
@media  (max-width:768px) {
    .why-us{
        justify-content: center;
        height: max-content;
    }
    .choose-container{
        text-align: center;
        justify-content: center;
        margin-left: 0px;
        padding-bottom: 30px;
    }
    .counter-container{
        margin-left: 0px;
        /* padding: 20px; */
        height: 100%;
    }
    .choose-container h1{
        margin-left: 0px;
    }
    .choose-container p{
        margin-left: 0px;
    }
    .choose-container button{
        margin-left: 0px;
        margin-top: 20px;
    } 
}
.skill{
    height: 160px;
    width: 160px;
    /* background-color: cornflowerblue; */
    position: relative;
    padding-bottom: 30px;
}
.skill h1{
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}
.outer{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 6px 6px 10px -1px #00000026, -6px -6px 10px -1px #e5fcff;
}
.inner{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 4px 4px 6px -1px #00000033, inset -4px -4px 6px -1px #e5fcff, -0.5px -0.5px 0px #e5fcff, 0.5px 0.5px 0px #00000026, 0px 12px 10px -10px #0000000d ;
}
#number{
    font-weight: 600px;
    color: #555;
}
circle{
    fill: none;
    stroke: url(#GradientColor);
    stroke-width: 20px;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    animation: anim 2s linear forwards;
}
svg{
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes anim {
    100%{
        stroke-dashoffset: 108;
    }
}
.skill2 circle{
    animation: anim2 2s linear forwards;
}
@keyframes anim2 {
    100%{
        stroke-dashoffset: 95;
    }
}
.skill3 circle{
    animation: anim3 2s linear forwards;
}
@keyframes anim3 {
    100%{
        stroke-dashoffset: 350;
    }
}







.case-container{
    padding: 20px;
    margin-top: 80px;
    background-color: #f1f1f1;
}
.case-container h1{
    text-align: center;
    color: #b30000;
    padding-bottom: 20px;
}
.case-study-card {
    width: 100%;
    height: 500px;
    margin-top: 50px;
}
.case-study-card>h1{
    text-align: center;
    padding-top: 10px;
    color: #000;
    font-size: 16px;
}
.case-study-card-img {
    height: 80%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.case-study-card-img div{
    position: absolute;
    color: white;
    padding: 20px;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-color: rgba(245, 53, 75, 0.801);
    transform: translateX(-100%);
    text-align: justify;
    transition: 0.5s;
}

.case-study-card:hover  .case-study-card-img div{
    transform: translateX(0);
    width: 100%;
   
}
.case-read{
    display: flex;
    margin-top: 20px;
    align-items: center;
}
.case-read a{
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.case-study-card-img::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/biometric-technology-background-with-fingerprint-scanning-system-virtual-screen-digital-remix.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: 2s;
}
.case-study-card-img.case2::after{
    background-image: url("../img/cctv-security-technology-with-lock-icon-digital-remix.jpg");
}
.case-study-card-img.case3::after{
    background-image: url("../img/portrait-male-security-guard-with-radio-station-camera-screens.jpg");
}
.case-study-card-img.case4::after{
    background-image: url("../img/close-up-hands-holding-smartphone.jpg");
}
.case-study-card:hover .case-study-card-img::after {
    transition-delay: 0.5s;
    transform: scale(1.4);
}



 .owl-carousel-1 .owl-nav {
    display: block !important; 
    
  }
  
  .owl-carousel-1 .owl-prev span, .owl-carousel-1 .owl-next span {
    margin: 10px;
    font-size: 40px;
    font-weight: 700;
    color: rgb(248, 59, 85);
    position: absolute;
    top: 85%;
    transform: translateX(-50%);
    border-radius: 50%;
  }

  .owl-carousel-1 .owl-prev span {
    left: 0px;
  }

  .owl-carousel-1 .owl-next span {
    right: 0px;
  }




.client-container{
    height: 60vh;
    background-color: #ebebeb;
}
.client-container h1{
    color: #b30000;
    font-size: 34px;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 50px;
}
.client-wrapper {
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 200px;
    margin-top: 5rem;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0)
    );
  }
  .client-wrapper img{
    height: 100%;
    width: 100%;
  }
  @keyframes scrollLeft {
    to {
      left: -200px;
    }
  }
  
  .item {
    width: 200px;
    height: 100px;
    /* background-color: red; */
    border-radius: 6px;
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
  }
  
  .item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
  }
  
  .item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
  }
  
  .item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
  }
  
  .item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
  }
  
  .item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
  }
  
  .item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
  }
  
  .item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
  }









.expert{
padding: 20px;
}
.expert h1{
    color: #b30000;
    text-align: center;
  }
  .team{
    position: relative;
    height: 80vh;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 50px;
    margin-top: 80px;
  }

  @media (max-width:768px) {
    .team{
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
  }

  .team-container{
    width: 360px;
    height: 400px;
    position: relative;
  }
.teamcard {
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
    width: 100%;
    height: 100%;
    background: #000;
}
/* .card2{
    left: 80%;
}
.card3{
    left: 20%;
} */
.teamcard .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.teamcard .image img {
    width: 100%;
    height: 100%;
    transition: .5s;
    object-fit: cover;
}
.teamcard:hover .image img {
    opacity: .5;
    transform: translateX(30%);/*100%*/
}
.teamcard .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;/*100%*/
    height: 100%;
    background: #ff4107;
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}
.teamcard:hover .details {
    transform: perspective(2000px) rotateY(0deg);
}
.teamcard .details .center {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.teamcard .details .center h1 {
    margin: 0;
    padding: 0;
    color: #ff3636;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}
.teamcard .details .center h1 span {
    font-size: 14px;
    color: #262626;
}
.teamcard .details .center p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}
.teamcard .details .center ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}
.teamcard .details .center ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}
.teamcard .details .center ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: .5s;
}
.teamcard .details .center ul li a:hover {
    background: #ff3636;
}




.form-container{
    background-color: #ffffff;
  width:100%;
  max-width: 1000px;
  margin:50px auto;
  font-family: Calibri, Arial, sans-serif;
  padding:20px;
  height: auto;
}
.form-container p{
    text-align: center;
  }
  .form-container h1{
    color: #b30000;
    font-size: 28px;
    text-align: center;
  }
  form{
    box-shadow: 6px 6px 10px -1px #00000026, -6px -6px 10px -1px #e5fcff;
    height: 100%;
    padding: 10px;
  }
  label{
    display:block;
    margin:1em 0 .2em;
  }
  /* single-line text, checkbox, and button */
  input, select, textarea{
    display:block;
    width:100%;
    padding:.3em;
    font-size:20px;
    background-color:#fbfbfb;
    border:solid 1px #CCC;
    resize:vertical;
  }
  textarea{
    min-height:180px;
  }
  select{
    color:indigo;
  }
  option{
    color:blue;
    background: lavenderBlush;
  }
  input[type=checkbox]{
    display:inline;
    width:auto;
    color:red;
  }
  
  input[type=submit]{
    background: #b30000;
    margin:2em 0 0;
    color:white;
    border:none;
    border-radius:8px;
    transition:all .2s ease-out;
  }
  
  input:focus,
  input:hover,
  select:focus,
  select:hover,
  textarea:focus,
  textarea:hover{
    background: lavenderBlush;
  }
  
  /* hover and focus states */
  input[type=submit]:hover,
  input[type=submit]:focus{
    background:rgb(206, 39, 39);
    outline:none;
  }
  
  @media screen and (min-width:600px) {
    /*  make the form 2 columns */
    .form-sec{
        height: 100%;
    }
    form:after{
      content:'';
      display:block;
      clear:both;
    }
    .column{
      width:50%;
      padding:1em;
      float:left;
    }
  }




  /* textimonial */
  .testimonial{
    height: max-content;
    /* border: 1px solid black; */
   
  }
  .testimonial>h1{
    color: #b30000;
    margin-top: 50px;
    padding-top: 50px;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 50px;
  }
  .testimonial-card-container {

    padding-block: 30px;
    position: relative;
    padding-inline: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
    overflow: hidden;
 }

 .testimonial-card-container::before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: rgba(255, 55, 55, 0.486);
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 70% 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    
 }

 .testimonial-sub-card {
    display: flex;
    position: relative;
    z-index: 2;
 }

 .testimonial-sub-card .text-content{
    width: 60%;
    padding-right: 30px;
    
 }

 .testimonial-sub-card .text-content p:nth-child(2) {
    margin-top: 40px;
    left: 50px;
    margin-right: 30px;
    position: relative;
 }

 .testimonial-sub-card .text-content p:nth-child(2)::before {
    content: '';
    border-top: 2px solid rgb(248, 59, 85);
    width: 50px;
    height: 40px;
    position: absolute;
    left: -50px;
    top: 10px;
 }

 .testimonial-sub-card .text-content p:first-child {
    margin-top: 40px;

 }

 .testimonial-sub-card  .img-content {
    width: 40%;
    height: 400px;
    overflow: hidden;
 }

 .testimonial-sub-card  .img-content img {
    height: 100%;
    width: 100%;
    object-fit: fill;

 }

 @media screen and (max-width:992px) {
    .testimonial-sub-card  .img-content {
        display: none;
    }

    .testimonial-sub-card .text-content {
        width: 100%;
    }

 }



 .owl-carousel-2  .owl-dots button {
    background-color: #64b9ae  !important;
    border-radius: 50%;
    height: 10px;
    width: 10px;
    margin-right: 5px;
    transition: 0.5s;
 }

 .owl-carousel-2  .owl-dots button.active {
    background-color: rgb(248, 59, 85) !important;
    width: 30px;
    border-radius: 12px;
 }





footer{
    background: #000000;
    padding: 50px;
    position: relative;
    /* border: 1px solid rgb(0, 0, 0); */
  }
  .foot-container{
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: flex-start;
    gap: 5px;
  }
  .f-box{
    width: 33%;
  }
  .f-box h1{
    padding-bottom: 20px;
    color: #ebfeff;
    text-decoration: underline;
  }
  .f-box a{
    text-decoration: none;
    
  }
  .f-box a p{
    margin-left: 0px;
    margin-top: 15px;
    font-size: 14px;
    color: white;
  }
  .contact-link h3{
    margin-bottom: 10px;
    color: white;
  }
  .contact-link p{
    display: flex;
    align-items: center;
    margin-top: 15px;
    margin-right: 10px;
    color: white;
    font-size: 14px;
  }
  .contact-link p span{
    margin-right: 10px;
  }
  .foot-para{
    text-align: justify;
  }
  @media (max-width:768px) {
    .foot-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .f-box{
      width: 47%;
      margin-top: 20px;
    }
  }
  @media (max-width:550px) {
    .f-box{
      width: 75%;
    }
  }
  @media (max-width:370px){
    .f-box{
      width: 95%;
    }
  }