@charset "UTF-8";

:root {
  --cimagehight: 480px;
}

html {
  font-family: arial,sans-serif;
}

.logobar {
  height: 100px;
  width: 100%;
}

.logoimage{
  height: 80px;
}

.menuitems a{
  color: black;
  text-decoration: none;
  font-weight: bold;
  padding-right: 50px;
}

.menuitems{
  position: absolute;
  right: 0;
  padding: 50px;
}


.dropbutton{
  display: none;
}

.carousel{
  margin-left: 15%;
  margin-right: 15%;
  height: var(--cimagehight);
}

.carouselcontent{
  height: 100%;
  width: 100%;
}

.carouselimage{
  position: absolute;
  width: 70%;
  height: var(--cimagehight);
  animation-direction: normal;
  animation-duration: 8s;
  animation-name: slide;
  animation-iteration-count: infinite;
  z-index: 20;
  background-repeat: no-repeat;
  background-size: 100% var(--cimagehight);
}

.carouselimagebase{
  position: absolute;
  width: 70%;
  height: var(--cimagehight);
  z-index: 10;
  background-repeat: no-repeat;
  background-size: 100% var(--cimagehight);
}

@keyframes slide {
  from {
    background-size: 100% var(--cimagehight);
  }
  80% {
    background-size: 100% var(--cimagehight);
  }
  to {
    background-size: 0% var(--cimagehight);
  }
}

.carouselbuttoncontainer{
  height: 20px;
  width: 100%;
  text-align: center;
}

.carouselbuttonbox{
  margin-left: 40%;
  margin-right: 40%;
  height: 100%;
}

.carouselbutton{
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 7px;
  background: #e3e3e3;
  cursor: pointer;
  margin: 3px;
  margin-top: 10px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.active{
  background: #5f5f5f;
}

.carouselanimage{
  width: 14px;
  height: 14px;
}

.carouselanimbutton{
  display: inline-block;
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin: 3px;
  margin-top: 10px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.titlebanner {
  margin-top: 30px;
  margin-left: 15%;
  margin-right: 14%;
  height: 30px;
  width: 71%;
  background-color: #5A90A0;
  display: table;
}

.titlebanner h4{
  display: table-cell;
  vertical-align: middle;
}

.servicepackbox{
  padding-top: 10px;
  margin-left: 15%;
  margin-right: 14%;
  height: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 195px;
  column-gap: 5px;
  row-gap: 5px;
}

.servicepack{
  width: 100%;
  background-color: lightblue;
  opacity: 0;
}

.tileanimation{
  animation-direction: normal;
  animation-duration: 6s;
  animation-name: servicepackvisibility;
  animation-play-state: paused;
  animation-fill-mode: forwards;
}

.servicepacktitle{
  padding: 5px;
  height: 25px;
  display: flex;
  justify-content: center;
}

.servicepacktitle img{
  height: 100%;
}

.servicepacktitle h5{
  height: 100%;
  line-height: 25px;
  vertical-align: middle;
  margin:0;
}

.servicepackbody{
  height: 165px;

}

.partnerpackbox{
  padding-top: 10px;
  margin-left: 15%;
  margin-right: 14%;
  height: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 145px;
  column-gap: 5px;
  row-gap: 5px;
}

.partnerpack{
  width: 100%;
  opacity: 0;
}

.partnerpack img{
  display: block;
  margin: auto;
  height: 50%;
  width: 50%;
  padding-top: 25px;
  padding-bottom: 50px;
}

.aboutuspackbox{
  padding-top: 10px;
  margin-left: 15%;
  margin-right: 14%;
  height: 200px;
}

.aboutuspack{
  width: 100%;
  height: 100%;
  background-color: lightblue;
  display: block
  opacity: 0;
}

.contactuspackbox{
  padding-top: 10px;
  margin-left: 15%;
  margin-right: 14%;
  height: 220px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  row-gap: 5px;
}

.contactuspackbody{
  padding-top: 20px;
  width: 100%;
  height: 195px;
  background-color: lightblue;
  opacity: 0;
}

@keyframes servicepackvisibility {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.copyrightbox{
  display: inline-block;
  margin-top: 10px;
  margin-left: 15%;
  margin-right: 14%;
  height: 150px;
  width: 71%;
  background-color: #484848;
}

.copyrightbody{
  display: inline-block;
  padding: 30px;
  color: white;
}

.copyrightbody a{
  color: white;
}
