@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Raleway", sans-serif;
}

.whtsp-btn{
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 10000;
    animation: popup 4s linear infinite;
}
@keyframes popup {
    0%,100%{
        transform: scale(0.9);
    }50%{
        transform: scale(1.1);
    }
}

/* NAVIGATION-------------START--------------HERE------------------ */

.top-row{
    background: #1679BD;
}

nav .nav-bar{
    display: flex;
    align-items:  center;
    justify-content: center;
    list-style: none;
}

nav .nav-active-item{
    margin: 0 15px;
    position: relative;
}

nav .nav-active-link{
    color: #000000;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 4px 0;
    cursor: pointer;
}

nav .nav-active-link:hover{
    color: #1679BD;
}

nav .nav-active-link::before{
    content: "";
    background: #1679BD;
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
}

nav .nav-active-item.active .nav-active-link::before{
    content: "";
    background: #1679BD;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0;
}

nav .nav-active-item.active .nav-active-link{
    color: #1679BD;
}

nav .nav-active-link:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

nav .bttn{
    background: #1679BD;
    width: 170px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    border: 2px solid #1679BD;
    transition: all 0.3s ease-in-out;
}

nav .bttn:hover{
    background: transparent;
    color: #1679BD;
}

nav .nav-show-btn,.nav-hide-btn{
    display: none;
}

nav .drop-down,#drop-down-2,#drop-down-3{
    background: #fff;
    box-shadow: 0 0 10px rgba(196, 196, 196, 0.438);
    position: absolute;
    top: 35px;
    left: 0;
    width: 220px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

nav #drop-1:hover .drop-down{
    opacity: 1;
    visibility: visible;
}

nav #drop-down-2{
    left: 220px;
    top: 0;
}

nav #drop-down-3{
    top: 40px;
    left: 220px;
    visibility: hidden;
}

nav #drop-2:hover #drop-down-2{
    opacity: 1;
    visibility: visible;
}

nav #drop-3:hover #drop-down-3{
    opacity: 1;
    visibility: visible;
}

nav .drop-down li{
    padding: 8px 10px;
    border-bottom: 1px solid rgb(201, 201, 201)
}

nav .drop-down a{
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

nav .drop-down a:hover{
    color:#1679BD;
}

nav .drop-down li.active a{
    color:#1679BD;
}

@media only screen and (max-width: 992px){
    nav .nav-bar {
        display: block;
        width: 300px;
        height: 100%;
        background: #FFF;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 3;
        box-shadow: 0 0 10px rgba(172, 172, 172, 0.74);
        transition: all 0.5s ease-in-out;
    }
    nav .nav-hide{
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1679BD;
        color: #FFF;
        border-radius: 100px;
        font-size: 20px;
        text-decoration: none;
        margin: 15px 15px 50px auto;
    }
    nav .nav-active-item {
        margin: 30px 20px;
    }
    nav .nav-show-btn,.nav-hide-btn{
        display: block;
    }
}
@media only screen and (max-width: 767px){
    .top-row p{
        font-size: 14px;
    }
    nav .bttn{
        display: none;
    }
    nav #drop-down-2{
        left: 25px;
        top: 82px;
    }
    nav #drop-down-3{
        left: 50px;
        top: 82px;
    }
}

/* NAVIGATION-------------EDNS--------------HERE------------------ */

/* BANNER-------------START--------------HERE------------------ */

