/* ///////////////////////////////////////////// */
/* Project name:	BC68_Capstone Bootstrap_Farmstead
- Handler:	Bùi Hữu Công & Lê Minh Khoa
- Description:	Capstone Exercise, Bootstrap/HTML5/CSS3 Web template for Farmstead project */
/* ///////////////////////////////////////////// */
/* ======| GLOBAL CSS |====== */
/* google-fonts */
@import url("//fonts.googleapis.com/css2?family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("//fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");

/* //google-fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* primary color: #fb811e
   secondary color: #009f4d */
:root {
  --priColor: #fb811e;
  --secColor: #009f4d;
  --black: #060606;
  --grey: #f4f4f4;

  /* default light theme */
  --bgThemeColor: #fff;
  --headingColor: var(--black);
  --txtColor: #707070;
  --greyDarkLight: var(--grey);
  --shadowDarkLight: rgba(0, 0, 0, 0.14);
  --shadowDarkLightHover: rgba(0, 0, 0, 0.3);
  --bw20DarkLight: rgba(0, 0, 0, 0.2);
  --bg-light: #fafafa;
  --border-color-light: #eee;
  --border-color: transparent;
}
[data-theme="dark"] {
  /* for dark theme */
  --bgThemeColor: #222;
  --headingColor: #fdfdfd;
  --txtColor: #b7b7b7;
  --greyDarkLight: #000;
  --shadowDarkLight: rgba(0, 0, 0, 0.5);
  --shadowDarkLightHover: rgba(0, 0, 0, 0.14);
  --bw20DarkLight: rgba(255, 255, 255, 0.2);
  --bg-light: #27282b;
  --border-color-light: rgba(255, 255, 255, 0.2);
  --border-color: transparent;
}
body {
  background-color: var(--bgThemeColor);
  color: var(--txtColor);
  font-family: "Source Sans Pro";
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Volkhov";
  color: var(--headingColor);
  font-weight: 600;
}
a {
  color: var(--secColor);
  text-decoration: none;
}
a:hover {
  color: var(--priColor);
}
a.disabled,
a[aria-disabled="true"] {
  color: var(--txtColor);
}

body a,
button,
.btn,
input {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}
a.logo {
  color: var(--priColor);
  display: block;
  max-width: fit-content;
  margin: 10px 0;
  position: relative;
  font-family: "Volkhov";
  font-size: 32px;
  line-height: 32px;
}
a.logo i {
  color: var(--priColor);
  font-size: 21px;
  color: var(--priColor);
  position: absolute;
  top: -11px;
  left: 55px;
}
a.logo:hover,
a.logo:hover i {
  color: var(--headingColor);
}
a.btnlink,
button.btnlink {
  display: block;
  max-width: fit-content;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  background-color: var(--priColor);
  margin: 20px 10px;
}
a.btnlink:hover,
button.btnlink:hover {
  background-color: var(--secColor);
  color: #fff;
}
button.btnlink {
  outline: none;
  border: none;
}
.mw-fitcontent {
  max-width: fit-content;
}
p.sub_title {
  font-family: "Volkhov", serif;
  display: block;
  max-width: fit-content;
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 0;
  color: var(--priColor);
}
h3.title {
  font-size: 40px;
  line-height: 50px;
}
.txtWatermark {
  font-family: "Volkhov", serif;
  font-size: 12vw;
  font-weight: 700;
  color: var(--grey);
  opacity: 0.14;
}
/* =================> global eof <==================== */
/* ======| Header CSS |====== */
#header {
  background-color: transparent;
  height: 90px;
  transition: all 0.5s;
}
#header.nav-fixed {
  background-color: var(--bgThemeColor);
  height: 70px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
#header.nav-fixed a.logo,
#header.nav-fixed a.logo i {
  color: var(--headingColor);
}
/* search bar */
.searchbar {
}
.searchbar input {
  height: 35px;
  background: #fdfdfd url(./../img/search.png) no-repeat;
  background-position: 9px center;
  cursor: pointer;
  border: 1px solid rgba(15, 15, 15, 0.1);
  position: relative;
  border-radius: 35px;
  font-size: 16px;
  line-height: 35px;
  width: 35px;
  color: transparent;
  padding: 0;
}
.searchbar input:hover,
.searchbar input:focus {
  background-image: url(./../img/search-fc.png);
}
.searchbar input:focus {
  outline: 0;
  cursor: unset;
  width: 200px;
  color: var(--txtColor);
  padding: 0 15px 0 35px;
}

