@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    min-height:100vh;
}

a{
    text-decoration:none;
}

.topbar{
    background:steelblue;
    width:100%;
    color:white;
    font-size:0.9rem;
    font-weight:400;
}

.icon{
   margin:0 5px;
}

.phone{
    margin-left:20px;
}

.topbar-container{
    padding:10px;
    width:95%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin:0 auto;
}

/*Sticky*/
.sticky{
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
}

.sticky + .hero {
    padding-top: 70px;
  }

#content{
    padding:50px;
}

.content-heading h1{
    font-size:2.5rem;
    color:#333;
    text-align:center;
    margin:20px 0;
    font-weight:200;
}

/*Navigation*/
.navbar{
    box-shadow: 0px 15px 10px -15px #111; 
    width:100%;
    z-index:1000;
    background:rgba(255, 255, 255, 0.95);
    }

.menu .current{
    color:steelblue;
    font-weight:700;
    
}

.nav-container{
    width:95%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:0 auto;
  
}

.menu{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    height:50px;
   }

.menu li{
    list-style: none;
    position:relative;
    height:100%;
    display:flex;
    justify-content: center;
    align-items: center;
}

.dropdown{
    display:none;
}

.menu li:hover .dropdown{
    display:block;
    position:absolute;
    left:0;
    top:100%;
    background:white;
    color:white;
    z-index:2000;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0,0.1);
}

.dropdown ul{
   display:block;
}

.dropdown ul li{
    width:200px;
    display:block;
    padding:10px;
    border-top:1px solid steelblue;
 }

 .dropdown ul li:first-child{
    border-top:none;
 }

 .dropdown ul li:hover{
   background:steelblue;
 }

 .dropdown ul li a:hover{
    color:white;
  }


.menu li a{ 
   color:#333;
   font-size:0.85rem;
   font-weight:500;
   letter-spacing:1px;   
   transition:all 0.3s ease;
   display:block;
    
}

.menu li a:hover{ 
    color:steelblue;
     
 }

 .menu li a.active{ 
    color:steelblue;
     
 }

 .hamburger{
     display:none;
 }

 .bar{
     display:block;
     width:25px;
     height:3px;
     margin:5px auto;
     -webkit-transition: all 0.3s ease-in-out;
     transition:all 0.3s ease-in-out;
     background:steelblue;
 }
/*SLIDER*/
#carousel{
    position:relative;
    height:500px;
    width:100%;
}
 .slider{
     position:relative;
     overflow:hidden;
     height:100%;
     width:100%;
 }
 .slide{
     position:absolute;
     top:0;
     left:0;
     width:100%;
     height:100%;
     opacity:0;
     transition:opacity 0.4s ease-in-out;
    }
    .slide.oga{
        opacity:1;
    }

    .slide .content{
        position:absolute;
        bottom:70px;
        width:600px;
        opacity:0;
        left:-600px;
        background-color: rgba(255, 255, 255, 0.8);
        color:#333;
        padding:35px;
    }

    .slide .content h1{
       font-size:2rem;
       color:teal;
       text-align:left;
       font-weight:700;
    }

    .slide .content p{
        font-weight:700;
     }

    .slide.oga .content{
        opacity:1;
        transform:translateX(600px);
        transition:all 0.7s ease-in-out 0.3s;
    }

    button#next{
        position:absolute;
        top:45%;
        right:15px;
    }
    button#prev{
        position:absolute;
        top:45%;
        left:15px;
    }

    .buttons button{
        border:2px solid #fff;
        background-color: transparent;
        color:#fff;
        cursor: pointer;
        padding:10px 14px;
        border-radius: 50%;
        outline:none;
    }
    .buttons button:hover{
        background-color: #fff;
        color:#333;
    }
    .slide:first-child{
        background:url('../images/banner.png') no-repeat center center/cover;
        
    }
    .slide:nth-child(2){
        background:url('../images/img1_ecofriendly.jpg') no-repeat center center/cover;
       
    }
    .slide:nth-child(3) {
         background:url('../images/pix1.jpg') no-repeat center center/cover;
        
    }
    
    .slide:nth-child(4) {
        background:url('../images/pix2.jpg') no-repeat center center/cover;
        
    }
   
    .slide:nth-child(5) {
        background:url('../images/pix4.jpg') no-repeat center center/cover;
        
    }
    .slide:nth-child(6) {
        background:url('../images/pix6.jpg') no-repeat center center/cover;
    }
    
/*END SLIDER*/

 /*.hero{
	color:#ffffff;
	background-color:rgba(0, 0, 0,0.6);
	height:500px;
	position:relative;	
	display:flex;
	justify-content:center;
	align-items:center;
}

.hero:before{
	content:'';
	background:url('../images/img1.jpg');
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	
}*/

