*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background: #fff;
}
.indexBody{
  position: absolute;
  overflow: hidden;
}
section{
  padding: 5px;
  left: 5px;
}
section h2{
  color: #111;
  font-size: 10vh;
}
section h4{
  color: #111;
  font-size: 6vh;
  margin-top: 90px;
  text-align: center;
}
section h5{
  color: #111;
  font-size: 4vh;
}
section p{
  color: rgba(255, 255, 255, 0.7);
  font-size: 2vh;
}
section ol{
  color: rgba(255, 255, 255, 0.7);
  font-size: 2vh;
}
.logo{
  position: absolute;
  top: 20px;
  left: 10px;
  width: 80px;
  height: 80px;
  background:url(nabulon.png);
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 1;
}
.toggle{
  position: fixed;
  top: 40px;
  right: 10px;
  width: 50px;
  height: 50px;
  border: 1px solid #111;
  background: #fff url(menu.webp);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 10000;
}
.toggle.active{
  background: #fff url(close.webp);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.navigation{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}
.navigation.active{
  visibility: visible;
  z-index: 2;
}
.navigation span{
  position:absolute;
  top: -100%;
  font-size: 3em;
  font-weight: bold;
  color: #111;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  left: calc(14.3% * var(--i));
  width: 25%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  transition: 0.25s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition-delay: calc(0.25s * var(--i));
}
.navigation.active span{
  top: 0;
}
.navigation ul{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  transform: rotateX(-100px);
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
}
.navigation.active ul{
  transform: rotateX(0px);
  opacity: 1;
  visibility: visible;
  transition-delay: 0.75s;
}
.navigation ul li{
  list-style: none;
}
.navigation ul li a{
  text-decoration: none;
  font-size: 3em;
  font-weight: 700;
  color: #111;
  display: inline-block;
  padding: 5px 20px;
}
.navigation ul li a:hover{
  background: #111;
  color: #fff;
}
.navigation .online a{
  background: #111;
  color: #fff !important;
}
@media(max-width: 720px){

  .navigation span{
    font-size: 2em;
  }
  .navigation ul li a{
    font-size: 2em;
  }
  section h2{
    font-size: 6vh;
  }
}
/*footer*/
section footer{
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #111;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #de0611;
}
section footer .containerF{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
section footer .containerF .sec{
  margin-right: 30px;
}
.aboutus{
  width: 40%;
}
section footer .containerF h2{
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 2em;
  margin-bottom: 15px;
}
section footer .containerF h2:before{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f00;
}
section footer p{
  color: #999;
}
.sci{
  margin-top: 20px;
  display: flex;
}
.sci li{
  list-style: none;
}
.sci li a{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
}
.sci li a:hover{
  background: #f00;
}
.sci li a .fa{
  color: #fff;
  font-size: 20px;
}
.quickLinks{
  position: relative;
  width: 25%;
}
.quickLinks ul li{
  list-style: none;
}
.quickLinks ul li a{
  color: #999;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
.quickLinks ul li a:hover{
  color: #fff;
}
.contactF{
  width: calc(35%- 60px);
  margin: 0 !important;
}
.contactF .info{
  position: relative;
}
.contactF .info li{
  display: flex;
  margin-bottom: 16px;
  color: #fff;
}
.contactF .info li span:nth-child(1){
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.contact .info li span{
  color: #999;
}
.contact .info li a{
  color: #999;
  text-decoration: none;
}
.contact .info li a:hover{
  color: #fff;
}
.copyrightText{
  width: 100%;
  background: #181818;
  padding: 8px 100px;
  text-align: center;
  color: #999;
  font-size: 10px;
}
@media(max-width: 991px){
  footer{
    padding: 40px;
  }
  footer .containerF{
    flex-direction: column;
  }
  footer .containerF .sec{
    margin-right: 0;
    margin-bottom: 40px;
  }
  footer .containerF .quickLinks{
    width: 100%;
  }
  .copyrightText{
    padding: 8px 100px;
  }
  .containerHome{
    overflow: hidden;
  }
}
section .tub{
  position: absolute;
  bottom: 0px;
}
/*containers*/

.jumbotron-inner{
  width: 100%;
  margin-top: 20px;
}
.jumbotron-inner h5{
  position: relative;
  color: #111;
  font-weight: 700;
  font-size: 6vh;
  margin-bottom: 15px;
}
.jumbotron-inner h5:before{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 4px;
  background: #f00;
}
.jumbotron-inner p{
  font-size: 2vh;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
/*contact*/
section .contactForm{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
section .contactForm h5{
  position: relative;
  color: #111;
  font-size: ;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
section .contactForm h5::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: #fff;
}
section .contactForm .inputBox{
  width: 100%;
  margin-top: 20px;
}
section .contactForm .inputBox input{
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 3.5px;
  font-size: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  border-left: : 2px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  color: #111;
}
section .contactForm .inputBox input::placeholder{
  color: #fff;
}
section .contactForm .inputBox input[type="submit"]{
  background: #fff;
  width: 33%;
  margin: auto;
  color: #de0611;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 600;
}
/* index background animation */
.bodyHome{
  position: relative;
  overflow: hidden;
  display: block;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.containerHome{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerHome h2{
  color: #111;
  text-align: center;
  font-size: 12vw;
  line-height: 1em;
  z-index: 2;
  font-weight: 600;
}
.containerHome h2 span{
  font-size: 0.23em;
  letter-spacing: 0.4em;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid yellow;
}
.blockShadow{
  filter: drop-shadow(10px 10px 50px rgba(0, 0, 0, 0.8));
}
.block{
  position: absolute;
  width: 50px;
  height: 50px;
  clip-path: polygon(0 28%, 50% 0, 100% 27%, 100% 73%, 50% 100%, 0 73%);
  background: #e52d27;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #b31217, #e52d27);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #b31217, #e52d27); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/*services css*/
.sectionS{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 50vh;
  background: #fff;
}
.sectionS .Box{
  position: relative;
  width: 200px;
  height: 200px;
  background: #f00;
  margin: 10px;
  overflow: hidden;
}
.sectionS .Box .texty{
  position: absolute;
  left: 10px;
  bottom: 0;
  color: #111;
  text-align: center;
  align-items: center;
}
.sectionS .Box .texty span{
  font-weight: 600;
  background: #fff;
}
.sectionS .Box .imgBox{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}
.sectionS .Box .imgBox.active{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.sectionS .Box .imgBox img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sectionS .Box .imgBox.active img{
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
}
.sectionS .Box .imgBox h2{
  opacity: 0;
  visibility: hidden;
}
.sectionS .Box .imgBox.active h2{
  opacity: 1;
  visibility: visible;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-top: 15px;
  letter-spacing: 4px;
}
.sectionS .Box .imgBox .boxcontent{
  position: absolute;
  bottom: 50px;
  right: 50px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,0.8);
  padding: 20px;
  color: #fff;
  transform: translateY(100%);
}
.sectionS .Box .imgBox.active .boxcontent{
  opacity: 1;
  visibility: visible;
  text-align: center;
  transform: translateY(0);
  transition: 0.5s;
}
/*blogs*/
.blogheader{
  position: relative;
  height: 390px;
  width: 100%;
  padding: 5px;
}
.blogheader  img{
  height: 100%;
  width: 100%;
}
.blogheader .blogheaderContent{
  position: absolute;
  padding: 2px;
  bottom: 0;
}
.blogheader .blogheaderContent h1{
  color: #fff;
  font-weight: 700;
  font-size: 6vh;
}
.blogheader .blogheaderContent small{
  color: #111;
  font-weight: 700;
  font-size:1.5vh;
  background: #fff;
}
.blogheader .blogheaderContent p{
  color: #111;
  font-weight: 700;
  font-size: 2vh;
  background: #fff;
}
.blogside{
  position: relative;
  height: 200px;
}
.blogside   img{
  height: 50%;
  width: 100%;
}
.blogside .blogsideContent{
  position: relative;
  padding: 2px;
  color: #111;
  top: 0;
}
.blogside .blogsideContent h1{
  color: #fff;
  font-weight: 700;
  font-size: 3vh;
  color: #111;
}
.blogside .blogsideContent small{
  color: #fff;
  font-weight: 700;
  font-size:1.5vh;
  color: #111;
}
.sideSmall{
  position: relative;
  height: 90px;
  width: 100%;
  margin: 5px;
}
.sideSmall h1{
  font-size: 3vh;
  font-weight: 700;
}
.sideSmall img{
  height: 100%;
  width: 100%;
}
.sideSmall .smallerContent{
  position: absolute;
  bottom: 0;
  color: #fff;
}
.sideSmall .smallerContent h3{
  font-size: 2vh;
  font-weight: 700;
}
/*Projects*/
.sectionP{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 50vh;
  background: #fff;
}
.sectionP .Box{
  position: relative;
  width: 200px;
  height: 200px;
  background: #f00;
  margin: 10px;
  overflow: hidden;
}
.sectionP .Box .texty{
  position: absolute;
  left: 10px;
  bottom: 0;
  color: #111;
  text-align: center;
  align-items: center;
}
.sectionP .Box .texty span{
  font-weight: 600;
  background: #fff;
}
.sectionP .Box .imgBox{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}
.sectionP .Box .imgBox.active{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.sectionP .Box .imgBox img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sectionP .Box .imgBox.active img{
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
}
.sectionP .Box .imgBox h2{
  opacity: 0;
  visibility: hidden;
}
.sectionP .Box .imgBox.active h2{
  opacity: 1;
  visibility: visible;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-top: 15px;
  letter-spacing: 4px;
}
.sectionP .Box .imgBox .boxcontent{
  position: absolute;
  bottom: 50px;
  right: 50px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  background: rgba(0,0,0,0.8);
  padding: 20px;
  color: #fff;
  transform: translateY(100%);
}
.sectionP .Box .imgBox.active .boxcontent{
  opacity: 1;
  visibility: visible;
  text-align: center;
  transform: translateY(0);
  transition: 0.5s;
}
/*contact*/
.contigo{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}
.contigo .contactForm{
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-top: 20px;
}
.contigo .contactForm .row1{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}
.contigo .contactForm .row2{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.contigo .contactForm .row1 input,
.contigo .contactForm .row2 textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #2C5364;
  outline: none;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
}
.contigo .contactForm .row2 textarea{
  resize: none;
  height: 200px;
}
::placeholder{
  color: var(--black);
}
.contigo .contactForm .row2 button{
  background: var(--white);
  color: var(--black);
  margin-bottom: 20px;
  border: 1px solid #2C5364;
  border-radius: none;
}
/*button*/
.btn{
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 20px;
  border: 2px solid #111;
  color: #333;
  background: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: ;
  text-transform: uppercase;
  transition: 0.25s;
}
.btn:hover{
  color: #fff;
  background: #111;
}
/*Services indie pages*/
/*h4:before{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 6px;
  background: #333;
}*/
.servheader{
  margin-top: 100px;
  position: relative;
}
.servheader img{
  width: 100%;
  height: 100%;
  opacity: 0.3;
  max-height: 400px;
}
.servheader_text{
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  left: 16px;
  bottom: 0;
}
.serv-text{
  color: #333;
  font-weight: 800;
  text-align: justify;
}
.Serv-Bx-Img{
  margin: 5px 10px;
}
.Serv-Bx-Img img{
  width: 100%;
  height: 100%;
}
/*service boxlets*/
.servboxlet{
  background: rgba(255, 255, 255, 0.2);
  margin: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.servboxlet p{
  color: #000;
  font-weight: 800;
  text-align: justify;
}
.title{
  text-align: center;
}
.title h4{
  position: relative;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1.4em;
  text-transform: uppercase;
  color: #000;
}
.title h4:before{
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 6px;
  background: #000;
  margin: 5px;
}

/*blog*/
.blogIMG{
  max-height: 200px;
  margin: 5px;
}
.blogIMG img{
  width: 100%;
  height: 100%;
}
/*Project*/

.servboxlet .content ul{
  position: relative;
}
.servboxlet .content li{
  position: relative;
  left: 0;
  color: #111;
  list-style: none;
  margin: 4px 0;
  border-left: 2px solid #DD0000;
  border-right: 2px solid #DD0000;
  transition: 0.5s;
  cursor: pointer;
}
.content{
  margin-top: 20px;
}
.content ul li::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(25, 2, 2, 0.2);
  color: #fff !important;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.5s;
}
.content ul li:hover::before{
  transform: scaleX(1);
}
.content ul li:hover{
  left: 10px;
}
.content ul li span{
  position: relative;
  padding: 8px;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}
/*end of project*/
