/* stylesheet */
:root {
  --primary-color: #797979;
  --secondary-color: #8a0b12;
  --dark-color1: #111111;
  --dark-color2: #17384e;
  --white-color: #ffffff;
  --transition: 0.4s ease-in-out;
  --ltn__box-shadow-1: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
}
:after,
:before {
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
}
body {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  background-color: #ffffff;
  color: var(--primary-color);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  font-weight: 500;
}
img {
  max-width: 100%;
  height: auto;
}
.hide {
  display: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
}
a,
a:hover,
a:focus,
a:visited {
  color: inherit;
  text-decoration: none;
}

b {
  color: #5c727d;
  font-weight: 900;
}

ul li,
ol li {
  margin-top: 1rem;
}

.full-w {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.text-primary {
  color: rgb(244 166 54) !important;
}

/* common css */
.as_padderTop10 {
  padding-top: 10px;
}
.as_padderTop20 {
  padding-top: 20px;
}
.as_padderTop30 {
  padding-top: 30px;
}
.as_padderTop40 {
  padding-top: 40px;
}
.as_padderTop50 {
  padding-top: 50px;
}
.as_padderTop60 {
  padding-top: 60px;
}
.as_padderTop70 {
  padding-top: 70px;
}
.as_padderTop80 {
  padding-top: 80px;
}
.as_padderTop90 {
  padding-top: 90px;
}
.as_padderTop100 {
  padding-top: 90px;
}
.as_padderBottom5 {
  padding-bottom: 5px;
}
.as_padderBottom10 {
  padding-bottom: 10px;
}
.as_padderBottom20 {
  padding-bottom: 20px;
}
.as_padderBottom30 {
  padding-bottom: 30px;
}
.as_padderBottom40 {
  padding-bottom: 40px;
}
.as_padderBottom50 {
  padding-bottom: 50px;
}
.as_padderBottom60 {
  padding-bottom: 60px;
}
.as_padderBottom70 {
  padding-bottom: 70px;
}
.as_padderBottom80 {
  padding-bottom: 80px;
}
.as_padderBottom90 {
  padding-bottom: 90px;
}
.as_padderBottom100 {
  padding-bottom: 90px;
}
.as_margin0 {
  margin: 0px !important;
}
.as_font14 {
  font-size: 16px;
  line-height: 26px;
}
.as_font_custom {
  font-size: 20px;
  line-height: 2rem;
  text-align: left;
  color: #5c727d;
}

.font-bold {
  font-weight: bold;
}

.as_toggle {
  display: none;
}

.border-wrapper {
  padding-left: 20px;
  border-left: 2px solid #8a0b12;
  margin-top: 20px;
}

.as_heading {
  font-size: 36px;
  text-transform: capitalize;
  padding-bottom: 17px;
  position: relative;
  margin: -8px 0 0;
  color: var(--secondary-color);
  font-weight: 600;
}

.as_heading_custom_title {
  font-size: 36px;
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  padding-bottom: 17px;
  position: relative;
  margin: -8px 0 0;
  color: #781017;
  font-weight: 600;
  letter-spacing: 4px;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid rgb(121 121 121 / 20%);
  outline: none;
  box-shadow: none !important;
  color: var(--primary-color);
  padding: 0 28px;
  border-radius: 45px;
}
.form-control:focus {
  border-color: var(--secondary-color) !important;
}
.form-control::placeholder {
  color: #797979;
}
.as_subheading {
  font-size: 22px;
  text-transform: capitalize;
  color: var(--dark-color1);
}
.as_orange {
  color: var(--secondary-color);
}
.as_white {
  color: var(--white-color);
}

.as_box_shadow {
  box-shadow: 0 16px 32px 0 rgb(7 28 31 / 29%);
}

.as_btn,
.as_btn:focus,
.as_btn:visited {
  height: 45px;
  background-image: -moz-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  font-size: 14px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  padding: 0 23px;
  border: none !important;
  position: relative;
  color: var(--white-color);
  border-radius: 45px;
  outline: none;
  min-width: 160px;
  justify-content: center;
  outline: none;
  z-index: 1;
  overflow: hidden;
}
.as_btn:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  background-image: -moz-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
}
.as_btn:hover:after {
  left: 0;
}
.as_btn:hover {
  color: var(--white-color) !important;
}

.as_btn_wrapper {
  padding: 12px 50px 12px 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  background: #8a0b12;
  border-radius: 65px;
  transition: 0.3s;
  border-color: #fbab54;
  border-width: 5px;
  border-style: solid;
}

.as_btn_wrapper:after {
  display: none;
}

.as_btn_wrapper:hover {
  text-decoration: none;
  color: #0df053;
  background-color: #fff;
}

.as_verticle_center {
  display: flex;
  align-items: center;
}
.slick-dots {
  padding: 0;
  margin: 30px 0 0 0;
  list-style: none;
}
.slick-dots li {
  display: inline-flex;
}
.slick-dots li button {
  display: none;
}
.slick-dots li {
  height: 9px;
  width: 9px;
  background-color: #234a64;
  border-radius: 100%;
  margin: 0 6px;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background-color: var(--secondary-color);
}

