body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 26px;
  color: #797979;
  overflow-x: hidden;
  background-color: #f0f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
  font-weight: 600;
  color: #222222;
  margin: 0 0 15px 0;
  padding: 0;
  text-transform: capitalize;
  font-family: 'Comic Neue', cursive;
}

h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}

.row {
  padding-left: 7.875rem;
  padding-right: 7.875rem;
}

.row .row {
  padding: 0;
}
.clear {
  clear: both;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 10px 15px;
  font-size: 13px;
  border-radius: 4px;
  background: #ff7e00;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  letter-spacing: 0.5;
}
.btn:hover {
  background: #37a4dd;
  color: #ffffff;
}

/* Header Area CSS Start */
:root {
  --navbar-bg-color: white;
  --navbar-text-color: hsl(0, 0%, 85%);
  --navbar-text-color-focus: white;
  --navbar-bg-contrast: #ff7e00;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.navcontainer {
  max-width: 1000px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  margin-left: auto;
  margin-right: auto;
}

#navbar {
  --navbar-height: 64px;
  position: fixed;
  height: var(--navbar-height);
  background-color: var(--navbar-bg-color);
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.navbar-containers {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

.navbar-item {
  margin: 0.4em;
  width: 100%;
}

.home-link,
.navbar-link {
  color: black;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  display: flex;
  font-weight: 400;
  align-items: center;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.home-link:focus,
.home-link:hover {
  color: var(--navbar-text-color-focus);
}

.navbar-link {
  justify-content: center;
  width: 100%;
  padding: 0.4em 0.8em;
  border-radius: 5px;
}

.navbar-link:focus,
.navbar-link:hover {
  color: var(--navbar-text-color-focus);
  background-color: var(--navbar-bg-contrast);
}

.active {
  color: white;
  background-color: #ff7e00;
}

.navbar-logo {
  margin-bottom: 0px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-left: -40px;
  margin-right: 0.5em;
  margin-top: 16px;
}

.brand {
  font-size: 15pt;
  margin-left: -10px;
  user-select: none;
  color: #f66e0d;
}

.navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.dropdown-content a {
  float: none;
  font-size: small;
  color: black;
  padding: 1px 1px;
  text-decoration: none;
  display: block;
  text-align: left;
  z-index: 10;
  margin-right: 15px;
  margin-left: 15px;
}

.dropdown-content a:hover {
  text-align: left;
  padding: 1px 1px;
  background-color: #ff6600;
  color: white;
  margin-right: 15px;
  margin-left: 15px;
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 10;
}
.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  background-color: #293d3d;
}

.navbar-toggle:focus .icon-bar,
.navbar-toggle:hover .icon-bar {
  background-color: black;
}

#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
  position: absolute;
  margin: 0;
  width: 30px;
}

#navbar.opened .navbar-toggle .icon-bar:first-child {
  transform: rotate(45deg);
}

#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
  opacity: 0;
}

#navbar.opened .navbar-toggle .icon-bar:last-child {
  transform: rotate(-45deg);
}

.navbar-menu {
  position: fixed;
  top: var(--navbar-height);
  bottom: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  transform: translate(14%);
}

#navbar.opened .navbar-menu {
  background-color: none;
  opacity: 1;
  visibility: visible;
  transform: translate(-2%);
}

.navbar-links {
  list-style-type: none;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  background-color: var(--navbar-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 1.4rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin-left: 5%;
}

#navbar.opened .navbar-links {
  padding: 1em;
  max-height: none;
}

@media screen and (min-width: 700px) {
  .navbar-toggle {
    display: none;
  }
  #navbar .navbar-menu,
  #navbar.opened .navbar-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: block;
    height: 100%;
  }

  #navbar .navbar-links,
  #navbar.opened .navbar-links {
    margin: 0;
    padding: 0;
    box-shadow: none;
    position: static;
    flex-direction: row;
    list-style-type: none;
    max-height: max-content;
    width: 100%;
    height: 100%;
  }

  #navbar .navbar-link:last-child {
    margin-right: 0;
  }
}

/* Header Area CSS End */
@media only screen and (min-width: 992px) {
  #banner-mobile {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  #newbanner {
    display: none;
  }
}

p {
  user-select: none;
}
a {
  color: rgb(141, 137, 137);
  font-weight: bold;
}
a:hover {
  color: #ff8000b7;
  font-weight: bold;
  padding: 0%;
}

