@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500&family=Roboto:wght@300;400;500;700;900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 2px solid black; */
}
body{
    /* font-family: 'Lato', sans-serif; */
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    color: #000;
    background-color: rgba(220, 220, 220, 0.425);
}

p{
    text-align: justify;
    /* font-weight: 600; */
}
a{
    text-decoration: none;  
}

/* header-section-start-here   */

.header_section .navbar-nav .nav-item .nav-link.active{
   font-weight: 900;
   color: #efa51c;
}
.navbar{
    position: relative;
}
.header_section{
    background-image: url("../images/header-bg.png");
}
.navbar-toggler{
    border:2px solid #02fffc;
    padding: 5px 10px;
}
.navbar-toggler-icon{
font-size: 20px;
padding: 5px;
}


.header_section .navbar-nav{
    /* background: linear-gradient(to right, #4f9b1ab8, #91fb8e); */
    background: #1c413c !important;
}  
.header_section .navbar-brand{
    /* background: linear-gradient(to right, #4f9b1ab8, #4f9b1ab8); */
    background: #1c413c;
    color: #000;
    padding: 2px 15px;
    font-size: 32px;
    font-weight: 900;
    z-index: 1000;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px; 
    margin-right: -0.5px;
}
.nav-item:active{
   font-weight: 900;
}
.header_section .navbar-nav .nav-item .nav-link{
    color: #fff;
    text-transform: uppercase;
    padding: 20px 45px;
    font-weight: 600;
}
.banner-btn a{
    background-color: #1c413c;
    color: #fff;
    border-radius: 5px;
    padding: 8px 20px;
}
.banner-btn a:hover{
    background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
    color: #000;
   font-weight: 900;
}
.banner-content-box h1{
    font-weight: 800;
    font-size: 48px;
    /* max-width: 500px; */
}
.phone_icon{
    background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    padding: 6px;
    position: absolute;
    left: 82.50%;
    z-index: 10;
    bottom: 28px;
}
.navbar_btn{
    padding: 8px 25px;
    position: absolute;
    right: 30px;
    font-weight: 900;
}
.banner_img{
    border-radius: 20px;
}
 /* header-section-ends-here */

 /* hero--section-start-here  */
 .hero_content_box h2{
    font-weight: 800;
    font-size: 48px;
 }
 .hero_but-box p a: hover{
	color:#000; 
 }
 .hero_section{
    background-image: url("../images/hero-bg.png");
 }
 /* hero--section-ends-here  */


 /* card-section-start-here */
 .card_section{
    background-color: rgba(220, 220, 220, 0.233);
 }
 .card_section .card_content_box h2{
    font-weight: 700;
    font-size: 48px;
 }
 .card_section .card_content_box{
    max-width: 400px;
    text-align: center;
 }
.card_section .card{
    height: 350px;
    width: 250px;
    border: none;
 }
