@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sunflower:wght@300&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
* {
  background-color: #fcefef;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Sunflower", sans-serif;
  font-weight: 500 !important;
  font-style: normal;
  color: #174b4c !important;
}

p, h1, h2, h3, h4, h5, h6, .btn, a {
  background: transparent !important;
}

.nav-link {
  cursor: pointer !important;
}

.full-page {
  margin: 0;
  margin-top: 80px;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 80px);
}

.cont-fluid {
  margin: 0;
  padding: 10px !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1920px !important;
  height: auto !important;
}

.btn_BOX {
  margin-top: 20px;
  margin-bottom: 20px;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.btn_BOX .btn {
  position: relative;
  top: 0;
  left: 0;
  width: 250px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_BOX .btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  color: #012538;
  font-weight: 400px;
  z-index: 1;
  transition: 0.5s;
  backdrop-filter: blur(15px);
}

.btn_BOX .btn:hover a {
  letter-spacing: 3px;
}

.btn_BOX .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(45deg) translate(0);
  transition: 0.5s;
  filter: blur(0px);
}

.btn_BOX .btn:hover a::before {
  transform: skewX(45deg) translate(200px);
}

.btn_BOX .btn::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: -5px;
  width: 30px;
  height: 10px;
  background: #8ac700;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5;
}

.btn_BOX .btn:hover::before {
  bottom: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.btn_BOX .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  top: -5px;
  width: 30px;
  height: 10px;
  background: #8ac700;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.5;
}

.btn_BOX .btn:hover::after {
  top: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.btn_BOX .btn::before,
.container .btn::after {
  background: #8ac700;
  box-shadow: 0 0 5px #8ac700, 0 0 15px #8ac700, 0 0 30px #8ac700, 0 0 60px #8ac700;
}

.bg-pattern-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: auto;
  animation: bg-pattern-1 80s linear infinite;
  z-index: -1;
}

.bg-pattern-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: auto;
  animation: bg-pattern-2 60s linear infinite;
  z-index: -1;
}

.bg-pattern {
  width: 100%;
  height: auto;
  background: transparent !important;
}