* {
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin-left: 0%;
  margin-right: 0%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.silder {
  width: 100%;
}
.knowmore {
  display: block;
  color: white;
  background-color: #ff7e00;
  border-radius: 4px;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 1%;
}
.knowmore:hover {
  background-color: blue;
  border: black 1px;
}
.serviceItems {
  user-select: none;
}
.serviceItems:hover {
  color: #ff7e00;
}

.category1 {
  display: block;
  color: white;

  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 1%;
}
.footersection {
  display: block;
  color: #5b5b5b;
}
.footersection:hover {
  color: #ff6600;
}
.footergradient {
  background: linear-gradient(to top, #464343 0%, #0f0f0f 100%);
}

.menubar {
  float: left;
  font-size: 15px;
  color: rgb(71, 68, 68);
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
}

.menubar:hover {
  background-color: #ff7e00;
  border-color: black;

  color: white;
}
.video-container {
  overflow: hidden;
  position: relative;
  width: 0%;
  margin-left: 10%;
}

.video-container::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.videogallery {
  margin-left: 3%;
  margin-right: 3%;
  margin-bottom: 5%;
}
ul.videos li {
  transform: translate(30%);
  display: inline-block;
  padding: 20px;
  margin-bottom: 2%;
}
.singlevideo {
  width: 100%;
  height: 55%;
}
@media only screen and (max-width: 600px) {
  .videogallery {
    margin-left: 0%;
    margin-right: 0%;
    margin-bottom: 5%;
  }
  ul.videos li {
    transform: translate(0%);
    display: inline-block;
    padding: 20px;
  }
  .singlevideo {
    width: 450px;
    height: 290px;
    padding: 0%;
  }
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
  background-color: transparent;
  width: 400px;
  height: 260px;
  border: 1px solid #f1f1f1;
  border-radius: 20px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.9s;
  border-radius: 20px;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-box-front {
  background-color: #bbb;
  color: white;
}

/* Style the back side */
.flip-box-back {
  background-color: #ff7e00;
  color: white;
  transform: rotateY(180deg);
  opacity: 85%;
}

@media only screen and (max-width) {
  .flip-box {
    width: 70%;
  }
}

/* footer */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
  text-decoration: none;
}
footer{
  width: 100%;
  position: float;
  bottom: 0;
  left: 0;
  background: rgb(34, 32, 32);
  font-weight: normal;
}
footer .content{
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: normal;
}
footer .content p,a{
  color: #fff;
  font-weight: normal;
}
footer .content .box{
  width: 33%;
  transition: all 0.4s ease;
  font-weight: normal;
}
footer .content .topic{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-weight: normal;
}
footer .content p{
  text-align: justify;
  font-weight: normal;
}
footer .content .lower .topic{
  margin: 24px 0 5px 0;
  font-weight: normal;
}
footer .content .lower i{
  padding-right: 16px;
  font-weight: normal;
}
footer .content .middle{
  padding-left: 80px;
  font-weight: normal;
}
footer .content .middle a{
  line-height: 32px;
  font-weight: normal;
}

.content .right input[type="submit"]:hover{
  background: none;
  color:  #eb2f06;
  font-weight: normal;
}
footer .content .media-icons a{
  font-size: 16px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  transition: all 0.3s ease;
  font-weight: normal;
}
.content .media-icons a:hover{
  border-color: #eb2f06;
  font-weight: normal;
}
footer .bottom1{
  width: 100%;
position: fixed;
  text-align: right;
  color: #d9d9d9;
  padding: 0 40px 5px 0;
  font-weight: normal;
}
footer .bottom1 a{
  color: #eb2f06;
  font-weight: normal;
}
footer a{
  transition: all 0.3s ease;
  font-weight: normal;
}
footer a:hover{
  color: #eb2f06;
}
@media (max-width:1100px) {
  footer .content .middle{
    padding-left: 50px;
    font-weight: normal;
  }
}
@media (max-width:950px){
  footer .content .box{
    width: 50%;
    font-weight: normal;
  }
  .content .right{
    margin-top: 40px;
    font-weight: normal;
  }
}
@media (max-width:560px){
  footer{
    position: relative;
    font-weight: normal;
  }
  footer .content .box{
    width: 100%;
    margin-top: 30px;
    font-weight: normal;
  }
  footer .content .middle{
    padding-left: 0;
    font-weight: normal;
  }
}


/* footer ends */

