:root {
  --dark-blue: #1E4878;
  --dark-blue2: #150945;
  --light-blue: #47a0d4;
}

.hero-img {
  right: 2rem;
  z-index: -1;
  width: 550px;
  height:400px;
  background-color: #47a0d41a;
  border-radius: 2rem 0rem;
  /* background-image: url('img/hero.jpg'); */
  background-size: cover;
  animation: show 25s  infinite;
}

@keyframes show {
  0%{
    background-image: url('img/hero.jpg');
  }
  25% {
    background-image: url('img/bandwidth.jpg');
  }
  50%{
    background-image: url('img/broadband.jpg');
  }
  75%{
    background-image: url('img/host.jpg');
  }
  100%{
    background-image: url('img/voip.jpg');
  }
}

.home-content-container{
  display: flex;
  justify-content:flex-start;
  padding-left: 10%;
}
.content{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin: 5rem 0;
  padding: 0 1rem;
}
.content .info {
  width: 700px;
}
.content .info h2{
  color: #100346;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 60px;
  margin-bottom: 30px;
}


.content .info h2 span{
  color: rgb(16, 12, 80);
  font-size: 50px;
  font-weight: 600;
}

.content .info p{

  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}

.content .info-btn{
  color: #fff;
  background: #100346;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
  transition-property: background;
}

.content .info-btn:hover{
  background: #240a6b;
}

.media-icons{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.media-icons a{
  position: relative;
  color: #111;
  font-size: 25px;
  transition: 0.3s;
  transition-property: transform;
}

.media-icons a:not(:last-child){
  margin-right: 60px;
}

.media-icons a:hover{
  transform: scale(1.5);
}

label{
  display: none;
}

#check{
  z-index: 3;
  display: none;
}

/* Responsive styles */

@media (max-width: 960px){
  /* header .navigation{
    display: none;
  } */

  label{
    display: block;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
    transition-property: color;
  }

  label:hover{
    color: #fff;
  }

  label .close-btn{
    display: none;
  }

  #check:checked ~ header .navigation{
    z-index: 2;
    position: fixed;
    background: rgba(114, 223, 255, 0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #check:checked ~ header .navigation a{
    font-weight: 700;
    margin-right: 0;
    margin-bottom: 50px;
    letter-spacing: 2px;
  }

  #check:checked ~ header label .menu-btn{
    display: none;
  }

  #check:checked ~ header label .close-btn{
    z-index: 2;
    display: block;
    position: fixed;
  }

  label .menu-btn{
    position: absolute;
  }

  header .logo{
    position: absolute;
    bottom: -6px;
  }

  .content .info h2{
    font-size: 45px;
    line-height: 50px;
  }

  .content .info h2 span{
    font-size: 40px;
    font-weight: 600;
  }

  .content .info p{
    font-size: 14px;
  }
}
.footerNav{
	margin: 30px 0;
	color: #bebbdd;
  }
  .footerNav ul{
	display: flex;
	justify-content: center;
	list-style-type: none;
  }
  .footerNav ul li a{
	color:#080808;
	margin: 20px;
	text-decoration: none;
	font-size: 1.3em;
	opacity: 0.7;
	transition: 0.5s;
  
  }
  .footerNav ul li a:hover{
	opacity: 1;
  }
  .footerBottom{
	background-color: #c5bef0;
	padding: 20px;
	text-align: center;
  }
  .footerBottom p{
	color: rgb(15, 15, 15);
  }
  .designer{
	opacity: 0.7;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	margin: 0px 5px;
  }


@media (max-width: 560px){
  .content .info h2{
    font-size: 35px;
    line-height: 40px;
  }

  .content .info h2 span{
    font-size: 30px;
    font-weight: 600;
  }

  .content .info p{
    font-size: 14px;
  }

  #about .col-left .about-img {
    height: 100%;
    width: 100%;
    position: relative;
    border: 10px solid white;
  }

  
}
      
