@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text&display=swap');
html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Red Hat Text', sans-serif;
  background-color: #f0f0f0;
}

/*label{*/
/* display:flex;*/
/*  flex-direction:column;*/
/*  width:70px;*/
/*  cursor:pointer;*/
/*}*/

/*label span{*/
/*  background: #f5821f;*/
/*  border-radius:10px;*/
/*  height:7px;*/
/*  margin: 7px 0;*/
/*  transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);*/

/*}*/


/*span:nth-of-type(1){*/
/*  width:50%;*/
/*}*/

/*span:nth-of-type(2){*/
/*  width:100%;*/
/*}*/

/*span:nth-of-type(3){*/
/*  width:75%;*/
/*}*/

/*input[type="checkbox"]{*/
/*  display:none;*/
/*}*/

/*input[type="checkbox"]:checked ~ span:nth-of-type(1){*/
/*  transform-origin:bottom;*/
/*  transform:rotatez(45deg) translate(8px,0px)*/
/*}*/

/*input[type="checkbox"]:checked ~ span:nth-of-type(2){*/
/*  transform-origin:top;*/
/*  transform:rotatez(-45deg)*/
/*}*/

/*input[type="checkbox"]:checked ~ span:nth-of-type(3){*/
/*  transform-origin:bottom;*/
/*  width:50%;*/
/*  transform: translate(30px,-11px) rotatez(45deg);*/

/*}*/

body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color:inherit;
  background:inherit;
}

a:hover {
  text-decoration: none;
  color:inherit;
  background:inherit;
}
a:link{
    text-decoration: none;
  color:inherit;
  background:inherit;
}
a:focus {
  text-decoration: none;
  color:inherit;
  background:inherit;
}
a:visited{
  text-decoration: none;
  color:inherit;
  background:inherit;
}
/*NavBar*/
.bg-nav{
  background-color: #f0f0f0;
}
.navbar-brand{
  margin-right:25px;
  margin-left:25px;
}
.nav-link{
  font-size: 20px;
  font-weight:600;
}
@media screen and (max-width: 575px){
  .navbar-brand{
    margin-right:5px;
    margin-left:-10px;
  }
}

#hamburger {
  cursor: pointer;
  width:24px;
  height:24px;
}

.bar {
  display: block;
  border-radius:5rem;
  width:100%;
  min-height:18%;
  max-height:18%;
  margin-top:22%;
  
  background: #f5821f;
  
  transition:0.25s;
  -webkit-transition:0.25s;
  
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;          
}

.bar:nth-child(1) {
  position:relative;
  left:25%;
  width:75%;
}

.bar:nth-child(2) {
}

.bar:nth-child(3) {
  width:75%;
}

.animate .bar{
  margin-top:23%;
}
.animate .bar:nth-child(1) {
  width:100%;
  left:0;
  transform:translateY(9.6px) rotate(135deg);
}

.animate .bar:nth-child(2) {
  opacity: 0;
}

.animate .bar:nth-child(3) {
  width:100%;
  transform:translateY(-9.6px) rotate(-135deg);
}
.navbar-toggler{
  border: none;
}
.navbar-light .navbar-toggler {
  border: none;
}
button {
    margin:0;
    padding:0;
  border: none;
}
button:focus {
    outline: none;
}
/*top view*/
.rela-block {
  display: block;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}
.top-section {
  height: 95vh;
  background-size: cover;
}
.grad-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: radial-gradient(transparent, rgba(0,0,0,0.9));*/
}
#topLogo{
  margin-top: 10%;
}

@media screen and (max-width: 1200px){
  #topLogo{
    margin-top: 15%;
  }
}

@media screen and (max-width: 900px){
  .top-section {
  height: 50vh;
  background-size: cover;
}
}

@media screen and (max-width: 700px){
  #topLogo{
    margin-top: 20%;
  }
}

@media screen and (max-width: 600px){
  #topLogo{
    margin-top: 35%;
  }
}
a {
  text-decoration: none;
}