.banner .banner-content{
    background-image: url(../images/banner-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 80vh;
    position: relative;
    display:flex;
    align-items: center;
}

.banner .banner-content::before{
    content: "";
    background: #0000009a;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner .banner-info{
    width: 85%;
    margin: 0 auto;
}

.banner h1{
    line-height: 0.9;
}

.banner h2{
    line-height: 0.9;
}

.banner .b-btn{
    background: #1679BD;
    color: #FFF;
    text-decoration: none;
    width: 170px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin: 35px auto 0;
    transition: all 0.3s ease-in-out;
}

.banner .b-btn:hover{
    background: #FFF;
    color: #1679BD;
    transform: scale(0.9);
}

@media only screen and (max-width: 1200px){
    .banner h1 {
        font-size: 30px !important;
    }   
    .banner h2 {
        font-size: 30px !important;
    }   
}
@media only screen and (max-width: 992px){
    .banner p {
        font-size: 14px;
    }   
}
@media only screen and (max-width: 767px){
    .banner .banner-info {
        width: 100%;
        padding: 0 10px;
    }   
    .banner h1 {
        font-size: 18px !important;
    }
    .banner h2 {
        font-size: 18px !important;
    }
    .banner p {
        font-size: 13px;
    }
    .banner h3{
        font-size: 16px;
    }
    .banner .b-btn{
        margin-top: 20px;
    }
}

/* BANNER-------------EDNS--------------HERE------------------ */

/* TEXT-------------START--------------HERE------------------ */

.text h2{
    color:#1679BD;
    font-size: 35px;
}

@media only screen and (max-width: 1200px){
    .text .text-content{
        margin: 0 !important;
        padding: 0 !important;
    }
}
@media only screen and (max-width: 992px){
    .text h2 {
        font-size: 25px;
    }
    .text p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .text .text-content{
        margin: 20px 0 !important;
        text-align: center;
    }
}

/* TEXT-------------EDNS--------------HERE------------------ */

/* SERVICES-------------START--------------HERE------------------ */

.service .serv-content{
    background: #1878B9;
    padding: 40px 8px;
    border-radius: 20px 40px 40px 20px;
    height: 350px;
    transition: all 0.3s ease-in-out;
}

.service .serv-content:hover{
    background: #000000;
}

.service h4{
    font-size: 21px;
}

@media only screen and (max-width: 1200px){
    .service p{
        font-size: 14px;
    }
    .service h4{
        font-size: 17px;
    }
    .smart p{
        font-size: 14px;
    }
    .smart h2{
        font-size: 25px  !important;
    }
}
@media only screen and (max-width: 992px){
    .service .serv-content{
        margin: 8px 0;
        height: 300px;
    }
    .smart h2{
        font-size: 18px  !important;
    }
}
@media only screen and (max-width: 767px){
    .service .serv-content{
        height: auto;
    }
    .smart .smart-content {
        text-align: center;
        margin: 15px 0;
    }
}

/* SERVICES-------------EDNS--------------HERE------------------ */

/* COUNTER-------------START--------------HERE------------------ */

.counter{
    background: #1679BD;
    margin-bottom: 60px;
}

.counter h2{
    font-family: "Poppins", sans-serif;
    font-size: 50px;
}

.counter .counter-content{
    border-right: 1px solid #FFF;
    padding: 50px 0;
}

@media only screen and (max-width: 767px){
    .counter h2 {
        font-size: 40px;
    }
    .counter h6{
        font-size: 14px;
    }
    .counter .counter-content {
        padding: 30px 0;
        border-bottom: 1px solid #fff;
    }
    .counter .col-md-3:nth-child(2) .counter-content{
        border-right: 0;
    }
}
/* COUNTER-------------EDNS--------------HERE------------------ */

/* SCAN-------------START--------------HERE------------------ */

.scan{
    background-image: url(../images/banner-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.scan::before{
    content: "";
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.70) 0%, rgba(22, 121, 189, 0.70) 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 992px){
    .scan p{
        font-size: 14px;
    }
    .scan h3{
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px){
    .scan  .scan-content{
        margin: 20px 0;
    }
}

/* SCAN-------------EDNS--------------HERE------------------ */

/* FEATURED-------------START--------------HERE------------------ */

.featured h2{
    color:#1679BD;
    font-size: 35px;
}

.featured .buttn{
    font-weight: 500;
    font-size: 20px;
    margin: 0 20px;
    cursor: pointer;
    border: 2px solid #1679BD;
    padding: 5px 20px;
    border-radius: 100px;
    color: #1679BD;
    transition: all 0.3s ease-in-out;
}

.featured .buttns{
    font-weight: 500;
    font-size: 20px;
    margin: 0 20px;
    cursor: pointer;
    border: 2px solid #1679BD;
    padding: 5px 20px;
    border-radius: 100px;
    color: #1679BD;
    transition: all 0.3s ease-in-out;
}

.featured .buttn.active{
    color: #FFF;
    background: #1679BD;
}

.featured .buttn:hover{
    color: #FFF;
    background: #1679BD;
}

.featured .buttns.active{
    color: #FFF;
    background: #1679BD;
}

.featured .buttns:hover{
    color: #FFF;
    background: #1679BD;
}



.featured h3{
    color: #1679BD;
}

@media only screen and (max-width: 992px){
    .featured .feat-content{
        margin: 0 !important;
    }
    .featured h3 {
        font-size: 20px;
    }
    .featured h2{
        font-size: 20px;
    }
    .featured p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .featured .feat-content{
        text-align: center;
        margin: 20px 0  !important;
    }
    .featured .f-btn{
        margin: 0 auto;
    }
    .featured .buttn{
        margin: 0 7px;
        font-size: 14px;
    }
    .featured .buttns {
        margin: 0 5px;
        font-size: 14px;
    }
    .featured h2
        font-size: 25px;
    }
}

/* FEATURED-------------EDNS--------------HERE------------------ */

/* FAQ-------------START--------------HERE------------------ */

.faq h2{
    font-size: 35px;
}

.faq p{
    margin-top: 10px;
}

.faq .faq-content{
    border: 2px solid #CCCCCC;
    padding: 20px 10px;
}

.faq .accordion-button{
    background: #1679BD;
    color: #FFF;
}

.faq .accordion-button:not(.collapsed){
    background: #000;
    color: #FFF;
    box-shadow: none;
}

.faq .accordion-button::after{
    content: "";
    background-image: url(../images/faq-arrow.svg);
}

.faq .accordion-button:not(.collapsed)::after{
    content: "";
    background-image: url(../images/faq-arrow.svg);
}

@media only screen and (max-width: 1200px){
    .faq h2{
        font-size: 30px;
    }
}
@media only screen and (max-width: 1200px){
    .faq p{
        font-size: 14px;
    }
    .faq h6{
        font-size: 14px;
    }
    .faq h2{
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px){
    .faq h2{
        font-size: 20px;
        text-align: center;
    }
    .faq .faq-content{
        margin: 20px 0;
    }
}
/* FAQ-------------EDNS--------------HERE------------------ */

/* GET-------------START--------------HERE------------------ */

.get{
    background: linear-gradient(180deg,rgba(0, 0, 0, 100) 10%, rgba(22, 121, 189, 100) 100%);
    width: 100%;
    padding: 60px 0;
    width: 99%;
    border-radius: 20px;
    margin: 0 auto;
}

.get p{
    width: 80%;
}

.get .g-btn{
    background: #FFF;
    color: #1679BD;
    width: 150px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
}

.get .g-btn:hover{
    background: #1679BD;
    color: #FFF;
}

@media only screen and (max-width: 992px){
    .get p{
        width: 100%;
        font-size: 14px;
    }
}

/* GET-------------EDNS--------------HERE------------------ */

/* GALLERY-------------START--------------HERE------------------ */

.gallery img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery .swiper-wrapper{
    transition-timing-function: linear !important;
}

/* GALLERY-------------EDNS--------------HERE------------------ */

/* FOOTER-------------START--------------HERE------------------ */

.footer{
    background: #EDEDED;
    padding: 60px 0;
}

.footer .icn{
    width: 40px;
    aspect-ratio: 1/1;
    background: #1679BD;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    margin-right: 8px;
    border: 1px solid #1679BD;
    transition: all 0.3s ease-in-out;
}

.footer .icn:hover{
    background: transparent;
    color: #1679BD;
}

.footer h4{
    color: #1679BD;
    font-size: 22px;
}

.footer li a{
    color: #000;
    text-decoration: none;
    transition: all 0.3s  ease-in-out;
}

.footer li a:hover{
    color: #1679BD;
}

.footer h6{
    font-size: 14px;
    text-decoration: underline;
}

.footer #email{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 2px solid #A5A5A5;
    border-radius: 5px;
}

.footer #email:focus{
    outline-color: #1679BD;
}

.f-btn{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: #1679BD;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    border: 2px solid #1679BD;
    transition: all 0.3s ease-in-out;
}

.f-btn:hover{
    background: transparent;
    color: #1679BD;
}

.pre-footer{
    border-top: 2px solid #7A7A7A;
    background: #EDEDED;
}

@media only screen and (max-width: 1200px){
    .footer h4{
        font-size: 20px;
    }
    .footer li a{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
    .footer h4{
        font-size: 20px;
    }
    .footer li a{
        font-size: 14px;
    }
}

/* FOOTER-------------EDNS--------------HERE------------------ */

/* ABOUT--------------PAGE------------START--------------HERE------------------ */

/* BANNER_2-------------START--------------HERE------------------ */

.banner-2{
    background: linear-gradient(339deg, #1679BD 0%, #000000 100%);
    padding: 60px 0;
}

.banner-2 h2{
    font-size: 45px;
}

@media only screen and (max-width: 767px){
    .banner-2 h2{
        font-size: 35px;
    }
}

/* BANNER_2-------------EDNS--------------HERE------------------ */

/* ABOUT-------------START--------------HERE------------------ */

.about h2{
    color: #1679BD;
    font-size: 40px;
}

.about li{
    width: 200px;
}

@media only screen and (max-width: 1200px){
    .about h2{
        font-size: 30px;
    }
}
@media only screen and (max-width: 992px){
    .about h2{
        font-size: 24px;
    }
    .about p{
        font-size: 14px;
    }
    .about li{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .about img{
        height: auto;
    }
    .about .abt-content{
        text-align: center;
        margin: 20px 0;
    }
    .about .f-btn{
        margin: 0 auto;
    }
    .about li{
        font-size: 12px;
    }
}

/* ABOUT-------------EDNS--------------HERE------------------ */

/* CONTACT-------------START--------------HERE------------------ */

.contact h2{
    font-size: 50px;
}

.contact #name{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 2px solid #A5A5A5;
    border-radius: 3px;
    margin-bottom: 15px;
}

.contact label{
    color: #000;
    font-weight: 400;
    margin-bottom: 5px;
}

.contact label span{
    color: red;
}

.contact #name:focus{
    outline-color: #1679BD;
}

@media only screen and (max-width: 767px){
    .contact h2{
        text-align: center;
        font-size: 40px;
    }
    .contact p{
        font-size: 14px;
        text-align: center;
    }
    .contact .contact-info{
        justify-content: center;
        width: 100%;
    }
}

/* CONTACT-------------EDNS--------------HERE------------------ */

/* PRODUCCT-------------START--------------HERE------------------ */

.product .swiper-pagination-horizontal {
    bottom: -20px !important;
    margin-bottom: 20px;
    position: relative;
}

.product .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.want .container{
    background: #006DB4;
}

.want .w-btn{
    background: #008EDE;
    width: 180px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.info p{
    color:#5C5F61;
    letter-spacing: 1px;
    line-height: 1.6;
    border-bottom: 1px solid #AFAFAF;
}

.info li::marker{
    color: #1679BD;
}

.info li{
    color:#5C5F61;
}

@media only screen and (max-width: 992px){
    .product h2{
        font-size: 25px;
    }
}
@media only screen and (max-width: 767px){
    .product .pro-content{
        margin: 0 0 20px 0 !important;
        text-align: center;
    }
    .product p{
        font-size: 14px;
    }
    .product .f-btn{
        margin: 20px auto 0;
    }
    .want .container{
        text-align: center;
    }
    .want .w-btn{
        margin: 20px auto 0;
    }
    .info p{
        font-size: 14px;
    }
    .info .info-content{
        text-align: center;
    }
    .info li{
        text-align: left;
    }
    .info h3{
        text-align: center;
    }
    .contact h2{
        text-align: center;
    }
}

/* PRODUCCT-------------EDNS--------------HERE------------------ */

/* BLOG-------------START--------------HERE------------------ */

.blog .blog-txt {
    background: #EDEDED;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.blog h4{
    font-size: 21px;
}

.blog img {
    height: 250px;
    border-radius: 10px 10px 0 0;
    margin: 0  !important;
}

.blog .tag {
    font-size: 12px;
    background: #007BFF;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    margin-right: 8px;
}

.blog .date {
    font-size: 12px;
    color: #555;
}

.blog .read-more {
    color: #007BFF;
    cursor: pointer;
}

/*.popup {*/
/*    position: fixed;*/
/*    top: 0; left: 0; right: 0; bottom: 0;*/
/*    background: #FFF;*/
/*    display: none;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 1000;*/
/*}*/

/*.popup h4{*/
/*    color: #000000;*/
/*    font-weight: 600;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.popup p{*/
/*    color: #5C5F61;*/
/*}*/

/*.popup h2{*/
/*    background: #1679BD;*/
/*    padding: 60px 0;*/
/*}*/

/*.popup h3{*/
/*    width: 75%;*/
/*}*/

/*.popup .popup-content {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    max-height: 100vh;*/
/*    overflow-y: auto;*/
/*    text-align: left;*/
/*}*/

/*.popup .popup-info{*/
/*    width: 80%;*/
/*    margin: 0 auto;*/
/*    padding: 60px 0;*/
/*}*/

/*.popup .popup-content img {*/
/*    width: 600px;*/
/*    max-height: 350px;*/
/*    border-radius: 8px;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.popup .popup-content .tag {*/
/*    font-size: 12px;*/
/*    background: #007BFF;*/
/*    color: #fff;*/
/*    padding: 3px 8px;*/
/*    border-radius: 12px;*/
/*    margin-right: 8px;*/
/*}*/

/*.popup .popup-content .date {*/
/*    font-size: 12px;*/
/*    color: #555;*/
/*}*/

/*.popup  .close-btn {*/
/*    position: absolute;*/
/*    top: 10px; right: 10px;*/
/*    cursor: pointer;*/
}

@media only screen and (max-width: 1200px){
    .blog h4{
        font-size: 18px;
    }
    .blog p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 992px){
    .blog p{
        font-size: 16px;
    }
    .blog .blog-content{
        margin: 15px 0;
    }
    /*.popup .popup-content img{*/
    /*    width: 100%;*/
    /*}*/
    /*.popup h3{*/
    /*    width: 100%;*/
    /*}*/
    .details .dtl-content{
        width: 100% !important;
    }
    .details p, ol li{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .blog p{
        font-size: 14px;
    }
    /*.popup .popup-info{*/
    /*    width: 95%;*/
    /*}*/
    /*.popup h3{*/
    /*    font-size: 18px;*/
    /*}*/
    /*.popup h4{*/
    /*    font-size: 18px;*/
    /*}*/
    /*.popup p{*/
    /*    font-size: 14px;*/
    /*}*/
}

/* BLOG-------------EDNS--------------HERE------------------ */

/* USS-------------START-------------HERE------------------ */

.uss span{
    margin: 5px 20px 5px 0;
}

.uss .uss-content{
    margin: 30px 0;
}

@media only screen and (max-width: 1200px){
    .uss h2{
        font-size: 25px;
    }
}
@media only screen and (max-width: 992px){
    .uss h2{
        font-size: 21px;
    }
    .uss p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .uss .uss-content{
        margin: 15px 0;
        text-align: center;
    }
    .uss img{
        height: auto;
    }
    .uss .uss-content .d-flex{
        justify-content: center;
    }
    .uss span{
        font-size: 14px;
    }
}

/* USS-------------EDNS--------------HERE------------------ */

/* ABOUT--------------PAGE------------EDNS--------------HERE------------------ */
