* {
    margin: 0;
    padding: 0;
  }
  
  .header {
    height: 100vh;
    background: rgba(0, 0, 80, 0.5);
  }
  
  /*
  .text {
    position: relative;
    text-align: center;
    font-family: monospace;
    color: #fff;
    top: 100px;
  }
  .text h1 {
    font-size: 80px;
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 30px;
  }
  */
  
  .video-background {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
  }
  
  @media (min-aspect-ratio: 16/9) {
    .video-background {
      width: 100%;
      height: auto;
    }
  }
  
  @media (max-aspect-ratio: 16/9) {
    .video-background {
      width: auto;
      height: 100%;
    }
  }
  
  /*Navigation-Home*/

  .navigation {
    width: 100px;
    height: 25%;
    display: block;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: #004ba1e5;
    border-radius: 0% 50% 350% 0%;
    perspective: 800;
    transition: all 800ms cubic-bezier(0.9, 0, 0.33, 1);
  }
  
  .navigation__icon {
    width: 55px;
    height: 44px;
    display: block;
    position: relative;
    top: 22%;
    left: 35%;
    background: hsla(312, 51%, 41%, 0);
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.9, 0, 0.33, 1);
  }
  
  .navigation__icon .topBar {
    width: 55px;
    height: 2px;
    display: block;
    background: white;
    position: absolute;
    top: 10px;
    transform: rotate(0);
    transition: all 800ms cubic-bezier(0.9, 0, 0.33, 1);
  }
  
  .navigation__icon .middleBar {
    width: 55px;
    height: 2px;
    display: block;
    background: white;
    position: absolute;
    top: 20px;
    transform: rotate(0);
    transition: all 800ms cubic-bezier(0.9, 0, 0.33, 1);
  }
  
  .navigation__icon .bottomBar {
    width: 55px;
    height: 2px;
    display: block;
    background: white;
    position: absolute;
    top: 30px;
    transform: rotate(0);
    transition: all 800ms cubic-bezier(0.9, 0, 0.33, 1);
  }
  
  .navigation .navigation__ul {
    float: right;
    margin-top: 180px;
    opacity: 0;
    visibility: hidden;
    transform: rotateY(-90deg) translateX(-300px);
    transition: all 800ms cubic-bezier(0.9, 0, 0.33, 1);
  }
  
  .navigation .navigation__ul li {
    list-style: none;
    text-align: right;
  }
  
  .navigation .navigation__ul a {
    display: block;
    font-size: 30px;
    font-weight: 100;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: monospace;
  }
  
  .navigation .navigation__ul a:hover {
    color: red;
  }
  
  .navigation-open {
    width: 220px;
    height: 100%;
    display: block;
    background: #004ba1e5;
    position: absolute;
    left: 0;
    border-radius: 0% 1% 1% 0%;
  }
  
  h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 8px;
    font-size: 30px;
    font-family: monospace;
    color: white;
    font-weight: 700;
  }
  
  h1 {
    animation: text 5s 1;
  }

  h1.country{
    animation: country 3s 1;
  }

  @keyframes country {
    0% {
      color: wheat;
      
    }
    30% {
      letter-spacing: 25px;
      
    }
    85% {
      letter-spacing: 8px;
      
    }
  }
  @keyframes text {
    0% {
      color: wheat;
      margin-bottom: -40px;
    }
    30% {
      letter-spacing: 25px;
      margin-bottom: -40px;
    }
    85% {
      letter-spacing: 8px;
      margin-bottom: -40px;
    }
  }
  h2 {
    text-align: center;
    font-size: 30px;
    font-family: monospace;
    color: white;
  }
  
  h1,
  h2 {
    padding-top: 50px;
  }
  .navigation-open .navigation__icon {
    left: 80%;
  }
  
  .navigation-open .navigation__ul {
    opacity: 1;
    visibility: visible;
  }
  
  .navigation-open .topBar {
    top: 21px;
    transform: rotate(45deg);
  }
  
  .navigation-open .middleBar {
    width: 0;
    top: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
  }
  
  .navigation-open .bottomBar {
    width: 55px;
    top: 21px;
    transform: rotate(-45deg);
  }
  
  .navigation-open .navigation__ul {
    transform: rotateY(0) translateX(0);
  }