/***PRICE_GRID***/
.card{
	background:linear-gradient(#14aff1, steelblue);
	color:white;
	padding:40px;
	font-weight:700;
	text-align:center;
	height:300px;
	width:30%;
}

.card-alt{
	background:steelblue;
}
.card-text{
	font-size:1.0rem;
}

.card-image i{
	font-size:5rem;
}
.caption{
	text-align:center;
}

.price-grid{
	display:flex;
	justify-content:space-between;
	
}
.my-button{
	background:steelblue;
	color:white;
	border:none;
	padding:10px 20px;
	font-size:0.9em;
	margin:15px auto;
	border-radius:20px;
}

.card-title h2{
	margin:20px 0
}
/***END PRICE GRID***/
#info{
    position:relative;
    display:flex;
    align-items: center;
    justify-content: flex-start;
    padding:50px;
    background-color:rgba(0, 0, 0,0.7);
    color:white;
    height:400px;
   }

#info:before{
	content:'';
	background:url('../images/img2.jpg');
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	
}

.info-inner{
  margin:0 auto;
  width:60%;
  text-align:center;
 }

 
.info-inner h1{
   font-size:1.5rem;
   font-weight:500;
   text-align:right;
     }

   
.dataplan{
    margin:30px 0;
    padding:10px 40px;
    font-size:1.2rem;
    color:white;
    background:steelblue;
    border:none;
    font-weight:400;
    cursor:pointer;
}

.dataplan a{
    color:white;
}

.dataplan:hover{
    background:transparent;
    border:2px solid white;
}

#info h1{
    font-size:2rem;
    text-align:center;
}

.container{
    display:flex;
    justify-content: center;
    align-items: center;
    width:95%;
    padding:50px;
    margin:0 auto;
}

.message{
    display:flex;
    justify-content: space-between;
    width:80%;
    margin:0 auto;
    padding:10px;
       
}

.form-input{
    width:100%;
    height:40px;
    margin-bottom:10px;
    padding:10px;

}

.form-textarea{
    width:100%;
    height:150px;
    padding:10px;
    margin-bottom:10px;
}

.form-button{
    width:100%;
    height:40px;
    border:none;
    font-size:1.2em;
    background:#ee6c4d;
    font-weight:700;
    transition:all 0.6s ease;
    cursor:pointer;
    color:white;

}

.form-button:hover{
    background:steelblue;
    
}

.location{
    width:35%;
}

.contact-cards{
    display:flex;
    align-items: center;
    margin-bottom:20px;    
}

.address{
    color:steelblue;
    display:block;
    font-size:1.5rem;
    margin-right:20px;
}

.send-message{
    width:60%;
    
}

.content{
    text-align:justify;
    font-size:1rem;
    font-weight:400;
}
.heading{
    color:#ee6c4d;
    font-size:2rem;
    margin-bottom: 20px;
    font-weight:700;
}

#footer{
    background:linear-gradient(#28231d, #050100);
    color:white;
}
.footer-links{
    display:flex;
    justify-content: space-between;
    gap:120px;
    
}
.footer-cards-title{
    font-size:1.3rem;
    font-weight:400;
    margin-bottom:15px;
}
.footer-cards-inner a{
    display:block;
    font-size:0.9rem;
    color:white;
    margin-bottom:10px;
    font-weight:200;

}
.footer-cards-inner a:hover{
   text-decoration:underline;

}

.footer-cards-inner i{
    display:block;
    font-size:0.9rem;
    color:white;
    

}

.solo{
    display:flex;
    align-items: center;
    gap:10px;
}

.solo a{
    margin-bottom:0;
}

.copyright-container{
    padding:20px;
    font-size:0.8em;
    font-weight:200;
    border-top:1px solid #28231d;
}
#banner img{
    width:100%;
    height:auto;
}

   .success{
       background:rgb(173, 229, 173);
       color:#333;
       padding:10px;
       margin-bottom:10px;
   }

   .wrapper{
       flex-direction: column;
   }

   .main-heading{
       font-size:2.5rem;
       color:steelblue;
       margin-bottom:50px;
       font-weight:700;

   }

   .wrapper p{
       color:#333;
       margin-bottom:20px;
   }

   .vision{
       width:100%;
       margin-bottom:20px;
   }

   .vision h3{
       color:steelblue;
       font-weight:500;
       font-size:1.5rem;
   }

   .vision ul{
    margin-left:20px;
}

.about-banner{
    width:100%;
    height:auto;
    margin:20px auto;
}

#main-window{
    min-height: -moz-calc(100% - 406px); /* Firefox */
    min-height: -webkit-calc(100% - 400px);
    min-height: calc(100% - 406px);
    padding:50px;
}

#wrapper{
    min-height: -moz-calc(100% - 406px); /* Firefox */
    min-height: -webkit-calc(100% - 400px);
    min-height: calc(100% - 406px);
    padding:50px;
    
}

