/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;

}

html {
    scroll-behavior: smooth;

}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section {
    padding: 70px 0;
}

a {
    text-decoration: none;
    color: #000;
}

.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: 0 auto;
}

.row1 {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}

@media only screen and (min-width: 500px) {

    /* For tablets: */
    .col-s-1 {
        width: 8.33%;
    }

    .col-s-2 {
        width: 16.66%;
    }

    .col-s-3 {
        width: 25%;
    }

    .col-s-4 {
        width: 33.33%;
    }

    .col-s-5 {
        width: 41.66%;
    }

    .col-s-6 {
        width: 50%;
    }

    .col-s-7 {
        width: 58.33%;
    }

    .col-s-8 {
        width: 66.66%;
    }

    .col-s-9 {
        width: 75%;
    }

    .col-s-10 {
        width: 83.33%;
    }

    .col-s-11 {
        width: 91.66%;
    }

    .col-s-12 {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {

    /* For desktop: */
    .col-1 {
        width: 8.33%;
    }

    .col-2 {
        width: 16.66%;
    }

    .col-3 {
        width: 25%;
    }

    .col-4 {
        width: 33.33%;
    }

    .col-5 {
        width: 41.66%;
    }

    .col-6 {
        width: 50%;
    }

    .col-7 {
        width: 58.33%;
    }

    .col-8 {
        width: 66.66%;
    }

    .col-9 {
        width: 75%;
    }

    .col-10 {
        width: 83.33%;
    }

    .col-11 {
        width: 91.66%;
    }

    .col-12 {
        width: 100%;
    }
}

/* all similar content styling codes */
.about,
.services,
.skills,
.teams,
.contact,
footer,
.ourservices {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content,
.ourservices .ourservices-content,
.contactform {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    vertical-align: top;
}

section .title {
    /*position:relative;*/
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;

}

/*section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #e20404;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}*/

/* navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 0;
    background: #000;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo img {
    height: 45px;
    width: auto;
    padding-top: 12px;
}

.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span {
    color: #e20404;
    transition: all 0.3s ease;
  
}

.navbar.sticky .logo a span {
    color: #fff;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;

}

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: #e20404;
}


.navbar.sticky .menu li a:hover {
    color: #fff;
}

/* menu btn styling */
.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
    position: relative;
}


.scroll-up-btn {
    position: fixed;
    height: 40px;
    width: 40px;
    background: #e20404;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}
/*----------------whatsup------------------------*/
.whatsup {
    position: fixed;
    right: 30px;
    bottom: 60px;
    height: 40px;
    width: 40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #01a51c;
    padding: 8px;
    border-radius: 4px;
    font-size: 20px;
}

.whatsup a {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
}

.whatsup a:hover {
    filter: brightness(80%);
}

/*-----------------------------------*/

/*------------------form----------------------*/
.message {
    position: fixed;
    right: 30px;
    bottom: 160px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #e20404;
    border-radius: 4px;
    animation: glow 1s infinite alternate; 
  }
  @keyframes glow {
    0% {
      box-shadow: 0 0 2px #ccc; 
    }
    40% {
      box-shadow: 5px 0px 20px #222;
    }
     75% {
      box-shadow: 0px 0px 20px #e20404;
    }
  }

.message a {
    display: block;
    text-align: center;
    padding: 8px;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 5px;

}

.message a:hover {
    color: #333;
    transition: all 0.3s ease;
}

/*-------------------------*/

.call {
    position: fixed;
    right: 30px;
    bottom: 110px;
    height: 40px;
    width: 40px;
    padding:8px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #222;
    border-radius: 4px;
    font-size:20px;
}


.call a {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;

}

.call a:hover {
    filter: brightness(80%);
}

/* home section styling */
.home {
    display: flex;
    background: url("../images/banner.jpg") no-repeat center;
    height: 75vh;
    color: #fff;
    min-height: 450px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}

@media(max-width:500px) {
    .home {
        display: flex;
        background: url("../images/banners.jpg") no-repeat center;
        height: 75vh;
        color: #fff;
        min-height: 450px;
        background-size: cover;
        background-attachment: fixed;
        font-family: 'Ubuntu', sans-serif;
    }
}

.home .max-width {
    margin: auto 0 auto 30px;
}

.home .home-content .text-1 {
    font-size: 30px;
}

.home .home-content .text-2 {
    font-size: 60px;
    font-weight: 600;
    margin-left: -3px;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;

}

.home .home-content .text-3 span {
    color: #e20404;
    font-weight: 500;
}

.home .home-content a {
    display: inline-block;
    background: #e20404;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin: 10px 10px;
    font-weight: 400;
    border-radius: 200px;
    border: 2px solid #e20404;
    transition: all 0.3s ease;
}

.home .home-content a:hover {
    color: #e20404;
    background: none;
}

/* about section styling *
.about .title::after {
    /*content: "who we are";*
}*/

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 400px;
    max-width: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span {
    color: #e20404;
}

.about .about-content .right p {
    text-align: justify;
}

.about .about-content .right a {
    display: inline-block;
    background: #e20404;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #e20404;
    transition: all 0.3s ease;
}

.about .about-content .right a:hover {
    color: #e20404;
    background: none;
}

/* services section styling */

.services,
.teams {
    color: #222;
    background: #fff;
    
}

.services .title::before,
.teams .title::before {
    background: #fff;
}

.services .title::after,
.teams .title::after {
    background: #111;
    /* content: "what we provide";*/
}

.services .serv-content .card {
    width: calc(25% - 20px);
    background: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 450px;
    margin-bottom: 10px;
    

}

.services .serv-content .card:hover {
    background: #e20404;

}

.services .serv-content .card .box {
    transition: all 0.3s ease;
}

.services .serv-content .card:hover .box {
    transform: scale(1.05);
}

.services .serv-content .card i {
    font-size: 50px;
    color: #e20404;
    transition: color 0.3s ease;
}

.services .serv-content .card:hover i {
    color: #fff;
}

.services .serv-content .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.services .serv-content .card li {
    font-size: 16px;
    padding: 0px; 
    text-align:left;
    line-height: 18px;
    margin-left: 10px;
   
}

.serv-content p {
    font-size: 14px;
    text-align: justify;
}

.serv-content p a {
    text-decoration: none;
    color: #fff;
}

.services .serv-content a {
    display: inline-block;
    background: #fff;
    color: #e20404;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    margin-top: 18px;
    border-radius: 6px;
    border: 2px solid #e20404;
    transition: all 0.3s ease;
}

.services .serv-content a:hover {
    color: #fff;
    background: #222;
}

/* skills section styling */
.skills {
    background-image: linear-gradient(rgba(255, 255, 255, .9), rgba(200, 200, 200, .5));
}

/*.skills .title::after {
    /*content: "why Choose us";
}*/

.skills .skills-content .column {
    width: calc(50% - 30px);
}

.skills .skills-content .left .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #e20404;
}

.skills .skills-content .left p {
    text-align: justify;
}

.skills .skills-content .left i {
    font-size: 80px;
    color: #222;
    transition: color 0.3s ease;
    margin: 10px 0px;
}

/*.changecolor {
    animation: nimmy 3s infinite;
}

@keyframes nimmy {
    0 {
        color: #e20404;
    }

    30% {
        color: #222;
    }

    60% {
        color: #e20404;
    }

    90% {
        color: #222;
    }
}*/

/* satisfaction section styling */
.satisfaction {
    margin: 0px;
    padding: 0;
}

.satisfaction img {
    width: 100%;
    height: auto;
}

/* services section styling */
.services,
.teams {
    color: #fff;
    background: #111;
}

.services .title::before,
.teams .title::before {
    background: #fff;
}

.services .title::after,
.teams .title::after {
    background: #111;
    /* content: "what we provide";*/
}

.services .serv-content .card {
    width: calc(25% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;


}

.services .serv-content .card:hover {
    background: #e20404;

}

.services .serv-content .card .box {
    transition: all 0.3s ease;
}

.services .serv-content .card:hover .box {
    transform: scale(1.05);
}

.services .serv-content .card i {
    font-size: 50px;
    color: #e20404;
    transition: color 0.3s ease;
}

.services .serv-content .card:hover i {
    color: #fff;
}

.services .serv-content .card .text {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.services .serv-content .card li {
    font-size: 14px;
    padding: 0px; 
    text-align:left;
   
}

.serv-content p {
    font-size: 14px;
    text-align: justify;
}

.serv-content p a {
    text-decoration: none;
    color: #fff;
}

.services .serv-content a {
    display: inline-block;
    background: #e20404;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    margin-top: 10px;
    border-radius: 6px;
    border: 2px solid #e20404;
    transition: all 0.3s ease;
}

.services .serv-content a:hover {
    color: #fff;
    background: #222;
}

/*gallery section styling */
.containerp {
    width: 100%;
    height: auto;
    /*background-color:#999;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#gallery h2 {
    color: #222;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin: 50px 0px;
    font-size: 40px;
}

.gallery {
    width: 20%;
    height: auto;
    /*background-color:#FFFF00;*/
    margin: 20px;

}

.gallery a {
    font-size: 16px;
    color: #e20404;
    text-align: center;
    font-weight: 500;
}

.subhead {
    font-size: 16px;
    color: #e20404;
    text-align: center;
    font-weight: 500;

}

.gallery img {
    border-radius: 15px;

}

.gallery img:hover {
    box-shadow: 0 0 10px #000;
    transition: all 0.3s ease;
}

@media screen and (max-width:1200px) {
    .gallery {
        width: 40%;
    }
}

@media screen and (max-width:750px) {
    .gallery {
        width: 80%;
    }
}

/* contact section styling */

#location {
    margin: 0;
    padding: 0;
}

/*#location .title::after {
    /*content: "find us";*
}*/

.contact {
   background-image: linear-gradient(rgba(220, 220, 220, .6), rgba(255, 255, 255, .8));
   background-color:#fff;
   height: 70vh;
   max-height:700px;
}


/*.contact .title::after {
    /* content: "get in touch";*
}*/

.contact .contact-content .column {
    width: calc(50% - 20px);
    
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact .contact-content .left p {
    text-align: justify;
}

.contact .contact-content .left .icons {
    margin: 5px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 75px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 10x;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: #e20404;
    margin: 0px 30px 0px 0px;
    padding: 0;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title .sub-title a {
    color: #333;
}

.contact .right form .fields {
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 50px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 90px;
    width: 100%;
}

.contact .right form .name {
    margin-right: 5px;
}

.contact .right form .email {
    margin-left: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
    border-color: #b3b3b3;
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .button {
    height: 47px;
    width: 170px;
}

.contact .right form .button button {
    width: 100%;
    height: 100%;
    border: 2px solid #e20404;
    background: #e20404;
    color: #fff;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .right form .button button:hover {
    color: #e20404;
    background: none;
}

/***************infoot section styling*********************/
.infoot {
    background: url("../images/infoot.jpg") no-repeat center;
    height: fit-content;
    min-height: 300px;
    font-family: 'Poppins', sans-serif;
   /* background-color: #222;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    transition: all 0.3s ease;
    width: 100%;
}

.infoot h3 {
    font-size: 20px;
    color: #888;
    padding-top: 50px;
    padding-bottom: 10px;
}

.infoot li {
    list-style: none;
    padding-left: 10px;
    font-size: 16px;
    line-height: 24px;

}

.infoot li a {
    color: #f1f1f1;

}

.infoot p {
    color: #f1f1f1;
    padding-left: 10px;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
}

.infoot p a {
    color: #f1f1f1;
    padding-left: 10px;
    font-size: 16px;
    line-height: 24px;
}

.infoot i {
    color: #f1f1f1;
    font-size: 12px;
    line-height: 24px;
    padding-right: 10px;
}


.infoot .cards {
    width: calc(25% - 20px);
}

@media screen and (max-width:768px) {
    .infoot {
        height: 600px;
    }

    .infoot h3 {
        font-size: 20px;
        color: #888;
        padding-top: 30px;
        padding-bottom: 10px;
    }

    .infoot .cards {
        width: calc(50% - 20px);
    }
    .contact {
        height:100vh;
        min-height: 600px
        
    }

}

@media screen and (max-width:500px) {
    .infoot {
        height: 750px;
    }

    .infoot h3 {
        font-size: 20px;
        color: #888;
        padding-top: 30px;
        padding-bottom: 10px;
    }

    .infoot .cards {
        width: calc(100% - 20px);
    }
    .contact {
        height:100vh;
        min-height: 600px
        
    }

}

/* footer section styling */
footer {
    background: #000;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}

footer span a {
    color: #fff;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}


/* responsive media query start */
@media (max-width: 1300px) {
    .home .max-width {
        margin-left: 0px;
    }
}

@media (max-width: 1104px) {
    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }

    .menu-btn {
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before {
        content: "\f00d";
    }

    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}

@media (max-width: 947px) {

    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }

    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 930px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right {
        flex: 100%;
    }

    .services .serv-content .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
      

    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }

    .home .home-content .text-2 {
        font-size: 60px;
    }

    .home .home-content .text-3 {
        font-size: 24px;
    }

    .home .home-content a {
        font-size: 20px;
    }

    .services .serv-content .card {
        width: 100%;
    }
}

@media (max-width: 500px) {

    .home .home-content .text-2 {
        font-size: 50px;
    }

    .home .home-content .text-3 {
        font-size: 18px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 19px;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .contact-content .column {
        width: calc(100% - 30px);
    }


    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
        width: 100%;
    }
    
    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
    }
    .message {
        right: 15px;
        bottom: 50px;
    }
    .call{
        right: 15px;
        bottom: 100px;
    }
    .whatsup{
        right: 15px;
        bottom: 56px;
    }
        
    }
        





/*------------- about us page---------------------------*/


.rigister {
    background-color: #dd1b1b;
    height: 45vh;

}

.rtext {
    color: #fff;
    text-align: center;
    font-size: 40px;
}

/*---------- vdp start ----------------*/
.contactform {

    background-image: linear-gradient(rgba(180, 180, 180, .8), rgba(255, 255, 255, .8));
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;

}

.contactform p {
    font-size: 20px;
    margin-left: 30px;
}

.contactform h2 {
    font-size: 35px;
    padding: 30px 0;
}

.technician {
    background-color: #c3c3c3;
    padding: 50px 0px;
    font-family: 'Poppins', sans-serif;
}

.technician p {
    font-size: 16px;
    line-height: 24px;
    color: #222;
    text-align: justify;
}

.technician h2 {
    padding: 30px 0px;
    color: #dd1b1b;
}

.technician h4 {
    padding: 15px 0;
}

.technician li {
    margin-left: 30px;
}

/*------form-------*/
label {
    font-size: 18px;
}

input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    margin-left: 0;
}

input[type=number],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    margin-left: 0;
}

input[type=email],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    margin-left: 0;
}

input[type=submit] {
    background-color: #dd1b1b;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 20px;
    font-size: 18px;
}

input[type=submit]:hover {
    background-color: #222;
}

.form-contact {
    font-size: 18px;
}

/*--------------------------form end ------------------------*/









hr {
    margin: 10px 10px;
}

/*--------------------------FAQS------------------------*/
.faqs {
    font-family: 'Poppins', sans-serif;
}

.faqs p {
    font-size: 16px;
    color: #222;
    line-height: 24px;
    text-align: justify;
}

.faqs h1 {

    color: #222;
    margin: 15px 0px;
}

.faq_question {
    margin: 0px;
    padding: 0px 0px 5px 0px;
    display: inline-block;
    cursor: pointer;

    color: #dd1b1b;
    font-family: 'Poppins', sans-serif;

}

.faq_question i {
    margin-right: 7px;
    font-size: 19px;

}

.faq_answer_container {
    height: 0px;
    overflow: hidden;
    padding: 0px;
    margin-left: 20px;
}

.faq_answer {
    margin-left: 20px;

}

.faq_answer ol {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-size: 16px;
    line-height: 24px;
}

.faq_answer ol li {
    margin-left: 20px;
    padding-left: 5px;

}

.faq_answer p {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

section .headf {

    color: #dd1b1b;
    margin: 10px;
    text-transform: uppercase;
}

.policy {
    font-family: 'Poppins', sans-serif;
}

.policy h2 {
    text-align: center;
    font-size: 30px;
    padding: 40px 0;
    font-weight: bold;
    color: #dd1b1b;
}

.policy p {
    line-height: 24px;
    text-align: justify;
    padding: 20px 0px;
    font-size: 16px;

}

.policy li {
    margin-left: 25px;
    padding-left: 5px;
    color: #222;
    line-height: 24px;

}

/*------------------------------------------------4g camera start------------------------------*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}

th,
td {
    text-align: left;
    padding: 8px;
    border: 1px solid #222;
    font-family: 'Poppins', sans-serif;
}

tr:nth-child(even) {
    background-color: #f2f2f2
}

.gtext h2 {
    padding: 30px 0px;
    margin: 20px 0;
    font-size: 35px;
    font-family: 'Poppins', sans-serif;

}

.gtext img {
    height: 300px;
    max-width: 340px;
}

.gtext li {
    margin: 20px;
    font-size: 18px;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
}

.gtext h3 {
    font-size: 20px;
    color: #dd1b1b;
    font-family: 'Poppins', sans-serif;
}

/*------------------------------------------------4g camera end------------------------------*/
/*---------------****************UPS start ************************----------------------*/
.ups {
    text-align: center;
    margin: 40px auto;
    border: rgb(245, 245, 245) 1px solid;
    border-radius: 5px;
}

/* box-shadow: 3px 3px 5px #222;

}

.ups:hover {
    box-shadow: 0px 0px 4px #000;
}*/

.ups h3 {
    font-size: 16px;
    color: #dd1b1b;
    padding: 30px 0px;
    font-weight: bold;
}

.ups a {
    padding: 10px 35px;
    border-radius: 8px;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
    text-align: center;
    margin: 30px 0;
    font-size: 15px;
    text-align: left;
}

.ups a:hover {
    color: #fff;
    background-color: #222;

}

.ups img {
    max-width: 300px;
    max-height: 340px;

}


.faqs h4 {
    font-size: 18px;
    color: #dd1b1b;
    padding: 15px 0px;

}

.battery img {
    max-width: 450px;
    max-height: 300px;
    margin: auto;
}

.battery li {
    font-size: 16px;
    margin-left: 25px;
}

.faqs h2 {
    font-size: 32px;
    margin: 40px 0px;
    text-decoration: underline;
    color: #dd1b1b;
    text-transform: uppercase;
    display: block;
}

.solar h2 {
    font-size: 32px;
    margin: 40px 0px;
    text-decoration: underline;
    color: #dd1b1b;
    text-transform: uppercase;
    display: block;


}

/*---------------****************UPS End ************************----------------------*/

/* /////////////////////////////// --Biometric Start --//////////////////////////////*/
.bio {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    transition: all 0.3s ease;
    width: 100%;
    font-family: sans-serif;
}

.bio p {
    text-align: justify;
    padding: 30px 0;
}

.biometric h2 {
    text-align: center;
    color: #dd1b1b;
    padding: 50px 0;
    font-size: 36px;

}

.bcards1 {
    width: calc(40% - 20px);

}

.bcards2 {
    width: calc(60% - 20px);
}

.bcards1 img {
    max-width: 250px;
    text-align: center;
    
}

@media(max-width:768px) {
    .bcards1 {
        width: calc(50% - 20px);
    }

    .bcards2 {
        width: calc(50% - 20px);
    }

}

@media(max-width:500px) {
    .bcards1 {
        width: calc(100% - 20px);
    }

    .bcards2 {
        width: calc(100% - 20px);
    }

}

/* /////////////////////////////// --Biometric End --///////////////////////////////*/