body{
    background: url('../images/background.jpg') repeat-y;
}

body.main{
  background: none;
}

#img{
    animation: rotation 8s infinite linear;
    -webkit-animation: rotation 8s infinite linear;

}

@keyframes rotation{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(359deg);
    }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

.inner{
    padding: 20px;
    flex:1;
    text-align: center;
}

span{
    color:white
}
#totalr{
    color: rgb(3, 165, 3);
}

#totald{
    color: rgb(255, 5, 5);
}

#corona-counter {
  padding: 80px;
  background-image: linear-gradient(to right,rgb(2, 69, 146),#0B2C55 70%);
  background-position: center;
  background-size: cover;
}

.service-left .service {
  text-align: left;
  padding-left: 75px;
}



hr{
    background-color: black;
    margin: auto;
    height: 3px;
    width: 85%;
}

/*cards*/
.section_title.center {
    text-align: center;
}

.section_title_content h2 {
    color: #fff;
    margin: 0;
}
.section_title_content p{
	color: rgba(255,255,255.80);
	padding-top: 20px;
}

.section_title.center .section_title_content p {
    width: 75%;
    margin: auto;
}

.single_service {
    text-align: center;
    background: #0B2C55;
    padding: 40px 26px 32px;
    box-shadow: 0 2px 25px rgba(0,0,0,0.10);
    border-radius: 5px;
    transform: translateY(0);
    transition: .5s;
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes rotateme {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
    }
  }

.single_service_icon img {
    border-radius: 100%;
}
.single_service_title h4 {
    font-size: 22px;
    color: #fff;
	position:relative;
}
.single_service_title h4:before {
    position: absolute;
    content: "";
    left: 0;
    top: 40px;
    height: 2px;
    width: 80px;
    background: #5fe60e;
    right: 0;
    margin: auto;
}
.single_service_text p {
    color: rgba(255,255,255.80);
}


.parent_class{
    height: 10em;
}

/*.single_prevention {
    background: #0B2C55;
    padding: 20px 10px 15px 0;
    border-radius: 5px;
	z-index:1;
	transition:.5s;
	position:relative;
}
.single_prevention::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 10%;
    background: #5fe60e;
    z-index: -1;
    border-radius: 5px;
	transition:.5s;
	opacity:0;
}
.single_prevention:hover::before{
	opacity:1;
	width: 100%;
}
.single_prevention_thumb {
    height: 100px;
    width: 100px;
    float: left;
    position: relative;
    margin-left: -40px;
}
.single_prevention_thumb img {
    float: left;
    width: 100%;
    border-radius: 100%;
}
.single_prevention_content h4 {
    color: #fff;
    margin-bottom: 10px;
}
.single_prevention_content p {
    color: rgba(255,255,255.80);
}*/

.single_prevention {
    background: #0B2C55;
    padding: 20px 10px 15px 0;
    border-radius: 5px;
    z-index:1;
    transition:.5s;
    position:relative;
}
.single_prevention::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 10%;
    background: #5fe60e;
    z-index: -1;
    border-radius: 5px;
    transition:.5s;
    opacity:0;
}
.single_prevention:hover::before{
    opacity:1;
    width: 100%;
}
.single_prevention_thumb {
    height: 100px;
    width: 100px;
    float: left;
    position: relative;
    margin-left: -40px;
}
.single_prevention_thumb img {
    float: left;
    width: 100%;
    border-radius: 100%;
}
.single_prevention_content h4 {
    color: #fff;
    margin-bottom: 10px;
}
.single_prevention_content p {
    color: rgba(255,255,255.80);
}

/*faq*/

#banner {
  background-image: url('../assets/images/background.jpg');
  color: #fff;
  padding-top: 3%;
}

.bottom-img {
  width: 100%;
  height: 80px;
}

#services {
  text-align: center;
  padding: 80px 0;
  background-image: url('../assets/images/background.jpg');
  color: white;
}

.images {
  width: 100px;
  margin-top: 20px;
}

#banner1 {
  background-image: url('../assets/images/background.jpg');
  color: #fff;
  padding-top: 3%;
}
.btn {
  width: 75%;
}