@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}

a{
    text-decoration: none;

}
:root {
    --bg-color:#ffffff;
    --second-bg-color: #d9d9d9;
    --text-color2: #000000;
    --text-color: #172e60;
    --main-color: #00aeef;
    --icon-color: #172e60;
    --icon-color2: #172e60;
}

html{
    font-size: 62.5%;
}

body{
    color: var(--text-color);

}

.contact-number{
    padding: 2rem 9% 2rem;
    text-align: right;
    font-size: 1.5rem;
    background-color: var(--bg-color);
    text-decoration: none;
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: end;
}
.contact-number a, i{
    color: var(--main-color);
    cursor: pointer;
    transition: 3s ease;
    animation: contactNo 3s linear 1s infinite;
}
.contact-number button{
    cursor: pointer;
    color: var(--main-color);
    background:white;
}

#tarrifmobile{
    display:none;
}


@keyframes contactNo{
    0%{
        color: var(--text-color);
    }
    50%{
        color: var(--second-bg-color);
    }
    100%{
        color: var(--main-color);
    }
    
}


.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    margin-top: 50px;
    background:var(--icon-color);
    display: flex;
    justify-content:space-between;
    align-items: center;
    z-index: 100;
    transition: .5s;
}

.header.sticky{
    background:var(--icon-color);
    margin-top: 0;
    border-bottom: 3px solid var(--main-color);
}

.logo{
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.logo img{
    width: 160px;
    height: 60px;

}

.navbar a{
    font-size: 1.7rem;
    color: var(--bg-color);
    font-weight: 500;
    margin-left: 2.5rem;
    transition: 0.3s;
}

.active a:hover{
    color: var(--main-color);
}

.navbar a:hover,
.navbar a.active{
    color: var(--main-color);
}
.notification{
    position: relative;
}

.notification::after{
    content: attr(current-count);
    position: absolute;
    top: -5px;
    left: 59px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}


#menu-icon{
    font-size: 3.6rem;
    color:var(--bg-color);
    cursor: pointer;
    display: none;

}

.head-line{
    width: 100%;
    font-size: 1.7rem;
    height: 45px;
    margin-top: 100px;
}

/* popups top close icons and quick pay icon */

#quickpay{
    border: 1px solid #00aeef;
    border-radius: 5px;
    padding: 3px 6px;
    background: #086fac;
}

.popuptop{
    box-sizing: border-box;
}
.popuptop img{
    height: 40px;
}
.popupclose{
    padding: 5px;
    background-color: gray;
    border-radius: 50%;
    float: right;
    transition: 1s ease;
}
.popupclose:hover{
    background-color: rgb(222, 222, 222);
    cursor: pointer;
}

/* Style for the popup container */
.popup {
    display: none;
    position: fixed;
    background: #003347cf;
    height: 63vh;
    width: 45vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    border: 1px solid #00aeef;
    transition: 100s ease-in;
    padding: 20px;
    z-index: 1000;
}
.popup h2{
    font-size: 2.2rem;
    font-weight: 600;
    padding-bottom: 20px;
    color: #00aeef;
    font-family: 'poppins', sans-serif;
}
.popup label{
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'poppins', sans-serif;
}
.popup input{
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    background-color: rgba(105, 104, 104, 0.808);
    border: none;
    border-radius: 5px ;
    padding: 10px;
    margin-bottom: 20px;
    outline: none;
    caret-color: #00aeef;
}

.popup button{
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #00aeef;
    border: none;
    border-radius: 5px ;
    padding: 10px;
    margin-bottom: 20px;
    transition: 0.2s ease;
}
.popup button:hover{
    font-size: 1.7rem;
    cursor: pointer;
}

.img-bk{
    padding: 5px 30%;
}

/* Style for the overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.772);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 999;
}
/* quick pay popup style end */

section{
    min-height: 70.8vh;
    padding: 10rem 9% 2rem;
}