.slick-slide {
  outline: none;
}
.only-timepicker .datepicker--nav,
.only-timepicker .datepicker--content {
  display: none;
}
.only-timepicker .datepicker--time {
  border-top: none;
}
.datepicker {
  background-color: #ffffff;
  border: 1px solid rgb(255 255 255 / 10%);
  color: var(--primary-color);
}
.datepicker--nav {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.datepicker--nav > div {
  background-color: transparent !important;
  color: var(--primary-color);
}
.datepicker--pointer {
  background-color: #ffffff;
  border-top-color: rgb(255 255 255 / 10%);
  border-right-color: rgb(255 255 255 / 10%);
}
.datepicker--cell:hover {
  background-color: var(--secondary-color);
  color: var(--white-color) !important;
}
.datepicker--cell.-current-,
.datepicker--day-name {
  color: var(--secondary-color);
}
/* select2 */
.select2-selection {
  height: 45px !important;
  background-color: #ffffff !important;
  border: 1px solid #e7e7e7 !important;
  outline: none;
  box-shadow: none !important;
  color: var(--primary-color);
  border-radius: 45px !important;
  transition: none;
}

.select2-selection .select2-selection__rendered {
  color: var(--primary-color) !important;
  font-size: 14px;
  line-height: 45px !important;
  padding: 0 28px !important;
}

.select2-selection__clear {
  display: none;
}

.select2-container--default .select2-selection__arrow {
  height: auto !important;
  bottom: 1px;
  right: 18px !important;
}

.select2-container {
  transition: none;
  width: 100% !important;
}

.select2-dropdown {
  transition: none;
  background-color: #ffffff;
  border-color: #e7e7e7;
  font-size: 14px;
  box-shadow: -2px 0px 28px 0px rgb(0 0 0 / 5%);
}

.select2-search--dropdown {
  padding: 10px 25px;
}

.select2-search--dropdown input {
  background-color: #ffffff;
  border-color: rgb(223 223 223) !important;
  outline: none !important;
}

.select2-results__option {
  padding: 10px 26px;
  background-color: transparent !important;
}

.select2-results__option:hover,
.select2-results__option.select2-results__option--selected {
  color: var(--secondary-color) !important;
}
.select2-container--below.select2-container--open .select2-selection {
  border-radius: 10px 10px 0 0 !important;
}
.select2-container--above.select2-container--open .select2-selection {
  border-radius: 0 0 10px 10px !important;
}

.select2-dropdown.select2-dropdown--above {
  box-shadow: -10px -28px 28px -24px rgb(0 0 0 / 5%);
}
/* loader */
.as_loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as_loader img {
  animation: spin 7s infinite linear;
  -webkit-animation: spin 7s infinite linear;
  -moz-animation: spin 7s infinite linear;
}
/* header css start */
.as_header_wrapper {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: all 0.5s ease-in-out;
}

.as_header_wrapper.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(255 255 255);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.as_logo {
  display: flex;
  min-width: auto;
}
.as_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.as_menu > ul > li {
  display: inline-flex;
  text-transform: capitalize;
  margin: 0 30px;
  color: #6f828c;
  position: relative;
}
.as_info_detail:last-child {
  margin-right: 0px;
}
.as_header_detail {
  width: calc(100% - 449px);
}
.as_menu > ul > li > a {
  padding: 23px 0;
  position: relative;
  transition: all 0.3s linear;
}
.as_wishlist {
  margin-left: 20px;
}
.as_menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}
.as_menu > ul > li > a:hover:before,
.as_menu > ul > li > a.active:before {
  width: 29px;
}
.as_menu ul li a:hover,
.as_menu ul li a.active {
  color: var(--secondary-color);
}
.as_info_detail {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 20px 0;
}
.as_search_wrapper {
  max-width: 415px;
  width: 100%;
  position: relative;
}
.as_search_wrapper > a {
  position: absolute;
  top: 11px;
  right: 20px;
}
.as_search_wrapper .form-control {
  height: 45px;
  border: 1px solid #fff;
  border-radius: 45px;
  background-color: transparent;
  color: #ffffff;
}
.as_search_wrapper .form-control::placeholder {
  color: #ffffff;
}

.as_user img {
  border-radius: 100%;
  border: 3px solid #fff;
}

.as_user {
  position: relative;
  margin-left: 30px;
}

.as_user span {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 100%;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 14px;
  padding-left: 2px;
}
.as_search {
  cursor: pointer;
}
.as_info_detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.as_info_detail ul li {
  display: inline-flex;
  padding: 0 15px;
}

