@import url(https://fonts.googleapis.com/css?family=Rubik);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700);
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400&display=swap');
      
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Rubik';
  color: #444444;
  background-color: #F9F6F2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik';
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  max-height: 48px;
  margin-top: 1%;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  font-family: 'Open Sans';
  font-size: 12px;
  font-style: 'SemiBold';
  font-weight: 600;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  font-size: 15px;
  color: #705F5C;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}


.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #422e26;
  /*border-bottom: 3px solid #F2B200;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;*/
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #705F5C;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;  
}
.navborder:hover ,.navbar div.active, .navbar li:hover>div {
  border-top: 5px solid #f2b200;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #f2b200;
}

.navborder {
  margin-top: 10px;
  margin-bottom: -13px;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #f2b200;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #422E26;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f2b200;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f2b200;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Video Section
--------------------------------------------------------------*/
#hero {  
  width: 100%;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .lideel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.carousel-inner button {
  color: #fff;
}

.overlay-left {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-80%, 20%);
  color: #F9F9F9;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.overlay-left p {
  font-family: 'Open Sans';
  font-style: normal;
  color: #F9F9F9;
  font-weight: 600;
  font-size: 18px;

}

.overlay-left h2 {
  font-family: 'Rubik';
  /*font-weight: bold;*/
  font-style: normal;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;

}

.overlay-right {
  position: absolute;
  top: 35%;
  left: 80%;
  transform: translate(-80%, 30%);
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.banner-img {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 90vh;
  opacity: 0.5;
}

.banner-img:focus{
  background-color: #0b2341;
}

.grp1 {
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-self: center;

}

.heroitem {
  position: absolute; 
  top: 40%;
  left: 50%; 
  transform: translate(-40%, 20%); 
  color: #F9F9F9;
}


.videobtn {
  position: relative; 
  left: 10%;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
}

.t1{
  font-size: 2px; 
  font-weight:500; 
  font-family: 'Rubik'; 
  color:#f28400; 
  font-style:medium;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  padding: 0;
  color: #f2b200;
  font-weight: bold;
  font-family: 'Rubik';
  font-weight: 700;
  font-size: 24px;
  font-style: normal;

}

.section-title h3 {
  padding: 0;
  color: #422E26;
  font-weight: 600;
  font-family: 'Rubik';
  font-style: normal;
  font-size: 24px;
}

.section-title h4 {
  padding: 0;
  color: #f28400;
  font-family: 'Rubik';
  font-weight: 500;
  font-size: 16px;
  font-style: normal;

}

.section-title p {
  font-family: 'Rubik';
  color: #422E26;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  opacity: 70%;
  line-height: 24px;
}

.gif{
  width: 502px;
  height: 440.66px;
}

.accordion-item {
  padding: 10px 0 10px 0;
  border: none;
  background-color: #F9F6F2;
}

.accordion-header{
  opacity: 60%;
}
 
.accordion-button {
  border: none;
  color: rgb(59, 18, 18);
  background-color: #E6E0CA;
}

.accordion-button::before {
  content: "";
  background-color: none;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-button:not(.collapsed) {
  color: rgb(59, 18, 18);
  background-color: #E6E0CA;
  box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

.accordion-body{
  font-family: 'Open Sans';
  font-style: normal;
  line-height: 20px;
  color: #666666;
} 

/* Button */

.btn {
  box-sizing: border-box;
  appearance: none;
  background-color: transparent;
  border: 2px solid #f28400;
  border-radius: 40px;
  color: black;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.4em 2.2em;
  text-decoration: none;
  text-align: center;
  font-family: 'Rubik';
  font-weight: 600;
}
  .btn:hover,
  .btn:focus {
    color: #fff;
    outline: 0;
  }
  .yellow {
    border-color: #F28400;
    color: rgb(43, 19, 19);
    background-image: linear-gradient(45deg, #f28400 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background 300ms ease-in-out;
 }
  .yellow:hover {
    background-position: 0;
 }

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.wrapper {
  width: 100%;
  position: relative;
  height: auto;
}
.background-shape {
  background: #422e26;
  width: 95%;
  height: 300px;
  border-radius: 0 0 0 100px;
  position: absolute;
  top: 0px;
  right: 0;
}

.background-shape p {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #F28400;
  padding: 2em 0 0.4em 4em;
}

.background-shape h4 {
  font-family: 'Rubik';
  font-style: bold;
  line-height: 27px;
  color: #FFFFFF;
  padding: 0 3em;
}

.content {
  color: white;
  position: absolute;
  top: 120px;
  left: 30%;
  z-index: 10;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: #D9D9D9;
  padding: 0 0 0 0;
  font-size: 14px;
}

#footer img {
  margin-bottom: 25px;
  max-width: 100px;
}

#footer p{
  font-size: 16px;
  color: #666666;
  font-family: 'Open Sans';
  font-style: normal;
}

#footer li{
  list-style: none;
  font-size: 14px;
  color: #666666;
  padding: 10px 0 10px 0;
  font-family: 'Open Sans';
  
}

#footer i{
  color: #F28400;
  font-size: 32px;
  margin-right: 20px;
}