@keyframes bg-pattern-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-50%, 20%, 0);
    transform: translate3d(-50%, 0, 30%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bg-pattern-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(-30%, -20%, 0);
    transform: translate3d(-60%, 0, -30%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.top-text-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.top-first-text {
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic !important;
  color: #11222c;
  margin-bottom: 30px;
}

.top-long-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #11222c;
  margin-bottom: 20px;
  line-height: 1.5;
}

.top-image-box {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.top-image-box img {
  background: transparent;
}

.full-login-page {
  width: 100%;
  height: auto;
  margin-top: -80px !important;
  min-height: calc(100vh + 80px) !important;
  background-image: url("/img/admin/admin_login_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.registration-link {
  padding: 5px 10px !important;
  background: #fcefef !important;
  border: 1px solid #c8c0b2 !important;
  border-radius: 8px !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
  transition: 0.5s !important;
}

.registration-link:hover {
  box-shadow: inset 0 0 7px #c8c0b2 !important;
}

.full-login-box {
  background: transparent !important;
}

.login-box {
  margin-top: 160px !important;
  border-radius: 8px !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
  opacity: 0.9 !important;
}

.login-top-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #11222c;
}

.registration-icon {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px !important;
}

.registration-text {
  font-size: 0.6rem;
  color: #11222c;
  font-style: italic;
  font-weight: bold !important;
}

.registration-text-container {
  margin-top: -4px !important;
}

.registration-text-container:hover {
  color: #8ac700 !important;
}

.dashboard-nav {
  background: #fcefef !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
}

.user-settings {
  background: #fcefef !important;
  border: none !important;
}

.dashbord-head {
  background: #ffffff !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
}

.dashbord-head div, .dashboard-main, .dashboard-main div {
  background: #ffffff;
}

.dashboard-main {
  width: 100% !important;
  height: auto !important;
  min-height: 100vh !important;
}

.dashboard-card {
  background: #000000 !important;
  background-color: #fcefef !important;
}

.top-image-box-text{
  position: absolute;
  background: transparent !important;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tib-text{
  font-size: 2rem;
  color: #fcefef !important;
  text-align: center;
  font-style: italic;
  font-weight: 600 !important;
  text-shadow: 5px 5px 10px #11222c !important;
}

.cont-3box{
  width: 100%;
  background-color: #012538 !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px !important;
  padding: 20px !important;
}

.bgt{
  background: transparent !important;
}

.tree-box-card{
  width: 100%;
  height: auto;
  background: #53B1B1 !important;
  border-radius: 8px !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
  padding: 15px !important;
  color: #fcefef !important;
}

.tree-box-card:hover{
  background-size: auto 100% cover;
  transform: scale(1.04) translateX(5px);
  background: #8ac700 !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
}

.tree-box-card-body{
  width: 100%;
  height: auto;
  background: transparent !important;
  color: #fcefef !important;
}

.card-images-box{
  width: 50%;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: -25% !important;
  border-radius: 50% !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
}

.card-images{
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
}

.space-top-element{
  margin: 0;
  padding: 0;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

.ct3{
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #fcefef !important;
}

.ctt3{
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #fcefef !important;
}

.box-btn{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
}

.bbtn{
  background: #012538 !important;
  color: #fcefef !important;
  transition: 0.5s !important;
}

.bbtn:hover{
  background: #53B1B1 !important;
}

#offcanvasRightLabel {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #012538 !important;
  text-align: center !important;
}







/* ---------- Slideshow ---------- */
.cont_offers{
    width: 100%;
    max-width: 1920px;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 auto;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

#offers{
    width: 100%;
}

.top_text{
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #174b4c !important;
    font-style: italic !important;
}

.top_text-white{
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #fcefef !important;
    font-style: italic !important;
}

.lightning{
    margin-top: -20px;
    transition: 0.5s;
    background: transparent;
}

.lightningH5{
    background: transparent;
}

.lightningH5 svg{
    background: transparent;
}

.card-light{
    height: auto;
    border: 1px solid #53B1B1 !important;
    background: #fff !important;
}

.infoBOX{
    width: 95%;
    height: 120px;
    padding: 10px;
    color: #fff !important;
    margin-top: 10px !important;
    margin-left: -5%;
    background: #53B1B1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
    overflow: auto;
    border-radius: 5px !important;
}

.infoBOX p{
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    color: #fff !important;
    text-align: justify !important;
}

.ptIcon{
    width: 100%;
    height: auto;
    position: relative;
    background: transparent !important;
}

.ptIcon div{
    position: absolute;
    width: 30px !important;
    height: 30px !important;
    right: 15px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
    background-color: #8ac700 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
}

.ptIcon div i{
    font-size: 1.5rem !important;
    color: #fff !important;
    background: transparent !important;
}

.productPrice{
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
  padding: 5px !important;
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  background: #53B1B1 !important;
  color: #fff !important;
}

.productPrice p{
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem !important;
    font-style: italic !important;
    color: #fff !important;
    text-align: center !important;
} 

.productPrice p span{
    background: transparent !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    font-style: italic !important;
    color: #fff !important;
}

.cart-form{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px !important;
    background: transparent !important;
}

.cart-form .row, .cart-form .row div{
  background: transparent !important;
}

.qit{
    border: none !important;
    text-align: center !important;
    background: transparent !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #8ac700 !important;
}

.qbox .col-6 label{
    font-weight: bold !important;
    font-style: italic !important;
    color: #8ac700 !important;
    background: transparent !important;
}

.way, .way i{
    background: transparent !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #8ac700 !important;
    text-align: center !important;
    cursor: pointer !important;
}

.way i:hover{
    color: #174b4c !important;
}

.card-devices{
    background-color: rgba(255, 255, 255, 0.6);
}

.openBTN{
    background: #8ac700 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px !important;
    color: #fff !important;
    font-style: italic !important;
    font-size: 1rem !important;
    border: none !important;
}

.openBTN:hover{
    background: #174b4c !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 4px 8px 4px !important;
}

.tp_1{
    background-color: #fff !important;
}

.testimonial-pic{
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: auto !important;
    border-radius: 5px 5px 0 0 !important;
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonial-pic img{
    width: 100%;
    height: auto;
    object-fit: contain !important;
    border-radius: 5px 5px 0 0;
}

.priceBOX{
    position: absolute;
    width: 100%;
}


.lightTextH5{
    margin-top: 5px !important;
    padding: 5px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #174b4c !important;
    text-align: center !important;
    background: transparent !important;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.description{
    height: 100px;
    overflow: auto;
}

.light-btb1{
    padding: 10px;
    padding-bottom: 2px;
}

.light-btb2{
    padding: 10px;
    padding-top: 2px;
}

.light-btb1 button{
    width: 150px;
}

.light-btb2 button{
    display: none;
    width: 150px;
}

.card-condition{
    cursor: pointer;
    position: absolute !important;
    width: auto;
    max-width: 200px;
    height: 26px;
    padding: 4px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #53B1B1 !important;
    border-radius: 0 13px 13px 0;
    -webkit-box-shadow: -1px 6px 11px -1px rgba(57, 53, 53, 0.75);
    -moz-box-shadow: -1px 6px 11px -1px rgba(57, 53, 53, 0.75);
    box-shadow: -1px 6px 11px -1px rgba(0,0,0,0.45);
    margin-top: -5px;
    margin-left: -5px;
}

.card-condition span{
    margin-top: 5px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
    background: transparent;
    color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-condition span i{
  background: transparent !important;
    margin-right: 5px;
    color: #fff !important;
}

.hr{
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: 90%;
    height: 1px;
    background: #53B1B1 !important;
}

.pText{
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.card-action{
    cursor: pointer;
    float: right !important;
    width: 90px;
    height: 26px;
    padding: 4px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #53B1B1 !important;
    border-radius: 13px 0 0 13px;
    -webkit-box-shadow: -1px 6px 11px -1px rgba(57, 53, 53, 0.75);
    -moz-box-shadow: -1px 6px 11px -1px rgba(57, 53, 53, 0.75);
    box-shadow: -1px 6px 11px -1px rgba(0,0,0,0.45);
    margin-top: -5px;
    margin-right: -5px;
}

.card-action span{
    margin-left: 5px;
    background: transparent;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#testimonial-slider{
    margin-top: -20px !important;
}

.price{
    cursor: pointer;
    position: absolute;
    padding: 3px 10px;
    color: #fff;
    background: #53B1B1 !important;
    border-radius: 15px;
    margin-bottom: -10px;
    -webkit-box-shadow: -1px 6px 11px -1px rgba(57, 53, 53, 0.75);
    -moz-box-shadow: -1px 6px 11px -1px rgba(57, 53, 53, 0.75);
    box-shadow: -1px 6px 11px -1px rgba(0,0,0,0.45);
}

.testimonial {
    margin: 20px 20px 10px 20px;
}

.testimonial .description {
    padding: 30px;
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}

.owl-theme .owl-controls {
    margin-top: 20px;
}

.owl-theme .owl-controls .owl-page span {
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #53B1B1 !important;
}




/*# sourceMappingURL=style.css.map */