/*      switch dark/light theme    */
.theme-switch {
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
}
.theme-switch input {
  opacity: 0;
  display: none;
}
.theme-switch .change_ico i {
  color: #fdfdfd;
}
#header.nav-fixed .theme-switch .change_ico i {
  color: var(--headingColor);
}
#header.nav-fixed .theme-switch:hover .change_ico i,
.theme-switch:hover .change_ico i {
  color: var(--priColor);
}
.change_ico {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.change_ico i {
  position: absolute;
  font-size: 28px;
}
i.moon {
  display: block;
}
i.sun {
  display: none;
}
.theme-switch input:checked + .change_ico i.moon {
  display: none;
}
.theme-switch input:checked + .change_ico i.sun {
  display: block;
}
/* navbar menu */
#navbar-top #navbarNav ul {
  background-color: var(--bgThemeColor);
  position: absolute;
  top: 60px;
  right: 3px;
  padding: 10px 0;
  overflow: hidden;
  max-height: 0;
  min-width: 14em;
  opacity: 0;
  transition: all 0.45s 0s ease-in-out;
  border: 0;
  box-shadow: rgba(10, 10, 10, 0.2) 0px 7px 29px 0px;
}
#navbar-top #navbarNav.show ul {
  max-height: 400px;
  opacity: 1;
}
#navbar-top button.navbar-toggler {
  border: 0;
  padding: 0;
}
#navbar-top .navbar-toggler:focus {
  box-shadow: none;
}
#header #navbar-top button span {
  font-size: 35px;
  color: #fdfdfd;
}
#header.nav-fixed #navbar-top button span,
#navbar-top .navbar-toggler[aria-expanded="false"] span {
  color: var(--headingColor);
}
#header.nav-fixed #navbar-top button:hover span,
#header.nav-fixed #navbar-top button[aria-expanded="true"] span,
#header #navbar-top .navbar-toggler:hover span,
#header #navbar-top .navbar-toggler[aria-expanded="true"] span {
  color: var(--priColor);
}
.navbar-nav .nav-link {
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 6px 0;
  color: var(--headingColor);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--priColor);
}
/* page header css */
.page-header {
  background-image: url(./../img/inner-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.breadcrumb li.breadcrumb-item,
.breadcrumb li.breadcrumb-item a {
  font-size: 15px;
  font-weight: 900;
  color: var(--txtColor);
}
.breadcrumb li.breadcrumb-item:hover,
.breadcrumb li.breadcrumb-item:hover a {
  color: var(--priColor);
}

.breadcrumb li.breadcrumb-item.active,
.breadcrumb li.breadcrumb-item[aria-current="page"],
.breadcrumb li.breadcrumb-item.active a,
.breadcrumb li.breadcrumb-item[aria-current="page"] a,
.breadcrumb li.breadcrumb-item.active:hover,
.breadcrumb li.breadcrumb-item[aria-current="page"]:hover,
.breadcrumb li.breadcrumb-item.active:hover a,
.breadcrumb li.breadcrumb-item[aria-current="page"]:hover a {
  font-weight: 400;
  color: var(--txtColor);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "»" !important;
  color: var(--txtColor);
}

/* devKhoa-Footer */
.w3l-clients-1 {
  background: #fafafa url(./../img/bg1.jpg) no-repeat center fixed;
  background-size: cover;
  position: relative;
  /* z-index: 1; */
}
.w3l-clients-1:before {
  content: "";
  background-color: rgb(10 10 10 / 52%);
  position: absolute;
  min-height: 100%;
  inset: 0;
  /* z-index: -1; */
}

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
}

.w3l-clients-1 .testimonial img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.radius-image {
  border-radius: 30px;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}

a.testi-img {
  width: 90px;
  height: 90px;
  display: inline-block;
  overflow: hidden;
  background: var(--bg-color);
  border-radius: 50%;
}

.w3l-clients-1 .testi-des {
  text-align: center;
}

.w3l-clients-1 .testimonial .peopl h3 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  margin: 10px 0 5px;
  color: #fff;
}

.w3l-clients-1 p.identity {
  color: #fff;
  font-size: 16px;
}
.w3l-clients-1 span.fa {
  font-size: 20px;
  color: #fb811e;
  font-weight: 600;
  display: inline-block;
}
.text-md-left {
  text-align: left !important;
}
.w3l-clients-1 blockquote q {
  font-size: 22px;
  line-height: 34px;
  color: #fff;
  text-indent: 30px;
  display: block;
}
/* .w3l-clients-1 .owl-theme .owl-nav.disabled+ .owl-dots {
  margin-top: 30px;
  bottom: -90px;
} */