#footer i:hover {
  color: #bd8a00;
}

#footer a{
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Open Sans';
  text-decoration: none;
}

#footer a:hover,
#footer li:hover>a {
  color: #f2b200;
}

#footer h2{
  color: #1E3932;
  margin-left: 24px;
  font-size: 18px;
  font-family: 'Open sans';
  font-weight: 600;
}

/* Form */

.vendor-h2 {
  font-weight: bold;
  color: rgb(75, 14, 14);
}

.form-group input{
  border-radius: 12px;
}

.form-check {
  padding-top: 20px;
}

.bg-img{
  background: rgb(241,183,0);
  background: linear-gradient(90deg, rgba(241,183,0,1) 0%, rgba(239,159,0,1) 35%, rgba(237,141,0,1) 62%, rgba(236,134,0,1) 100%);
  border-radius: 0 0 60px 60px;
}

.carousel .img-box img {
  width: 100%;
	align-self: center;
}

.login-a{
  text-decoration: none;
  color:#f2b200;
}

.login-a::after{
  color: #fab700;
}

@import url('https://rsms.me/inter/inter.css');

@import url('http://fonts.cdnfonts.com/css/open-sans');
                
@import '~mdb-ui-kit/css/mdb.min.css';

 h1, h2, h3 {
	 font-weight: 900;
}
 mark {
	 background: var(--color-accent);
	 color: var(--color-text);
	 font-weight: bold;
	 padding: 0 0.2em;
}
 .card {
	 background: var(--color-background);
	 padding: calc(4 * var(--size-bezel));
	 margin-top: calc(4 * var(--size-bezel));
	 border-radius: var(--size-radius);
	 box-shadow: 0.5rem 0.5rem 0 var(--color-shadow, currentColor);
}
 .card--inverted {
	 --color-background: var(--color-dark);
	 color: var(--color-light);
	 --color-shadow: var(--color-accent);
}
 .card--accent {
	 --color-background: var(--color-signal);
	 --color-accent: var(--color-light);
	 color: var(--color-dark);
}
 .card *:first-child {
	 margin-top: 0;
}
 .l-design-widht {
	 max-width: 40rem;
	 padding: 1rem;
}
 .input {
	 position: relative;
}
 .input__label {
	 position: absolute;
	 left: 0;
	 top: 0;
	 padding: calc(var(--size-bezel) * 0.75) calc(var(--size-bezel) * .5);
	 margin: calc(var(--size-bezel) * 0.75 + 3px) calc(var(--size-bezel) * .5);
	 background: pink;
	 white-space: nowrap;
	 transform: translate(0, 0);
	 transform-origin: 0 0;
	 background: var(--color-background);
	 transition: transform 120ms ease-in;
	 font-weight: bold;
	 line-height: 1.2;
}
 .input__field {
	 box-sizing: border-box;
	 display: block;
	 width: 100%;
	 border: 3px solid currentColor;
	 padding: calc(var(--size-bezel) * 1.5) var(--size-bezel);
	 color: currentColor;
	 background: transparent;
	 border-radius: var(--size-radius);
}
 .input__field:focus + .input__label, .input__field:not(:placeholder-shown) + .input__label {
	 transform: translate(0.25rem, -65%) scale(0.8);
	 color: var(--color-accent);
}
 .button-group {
	 margin-top: calc(var(--size-bezel) * 2.5);
}
 button {
	 color: currentColor;
	 padding: var(--size-bezel) calc(var(--size-bezel) * 2);
	 background: var(--color-accent);
	 border: none;
	 border-radius: var(--size-radius);
	 font-weight: 900;
}
 button[type=reset] {
	 background: var(--color-background);
	 font-weight: 200;
}
 button + button {
	 margin-left: calc(var(--size-bezel) * 2);
}
 .icon {
	 display: inline-block;
	 width: 1em;
	 height: 1em;
	 margin-right: 0.5em;
}
 .hidden {
	 display: none;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


.testimonial-body{
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-content{
  margin: 0 20px;
  overflow: hidden;
  border-radius: 25px;
}

.card-content{
  display: flex;
}

.card-info{
  display: flex;
  flex-direction: column;
}

.testimony{
  font-family: 'Open Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  padding: 20px 20px 0 20px;
}

.test-photo{
  box-sizing: border-box;
  width: 65px;
  height: 65px;
  border: 1px solid #f4f4f4;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.17);
  border-radius: 50%;
  margin-left: 20%;
  text-align: end;
}

.test-name{
  font-family: 'Rubik';
  size: 18px;
  line-height: 24px;
  color: #422E26;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.designation{
  position: relative;
  font-family: 'Open Sans';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: black;
  text-transform: capitalize;
}

.card{
  border-radius: 25px;
  box-shadow: none;
  position: relative;
  width: 318px;
  height: 297px;
  background-color: #E6E0CA;
}
@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

.fa-quote-left{
  padding: 20px 0 0 20px;
  font-size: 54px;
}

.test-star{
  color: #26C000;
}

.test-star span {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  align-items: center;
  color: #333333;
}
/*
.back-color{
  background: linear-gradient(333.78deg, #FFFFFF 13.85%, #F9F6F2 82.34%);
  opacity: 0.7;
} */

.testtext{
  width: 403px;
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  padding-bottom: 40px;
}

.testname{
  width: 185px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
  color: #FFFFFF;
}

.overview{
  color: white;
  padding-bottom: 40px;
}

.testqoute{
  padding: 0 0 0 20px;
  width: 120px;
  height: 85px;
}


/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/


.bi-play-circle {
  font-size: 72px;
}

.vendor-h1{
  font-family: 'Rubik';
  color: #CCCCCC;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.02rem;
  font-size: 18px;
}

.vendor-h3{
  color: #422E26;
  font-size: 24px;
  font-style: normal;
  font-family: 'Rubik';
  font-weight: 600;
}

.vendor-h4{
  color: #422E26;
  font-family: 'Rubik';
  font-weight: 300;
  font-size: 16px;
  font-style: normal;
  opacity: 0.8;
}

.index-h1{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Rubik';
  color: #422E26;
  letter-spacing: -2%;
}

  .btn2{
    background-color: #f28400;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 40px;
    font-family: 'Rubik';
    padding: 0.2em 1.2em;
    margin: 2px;
    cursor: pointer;
    text-decoration: none;
  }

  .btn2 h5{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 0.3rem;
    font-weight: 500;
    line-height: 1.2;
  }

  .btn2 i{
    font-size: 24px;
  }

  @media ((max-width: 576px)) {
    .btn2 {
          background-color: #f28400;
          color: white;
          display: flex;
          text-align: center;
          justify-content: center;
          font-size: 0.8rem;
          font-weight: 400;
          border-radius: 40px;
          font-family: 'Rubik';
          padding: 0.2em 1.2em;
          margin: 2px;
          cursor: pointer;
        }
        .btn2 h5{
          font-size: 1rem;
        }
        .btn2 i{
          font-size: 20px;
          margin-top: 0.3rem;
          margin-bottom: 0.3rem;
          margin-left: 0.1rem;
          font-weight: 500;
          line-height: 1.2;
        }
      }

  .tos_heading{
    text-align: justify;
    font-size: 18px;
    color: #000000;
    font-family: 'Arial';
    
  }

  .tos_cont{
    text-align: justify;
    font-size: 18px;
    color: #000000;
    font-family: 'Arial';
    font-weight: 100;
  }

  .comm {
    text-align: justify;
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    color: #000000;
  }

  .comm_head{
    text-align: justify;
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: bolder;
    margin: 0%;
    color: #000000;
    
  }

  .comm_cont{
    text-align: justify;
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    color: #000000;
  
  }


  .btn3{
  box-sizing: border-box;
  appearance: none;
  background-color: transparent;
  border: 2px solid #f28400;
  border-radius: 40px;
  color: black;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.4em 2.2em;
  text-decoration: none;
  text-align: center;
  font-family: 'Rubik';
  font-weight: 600;
}
  .btn3:hover,
  .btn3:focus {
    color: #fff;
    outline: 0;
  }
  .orange {
    border-color: #F28400;
    color: rgb(43, 19, 19);
    background-image: linear-gradient(45deg, #f28400 50%, transparent 50%);
    background-position: 100%;
    background-size: 400%;
    transition: background 300ms ease-in-out;
 }
  .orange:hover {
    background-position: 0;
 }