.home{
    /*margin: 0;*/
    padding: 0;
    height: 76vh;
    display: flex;
    margin-top: 98px;
  
  }
  
  .slider{
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  .slides{
    width: 500%;
    height: 500px;
    display: flex;
  }
  
  .slides input{
    display: none;
  }
  
  .slide{
    width: 20%;
    transition: 2s;
  }

.bg-image1{
    background-image: url(../images/slide11.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.bg-image2{
    background-image: url(../images/slide22.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.bg-image3{
    background-image: url(../images/slide33.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.bg-image4{
    background-image: url(../images/slide44.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.slide-content{
    padding: 10rem 9% 2rem;
    color: var(--bg-color);
    text-align:left;
}

/*.slide .slide-content{*/
/*    display: grid;*/
/*    grid-template-columns: 60% 40%;*/



.slide h1{
    color: var(--bg-color);
    font-size: 3.5rem;
    text-shadow: 4px 4px  rgba(0,0,0,0.7);
    padding-bottom:10px;
}
.slide h2{
    font-size: 2.5rem;
    padding-bottom:10px;
}
.slide h3{
    font-size: 3rem;
    color: var(--icon-color2);
    animation: contactNo 3s linear 1s infinite;
    padding-bottom:10px;
}
.slide h4{
    font-size: 1.7rem;
    color: var(--bg-color);
    padding-bottom:10px;
}
.slide-getnow a{
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--bg-color);
    font-size: 2rem;
    line-height: 7rem;
}

  
  /*css for manual slide navigation*/
  
  .navigation-manual{
    position: absolute;
    width: 100%;
    margin-top: -50px;
    display: flex;
    justify-content: center;
  }
  
  .manual-btn{
    border: 2px solid var(--main-color);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .manual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .manual-btn:hover{
    background: var(--main-color);
  }
  
  #radio1:checked ~ .first{
    margin-left: 0;
  }
  
  #radio2:checked ~ .first{
    margin-left: -20%;
  }
  
  #radio3:checked ~ .first{
    margin-left: -40%;
  }
  
  #radio4:checked ~ .first{
    margin-left: -60%;
  }
  
  /*css for automatic navigation*/
  
  .navigation-auto{
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 450px;
  }
  
  .navigation-auto div{
    border: 2px solid var(--main-color);
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }
  
  .navigation-auto div:not(:last-child){
    margin-right: 40px;
  }
  
  #radio1:checked ~ .navigation-auto .auto-btn1{
    background: var(--main-color);
  }
  
  #radio2:checked ~ .navigation-auto .auto-btn2{
    background: var(--main-color);
  }
  
  #radio3:checked ~ .navigation-auto .auto-btn3{
    background: var(--main-color);
  }
  
  #radio4:checked ~ .navigation-auto .auto-btn4{
    background: var(--main-color);
  }
  


  /*--- slider section end ------*/
.btn-box{
    position: relative;
    display: inline-block;
    justify-content: center;
    height: 5rem;
}
.btn-box .btn{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    background: var(--main-color);
    border: 0.2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: var(--bg-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box .btn:hover{
    color: var(--main-color);
} 

.btn-box .btn:nth-child(2){
    background: transparent;
    color: var(--main-color);
}


.btn-box .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}
.btn-box .btn:hover::before{
    width: 100%;
} 


/* .home-imghover:hover{
    background: var(--bg-color);
    opacity: .8;
} */

.about{
    gap: 2rem;
    background: var(--bg-color);
    padding-bottom: 6rem;

}

.about .about-row .about-discription{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.heading{
    font-size: 5rem;
    margin-bottom: 4rem;
    text-align: center;
}

span{
    color: var(--main-color);
}


.about-img{
    position:relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display:flex;
    justify-content: center;
    align-items: center;

}

.about-img img{
    width: 90%;
    border-radius: 50%;
    border: .2rem solid var(--main-color);
}
.about-img .circle-spin{
    position:absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: .2rem solid var(--bg-color);
    border-bottom: .2rem solid var(--bg-color);
    border-left: .2rem solid var(--main-color);
    border-right: .2rem solid var(--main-color);
    animation: aboutSpinner 8s linear infinite;
}

.about-content{
    text-align: center;

}
.about-content h3{
    font-size: 2.6rem;
}
.about-content p{
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.features{
    background: var(--second-bg-color);
}

.choose-us{
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
    padding: 10px 0px;
    box-shadow: 5px #00000079;
    margin-top: 10rem;
  }
  
  .choose-us .items{
    background-color: var(--bg-color);
    border: 1px solid var(--main-color);
    text-align: center;
    font-weight: 300;
    font-size: 1.5rem;
    padding: 10px 0px;
    display: inline-block;
    justify-content: space-between;
    transition: 1s;
    
  }

.items:hover{
    background: var(--main-color);
    color: var(--bg-color);
    transition: 1s;
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}



  .items i{
    font-size: 3rem;
    color: var(--icon-color2);
    transition: 0.6s;
    padding: 2rem 4%;
  }

  .items:hover{
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2);
    transform: scale(1.1);
    z-index: 2;
}



/* .btn-box .btns {
    display: inline-block;
    width: 15rem;
}
.btn-box .btns a::before{
    background: var(--second-bg-color);
} */

.offers{
    background: var(--bg-color);
    position: relative;
    padding: 50px 0;
    display: grid;
    grid-template-columns: auto;
    justify-content: center;
    align-items: center;
}

.cards{
    flex-wrap: wrap;
    background-image: url(../images/ftthcard.png);
    border-radius: 10px 10px 10px 10px;
    height: 360px;
    transition: 0.5s;
}
.cards:hover{
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2);
    transform: scale(1.1);
    z-index: 2;
}

.card-content{
    text-align: center;
    padding: 20px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-content h3{
    font-size: 2.5rem;
    color: var(--bg-color);

}
.card-content h4{
    font-size: 1.5rem;
}

.card-content h2{
    font-size: 5rem;
    margin: 20px 0px;
    color: var(--bg-color);
}

.card-content a{
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    border: none;
    background: var(--main-color);
    font-size: 1.6rem;
    color: var(--bg-color);
    text-transform: uppercase;
    margin-top: 50px;
    transition: 0.4s;
}

.card-content a:hover{
    background: var(--icon-color2);
    color: var(--main-color);
}

.loading{
    margin-top: 50%;
    font-size: 2rem;
    animation: loading 2s linear 1s infinite;
}
@keyframes loading{
    0%{
        color: var(--text-color2);
    }
    33%{
        color: rgb(128, 128, 128);
    }
    66%{
        color: var(--text-color);
    }

    
}


.service{
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 5rem;
    background: var(--second-bg-color);
}

.service .service-row{
    justify-content:center;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 5rem;
}



.service-row .service-column{
    flex: 1 1 40rem;
}




.service-column .title{
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}


.service-column .service-box{
    border-left: .2rem solid var(--icon-color);
    align-self: normal;
    height: 320px;
    margin-bottom: 2.5rem;
}

.service-box .service-content{
    position: relative;
    padding-left: 2rem;
}

.service-box .service-content::before{
    content: '';
    position:absolute;
    top: 0;
    left: -1.1rem;
    width: 2rem;
    height: 2rem;
    background: var(--icon-color);
    border-radius: 50%;
}

.service-content .content{
    position: relative;
    padding: 1.5rem;
    border: .2rem solid var(--main-color);
    height: 320px;
    border-radius: .6rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.service-content .content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .5s;
}

.service-content .content:hover::before{
    width: 100%;
}
.content:hover{
    color: var(--bg-color);
}

.service-content .content .ser-icon{
    font-size: 5rem;
    text-align: center;
    color:var(--icon-color);
    padding-bottom: .5rem;
}
.content:hover{
    color: var(--bg-color);
}

.service-content .content .ser-icon i {
    padding-right: .5rem;
}
.service-content .content h3{
    font-size: 2rem;
    text-align:center;
}

.service-content .content p{
    font-size: 1.6rem;
    padding-top: .5rem;
}
.service-content .content h1{
    font-size: 2.3rem;
}

.service-content .content ul li{
    font-size: 1.6rem;
}
.service-content .content ul{
    padding-left: 2rem;
    padding-top: 1.5rem;
}




.price{
    box-sizing: border-box;
    align-items: center;
    background: var(--bg-color);
    min-height: auto;
    padding-bottom: 5rem;
}

.price .price-row{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10rem;
}


.price-row .price-column{
    flex: 1 1 40rem;
}

.price-row .price-column::before{
    background: var(--main-color);
    top: 100%;
    bottom: 100%;

}

.price .price-row .price-column{
    display: none;
}

.price .price-row .price-column:nth-child(1),
.price .price-row .price-column:nth-child(2),
.price .price-row .price-column:nth-child(3){
    display: inline-block;
}



.price-column{
    background: var(--bg-color);
    padding: 40px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2);
    transition: 0.6s;
    
}

.price-column:hover{
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2);
    transform: scale(1.1);
    z-index: 2;
}


.table .price-section{
    display: flex;
    justify-content: center;
}

.price-section .price-area{
    height: 140px;
    width: 140px;
    background: var(--icon-color);
    border-radius: 50%;
    padding: 2px;
}
.price-section .price-area .bandwidth {
    height: 100%;
    width: 100%;
    background: var(--text-color);
    border-radius: 50%;
    border: 3px solid #ffffff;
    text-align: center;

}
.price-area .bandwidth{
    font-size: 40px;
    font-weight: 600;
    line-height: 117px;
    text-align: center;
}
.bandwidth{
    color: var(--bg-color);
}
.bandwidth span{
    font-size: 25px;
}


.table{
    text-align: center;
}
.table .package-name{
    width: 100%;
    height: 2px;
    background: var(--text-color);
    margin: 35px 0;
    position: relative;

}
/* .table .package-name::before{
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
} */

.basic .package-name::before{
    position: absolute;
    content: "Basic";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
}


.standerd .package-name::before{
    position: absolute;
    content: "Standerd";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
}
.ultimate .package-name::before{
    position: absolute;
    content: "Ultimate";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
}
.plutinum .package-name::before{
    position: absolute;
    content: "Plutinum";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
}
.easy .package-name::before{
    position: absolute;
    content: "Easy";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
}
.solo .package-name::before{
    position: absolute;
    content: "Solo";
    left: 50%;
    top: 50%;
    padding: 0 15px;
    background: var(--bg-color);
    font-size: 25px;
    font-weight: 500;
    transform: translate(-50%, -50%);
}


.table .pkg-btn a{
    height: 50px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    background: var(--text-color);
    border-radius: 25px;
    padding: 10px 30px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
}

.pkg-btn a:hover{
    background: var(--main-color);
    color: var(--icon-color);
}
.inner-area{
    text-align: center;
}
.inner-area .text{
    font-size: 20px;
    font-weight: 400;
    color: var(--main-color);
    top: -10px;
}

.inner-area .tk{
    font-size: 40px;
    font-weight: 600;
    color: var(--main-color);
}
.inner-area .per{
    font-size: 20px;
    font-weight: 400;
    color: var(--main-color);
    bottom: -10%;
}
.inner-area p{
    padding-bottom: 50px;
    font-size: 9px;
    margin-top: 6px;
    letter-spacing: 3px;
}

.price .btn-box{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paybill{
    background: var(--second-bg-color);
    min-height: auto;
    padding-bottom: 5rem;
}

.paybill .paybill-row{
    display: grid;
    grid-template-columns: auto;
}
.paybill-column img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.paybill-column .title{
    font-size: 2.5rem;
    margin: 4rem 0 1.5rem 0;
}


/* #see-more{
    display: block;
    width: 180px;
    margin: 20px auto;
    padding: 10px 30px;
    border: 1px solid var(--main-color);
    color: var(--text-color);
    font-size: 16px;
    background-color: var(--main-color);
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
}

#see-more:hover{
    background-color: var(--bg-color);
    color: var(--main-color);
} */

.contact{
    min-height: auto;
    padding-bottom: 7rem;
}

.contact .heading{
    font-size: 5rem;
    margin-bottom: 5rem;
    text-align: center;
}



.contact .contact-row{
    display: flex;
    justify-content: space-between;
}
.contact-row{
    padding-top: 30px;
}

.contact-column .contact-title{
    font-size: 2.5rem;
    margin: 0 0 1.5rem; 

}

.vigitor-head{
    font-size: 1.3rem;
    color: #00ff00;
}

.visitor_counter{
    color: var(--second-bg-color);
}


.contact-column{
    display: flex;
    flex-direction: column;
}
.contact-sci{
    bottom: 4rem;
    width: 50%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

.contact-sci a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 3rem;
    background: transparent;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--main-color);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.contact-sci i{
    padding: 10px;
}

.contact-sci a,i:hover{
    color: var(--bg-color);
    transition: 0.5s;
}

.contact-sci a::before{
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    left: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .5s;

}

.contact-sci a:hover::before{
    width: 100%;

}

.contact-column .contact-info ul{
    list-style: none;
}

.contact-column .contact-info ul li{
    font-size: 2.3rem;
}

.contact-column .contact-info ul li a, p{
    margin-top: 3rem;
    padding-left: 1.2rem;
    font-size: 1.7rem;
    color: var(--text-color);
    overflow-wrap: normal;
}
.contact-column .contact-info ul li a:hover{
    color: var(--main-color);
}

.contact-column form{
    float:right;
    max-width: 45rem;
    margin: 0 auto;
    text-align: center;
    align-items: center;

}
.contact-column form .input-box{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
.contact-column form .input-box .input-field{
    position: relative;
    width: 49%;
    margin: .8rem 0;
}


.contact-column form .input-box .input-field input,
.contact-column form .textarea-field textarea{
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
}

.contact-column form .input-box .input-field input::placeholder,
.contact-column form .textarea-field textarea::placeholder{
    color: var(--text-color);
}

.contact-column form .focus{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;
}

.contact-column form .input-box .input-field input:focus~.focus,
.contact-column form .input-box .input-field input:valid~.focus,
.contact-column form .textarea-field textarea:focus~.focus,
.contact-column form .textarea-field textarea:valid~.focus{
    width: 100%;
}



.contact-column form .textarea-field{
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
}


.contact-column form .textarea-field textarea{
    resize: none;
}

.contact-column form .btn-box.btns .btn{
    cursor: pointer;
}

.thankyou{
    background: var(--bg-color);
    color: var(--text-color);
    align-items: center;
    margin-top: 40vh;

}
.thankyou h1{
    font-weight: 600;
    text-align: center;
}
.back{
    padding-top:2.5rem;
    font-size:1rem;
    text-align:center;
}

.back a:hover{
    color: var(--main-color);
}



/* .footer{
    text-align: center;
    background: var(--second-bg-color);
}

.footer-text p{
    font-size: 1.6rem;
} */

.footer-iconTop{
    margin-bottom: 3rem;
}

.footer-iconTop a{
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    z-index: 1;
    overflow: hidden;
    scroll-behavior: smooth;
}
.footer-iconTop a::before{
    content: '';
    position:absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.footer-iconTop a:hover::before{
    width: 100%;
}


.footer-iconTop a i{
    font-size: 2.4rem;
    color: var(--bg-color);
}

.footer-iconTop a i:hover{
    color: var(--main-color);
} 



/* footer section style start */
.container{
	max-width: 1170px;
	margin:5rem;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}

#tarrifmobile{
    display:none;
}
.footer{
	background-color: #24262b;
    padding: 70px 4rem;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

.footer-col button{
    font-size: 16px;
    cursor: pointer;
    color: #bbbbbb;
    background:none;
    transition: all 0.3s ease;
}

.footer-col button:hover{
	color: #ffffff;
	padding-left: 8px;
}

.row img{
    width: 90%;
    margin: 30px auto auto auto;
    padding-top: 30px;
    border-top: 1px solid gray;
}

.copyright{
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 30px;
    color: #bbbbbb;
    margin: auto;
    font-size: 1.5rem;
}
/* .copy{
    padding-right: 200px;
} */

.copy{
    text-align: center;
}
.copy p{
    color: #bbbbbb;
}

.copy span{
    color: var(--main-color);
    font-size: 1.3rem;
}

.copy span  a{
    text-decoration: none;
    color: #00a7ff;
}

ul li .two2{
    border-right: 2px solid gray;
    border-left: 2px solid gray;
    padding: 0px 10px;
    margin: 0px 10px;
}

.terms ul li{
    display: inline-block;
    text-decoration: none;
    color: #bbbbbb;
    font-size: 1.5rem;
}
.terms ul li a{
    text-decoration: none;
    color: #bbbbbb;
}
.terms-condition{
    margin: 5rem;
}
.terms-condition h2{
    font-size: 2.3rem;
}
.terms-condition h3{
    font-size: 2rem;
}
.terms-condition p{
    font-size: 1.5rem;
    padding: 10px 0px;
}


/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
.copy{
    padding: 20px 0px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}

}
/* footer section style end */






/* BREAK POINT */

@media (max-width: 1200px) {
    html{
        font-size: 55%;
    }
}

@media (max-width: 991px){
    .header{
        padding: 2rem 4%;
    }
    section{
        padding: 10rem 4% 2rem;
    }
    .home{
        padding: -1px 5%;

    }

    .footer{
        padding: 2rem 4%;
    }
}

@media (max-width: 768px){
    .header{
        background: var(--text-color);
    }
    
    .home{
        height: 50vh;
    }
    #menu-icon{
        display: block;
    }
    #tarrif{
        display:none;
    }
    #tarrifmobile{
    display:inline-block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        background: var(--main-color);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
        transition: .25s ease;
        transition-delay: .25s;
        z-index: 1;
    }


    .navbar.active{
        left: 0;
        transition-delay: 0s;
    }
    .navbar .active-nav{
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--icon-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        z-index: -1;
        transition: .25s ease;
        transition-delay: 0s;
    }
    .navbar.active .active-nav{
        left: 0;
        transition-delay: .25s;
        color: var(--main-color);
    }
    .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        transform: translateX(-20rem);
        transition: .25s ease;
        transition-delay: 0s;
    }
    .navbar.active a{
        transform: translateX(0);
        transition-delay: .25s;
    }
    
    .bg-image1{
    background-image: url(../images/slide.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.bg-image2{
    background-image: url(../images/slide.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.bg-image3{
    background-image: url(../images/slide.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
.bg-image4{
    background-image: url(../images/slide.png);
    width: 20%;
    height: 500px;
    background-size: cover;
}
    
    .home-imghover{
        pointer-events: none;
        background: var(--bg-color);
        opacity: .6;
    }
    .service .service-row{
        display: grid;
        grid-template-columns: auto auto;
        gap: 7rem;
    }
    
    .service-column .service-box{
            height: 197px;
    }
    .service-content .content{
            height: 197px;
    }


    .price .price-row{
        display: grid;
        grid-template-columns: auto auto;
        gap: 7rem;
    }
    .choose-us{
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 10px;
        padding: 10px 0px;
        margin-top: 10rem;
    }
    .service-content .content h3{
        font-size: 2rem;
        text-align:center;
    }
    
    .contact .contact-row{
        flex-direction:column;
    }
}

@media (max-width: 520px){
    html{
        font-size: 50%;
    }
    .home-content h1{
        display: flex;
        flex-direction: column;
    }
    .home-sci{
        width: 160px;
    }
    .home-sci a{
        width: 38px;
        height: 38px;
    }
    .choose-us{
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
        padding: 10px 0px;
        margin-top: 10rem;
    }
    
    .contact form .input-box .input-field{
        width: 100%;
    }
}
@media (max-width: 462px){
    .home-content h1{
        font-size: 5.2rem;
    }

    .contact form .input-box .input-field{
        width: 100%;
    }
    .service .service-row{
        display: grid;
        grid-template-columns: auto;
        gap: 7rem;
    }


    .price .price-row{
        display: grid;
        grid-template-columns: auto;
        gap: 7rem;
    }
    .footer{
        flex-direction: column-reverse;
    }
    .footer p{
        margin-top: 2rem;
        text-align: center;
    }

    .choose-us{
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
        padding: 10px 0px;
        margin-top: 10rem;
      }
}

@media (max-width: 371px){
    .home{
        justify-content: center;
    }
    .home-content{
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .contact-column p{
        width: 98%;
    }
    iframe{
        width: 330px;
    }
}


/* text animation keyframes */

@keyframes homeBgText {
    0%,
    10%,
    100%{
        background-position: -19.7rem 0;
    }

    65%,
    85%{
        background-position: 0 0;
    }
}

@keyframes homeCursorText {
    0%,
    10%,
    100%{
        width: 0;
    }

    65%,
    78%,
    85%{
        width: 100%;
        opacity: 1;
    }
    75%,
    81%{
        opacity: 0;
    }
}



@keyframes aboutSpinner {
    100%{
        transform: translate(-50%, -50%) rotate(360deg);    
    }
    
}



.reveal{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 2s ease;
  }
  
  .reveal.active{
    transform: translateY(0px);
    opacity: 1;
  }