CatNav ul {
  list-style: none;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
CatNav ul li {
  flex: auto;
  min-width: 20%;
  margin: 0.5rem;
  margin-right: 25px;
  margin-bottom: 25px;
  padding: 0 1.5rem;
  position: relative;
  color: #fff;
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 0px 7px 40px rgba(252, 56, 56, 0.4);
  transition: all 0.3s ease;
}
.catName{
  color: white;
  font-weight: 600;
}
.catName:hover{
  color: white;
  font-weight: 600;
  text-decoration: none;
}
CatNav ul li.submenu:after {
  content: "+";
  font-size: 1.5rem;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: .5rem;
  color: #fff;
  transition:  0.6s ease-out;
}
CatNav ul li.submenu:hover:after {
  content: "\2014";
  transform: rotateY(180deg);
}
CatNav ul li:hover {
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 0px 4px 10px rgba(252, 56, 56, 0.4);
  transform: scale(1.1);
  z-index: 1;
}
CatNav ul li a {
  padding: 1rem;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
CatNav ul li a .icon {
  color: #fff;
  display: block;
  position: absolute;
  vertical-align: baseline;
  left: 1rem;
  top: 1rem;
  transition: all 0.3s ease;
}
CatNav ul li:hover a .icon {
  transform: scale(1.4);
}
CatNav ul li>ul {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  display: none;
  margin: 0;
  padding: 0;
}
CatNav ul li>ul>li {
  margin: 0.5rem 0;
  padding: 0;
  width: 100%;
  color: #333333;
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 0px 4px 10px rgba(63, 65, 67, 0.6);
}
CatNav ul li>ul>li:hover {
  transform: scale(1.1);
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 0px 4px 15px rgba(63, 65, 67, 0.6);
}
CatNav ul li>ul>li a {
  color: #333333;
}
CatNav a#drop {
  display: none;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 3.8rem;
  padding: 0 3rem;
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  box-shadow: 0px 4px 10px rgba(19, 127, 212, 0.5);
  transition: all 0.3s ease;
}
CatNav a#drop i {
  float: right;
  line-height: 3.8rem;
}
/* -------------------------------------------------------- */

/*  Media Queries
/* -------------------------------------------------------- */

@media screen and (max-width: 800px) {
  CatNav {
    display: none;
  }
  .mobileremove{
    display: none;
  }
}
/*about us*/
#aboutUsPara{
  margin:5rem;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  text-align: left;
}
#aboutusbtn{
  position: absolute;
  left: 6rem;
  margin-top: 0px;
}
#aboutuscarousel{
  padding:5rem;
  padding-right: 7rem;
}
.Sectiontitle{
  text-align: center;
  color: #283645;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 625px){
  #aboutUsPara{
    text-align: center;
    margin: 8px;
    margin-bottom: 3rem;
  }
  #aboutusbtn{
    position: absolute;
    left: 28%;
  }
  #aboutuscarousel{
    margin: 2rem;
    margin-top: 5rem;
    padding: 0rem;
  }
  .Sectiontitle{
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 395px){
  #aboutusbtn{
    position: absolute;
    left: 22%;
    margin-top: 0px;
  }
}

/*Product*/
img {
  max-width: 100%;
}

.container2 .wrapper2 {
  display: flex;
  position: relative;
  padding: 10px;
  max-width: 90%;
  /*min-height: 100vh; */
  margin: 30px auto;
  /*box-shadow: 0px 0px 40px 0px #000;*/
}
.container2 .wrapper2 .left-side {
  position: relative;
  /*backcolor*/
  /*background: black;*/
  background-size: cover;
  width: 65%;
  /*min-height: 100vh;*/
  padding: 20px 0;
  /*box-shadow: 0px 0px 10px 0px #000;*/
}
.container2 .wrapper2 .left-side .img {
  width: 100%;
}
.container2 .wrapper2 .left-side .img img{
  max-height: 55vh;
}
.container2 .wrapper2 .right-side {
  position: relative;
  width: 50%;
  margin-left: 50px;
}
.container2 .wrapper2 .right-side .info {
  text-align: left;
}
.container2 .wrapper2 .right-side .info .name {
  padding-top: 50px;
  font-size: 3rem;
  font-weight: 700;
  color: #0d0925;
}
.container2 .wrapper2 .right-side .info .decription {
  color: #5D5F5E;
  margin: 30px auto;
  margin-top: 18px;
}
a.btn {
  display: inline-flex;
  margin-top: 60px;
  background: #fe8a39;
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 15px 35px;

  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  transition: 300ms;
}
a.btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 7px 40px rgba(252, 56, 56, 0.4);
  background-position:auto-196px;
}

