* {
    margin: 0;
    padding: 0;
}


.container h1 {
    margin-top: 100px;
    text-align: center;
    color: #44AAFF;
    font-family: "Oswald",sans-serif;
    font-weight: 700;
    font-size: 3em;
}

h3 {
    margin-top: 15px;
    text-align: center;
    color: white;
    font-family: "Roboto",sans-serif;
}

p {
    font-family: "Roboto",sans-serif;
    color: white;
    text-align: center;
    font-size: 90%;
}

hr {
    border:1px solid #777;
}

.box {
    border: 1px solid #aeaeaf;
    border-radius: 10px;
    height: auto;
    padding: 10px 10px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.box img {
    text-align: center;
    width: 200px;
    height: 200px;
}

.box a img:hover {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;

    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;

    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
    overflow:hidden;
}

/*Animation*/
#canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    display: block;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
}

/*End animation*/


@media screen and (max-width:770px) and (min-width: 575px) {
    .box {
        margin:20px 0;
        
    }
}

@media screen and (max-width:575px) and (min-width: 465px) {
    .box {
        margin-right: 70px;
        margin-left:70px;
    }
}


/* NAVBAR STYLE START*/
.nb-nav-bg{
    background-color: rgba(3,4,4,0.9);
}

.nav-item{
    margin-right: 10px;
    position: relative;
}

.nav-link:hover{
    font-weight: 400;
    text-decoration: none;
    color: white;
}

.nav-link{
    width: auto;
}
nav a::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #19f6e8;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

nav a:hover::before{
    visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nb-link-style-text{
    color: #ffffff;
    font-family: Roboto;
    font-weight: 200;

}

.wrapper-menu {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 330ms ease-out;
}

.wrapper-menu.open {
  transform: rotate(-45deg);  
}

.line-menu {
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  height: 3px;
}

.line-menu.half {
  width: 50%;
}

.line-menu.start {
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: right;
}

.open .line-menu.start {
  transform: rotate(-90deg) translateX(3px);
}

.line-menu.end {
  align-self: flex-end;
  transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
  transform-origin: left;
}

.open .line-menu.end {
  transform: rotate(-90deg) translateX(-3px);
}

.navbar-toggler:focus{
    outline: 0;
}
.nav-link:focus{
    outline: 0px;
}

/* NAVBAR STYLE END */

/*CONTACT MODAL STYLE START*/
.close:focus{
    outline: 0px;
}

.close:hover{
    cursor: pointer;
}


.button3 {
   border-top: 1px solid #6198ba;
   background: #4696cc;
   background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#4696cc));
   background: -webkit-linear-gradient(top, #3e779d, #4696cc);
   background: -moz-linear-gradient(top, #3e779d, #4696cc);
   background: -ms-linear-gradient(top, #3e779d, #4696cc);
   background: -o-linear-gradient(top, #3e779d, #4696cc);
   padding: 7px 12px;
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   border-radius: 10px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: white;
   font-size: 15px;
   font-family: Arial, sans-serif;
   text-decoration: none;
   vertical-align: middle;
   cursor: pointer;
   }
.button3:hover {
   border-top-color: #2072a1;
   background: #2072a1;
   color: #ccc;
   }
.button3:active {
   border-top-color: #1b567d;
   background: #1b567d;
   }

/*CONTACT MODAL STYLE END*/