.login{
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
}
.login-wrapper{
    border:1px solid steelblue;
    width:30%;
    padding:30px;
    background:#f2f2f2;
    text-align:center;
}

.user-data{
    width:100%;
    height:35px;
    padding:5px;
    margin-bottom:10px;
    outline:none;
}
.user-data-submit{
    width:100%;
    height:35px;
    padding:5px;
    background:steelblue;
    color:white;
    font-size:1em;
    font-weight:500;
    border:none;
    cursor:pointer;
}
.dataplan-wrapper{
    display:flex;
    justify-content: space-between;
    
}
.sidebar{
    width:25%;
    border:1px solid steelblue;
    
}
.sidebar ul{
    list-style: none;
}

.sidebar ul li:first-child{
    background:steelblue;
    color:white;
    height:40px;
    padding:10px;
}

.sidebar ul li:first-child:hover{
    background:steelblue;
}
.sidebar ul li{
    border-bottom:1px solid steelblue;
    height:40px;
    padding:10px;
}


.sidebar ul li:hover{
    background:#e5e5e5;
}

.sidebar ul li a{
    display:block;
    color:#333;
    font-weight:600;
}

.sidebar ul li a:hover{
    font-weight:700;
}

.main{
    width:72%;
    border:1px solid steelblue;
    
   
}
.main-top{
    background:steelblue;
    color:white;
    height:40px;
    padding:5px;
    line-height: 30px;
}

.main-body{
    padding:20px;
    display:flex;
    justify-content: space-between;
}

.main-body-cells{
    width:48%;
    padding:15px;
    background:#f2f2f2;
}

.input-dataplan{
    width:100%;
    height:40px;
    padding:5px;
    margin-top:10px;
}

.input-submit-dataplan{
    width:100%;
    height:40px;
    padding:5px;
    text-transform: uppercase;
    background:steelblue;
    color:white;
    border:none;
    font-size:1rem;
    font-weight:600;
    margin-top:10px;
    cursor:pointer;

}

.plan{
    width:100%;
    border:1px solid #333;
    border-collapse: collapse;
}

.plan thead tr{
    background:teal;
    height:40px;
    color:white;
    
}
.plan thead tr th{
   text-align:left;
   padding:10px;
}
.plan tbody tr:nth-child(even){
    background:#f2f2f2;
}
.plan tbody tr td{
    height:40px;
    padding:10px;
}

.success{
    background:rgb(228, 245, 228);
    color:rgb(2, 42, 2);
    padding:10px;
}

.danger{
    background:rgb(245, 184, 184);
    color:rgb(89, 8, 8);
    padding:10px;
}

#edit{
    display:flex;
    justify-content: center;
    align-items:center;
    background:rgb(87, 163, 87);
    color: white;
    height:30px;
    width:100%;
    cursor:pointer;
    border-radius:5px;
    font-size:0.8em;
    
}

#delete{
    display:flex;
    justify-content: center;
    align-items:center;
    background:tomato;
    color: white;
    height:30px;
    width:100%;
    cursor:pointer;
    border-radius:5px;
    font-size:0.8em;
    
}

.input-select{
    width:100%;
    height:40px;
    padding:5px;
}

.plan{
    margin-bottom:20px;
    font-size:0.9rem;
    background:white;
}

.plan-header{
    background:white;
    color:#333;
    text-transform: uppercase;
    text-align: center;
}

.plan tr td{
    font-size:0.9rem;
    font-weight:600;
}

.side{
    width:20%;
}

.mains{
    width:78%;
}

.cell-one{
    width:28%;
}
.cell-two{
    width:68%;
}
.social a{
    color:white;
    
}
.social a:hover{
    color:#f2f2f2;    
}

.dataplan-table{
    margin-bottom:20px;
    width:80%;
    border-collapse: collapse;
}

.dataplan-table thead{
    background:teal;
    color:white;
    height:40px;
    
}

.dataplan-table thead tr th{ 
    text-align:left;
    padding:5px;
}

.dataplan-table tbody tr td{
    height:40px;
    padding:5px;
    
}

.dataplan-table tbody tr:last-child{
    border-bottom:3px solid teal;
    
}

.dataplan-table tbody tr td:last-child{
    font-weight:bold;
    
}


.dataplan-table tbody tr:nth-child(even){
    background:#f2f2f2;
    
}

.terms-of-use ol{
    margin-left:30px;
   }

.terms-of-use ol li{
    padding-left:30px;
    margin-bottom:10px;
}

.careers{
    text-align:center;
    font-size:1.5rem;
    font-weight:600;
}

.careers span{
    color:teal;
    font-size:2rem;
    display:block;
}
/* Start Vertical Tabs*/
.vtabs{
	position:relative;
	width:100%;
	}

.vtabs input{
	display:none;
}