.w3l-clients-1 .owl-theme .owl-dots .owl-dot.active span,
.w3l-clients-1 .owl-theme .owl-dots .owl-dot:hover span {
  background: #fb811e;
  opacity: 1;
}

.w3l-footer-16 .subscribe input[type="email"] {
  background: #f4f4f4;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  outline: none;
  width: 80%;
  color: #707070;
  border: 1px solid #eee;
  border-radius: 30px 0px 0px 30px;
}

.w3l-footer-16 .subscribe button {
  background: #009f4d;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 12px 12px;
  width: 20%;
  color: #fff;
  border-radius: 0px 30px 30px 0px;
}

.w3l-footer-16 .subscribe button:hover {
  opacity: 0.8;
}

.w3l-footer-16 ul.social li {
  display: inline-block;
  margin-right: 5px;
}

ul {
  padding: 0;
  margin: 0;
}
li {
  list-style-type: none;
}

.w3l-footer-16 ul.social li a {
  color: #009f4d;
  width: 35px;
  height: 35px;
  background: rgb(10 191 83 / 8%);
  display: inline-block;
  border-radius: 50%;
  text-align: center;
}
.w3l-footer-16 ul.social li a:hover {
  color: #fb811e;
  background: rgb(255 201 69 / 19%);
  box-shadow: 0px 4px 7px 0px rgb(10 10 10 / 24%);
  transition: 0.5s all;
}

.w3l-footer-16 ul.social li a span {
  font-size: 15px;
  line-height: 35px;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  text-rendering: auto;
}
.FooterLogo {
  margin-bottom: 1.15rem;
  margin-top: -0.65rem;
}