.card_section .card:hover{
    border-bottom: 10px solid transparent;
    border-image:linear-gradient(to right, #4f9b1ab8, #91fb8e);
    border-image-slice: 1;
 }
 .card_section .card-body{
    background-color: #1c413c;
	color:#fff;
 }
.card_section .card-title{
    font-weight: 700;
 }
 .card_section .card img{
    height: 40%;
 }
 .card_section .card:hover img{
    transform: scaleX(1.05);
 } 
.card_section .card-text{
    font-size: 10px;
 }

 /* card-section-ends-here */

 /* package-section-start-here  */
 .package_section{
    background-color: rgba(220, 220, 220, 0.158);
 }
 .package_heading{
    font-weight: 800;
    font-size: 48px;
 }
 .card_btn{
    /* background: linear-gradient( to right, #f5ff0b 30% , #02fffc ); */
    background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
    color: #000;
    border-radius: 30px;
    padding: 8px 30px;
    font-weight: 900;
}
.package_section .card{
    width: 310px;
    height: 100%;
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 80px;
    background-color: #fff;
    
}
.package_section .card img{
    margin-left: 25%;
    margin-top: -30px;
}
.package_section .card .card-title{
    font-weight: 900;
}
.pricing-w3-agileits-title{
    font-weight: 900;
    font-size: 26px;
}
.package_list{
  font-weight: 700;
  line-height: 2;
}
.text-small{
    font-size: 22px; 
    font-weight: 700;
}
.package_section .card:hover {
    background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
    box-shadow: 10px 5px 5px rgb(24, 24, 24);
}

.card:hover .card_btn{
   background: white;
}
/* .card:hover .card-image-bg{
   animation: spin 4s linear infinite;
}
.card:hover .card-image-bg img{
   animation-name: spin;
   animation-duration: 4s;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
} */
@keyframes spin{
   0%{
      rotate: 0;
   }
   100%{
      rotate: -360deg;
   }
}

.card-image-bg{
   width: 120px;
   height: 120px;
   border-radius: 50%;
   border: 3px solid #5e3f00b2;
   outline: 2px dashed black;
   margin-top: -30px;
   padding-right: 32px;
   padding-top: 32px;
}


 /* package-section-ends-here  */


 /* service-section-start-here  */
 .service_section{
    background-image: url("../images/pattern.png");
 }
 .service_heading{
    font-weight: 800;
    font-size: 48px;
 }
 .service_btn{
    background-color: #1c413c;
    color: #fff;
    border-radius: 20px;
    padding: 8px 30px;
    font-weight: 700
}
.service_btn:hover{
    background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
    color: #000;
}
.nav-tabs .nav-link {
   background: 0 0;
   border: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
   color: #000;
   background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
   border:none;
}
.nav-tabs {
   border-bottom: none;
}

.nav-tabs .service_btn{
   background-color: #1c413c;
   color: #fff;
   border-radius: 20px;
   padding: 8px 30px;
   font-weight: 700
}
.service_btn:hover{
   background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
   color: #000;
}
.nav-tabs .nav-item{
   margin-right: 5px;
}
 /* service-section-ends-here  */

 /* contact-section-start-here  */
 input{
    width: 200px;
 }
 .contact_section input,textarea{
    border: 1px solid rgb(128 128 128 / 11%);
    padding: 5px;
    background-color:#fff ;

 }
 .contact_section input,textarea::placeholder{
    font-weight: 200;
    color: #000;
 }
 .contact_heading{
    font-weight: 800;
    font-size: 48px;
 }
 .contact_section{
    background-image: url("../images/contact-bg.png");
 }
 .form_button{
    background: linear-gradient(to right, #f5ff0b 30% , #02fffc);
    text-align: center;
    width: 410px;
 }
 .form_button button{
  border: none;
  padding: 10px 0px;
  background-color:  transparent;
 }
 /* contact-section-ends-here  */

 /* location-section-start-here */
 .location_section{
    margin-bottom: -200px;
 }
 .address_box{
    /* background: linear-gradient(to right, #4f9b1ab8, #91fb8e); */
    background: #efa51c;
	color:#000;
 } 
 .address_box li a:hover {
    color: #fff !important;
}
 .icon{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #437f20;
    align-items: center;
 }
 .info strong{
    font-weight:900;
    font-size: 18px;
 }
 .info p,a{
    color: #000;
    font-weight: 500;
 }
  .info1 {
    color: #fff;
    font-weight: 500;
 }
 .location-button{
    position: absolute;
    top: 0px;
    background-color: #000;
    color: #fff;
    border: none;
    border-top-right-radius: 40px;
    padding: 10px 20px;
 }


 /* location-section-ends-here */

 /* footer-section-start-here  */
 .footer_section{
    /* background-image: url("../images/footer-bg.png");
     */
     background-color: #1c413c;
    color: #fff;
    background-size: cover;
 }
 .footer_section hr{
    height: 5px;
    align-items: center;
	background: #efa51c ;
 }
 .footer_list{
    list-style: none;
 }
 .footer_list li a{
   color: #fff !important;
   line-height: 2.5;
 }
 .footer_links a{
   color: #fff !important;
 }
 .theme-btn {
        border: none;
        background-color:  transparent;
        background: linear-gradient(to right, #f5ff0b 30% , #02fffc);
        text-align: center;
        padding: 3px 8px;
        border-radius: 5px;
        font-weight: 700;
 }
 .form-group input{
        border: none;
        padding: 3px 8px;
        background: transparent;
 }
 .form-group{
        border: 1px solid #fff;
        padding: 3px;
        border-radius: 2px;
        width: 68%;
 }
 /* footer-section-ends-here  */

/* hdtv style  */
/* movie-section-start-here  */
.movie-content-box h1{
   font-weight: 800;
   font-size: 48px;
}
.movie-content-box p a{
   color: #000;
   font-weight: 900;
}
/* movie-section-ends-here  */
/* feature-section-start-here  */
.feature_section h2{
   font-weight: 800;
   font-size: 48px;
}
.feature_section h3{
   font-weight: 800;
   /* font-size: 32px;/ */
}
.feature_section h5{
   font-weight: 500;
   /* font-size: 48px; */
}
.features-wrap {
   background: #fff none repeat scroll 0 0;
   border-radius: 10px;
   margin-bottom: 50px;
   padding: 20px 25px 13px;
}
.features-wrap:hover {
   /* background: linear-gradient( to right, #f5ff0b 30% , #02fffc ); */
   background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
   border-radius: 10px;
   margin-bottom: 50px;
   padding: 20px 25px 13px;
   box-shadow: 0 7px 10px -3px gray;
   transition: 1s ease;
}
/* feature-section-ends-here  */


/* internet style  */
/* hero-section-start-here  */
.hero_but-box{
   position: relative;
   background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
   border-radius: 60px;
   padding: 20px 400px 20px 20px;
}
.call-para{
   font-weight: 900;
   font-size: 22px;
}
.call-para a{
   font-weight: 900;
   font-size: 18px;
}
.call-para span{
   background-color: #fff;
   padding: 2px 5px;
   border-radius: 10px;
}

.girl_image{
   position: absolute;
   right: 30px;
   bottom: 0;
}
/* hero-section-ends-here  */
/* internet_feature-section-start  */
.internet_feature_section h2{
   font-weight: 800;
   font-size: 48px;
}
.internet_feature_section h3{
   font-weight: 600;
  
}
.internet_feature_section .buffer_content h3{
   font-weight: 800;
   /* font-size: 32px;/ */
}
.internet_feature_section h5{
   font-weight: 500;
   /* font-size: 48px; */
}
.internet_features-wrap {
   background: #fff none repeat scroll 0 0;
   border-radius: 10px;
   margin-bottom: 50px;
   padding: 20px 25px 13px;
}
.internet_features-wrap:hover {
   background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
   border-radius: 10px;
   margin-bottom: 50px;
   padding: 20px 25px 13px;
   box-shadow: 0 7px 10px -3px gray;
   transition: 1s ease;
}
/* internet_feature-section-ends  */
/* buffer-section-start-here  */
.buffer_content-box{
   background-image: url("../images/bg-map.png");
   background-repeat: no-repeat;
} 
.buffer_content h3{
   font-weight: 800;
   /* font-size: 32px; */
}
.buffer_content p{
   font-weight: 400;
   opacity: 0.7;
   /* font-size: 32px; */
}
.buffer_content{
   max-width: 500px;
   margin-left: 100px;
   padding-top: 80px;
}
/* buffer-section-ends-here  */

/* Deals-section-start-here  */
.deals_content{
   background-color: #000;
   color: #fff;
   border-radius: 32px;
   position: relative;
}
.deals_content h3{
   font-size: 28px;
   font-weight: 700;
}
.deals_content p{
   font-weight: 100;
   opacity: 0.9;
   text-align: center;
}
.deals_image1{
   /* position: absolute; */
   margin-top: 110px;
margin-bottom: -20px;
}
.deals_image2{
   position: absolute;
   top: -1px;
   right: -20px;
}
.deals_image3{
   position: absolute;
   top: 0px;
   right: -32px;
}
.deal_content-box{
   max-width: 350px;
}
/* Deals-section-end-here  */
/* carasoul_sec start  */
 .carousel-indicators{
   bottom: -70px !important;
 }
 .carousel-indicators button{
   border-radius: 50%;
   height: 20px !important;
   width: 20px !important;
   background-color: #1e676e !important;
 }
.carousel-heading{
   font-weight: 700;
   font-size: 38px;
}
.carasoul_box{
   background: linear-gradient(to right, #4f9b1ab8, #91fb8e);
   padding: 20px 20px;
   border-radius: 40px;
   height: 25%;
}
 /* carasoul_sec end */

 /* contact us start */
 .breadcrumb-item{
   font-size: 32px;
 }
 .breadcrumb-item.active{
   font-weight: 700;
 }
 .breadcrumb-item+.breadcrumb-item::before {
   content: ">" !important;
   color: #fff !important;
}
.breadcrumb-item a{
   color: #fff;
   
}
.breadcrumb-item a:hover{
  text-decoration: underline;
  color: green;
}
 /* contact us end */
 .footer_list li  a:hover{
   color: #efa51c !important;
 }
 .footer_links, .info1:hover{
   color: #efa51c !important;
 }
 .bg-green {background-color: #1c413c !important;}
 .header_section .navbar-nav .nav-item .nav-link:hover {
    color: #efa51c !important;
}
.header_section .navbar_btn:hover {
    color: #efa51c !important;
}