.vtabs label{
	display:block;
	width:15%;
	padding:20px 5px;
	color:#a2a2a2;
	font-weight:500;
	font-size:1.0em;
	border-left:5px solid #dcdcdc;
	transition:.3s ease;
	text-align:center;
}

.vtabs label:hover{
	cursor:pointer;
	color:#404040;
}

.vtabs input:checked+label{
	color:#404040;
	border-left:5px solid #00c4ff;
}

.vtabs #tab1:checked~.vtab-content #content1,
.vtabs #tab2:checked~.vtab-content #content2,
.vtabs #tab3:checked~.vtab-content #content3,
.vtabs #tab4:checked~.vtab-content #content4
{
	display:block;
}

.vtabs .vtab-content{
	position:absolute;
	top:0;
	width:80%;
	right:15px;
	height:275px;
	font-size:0.9em;

}

.vtabs .vtab-content div{
	display:none;
}

.vtab-content #content1{
	background:url(../images/ethernet.jpg) no-repeat;
	background-size:cover;
	width:100%;
	height:275px;
	top:0;
	}

.vtab-content #content2{
		background:url(../images/computers.jpg) no-repeat;
		background-size:cover;
		width:100%;
		height:275px;
		top:0;
		}

.vtab-content #content3{
			background:url(../images/fiber.jpg) no-repeat;
			background-size:cover;
			width:100%;
			height:275px;
			top:0;

			
}

.vtab-content #content4{
	background:url(../images/laptop.jpg) no-repeat;
	background-size:cover;
	width:100%;
	height:275px;
	top:0;
	}


.vtab-content #content1 p, 
.vtab-content #content2 p,
.vtab-content #content3 p,
.vtab-content #content4 p{
	color:white;
	font-weight:500;
	font-size:1.1em;
	font-family:sans-serif;
	padding:20px;
	text-shadow: 2px 2px 8px #000;
	background:rgba(0,0,0,0.4);
	margin-bottom:50px;
    text-align:left;
}

.vtab-inner{
	position:absolute;
}
/* End Vertical Tabs*/

/* Start Lists*/
.list{
	display:block;
	margin-bottom:5px;
}

.list:before{
	content:"\2022\00A0";
	color:teal;
	margin-right:10px;
}

.ourlist{
    width:100%;
}

/* End Lists*/

/*
    #28231D - Charcoal
    #050100 - Oil
*/

/*Privacy Policy*/

.choker{
	text-align:left;
	width:100%;
}


.list:last-child{
	margin-bottom:20px;
}
.subheading{
	color:teal;
	font-weight:bold;
	text-align:left;
	margin-left: 0;
	
	
	
}

.subtotal{
	display:block;
}

.para::before{
	content:'-';
	padding-right:10px;
	
}

/*RESPONSIVE*/

@media(max-width: 48em){
    .topbar{
        display:none;
    }

    .menu{
        position:fixed;
        top:47px;
        width:100%;
        display:block;
        text-align:center;
        background:steelblue;
        left:-100%;
        transition:all 0.6s ease;
        z-index: 1000;
        height: 100vh;
        }
    .menu li{
        border-bottom:0.2px solid #e5e5e5;
        width:100%;
        height:40px;  
       
        

    }
    .menu li a{
       color:white;      

    }
    
.menu li a:hover{ 
    color:#f67e07;
    font-weight:700;
     
 }
 

 .menu li a.active{ 
    color:#f67e07;
    font-weight:700;
     
 }
 
.menu .current{
    color:#f67e07;
    font-weight:700;
    
}

.dropdown{
    display:none;
    width:100%;
   
    

    
            
 }
 .dropdown ul li{
    width:100%;
    background:black;
    
 }
 
 .dropdown ul li a{
    color:white;
 }

   .hamburger{
       display:block;
       cursor:pointer;
   }

   .hamburger.active .bar:nth-child(2){
       opacity:0;
   }

.hamburger.active .bar:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.nav-item{
    margin:16px 0;
}

.menu.active{
    left:0;
    text-align:center;
}
  
.footer-links{
    flex-direction: column;
    gap:0;
    
}
.footer-cards{
    margin-bottom: 10px;
}
.price-grid{
    flex-direction: column;
}
.card {
    width:100%;
    margin-bottom:20px;
    padding:20px;
}
.info-inner{
    width:100%;
}
#info h1{
   font-size:1.5rem;
}
.card-text{
    font-size:0.85rem
}
#content{
    padding:10px;
}
.content-heading h1{
    padding:50px 0;
}
.slide .content h1{
    font-size: 1.5rem;
}
.slide .content p{
    font-size:0.80em;
    width:60%;
}
.message{
    flex-direction: column;
    padding:0;
}
.send-message,.location{
    width:100%;
}
.msg-container{
    width:100%;
}
.wrapper{
    width:100%;
    padding:10;
}
}