@media screen and (max-width: 820px) {
  * {
    outline: none;
    box-sizing: border-box;
  }

  .container2 .wrapper2 {
    display: block;
    position: relative;
    max-width: 96%;
    margin: 30px auto;
    /*box-shadow: 0px 0px 40px 0px #000;*/
  }
  .container2 .wrapper2 .left-side {
    position: relative;
    background: inherit;
    background-size: cover;
    width: 100%;
    /*padding: 20px 0;*/
    /*box-shadow: 0px 0px 10px 0px #000;*/
  }
  .container2 .wrapper2 .left-side .back {
    position: relative;
    float: left;
    margin-left: 30px;
    top: 10px;
  }
  .container2 .wrapper2 .left-side .back a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .container2 .wrapper2 .left-side .img {
    width: 400px;
    max-width: 90%;
    margin-top: 20px;
    margin: 0 auto;
  }
  .container2 .wrapper2 .right-side {
    position: relative;
    width: 100%;
    margin-left: 0px;
  }
  .container2 .wrapper2 .right-side .info {
    position: relative;
    text-align: center;
    top: 0px;
  }
  .container2 .wrapper2 .right-side .info .name {
    font-size: 2em;
    font-weight: 700;
    padding-top: 10px;
  }
  .container2 .wrapper2 .right-side .info .decription {
    position: relative;
    color: #5D5F5E;
    text-align: center;
  }
  a.btn {
    position: relative;
    background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
    color: #fff;
    margin-top: 15px;
    padding: 10px 50px;
    transition: 300ms;
  }
}

.gtco-testimonials {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .gtco-testimonials {
    margin-top: 20px;
  }
}
.gtco-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}
.gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.gtco-testimonials .owl-nav {
  display: none;
}
.gtco-testimonials .owl-dots {
  text-align: center;
}
.gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
 
  display: block;
  background: #fe8a39;
  border: 2px solid #fd3838;
  margin: 0 5px;
}
.gtco-testimonials .owl-dots .active {
  box-shadow: none;
}
.gtco-testimonials .owl-dots .active span {
  background: #fd3838;
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.gtco-testimonials .card {
  background: #fe8a39;
  box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  padding: 0 10px;
  border: 0;
}
.gtco-testimonials .card .card-img-top {
  max-width: 100px;
 
  margin: 15px auto 0;
  box-shadow: 0 8px 20px -4px rgba(252, 56, 56, 0.4);
  width: 100px;
  height: 100px;
}
.gtco-testimonials .card h5 {
  color: #000;
  font-size: 21px;
  line-height: 1.3;
}
.gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}
.gtco-testimonials .card p {
  font-size: 18px;
  color: #555;
  padding-bottom: 15px;
}
.gtco-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.gtco-testimonials .center {
  opacity: 1;
}
.gtco-testimonials .center h5 {
  font-size: 24px;
}
.gtco-testimonials .center h5 span {
  font-size: 20px;
}
.gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  outline: 0;
}

/*Footer*/
.footer {
  /*padding: 10px 0 0 0;*/
  background-color: #192531;
  color: #ffffff; 
}
.footer > .container {
  padding-bottom: 3rem;
  padding-top: 1rem;
  max-width: 90%;
}
.footer .footer-item {
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer .footer-item .footer-title {
  font-size: 24px;
  font-weight: 600;
  padding: 5px 0; 
}
.footer .footer-item .footer-title:after {
  content: '';
  display: block;
  width: 35px;
  /*border-bottom: 1px solid #f5821f;*/
  margin-top: 10px;
}
.footer .footer-item .footer-sosmed {
  margin-top: 10px;
  display: inline-block;
}
.footer .footer-item .footer-sosmed a .item {
  color: #ffffff;
  display: table-cell;
  vertical-align: middle;
  margin: 0 14px;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #1C222A; }
.footer .footer-item .footer-sosmed a .item:hover {
  /*background-color: #f5821f;*/
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
}
.footer .footer-item .footer-sosmed a .item .fa {
  font-size: 16px;
}
.footer .footer-item .list {
  margin: 0;
  padding: 0;
}
.footer .footer-item .list li {
  list-style: none;
  margin: 14px 0;
}
.footer .footer-item .list li a {
  color: #ced8e3;
}
.footer .footer-item .list li a:hover {
   color: #fff;
}
.footer .fcopy {
  padding: 10px 0;
  color: #999999;
  font-size: 14px;
  background-color: #1C222A;
}
@media screen and (max-width: 767px){
    .svg-wave{
      display:none;
  }
}
.ftex{
  text-align: center;
}