#movetop {
  position: fixed;
  bottom: 90px;
  right: 15px;
  z-index: 9;
  font-size: 16px;
  border: none;
  outline: none;
  color: #fff;
  width: 40px;
  height: 40px;
  background: var(--secColor);
  border-radius: 4px;
  padding: 0;
}
#movetop:hover {
  opacity: 0.75;
}
/* Home page - devCong */
#home_banner .banner_left {
  padding-left: 7.2%;
}
.banner_left h2 {
  font-size: 120px;
  font-weight: 700;
  color: var(--greyDarkLight);
  margin: 0 0 -60px -60px;
}
.banner_left .banner_content {
  width: 132%;
  position: relative;
  z-index: 1;
}
.banner_left .banner_content h3 {
  font-size: 50px;
  font-weight: 700;
}
.banner_left .banner_content a.btnlink {
  margin: 40px 0 20px;
}
#home_banner .carousel-item {
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#home_banner .carousel-inner:after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  inset: 0;
}
#home_banner .carousel-item,
#home_banner .carousel-inner:after {
  border-radius: 0 0 0 20px;
}
.carousel-item .carousel-caption {
  color: #fff;
  left: unset;
  right: 30px;
}
.carousel-item .carousel-caption h5 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
}
.carousel-item .carousel-caption span {
  font-family: "Source Sans Pro";
}
.carousel .carousel-indicators button {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
.carousel .carousel-indicators button.active {
  background-color: var(--priColor);
}
/* Feature CSS */
.feature_left .btnlink {
  margin-top: 50px;
  margin-bottom: 50px;
}
.feature_right {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.feature_right .grid-item {
  text-align: center;
  border-radius: 30px;
  padding: 40px 30px;
  background-color: var(--bgThemeColor);
  box-shadow: 0 25px 50px 0 var(--shadowDarkLight);
  transition: all 0.5s;
}
.feature_right .grid-item:hover {
  box-shadow: 0 25px 98px 0 var(--shadowDarkLightHover);
}
.feature_right .grid-item img {
  max-width: 70px;
  margin-bottom: 30px;
}
.feature_right .grid-item h5 a {
  font-weight: 600;
  color: var(--headingColor);
}
.feature_right .grid-item h5 a:hover {
  color: var(--secColor);
}
/* Home Service + About Team */
.home_service,
.about_team {
  background-color: var(--secColor);
  overflow: hidden;
}
.hserv_title_l p.sub_title {
  font-size: 22px;
}
.home_service .card,
.about_team .card {
  color: unset;
  background-color: var(--bgThemeColor);
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.card-img img {
  width: 100%;
}
.tags {
  display: inline-block;
  padding: 8px 20px;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 15px;
  color: var(--secColor);
  background-color: #009f4d42;
}
.card-body h4 a {
  font-family: "Source Sans Pro";
  color: var(--headingColor);
}
.card-body h4 a:hover {
  color: var(--secColor);
}
.about_team .card-body h4 a {
  font-family: unset;
  color: var(--black);
}
.about_team .card-body p {
  color: #707070;
}
.about_team .card-body h4 a:hover {
  color: var(--priColor);
}

.about_team .txtWatermark {
  max-width: fit-content;
  left: 6%;
}
.about_team .card {
  background-color: #fff !important;
  border-radius: 8px;
}
.about_team .card-img {
  padding: 1rem 1rem 0 1rem;
  overflow: hidden;
}
.about_team .card-img .team_overlay {
  background-color: rgba(0, 0, 0, 0.5);
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.5s;
}
.about_team .card-img:hover .team_overlay {
  opacity: 1;
}
.about_team .card-img .team_meetme {
  position: absolute;
  top: -50px;
  left: 10px;
  right: 10px;
  opacity: 0;
  transition: all 0.5s;
}
.about_team .card-img:hover .team_meetme {
  top: 20%;
  opacity: 1;
}

.about_team .card-img .team_overlay ul {
  gap: 30px;
  position: absolute;
  bottom: -50px;
  left: 10px;
  right: 10px;
  opacity: 0;
  transition: all 0.5s;
}
.about_team .card-img:hover .team_overlay ul {
  bottom: 20px;
  opacity: 1;
}
.about_team .team_overlay a {
  color: #fff;
}
.about_team .team_overlay a:hover {
  color: var(--priColor);
}

/* why choose us */
.whychoose_l h4 {
  line-height: 35px;
}
.whychoose_l h4 i {
  width: 45px;
  font-size: 32px;
  line-height: 35px;
  color: var(--priColor);
  vertical-align: middle;
}
.whychoose_l .sub_col p {
  padding: 0 10px 0 45px;
}
.whychoose_r .sticker {
  background-color: var(--priColor);
  color: #fff;
  text-align: center;
  min-width: 300px;
  border-radius: 0 0 100px 0;
  padding: 40px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 30px 30px 35px rgba(0, 0, 0, 0.2);
  left: -20%;
  bottom: 40px;
}
.whychoose_r .sticker h5 {
  font-size: 70px;
  line-height: 80px;
  color: #fff;
  margin: 0;
}
.whychoose_r .sticker p {
  font-size: 18px;
  margin: 0;
}
.whychoose_feature_unit {
  display: block;
  padding: 45px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.5s;
}
.whychoose_feature_unit:hover {
  border: 1px solid var(--bw20DarkLight);
}
.whychoose_feature_unit:hover h4 {
  color: var(--secColor);
}
.whychoose_feature_unit p {
  color: var(--txtColor);
  margin: 0;
}
.whychoose_feature_unit img {
  width: 100%;
}
/* gallery */
.prod_gallery .gallery_item {
  position: relative;
  display: block;
  overflow: hidden;
}
.prod_gallery .gallery_item::before {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 100%;
  left: -75%;
  top: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}
.prod_gallery .gallery_item:hover::before {
  animation: galleryHover 0.95s;
}
@keyframes galleryHover {
  to {
    left: 130%;
  }
}
.prod_gallery .gallery_item img {
  width: 100%;
}
.prod_gallery h5 {
  position: absolute;
  padding: 10px;
  left: 20px;
  right: 20px;
  bottom: 15px;
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.35);
}
.countup_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
.countup_item i {
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 32px;
  line-height: 80px;
  color: var(--secColor);
  border-radius: 50%;
  background-color: rgba(0, 159, 77, 0.04);
}
.countup_item .countup {
  font-size: 48px;
  text-align: center;
  font-weight: 600;
  line-height: 72px;
  color: var(--headingColor);
}
.countup_item p {
  text-align: center;
  color: var(--headingColor);
  text-transform: uppercase;
}
/* About us*/
.about_video .row {
  width: 75%;
}
.videoBox {
  position: relative;
}
.videoBox img {
}

.videoBox .btnPlay {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 50px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  color: var(--priColor);
  background-color: #fff;
  border-radius: 50%;
}
.videoBox .btnPlay:hover {
  transform: scale(120%);
  transform-origin: center;
}
.videoBox .btnPlay i {
  font-size: 60px;
  line-height: 60px;
  transform: scaleY(65%);
  transform-origin: center;
}
.contact .infoItem {
  display: flex;
  margin: 10px 0;
}
.contact .infoItem i {
  padding-right: 15px;
  margin-top: 2px;
  color: var(--priColor);
  font-size: 20px;
}
.contact .infoItem a {
  color: unset;
}
.contact .infoItem a:hover {
  color: var(--priColor);
}
/* contact form */
.contact form {
  display: grid;
  gap: 15px;
}
.contact form input,
.contact form textarea {
  font-size: 15px;
  padding: 10px 15px;
  border: 1px solid #707070;
  border-radius: 3px;
  background: transparent;
  transition: unset;
}
.contact form input:focus,
.contact form textarea:focus {
  border-color: var(--priColor);
  outline: none;
}
.contact form input::placeholder,
.contact form textarea::placeholder {
  transition: all 0.5s;
}
.contact form input:focus::placeholder,
.contact form textarea:focus::placeholder {
  padding-left: 20px;
  font-size: 13px;
  opacity: 0.5;
}

/* ====================| CSS responsive |================= */
/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media screen and (max-width: 1399.98px) {
}

/* `xl` applies to large devices (desktops, less than 1200px) */
@media screen and (max-width: 1199.98px) {
  .whychoose_l h4 {
    font-size: 20px;
    line-height: 26px;
  }
}
/* fix home product gallery only */
@media screen and (max-width: 1199.98px) and (min-width: 992px) {
  .prod_gallery .row:first-of-type div:first-of-type {
    padding-left: 0;
  }
  .prod_gallery .row:first-of-type div:first-of-type h3.title {
    line-height: 38px;
    font-size: 34px;
  }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media screen and (max-width: 991.98px) {
  .hserv_title_l p.sub_title {
    font-size: 20px;
  }
  h3.title {
    font-size: 35px;
    line-height: 45px;
  }
  .whychoose_r .sticker {
    left: -7%;
  }
}
/* `md` applies to small devices (landscape phones, less than 768px) */
@media screen and (max-width: 767.98px) {
  #home_banner .banner_left {
    background-color: var(--bgThemeColor);
    border-radius: 10px;
    padding-left: 14%;
    transform: scale(85%);
    transform-origin: center;
    position: absolute;
    z-index: 1;
  }
  .banner_left .banner_content {
    width: 100%;
  }
  #home_banner .banner_left .banner_content p {
    font-size: 19px;
  }
  #home_banner .carousel-item,
  #home_banner .carousel-inner:after {
    border-radius: 0 0 20px 20px;
  }
  .w3l-clients-1 blockquote q {
    font-size: 17px;
  }

  .hserv_title_l p.sub_title {
    font-size: 18px;
  }
  h3.title {
    font-size: 32px;
    line-height: 42px;
  }
  .about_video .row {
    width: 98%;
  }
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575.98px) {
  .hserv_title_l p.sub_title {
    font-size: 18px;
  }
  h3.title {
    font-size: 30px;
    line-height: 40px;
  }
  .prod_gallery .row:first-of-type div:first-of-type {
    padding-left: 15px;
  }
}
/* fix to xx-small devices */
@media screen and (max-width: 500px) {
  #header {
    height: 145px;
  }
  #header.nav-fixed {
    height: 130px;
  }
  #home_banner .banner_left {
    transform: scale(70%);
    transform-origin: center;
  }
  #home_banner .banner_left h2 {
    transform: scale(75%);
    transform-origin: left top;
    margin: 0 0 -80px -45px;
  }
  #home_banner .banner_left .banner_content h3 {
    transform: scale(75%);
    transform-origin: left top;
  }
  #home_banner .banner_left .banner_content p {
    font-size: 21px;
    margin-top: -55px;
  }
  #home_banner .banner_left .banner_content a.btnlink {
    transform: scale(121.43%);
    transform-origin: left top;
    margin: 0 0 30px;
  }
  .feature_left {
    width: 85%;
    margin: 0 auto;
  }
  .feature_right {
    grid-template-columns: 1fr;
    width: 85%;
    margin: 0 auto;
  }
  .whychoose_r .sticker {
    left: -3%;
    transform: scale(80%);
    transform-origin: left bottom;
  }
  .prod_gallery .row:first-of-type div:first-of-type {
    width: 100%;
  }
}
@media screen and (max-width: 328px) {
  #navbar-top #navbarNav ul {
    right: -100px;
  }
}
/* ==================| end CSS responsive |=============== */