.as_info_detail ul li a,
.as_info_detail ul li a:focus {
  text-decoration: none;
  color: inherit;
}
.as_infobox {
  display: flex;
  color: #ffffff;
}
.as_infobox:hover {
  color: var(--secondary-color);
}
.as_info_detail ul li .as_infobox > span {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.as_right_info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.as_cart_wrapper {
  margin-left: 30px;
  position: relative;
}
.as_cart_wrapper > span {
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}
.as_cart_wrapper > span .as_cartnumber {
  width: 18px;
  height: 18px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  font-size: 9px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -12px;
  color: #ffffff;
}
.as_cart {
  position: relative;
}
.as_cart_box {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background-color: #ffffff;
  z-index: 1;
  padding: 5px 20px 20px;
  box-shadow: 0 20px 20px rgb(255 255 255 / 5%);
  border-radius: 20px;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  box-shadow: -2px 0px 28px 0px rgb(0 0 0 / 5%);
  transition: all 0.3s linear;
}
.as_cart.cart_open .as_cart_box {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}
.as_cart_list .as_cart_img {
  float: left;
}
.as_cart_list .as_cart_img img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.as_cart_info {
  width: calc(100% - 70px);
  float: right;
  padding-left: 10px;
}
.as_cart_list .as_cart_info a {
  font-size: 16px;
  font-weight: 500;
  font-family: "Philosopher", sans-serif;
  margin-bottom: 5px;
  width: 110px;
  text-transform: capitalize;
  color: var(--dark-color1);
}
.as_cart_list {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}
.as_cart_list ul {
  margin: 0;
  padding: 0 0 20px;
  list-style: none;
  border-bottom: 1px solid #e7e7e7;
}
.as_cart_list li {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.as_cart_list .as_cart_info p {
  font-size: 14px;
}
.as_cart_box .as_cart_total,
.as_cart_box .as_cart_btn {
  padding-right: 20px;
}
.as_cart_box .as_cart_total p {
  margin-top: 10px;
  text-align: left;
  text-transform: capitalize;
}
.as_cart_box .as_cart_total p span {
  float: right;
  font-family: "Philosopher", sans-serif;
}
.as_cart_box .as_cart_btn {
  text-align: center;
  padding-top: 5px;
  display: flex;
}
.as_cart_box .as_cart_btn button {
  background-color: var(--dark-color1);
  padding: 0 5px;
  text-transform: capitalize;
  min-width: 120px;
  margin-right: 1;
}
.as_cart_box .as_cart_btn button::after {
  border-left-color: var(--dark-color1);
}
.as_cart_box .as_cart_btn button::before {
  border-right-color: var(--dark-color1);
}
.as_cart_box .as_cart_btn button:hover {
  background-color: var(--secondary-color);
}
.as_cart_box .as_cart_btn button:hover::after {
  border-left-color: var(--secondary-color);
}
.as_cart_box .as_cart_btn button:hover::before {
  border-right-color: var(--secondary-color);
}
.as_cart_box .as_cart_btn button:first-child {
  margin-right: 15px;
}
.as_cart_list::-webkit-scrollbar {
  width: 4px;
}
.as_cart_list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.as_cart_list::-webkit-scrollbar-thumb {
  background-color: #ff6f00;
  outline: #708090 solid 1px;
}
.as_menu > ul > li .as_submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #ffffff;
  padding: 15px 0;
  border-radius: 10px;
  width: 170px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.as_menu > ul > li > .as_submenu {
  transform: translateY(-10px);
}
.as_menu > ul > li:hover > .as_submenu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.as_menu > ul > li .as_submenu li a {
  color: #6f828c;
  padding: 7px 20px;
  display: flex;
}

.as_menu > ul > li .as_submenu li a:hover {
  color: #8a0b12;
}

.as_menu > ul > li .as_submenu > li > .as_submenu {
  right: 100%;
  top: 8px;
  left: auto;
  transform: translateX(-20px);
}
.as_menu > ul > li .as_submenu > li:hover > .as_submenu {
  transform: translateX(-10px);
  opacity: 1;
  visibility: visible;
}

.as_menu > ul > li .as_submenu > li {
  position: relative;
}

.as_menu > ul > li .as_submenu:before {
  content: "";
  position: absolute;
  border-bottom: 7px solid #8a0b12;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  bottom: 100%;
  left: 13px;
}
.as_menu > ul > li > .as_submenu > li > .as_submenu:before {
  bottom: auto;
  top: 10px;
  left: 100%;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: 7px solid #8a0b12;
}
/* header css end */
/* banner css start */
.as_banner_wrapper {
  background-image: url(../images/others/4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 340px 0 150px;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}
.as_banner_detail .as_btn {
  background: #ffffff;
  color: var(--dark-color1);
  font-weight: 600;
  transition: all 0.3s linear;
}
.as_banner_detail .as_btn:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}
.as_banner_detail h5 {
  font-size: 26px;
  margin: 0 0 5px;
}
.as_banner_detail h1 {
  font-family: "Nunito", sans-serif;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 5px 6px 10px black;
}
.as_banner_detail p {
  margin-bottom: 26px;
}
.as_banner_img {
  position: relative;
}
.as_banner_img .as_hand_bg {
  animation: spin 12s infinite linear;
  -webkit-animation: spin 12s infinite linear;
  -moz-animation: spin 12s infinite linear;
  display: inline-block;
}
.as_banner_img .as_hand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 60%;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.as_banner_slider {
  position: relative;
  z-index: 1;
}

.bg-overlay:before {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 65%;
  height: 100%;
  background-color: rgb(42 37 38 / 64%);
  -webkit-transform: skew(18deg);
  -ms-transform: skew(18deg);
  transform: skew(18deg);
}

.as_banner_slider .slick-arrow.slick-prev {
  left: -265px;
}
.as_banner_slider .slick-arrow.slick-next {
  right: -900px;
}
.as_banner_slider .slick-arrow > span {
  display: inline-flex;
}

/* banner css end */
/* about css start */
.as_about_wrapper {
  background-image: url("../images/others/1.png");
}
.as_paragraph_wrapper {
  padding-left: 20px;
  border-left: 2px solid var(--secondary-color);
}
.as_paragraph_wrapper {
  padding-left: 20px;
  border-left: 2px solid #8a0b12;
  margin-top: 20px;
}
.as_contact_expert {
  display: flex;
  margin: 40px 0;
  align-items: center;
  color: var(--dark-color1);
}
.as_contact_expert .as_icon {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  position: relative;
}

.contact_detail-title {
  font-size: 18px;
}
.as_year_ex {
  font-size: 60px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: "Philosopher", sans-serif;
  margin-right: 10px;
}
.as_contact_expert .as_icon:before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #dcdcdc;
  content: "";
  border-radius: 100%;
  width: 100px;
  height: 100px;
}
.as_contact_expert:hover .as_icon:before {
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
}
.as_contact_expert h5 {
  font-size: 18px;
  margin: 0;
}
.as_contact_expert h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 0 0;
}
.as_aboutimg {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.as_aboutimg img {
  display: inline-block;
}

/* about css end */
/* service css start */
.as_services_wrapper {
  background-color: #9c14860d;
  background-image: url(../images/others/1.png);
  padding: 40px 25px 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}

.as_services_wrapper_icon {
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1;
}
/* feature-item-6 */
.as_services_wrapper_item {
  border: 1px solid #f6f6f6;
  margin-bottom: 30px;
  padding: 40px 30px 35px;
}
.as_services_wrapper_item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.as_services_wrapper_item .as_services_wrapper_icon {
  color: var(--secondary-color);
}
.as_services_wrapper_item .as_services_wrapper_icon i {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.as_services_wrapper_item .as_services_wrapper-info p {
  font-size: 14px;
  margin-bottom: 0;
}
.as_services_wrapper_item .as_services_wrapper-info p + p {
  margin-top: 15px;
}
.as_services_wrapper_item .as_services_wrapper-info .ltn__service-btn {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: var(--ltn__color-1);
  font-weight: 700;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}
.as_services_wrapper_item .as_services_wrapper-info .ltn__service-btn i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.as_services_wrapper_item.active,
.as_services_wrapper_item:hover {
  -webkit-box-shadow: var(--ltn__box-shadow-1);
  box-shadow: var(--ltn__box-shadow-1);
}
.as_services_wrapper_item.active::before,
.as_services_wrapper_item:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.as_services_wrapper_item.active .as_services_wrapper-info .ltn__service-btn,
.as_services_wrapper_item.active .as_services_wrapper_icon,
.as_services_wrapper_item:hover .as_services_wrapper-info .ltn__service-btn,
.as_services_wrapper_item:hover .as_services_wrapper_icon {
  color: var(--secondary-color);
}

/* service css end */
/* why choose css start */
.as_call_wrapper {
  padding-bottom: 220px;
  padding-top: 115px;
  color: #ffffff;
  background-image: url("../images/others/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.as_call_about_wrapper {
  padding-bottom: 120px;
  padding-top: 115px;
  color: #ffffff;
  text-shadow: 3px 5px 5px black;
  background-image: url("../images/others/4.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.as_call_about_wrapper h1 {
  line-height: 50px;
  font-size: 28px;
}

.as_call_wrapper .as_heading_custom_title {
  color: #ffffff;
  font-size: 56px;
  text-shadow: 3px 5px 5px black;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.as_call_content {
  display: flex;
  font-family: "Philosopher", sans-serif;
  background-color: var(--secondary-color);
  border-radius: 50px;
  padding: 10px;
  margin-top: 40px;
  align-items: center;
  max-width: 330px;
}
.as_call_content h5 {
  font-size: 18px;
  font-family: "Philosopher", sans-serif;
  margin: 0 0 7px 0;
}
.as_call_content h1 {
  font-size: 34px;
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  margin: 0 0 0 0;
}

/* why choose css end */
/* customer css start */
.as_customer_wrapper {
  background-image: url("../images/bg6.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.as_customer_img {
  width: 89px !important;
  height: 89px;
  cursor: pointer;
}
.as_customer_img img {
  border-radius: 100%;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: -2px 0px 13px 0px rgba(0, 0, 0, 0.13);
  width: 100%;
}
.as_customer_nav .slick-list {
  padding: 30px !important;
}
.as_customer_img:first-child {
  margin: 16px 0 0 10px;
}

.as_customer_img:nth-child(2) {
  margin: 155px 0 0 -40px;
}
.as_customer_img:nth-child(3) {
  margin: 50px 0 0 -8px;
}

.as_customer_img:nth-child(4) {
  margin: 170px 0 0 -50px;
}

.as_customer_img:nth-child(6) {
  margin: 124px 0 0 -50px;
}

.as_customer_img:nth-child(5) {
  margin: 5px 0 0 0px;
}

.as_customer_nav {
  position: relative;
}

.as_customer_box {
  border-radius: 30px;
  background-image: -moz-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  padding: 54px 50px;
  position: relative;
  color: #ffffff;
  z-index: 1;
  position: relative;
}

.as_customer_box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 235px;
  height: 235px;
  background-image: url(../images/circle1.png);
  z-index: -1;
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
}
.as_customer_box .as_customer_img > img {
  border-radius: 100%;
}
.as_customer_box .as_customer_img {
  position: relative;
  display: inline-flex;
  margin: -45px 0 34px;
}
.as_customer_box .as_customer_img span {
  position: absolute;
  width: 38px;
  height: 38px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  line-height: 32px;
  right: -10px;
  bottom: 0px;
}
.as_customer_box .as_customer_img span img {
  display: inline-block;
}
.as_customer_box p {
  font-size: 14px;
  line-height: 24px;
}
.as_customer_box h3 {
  font-size: 20px;
  margin: 25px 0 0;
}
.as_customer_box h3 > span {
  font-size: 15px;
}
.as_customer_slider .slick-dots {
  position: absolute;
  top: 50%;
  left: -34px;
  margin: 0;
  transform: translateY(-50%);
}

.as_customer_slider .slick-dots li {
  display: flex;
  margin: 10px auto;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #e7e7e7;
}

.as_customer_slider .slick-dots li.slick-active {
  background-image: -moz-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  border: 2px solid #fff;
  width: 14px;
  height: 14px;
  box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.18);
}

.as_customer_for:before {
  content: "";
  position: absolute;
  top: 0;
  left: -27px;
  bottom: 0;
  border-left: 1px solid #e7e7e7;
}
.as_customer_img.slick-slide.slick-current {
  transform: scale(1.2);
}
.as_customer_img.slick-slide.slick-current img {
  border-color: var(--secondary-color);
}
/* customer css end */

/* Commets Css Start */
.comment-text {
  font-size: 14px;
}
/* Commets Css end */

/* Contact Star*/

.as_contact_wrapper {
  background-color: #fbab5459;
  background-image: url(../images/others/1.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.request-area .left-content-area {
  height: 100%;
}

.request-area .left-content-area .request-img {
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}

.request-page-form-wrap {
  background-color: #352d6600;
  padding: 120px 60px 104px;
  position: relative;
  z-index: 2;
}

.request-page-form-wrap .section-title .title {
  padding-left: 15px;
  margin-bottom: 33px;
  position: relative;
  color: #781017;
  font-weight: 900;
  font-size: 32px;
}

.request-page-form-wrap .section-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: var(--secondary-color);
}

.request-page-form .form-group textarea {
  max-height: 160px;
  resize: none;
}

.request-page-form .form-group .form-control {
  border-radius: 4px;
  border: 1px solid #ff8d00;
  padding: 15px 30px;
  margin-bottom: 25px;
  color: #8a0b12;
  background-color: #4a0808f0;
}

.request-page-form .form-group .form-control::-webkit-input-placeholder {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.request-page-form .form-group .form-control:-ms-input-placeholder {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.request-page-form .form-group .form-control::-ms-input-placeholder {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.request-page-form .form-group .form-control::placeholder {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.request-page-form #f-type {
  border-radius: 0;
  border: 1px solid #726c94;
  padding: 15px 30px;
  margin-bottom: 25px;
  height: 56px;
  color: #fff;
  width: 100%;
  background-color: transparent;
}

.request-page-form .submit-btn {
  background-color: #ffaf50;
  width: 100%;
  padding: 19px 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8a0b12;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ffaf50;
}

.request-page-form .submit-btn:hover {
  background-color: #8a0b12;
  color: #fff;
  border: 1px solid #fff;
}
/*Contact end*/

/* footer css start */
/* ----------------------------------------------------
    Copyright Area
---------------------------------------------------- */
.as_copyright_wrapper {
  background-color: #282b38;
  padding-top: 25px;
  padding-bottom: 25px;
}

.as_copyright_design_wrapper h6,
.as_copyright_design_wrapper h4 {
  font-size: 14px;
  font-weight: 700;
}

.as_copyright_design_wrapper p {
  color: #fff;
  margin-bottom: 0;
}

.as_copyright_wrapper_menu ul {
  margin: 0;
  padding: 0;
}
.as_copyright_wrapper_menu ul li {
  color: #ffffff;
  list-style: none;
  display: inline-block;
  margin-top: 0;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 600;
}
.as_copyright_wrapper_menu ul li:last-child {
  margin-right: 0;
}
.as_copyright_wrapper_menu ul li a {
  margin: 0;
}

/* ----------------------------------------------------
    Responsive
---------------------------------------------------- */
@media (max-width: 991px) {
  .as_copyright_wrapper {
    text-align: center;
  }
  .as_copyright_wrapper .as_copyright_wrapper_menu {
    text-align: center !important;
  }
}

/* footer css end */
/* breadcrum start */
.as_breadcrum_wrapper {
  background-image: url(../images/others/4.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 223px 0 140px;
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.as_breadcrum_wrapper .container {
  z-index: 2;
  position: relative;
}
.as_breadcrum_wrapper::after {
  position: absolute;
  content: "";
  background: url(../images/shape.svg) no-repeat;
  width: 100%;
  height: 273px;
  left: 0;
  right: 0;
  transform: scale(-1);
  bottom: 0;
  z-index: 1;
}
.as_breadcrum_wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.as_breadcrum_wrapper h1 {
  margin: 0px 0 15px;
  font-size: 28px;
}
.as_breadcrum_wrapper .breadcrumb {
  display: inline-flex;
  border-radius: 40px;
  font-size: 14px;
  line-height: 18px;
  padding: 0 30px;
  margin: 0px;
  align-items: center;
  background-color: transparent;
}
.breadcrumb > li + li:before {
  content: "";
  background-image: url("../images/star.png");
  background-repeat: no-repeat;
  width: 22px;
  height: 20px;
  display: inline-flex;
  margin: 0 10px;
}
.breadcrumb > li {
  display: inline-flex;
  align-items: center;
}
.form-group {
  margin: 10px 0px 10px;
}
/* breadcrum end */
/* pricing plan start */
.as_pricing_plan {
  background-image: url(../images/bg9.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.as_service_page .as_pricing_plan {
  background-image: url(../images/bg4.jpg);
}
.as_service_page .as_customer_wrapper {
  background-image: url(../images/bg9.jpg);
}
.as_service_page .as_footer_wrapper:before {
  background: url(../images/shape1.svg) no-repeat;
}
.as_pricing_box {
  border: 1px solid rgb(231, 231, 231);
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.04);
  padding: 60px 35px 35px;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.as_pricing_box:after {
  content: "";
  position: absolute;
  background-image: url(../images/circle2.png);
  left: 50%;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 368px;
  height: 368px;
}
.as_gradient_text {
  background-image: -moz-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.as_pricing {
  font-size: 45px;
  font-weight: 700;
  padding: 50px 0 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e7e7e7;
}
.as_pric_icon svg {
  fill: var(--secondary-color);
  transition: none;
}

.as_pricing sup,
.as_pricing sub {
  font-size: 18px;
  font-weight: 400;
}
.as_pricing sup {
  top: -22px;
}

.as_pricing sub {
  bottom: 0;
}
.as_pricing_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.as_pricing_box ul li:not(.as_inactive) {
  color: var(--dark-color1);
}

.as_pricing_box ul li {
  padding-bottom: 15px;
  transition: none;
}

.as_pricing_box .as_btn {
  margin-top: 17px;
  background: #f6f6f6;
  border: 2px solid transparent;
  color: var(--dark-color1) !important;
}
.as_pricing_box .as_btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.as_pricing_box .as_btn:after {
  display: none;
}
.as_pricing_box:hover {
  background-image: -moz-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(244, 170, 54) 0%,
    rgb(243, 115, 53) 100%
  );
  color: #ffffff;
}
.as_pricing_box:hover .as_pric_icon svg {
  fill: #ffffff;
}
.as_pricing_box:hover ul li {
  color: #ffffff !important;
}
.as_pricing_box:hover .as_gradient_text {
  color: #ffffff;
  -webkit-text-fill-color: inherit;
  transition: none;
}

/* pricing plan end */

.ltn__list-item-half li {
  font-size: 18px;
    font-weight: 400;
  width: 50%;
  float: left;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
}
.ltn__list-item-half li img {
  max-width: 50px;
  margin-right: 10px;
}

.ltn__list-item-half li i {
  font-size: 20px;
  color: #ffae50;
  margin-right: 15px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  background-color: #f5dfdc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  border-radius: 100%;
}

/* ----------------------------------------------------
    Brand Logo
---------------------------------------------------- */
.ltn__brand-logo-item {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 10px 0;
}
.ltn__brand-logo-item img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ltn__brand-logo-item:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
.ltn__brand-logo-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.body-content-p {
  background-color: #781017;
  margin: 0 30px;
  padding: 35px 50px 10px;
  margin-top: -60px;
  position: relative;
  z-index: 0;
  color: #fff;
  border-radius: 50px;
}

.img_banner {
  max-width: 100%;
  transition: 0.3s;
}

.img_banner:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

/* ----------------------------------------------------
    Select Availability Table Area
---------------------------------------------------- */
.ltn__select-availability-table-wrap .tower-name {
  font-weight: 900;
  text-transform: uppercase;
}

.ltn__select-availability-table ul {
  padding: 0 0 15px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ltn__select-availability-table ul li {
  list-style: none;
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 900;
  color: var(--secondary-color);
  text-align: center;
}

.ltn__select-availability-table .ltn__select-availability-table-head {
  border-bottom: 2px solid;
  border-color: var(--border-color-1);
}

.ltn__select-availability-table
  .ltn__select-availability-table-row:nth-child(odd) {
  background-color: var(--section-bg-1);
}

.ltn__select-availability-table-responsive
  .ltn__select-availability-table-row-responsive-item {
  padding: 10px 0 25px;
  margin: 0;
  text-align: center;
}
.ltn__select-availability-table-responsive
  .ltn__select-availability-table-row-responsive-item:nth-child(odd) {
  background-color: var(--section-bg-1);
}
.ltn__select-availability-table-responsive
  .ltn__select-availability-table-row-responsive-item
  li {
  display: block;
  list-style: none;
}
.ltn__select-availability-table-responsive
  .ltn__select-availability-table-row-responsive-item
  li::after {
  display: block;
  clear: both;
  content: "";
}
.ltn__select-availability-table-responsive
  .ltn__select-availability-table-row-responsive-item
  li
  span {
  width: 50%;
  float: left;
}

/* Responsive css */
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
@media (min-width: 1400px) and (max-width: 1810px) {
  .as_header_detail {
    width: calc(100% - 220px);
  }
  .as_info_detail {
    padding-right: 50px;
  }
  .as_menu_wrapper {
    padding-right: 50px;
  }

  .as_info_detail ul li,
  .as_right_info,
  .as_menu > ul > li {
    font-size: 14px;
  }
}
@media (max-width: 1199px) and (min-width: 991px) {
  .as_product_box {
    min-height: 483px;
  }
}
@media (max-width: 1800px) {
  .as_banner_slider .slick-arrow.slick-next {
    right: 262px;
  }
  .as_banner_slider .slick-arrow.slick-prev {
    left: -120px;
  }
  .as_call_wrapper:before,
  .as_footer_wrapper:before {
    top: -1px;
  }
  .as_call_wrapper:after,
  .as_banner_wrapper:after {
    bottom: -1px;
  }
}
@media (max-width: 1560px) {
  .as_banner_slider .slick-arrow.slick-next {
    right: 262px;
  }
}
@media (max-width: 1560px) {
  .as_banner_slider .slick-arrow.slick-next {
    right: 262px;
  }
  .as_banner_slider .slick-arrow.slick-prev {
    left: -60px;
  }
}
@media (max-width: 1450px) {
  .as_error_detail_box .as_circle {
    width: 75%;
    display: inline-block;
    margin: -36% 0 0 -38%;
  }
  .as_error_detail_box img {
    width: 60%;
    display: inline-block;
  }
}
@media (max-width: 1399px) {
  .as_header_detail {
    width: calc(100% - 220px);
  }
  .as_infobox {
    font-size: 14px;
  }
  .as_menu > ul > li {
    margin: 0 10px;
  }
}
@media (max-width: 1360px) {
  .as_menu ul li a {
    font-size: 16px;
  }
  .as_banner_slider .slick-arrow.slick-next,
  .as_banner_slider .slick-arrow.slick-prev {
    right: auto;
    left: 70px;
    top: auto;
    transform: none;
    bottom: -80px;
  }
  .as_banner_slider .slick-arrow.slick-prev {
    left: 0;
  }
  .as_banner_slider {
    z-index: 2;
    margin-top: -80px;
  }
}
@media (max-width: 1260px) {
  .as_header_wrapper .as_info_detail .row {
    display: flex;
    align-items: center;
  }
  .as_cart_wrapper {
    margin-left: 20px;
    padding: 10px 15px;
    font-size: 11px;
  }
  .as_menu ul li a {
    padding: 13px 0;
  }
  .as_info_detail,
  .as_menu_wrapper {
    padding-right: 0;
  }
  .as_banner_slider .slick-arrow.slick-next {
    right: 426px;
  }
  .as_customer_wrapper .slick-prev {
    left: 0;
  }
  .as_customer_wrapper .slick-next {
    right: 20px;
    margin: 0;
  }
  .as_overview_wrapper .slick-prev {
    left: -20px;
  }
  .as_overview_wrapper .slick-next {
    right: -4px;
  }
  .as_header_wrapper .as_info_detail .row > div {
    flex: 1;
  }
}
@media (max-width: 1199px) {
  .as_service_img:after {
    bottom: -100px;
  }
  .as_aboutimg::after {
    top: 85px;
    right: 80px;
  }
  .as_aboutimg::before {
    left: -45px;
    bottom: -40px;
  }
  p {
    font-size: 14px;
    line-height: 24px;
  }
  .as_product_img > img {
    width: 100%;
  }
  .as_tab_wrapper .nav-tabs > li > a {
    padding: 16px 20px;
  }
  .as_countdown_wrapper ul li {
    padding-right: 30px;
  }
  .as_tag_wrapper .as_btn {
    margin-bottom: 10px;
  }
  .as_banner_detail h1 {
    font-size: 40px;
    line-height: 52px;
  }
  .as_banner_detail h5 {
    font-size: 23px;
  }
  .as_customer_img {
    width: 75px !important;
    height: 75px;
  }
  .as_sign_form ul li {
    margin-left: 8px;
  }
  .as_know_sign_wrapper > div {
    width: 100%;
    text-align: center;
  }
  .as_know_sign_wrapper .as_heading {
    padding-bottom: 30px;
  }
  .as_comnt_detail .as_comnt_title .as_time,
  .as_comnt_detail .as_comnt_title .as_reply,
  .as_comnt_detail .as_comnt_title .as_date {
    font-size: 12px;
  }
  .as_blog_box ul li img {
    margin-right: 5px;
  }
  .as_comment_section > ul > li .as_comnt_img img {
    width: 100px;
  }
  .as_comment_section > ul > li .as_comnt_img {
    width: 120px;
  }
  .as_comment_section > ul > li .as_comnt_detail {
    width: calc(100% - 120px);
    padding-right: 0px;
  }
  .as_comment_section > ul > li > ul > li {
    margin-left: 50px;
  }
}
@media (max-width: 1160px) {
  .as_banner_slider .slick-arrow.slick-next {
    right: 580px;
  }
}
@media (max-width: 1145px) {
  .as_info_detail ul li .as_infobox > span.as_orange {
    width: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .as_heading {
    font-size: 28px;
  }
  .as_infobox .as_infoicon svg {
    width: 15px;
  }
  .as_info_detail ul li .as_infobox > span.as_orange {
    width: 40px;
  }
  .as_cart_wrapper {
    margin-left: 10px;
  }
  .as_infobox .as_infoicon {
    margin-right: 5px;
  }
  .as_cart_wrapper > span {
    margin-right: 12px;
  }
  .as_header_detail {
    width: calc(100% - 170px);
  }
  .as_info_detail,
  .as_menu_wrapper {
    padding-right: 6px;
  }
  .as_info_detail ul li {
    padding: 5px;
  }
  .as_info_detail ul li .as_infobox > span.as_orange {
    width: 34px;
  }
  .as_infobox .as_logintext {
    display: none;
  }
  .as_banner_detail h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .as_banner_detail h5 {
    font-size: 18px;
  }
  .as_aboutimg::before,
  .as_aboutimg::after {
    display: none;
  }
  .as_aboutimg > img {
    margin: 0 0px 30px auto;
    width: 100%;
  }
  .as_padderBottom80 {
    padding-bottom: 50px;
  }
  .as_padderTop80 {
    padding-top: 50px;
  }

  .as_product_img ul {
    display: flex;
    justify-content: space-around;
  }

  .as_service_detail_inner {
    margin-bottom: 50px;
  }
  .as_newsletter_box {
    margin: 0 20px;
  }
  .as_card_box {
    text-align: center;
  }
  .as_card_box img {
    display: inline-block;
  }
  .as_choose_ul li {
    width: 33.33%;
  }
  .as_comment_form {
    margin-bottom: 50px;
  }
  .as_verticle_center {
    display: block;
  }
  .as_service_img .as_service_circle {
    margin: 60px auto;
    margin-left: 60px;
  }
  .as_customer_nav .slick-list {
    display: inline-flex;
    width: 330px;
  }
  .as_copyright_wrapper,
  .as_login_data {
    display: block;
  }
  .as_banner_slider {
    margin: 0;
  }
  .as_choose_ul {
    text-align: center;
  }
  .as_banner_wrapper {
    padding: 240px 0 100px;
  }
  .as_tab_wrapper {
    float: left;
    width: 100%;
  }
  .as_product_description {
    padding: 50px 0 0;
  }
  .as_pagination ul li.as_prev,
  .as_pagination ul li.as_next {
    padding: 0;
  }
  .as_share_box ul li {
    margin-right: 5px;
  }
  .as_blog_detail .col-lg-4.col-md-4.col-sm-12 img {
    width: 100%;
    margin-bottom: 30px;
  }
  .as_bloquote {
    padding: 30px;
  }
  .as_comnt_detail .as_comnt_title {
    display: block;
  }
  .as_comnt_detail .as_comnt_title .as_time {
    padding-left: 0;
  }
  .as_comnt_detail .as_comnt_title .as_reply,
  .as_comnt_detail .as_comnt_title .as_date {
    padding-left: 10px;
  }
  .as_contact_detail {
    margin-bottom: 50px;
  }
  .as_customer_img:nth-child(2) {
    margin: 110px 0 0 -42px;
  }
  .as_customer_img:nth-child(3) {
    margin: 30px 0 0 -8px;
  }
  .as_customer_img:nth-child(4) {
    margin: 120px 0 0 -50px;
  }
  .as_customer_img:nth-child(5) {
    margin: 0px;
  }
  .as_customer_img:nth-child(6) {
    margin: 10px 0 0 20px;
  }
  .as_booking_section ul.as_total_amount {
    border-right: 0px;
    padding-right: 0px;
    margin-right: 0px;
  }
  .as_banner_img {
    margin-top: 50px;
  }
  .as_service_img:after {
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .as_verticle_center {
    display: block;
  }
  .as_product_description {
    padding: 50px 0 0;
  }

  .prod_detail {
    display: block;
  }

  .prod_detail .as_btn {
    margin: 0 0 30px;
  }
  .as_search_wrapper {
    padding-top: 0;
  }
  .as_choose_ul li {
    width: 100%;
  }
  .as_sign_box {
    margin: 40;
    margin: 30px auto 0 !important;
  }
  .as_blog_img img {
    width: 100%;
  }
  .as_banner_slider .slick-arrow.slick-next {
    right: 428px;
  }
  .as_toggle {
    display: flex;
    /*margin-right: 20px;*/
    cursor: pointer;
  }
  .as_menu ul li,
  .as_menu ul li a {
    display: block;
  }
  .as_menu {
    position: fixed;
    left: -200px;
    top: 0;
    bottom: 0;
    background-color: rgb(255 255 255);
    z-index: 999;
    width: 200px;
    border-right: 2px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
  }
  .menu_open .as_menu {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .as_menu li {
    display: flex;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    margin: 0;
  }
  .as_menu ul li a:before {
    display: none;
  }
  .as_menu_wrapper {
    color: #f7b709;
    padding: 12px 10px;
  }
  .as_cart_wrapper {
    display: flex;
  }
  .as_cart_wrapper > span {
    margin-right: 20px;
  }
  .as_info_detail {
    justify-content: center;
    flex-direction: column;
    padding: 10px;
  }
  .as_right_info {
    padding-left: 5px;
  }
  .as_search_inner {
    padding: 0 20px;
  }
  .as_menu > ul > li .as_submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    right: auto !important;
    padding: 0;
    background-color: transparent;
    display: none;
  }
  .as_service_img:after {
    bottom: -40px;
  }
  .as_menu > ul > li .as_submenu .as_submenu {
    display: none;
  }
  .as_menu > ul > li .as_submenu:before {
    display: none;
  }
  .as_menu ul li .as_submenu.active {
    display: block;
  }
  .as_menu ul li.as_submenu_li:after {
    position: absolute;
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #ffffff;
    top: 25px;
    right: 0;
  }
  .as_menu ul li.as_submenu_li ul li.as_submenu_li:after {
    top: 18px;
  }
  .as_service_img .as_service_img {
    position: unset;
    transform: translate(0, 0);
    margin: auto;
  }
  .as_service_img .as_service_circle {
    margin: auto;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
  }
  .as_service_img {
    position: relative;
    margin: 50px 0;
    text-align: center;
  }
  .as_banner_slider .slick-arrow.as_btn {
    min-width: 40px;
    height: 40px;
  }
  .as_banner_slider .slick-arrow.slick-next,
  .as_banner_slider .slick-arrow.slick-prev {
    bottom: -50px;
  }
  .as_banner_slider .slick-arrow.slick-next {
    left: 50px;
  }
  .as_service_single > ul {
    padding: 0 0px 0 18px;
  }
  .as_blog_wrapper.as_padderBottom90 {
    padding-bottom: 0px;
  }
  .as_shop_sidebar {
    margin-bottom: 40px;
  }
  .as_shopsingle_slider .as_shopsingle_nav .slick-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .as_shopsingle_slider .as_shopsingle_nav {
    width: 100%;
    padding-right: 0px;
  }
  .as_shopsingle_slider .as_shopsingle_for {
    width: 100%;
    display: block;
  }
  .as_shopsingle_slider {
    display: block;
  }
  .as_shopsingle_nav .as_prod_img {
    margin: 0 10px 20px;
  }
  .as_shopsingle_nav .as_prod_img img {
    height: auto;
  }
  .as_header_wrapper {
    background-color: rgb(255 255 255);
  }
  .as_logo {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .as_comment_section > ul > li .as_comnt_detail .as_btn {
    position: relative;
    right: auto;
    top: auto;
    padding: 0 10px;
    margin: 10px 0 0 0;
  }
  .as_sign_form ul li {
    width: 100% !important;
    margin: 0 0 20px;
    justify-content: center;
  }
  .as_header_wrapper .as_info_detail .row {
    flex-direction: column;
  }
  .as_sign_box {
    padding: 15px;
  }
  .as_info_detail ul {
    text-align: center;
  }
  .as_info_detail ul li {
    padding: 0px;
    display: block;
  }
  .as_infobox {
    justify-content: center;
  }
  .as_right_info {
    margin-top: 5px;
  }
  .as_wishlist {
    margin-left: 5px;
  }
  .as_cart_wrapper {
    margin-left: 0;
  }
  .as_year_ex {
    font-size: 40px;
  }
  .as_contact_expert .as_icon {
    margin-bottom: 15px;
    margin-left: -10px;
  }
  .as_comment_section ul li,
  .as_about_admin {
    display: block;
  }
  .as_comment_section > ul > li .as_comnt_detail,
  .as_about_admin .as_aboutDetail {
    width: 100%;
    margin-top: 10px;
  }
  .as_comment_section > ul > li > ul > li {
    margin-left: 20px;
  }
  .as_comment_section > ul > li {
    padding: 20px 0;
  }
  .as_pagination ul li a,
  .as_pagination ul li span {
    height: 30px;
    padding: 0 11px;
  }
  .as_pagination ul li {
    margin: 0 6px;
  }
  .ad_wishlist,
  .ad_compare {
    margin: 0 0 0 10px;
  }
  .as_tab_wrapper .nav-tabs > li > a {
    padding: 10px;
  }
  .as_about_admin {
    padding: 20px;
  }
  .as_tag_wrapper .as_btn {
    height: 30px;
    min-width: 120px;
  }
  .as_tag_wrapper ul li {
    margin-right: 10px;
  }
  .as_service_img .as_service_circle {
    top: 60px;
  }
}

@media (max-width: 450px) {
  .as_contact_detail {
    padding: 20px;
  }
  li.as_info_box p {
    margin-left: 10px;
  }
  .as_contact_expert h1 {
    font-size: 24px;
  }
}
@media (max-width: 355px) {
  .as_info_box .as_icon {
    width: 50px;
  }
}

/* CSS Whatsapp Chat -SOMBRA BOX*/
#whatsapp-chat {
  position: fixed;
  background: #fff;
  width: 350px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 6);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 103;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 90px;
  right: 5px;
  font-size: 17px;
  margin: 10px 10px 10px 0;
  border-radius: 0 30px 30px 0;
}

a.blantershow-chat svg {
  transform: scale(3);
  margin: 0 15px 10px 0;
}

.header-chat {
  background: #993439;
  color: #ffffff;
  padding: 20px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}

.info-chat span {
  display: block;
}
#get-label,
span.chat-label {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  color: #888;
}

#get-nama,
span.chat-nama {
  font-family: "Arial", sans-serif;
  margin: 5px 0 0;
  font-size: 17px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}
.blanter-msg {
  background: url("img/fondo_wa.jpg");
  padding: 10px;
  text-align: center;
}

textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 40px;
  outline: none;
  resize: none;
}

a#send-it {
  /*boton enviar */
  color: #ffffff;
  width: 150px;
  margin: 0 5px 10px 150px;
  font-size: 17px;
  font-weight: 700;
  padding: 5px 10px 5px 10px;
  background: #8a0b12;
  border-radius: 45px;
}

.first-msg {
  /*fondo del chat */
  background: url("img/fondo_wa.jpg");
  padding: 30px;
  text-align: center;
  margin-left: -5px;
}

.first-msg span {
  /*fondo del 1er texto*/
  background: #ffffff;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 10px 25px 10px 25px;
  display: inline-block;
  border: 1px solid #f2f2f2;
  font-family: "Arial", sans-serif;
  margin-left: -5px;
  text-align: left;
}

.start-chat .blanter-msg {
  display: flex;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}
@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1;
}
.show {
  display: block;
  animation-name: showhide;
  animation-duration: 1.5s;
  transform: scale(1);
  opacity: 1;
}

.contact-footer {
  color: #757575;
  font-size: 10px;
  text-align: justify;
}

.div-center {
  text-align: center;
}

@media (max-width: 768px) {
  .video-container video {
    width: 100% !important;
  }
}

.button-float-push {
  position: fixed;
  width: 11px;
  height: 19px;
  bottom: 135px;
  right: 3px;
  background-color: #fd0101;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 3px #999;
  z-index: 103;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  font-family: monospace;
}

.button-float-push,
strong {
  font-size: 16px;
}

.button-float-msg {
  position: fixed;
  width: 190px;
  height: 45px;
  bottom: 97px;
  right: 85px;
  background-color: #ffffff;
  color: #434343;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s;
}

.button-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 87px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.button-float:hover {
  background-color: #199346;
}

.fa-brands:hover {
  color: #fff !important;
}

.button-hide,
.button-hide2 {
  display: none;
}
/**********************************/
/********** Cookies CSS ***********/
/**********************************/
.aviso-cookies {
  display: none;
  background: rgb(255 255 255);
  color: #000000;
  padding: 10px;
  width: calc(100% - 100px);
  max-width: 400px;
  border-radius: 10px;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 100;
  box-shadow: 0px 2px 20px 10px rgb(255 151 0 / 26%);
  text-align: center;
}

.aviso-cookies.activo {
  display: block;
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
  margin-bottom: 10px;
}

.aviso-cookies .boton {
  width: 40%;
  background: #595959;
  color: white;
  border: none;
  font-family: "Roboto", san-serif;
  text-align: center;
  padding: 10px 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease all;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 14px;
}

.aviso-cookies .boton:hover {
  background: white;
  color: black;
}

.aviso-cookies .enlace {
  color: #4dbfff;
  text-decoration: none;
  font-size: 14px;
  margin-left: 10px;
}

.aviso-cookies .enlace:hover {
  text-decoration: underline;
}

.fondo-aviso-cookies {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.fondo-aviso-cookies.activo {
  display: block;
}

/*******************************/
/******* legal Post CSS *******/
/*******************************/
.legal {
  position: relative;
  padding: 45px 0;
}

.legal h3 {
  text-align: left;
}
.legal h4 {
  text-align: left;
}

.legal .legal-content {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  text-align: justify;
}
