@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700;800;900&display=swap");
body {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  overflow-x: hidden !important;
  overflow-y: scroll;
  font-family: "Barlow", sans-serif;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Barlow", sans-serif;
}

p {
  margin: 10px 0 0 0;
  color: #464141;
  line-height: 24px;
}

.p0 {
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
}

#scrl::-webkit-scrollbar {
  width: 6px;
  background-color: #48A41A;
}

#scrl::-webkit-scrollbar-thumb {
  background-color: #f5f3f1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: -40px;
  left: -40px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor:before {
  content: "";
  width: 80px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid white;
  transition: all ease 0.15s;
  transform: scale(0.15);
}
@media (max-width: 767px) {
  .cursor:before {
    display: none;
  }
}

.cursor.light:before {
  transform: scale(1);
  background: transparent;
}

.cursor.drag {
  mix-blend-mode: unset;
}

.cursor.drag:before {
  transform: scale(1);
  background: #083B66;
  border-color: transparent;
}

.cursor.drag:before {
  content: "\ea23";
  font-family: "LineIcons";
  font-size: 20px;
  color: #fff;
}

ul {
  padding: 0;
  margin: 0;
}

section {
  padding: 80px 0px;
}
@media (max-width: 992px) {
  section {
    padding: 60px 0px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 40px 0px;
  }
}

h1,
h2 {
  color: #252525;
  font-size: 2.8rem;
  line-height: 48px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  position: relative;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  h1,
  h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  h1,
  h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 480px) {
  h1,
  h2 {
    font-size: 1.8rem;
  }
}
h1 span,
h2 span {
  color: #083B66;
  font-weight: 500;
  font-size: 1.8rem;
  display: block;
}

.scrollup {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 90px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  z-index: 99999;
  background: url(../images/up-arrow.svg) no-repeat;
}
.scrollup img {
  width: 50px;
  height: 50px;
}

.form-group,
.form-floating {
  position: relative;
}
.form-group input,
.form-group .form-select,
.form-group .selecttext,
.form-group select,
.form-floating input,
.form-floating .form-select,
.form-floating .selecttext,
.form-floating select {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 45px;
  padding: 0 20px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.4s ease;
  color: #5a5a59;
  border: 1px solid #ced4da;
}
.form-group .selecttext,
.form-floating .selecttext {
  background: #fff;
  align-items: center;
  display: flex;
  color: #5a5a59;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-group select:focus,
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating .form-select:focus,
.form-floating select:focus {
  color: #5a5a59;
  outline: 0;
  box-shadow: none;
  border-color: #48A41A;
  transition: all 0.6s ease-in-out;
}
.form-group input:disabled,
.form-group input[readonly],
.form-floating input:disabled,
.form-floating input[readonly] {
  background-color: #fff;
}
.form-group textarea,
.form-floating textarea {
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  resize: none;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ced4da;
  transition: all 0.4s ease;
}
.form-group ::-moz-placeholder, .form-floating ::-moz-placeholder {
  color: #9c9c99;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}
.form-group ::placeholder,
.form-floating ::placeholder {
  color: #9c9c99;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}
.form-group :-ms-input-placeholder,
.form-floating :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9c9c99;
  font-weight: 500;
}
.form-group ::-ms-input-placeholder,
.form-floating ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9c9c99;
  font-weight: 500;
}

.form-check-input {
  width: 20px;
  height: 20px;
}

.form-check-input:focus {
  color: #5a5a59;
  outline: 0;
  box-shadow: none;
  border-color: #48A41A;
  transition: all 0.6s ease-in-out;
}

.form-check-input:checked {
  background-color: #083B66;
  border-color: #083B66;
}

select {
  width: 150px;
  height: 30px;
  padding: 5px;
  color: green;
}

select option {
  color: black;
}

select option:first-child {
  color: green;
}

.modal-content {
  border: 5px solid rgba(253, 238, 238, 0.2);
  background: #fff;
}
.modal-content .close-enquiry .close {
  color: #fff;
}
.modal-content .close {
  background: none;
  border: none;
  font-size: 24px;
  color: #48A41A;
  position: absolute;
  right: 0;
  z-index: 999;
}
.modal-content .modal-header {
  padding: 10px;
  border-bottom: 1px solid rgba(218, 218, 218, 0.1215686275);
}
.modal-content .modal-header h2 {
  color: #083B66;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1;
}
.carousel-control-prev i,
.carousel-control-next i {
  font-size: 30px;
  color: #48A41A;
}

@media (min-width: 1400px) {
  .container {
    width: 1170px;
  }
}
header {
  background: #fff;
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 99;
}
header .top__section {
  padding: 10px 0px;
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #fff;
}
@media (max-width: 480px) {
  header .top__section {
    padding: 10px 5px;
  }
}
header .top__section .left_side {
  display: flex;
  align-items: center;
}
header .top__section .left_side .logo {
  background: url(../images/logo.svg);
  display: inline-block;
  width: 200px;
  height: 80px;
  top: 0;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  header .top__section .left_side .logo {
    width: 170px;
    height: 68px;
  }
}
@media (max-width: 767px) {
  header .top__section .left_side .logo {
    width: 150px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  header .top__section .left_side .logo {
    width: 130px;
    height: 50px;
  }
}
header .top__section .left_side .welcome_text {
  padding-left: 20px;
}
@media (max-width: 992px) {
  header .top__section .left_side .welcome_text {
    display: none;
  }
}
header .top__section .left_side .welcome_text i {
  color: #48A41A;
  padding-right: 3px;
}
header .top__section .left_side .welcome_text h5 {
  color: #083B66;
  font-size: 16px;
  font-weight: 400;
}
header .top__section .left_side .welcome_text h5 span {
  color: #3e8758;
}
header .top__section .right_side {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  header .top__section .right_side {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  header .top__section .right_side {
    margin-right: 70px;
  }
}
@media (max-width: 480px) {
  header .top__section .right_side {
    margin-right: 65px;
  }
}
header .top__section .right_side .call {
  border-radius: 35px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  -o-border-radius: 35px;
  color: #083B66;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 15px;
  border: 3px solid #083B66;
}
header .top__section .right_side .call a {
  color: #083B66;
}
@media (max-width: 767px) {
  header .top__section .right_side .call {
    display: none;
  }
}
header .top__section .right_side .signup {
  display: flex;
  padding-left: 15px;
}
@media (max-width: 480px) {
  header .top__section .right_side .signup {
    padding-left: 0px;
  }
}
header .top__section .right_side .signup li {
  list-style: none;
  padding: 10px;
  color: #083B66;
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
header .top__section .right_side .signup li::before {
  position: absolute;
  content: "|";
  color: #48A41A;
  right: 0;
}
header .top__section .right_side .signup li a {
  color: #083B66;
}
header .top__section .right_side .signup li:last-child::before {
  display: none;
}
header .menus {
  background: #083B66;
  padding: 0px;
}
header .menus .right_box {
  display: flex;
}
header .menus .right_box .searchlist {
  float: right;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  header .menus .right_box .searchlist {
    display: none;
  }
}
@media (max-width: 767px) {
  header .menus .right_box .searchlist {
    float: none;
  }
}
header .menus .right_box .searchlist input[type=text] {
  padding: 6px;
  margin-top: 11px;
  font-size: 16px;
  border: none;
  min-width: 270px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  header .menus .right_box .searchlist input[type=text] {
    min-width: 190px;
  }
}
header .menus .right_box .searchlist button {
  float: right;
  padding: 6px 10px;
  margin-top: 11px;
  margin-right: 6px;
  background: #48A41A;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
header .menus .right_box .searchlist button i {
  color: #fff;
}
header .menus .boxes {
  padding: 14px 5px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  header .menus .boxes {
    padding: 5px 5px;
  }
}
header .menus .boxes h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding-right: 5px;
}
header .menus .boxes h5 i {
  color: #F2AF58;
}
header .menus .boxes h5 a {
  color: #fff;
}
header .menus .boxes span {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 5px;
  background: #48A41A;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbp-af-header.cbp-af-header-shrink {
  top: 0;
  width: 100%;
  left: 0;
  padding: 0px;
  background: #fff;
  height: 78px;
}
@media (max-width: 767px) {
  .cbp-af-header.cbp-af-header-shrink {
    height: 70px;
  }
}
@media (max-width: 480px) {
  .cbp-af-header.cbp-af-header-shrink {
    height: 65px;
  }
}
.cbp-af-header.cbp-af-header-shrink .nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #083B66;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #083B66, 0 1em 0 0 #083B66;
}
.cbp-af-header.cbp-af-header-shrink .top__section {
  padding: 5px 10px;
  position: relative;
  background: #fff;
}
.cbp-af-header.cbp-af-header-shrink .top__section .left_side {
  display: flex;
  align-items: center;
}
.cbp-af-header.cbp-af-header-shrink .top__section .left_side .logo {
  background: url(../images/logo.svg);
  display: inline-block;
  width: 135px;
  height: 60px;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .cbp-af-header.cbp-af-header-shrink .top__section .left_side .logo {
    width: 130px;
    height: 50px;
  }
}
.cbp-af-header.cbp-af-header-shrink .top__section .right_side .call {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 13px;
  border: 2px solid #48A41A;
}
.cbp-af-header.cbp-af-header-shrink .menus .right_box .searchlist input[type=text] {
  padding: 3px 5px;
  margin-top: 9px;
}
.cbp-af-header.cbp-af-header-shrink .menus .right_box .searchlist button {
  padding: 3px 10px;
  margin-top: 9px;
}
.cbp-af-header.cbp-af-header-shrink .menus .boxes {
  padding: 8px 5px;
}
.cbp-af-header.cbp-af-header-shrink .menus .boxes h5 a {
  color: #fff;
  font-size: 14px;
}
.cbp-af-header.cbp-af-header-shrink .nav-menu > li > a {
  padding: 14px 15px;
  color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .cbp-af-header.cbp-af-header-shrink .nav-menu > li > a {
    padding: 14px 11px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .cbp-af-header.cbp-af-header-shrink .nav-menu > li > a {
    padding: 14px 8px;
  }
}
.cbp-af-header.cbp-af-header-shrink .nav-menu > li.active > a {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-toggle {
    margin-top: -45px;
  }
}
@media (max-width: 480px) {
  .cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-toggle {
    margin-top: -45px;
    right: 10px;
  }
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > li.active > a {
  color: #F2AF58;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > li > a {
  padding: 12px 15px 12px 26px;
  color: #464141;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .searchlist {
  display: none;
}

.intro {
  height: 90vh;
  background: rgb(254, 247, 226);
  background: linear-gradient(180deg, rgb(254, 247, 226) 0%, rgb(241, 242, 242) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 100px !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .intro {
    margin-top: 30px;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .intro {
    height: auto;
    margin-top: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro {
    margin-top: 60px !important;
  }
}
@media (max-width: 767px) {
  .intro {
    margin-top: 60px !important;
  }
}
@media (max-width: 480px) {
  .intro {
    margin-top: 15px !important;
  }
}
.intro .slider-caption {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  justify-content: center;
  top: 0;
  padding: 100px;
  align-items: center;
}
@media (max-width: 1200px) {
  .intro .slider-caption {
    padding: 30px 60px;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption {
    padding: 20px 40px;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption {
    flex-direction: column-reverse;
  }
}
.intro .slider-caption .left_side {
  width: 50%;
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side {
    width: 100%;
  }
}
.intro .slider-caption .left_side h2 {
  font-size: 50px;
  color: #083B66;
  font-weight: 700;
  line-height: 65px;
  text-align: left;
  align-self: flex-start;
}
.intro .slider-caption .left_side h2::after {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .intro .slider-caption .left_side h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .slider-caption .left_side h2 {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side h2 {
    font-size: 22px;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.intro .slider-caption .left_side h4 {
  color: #252525;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  margin: 10px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .intro .slider-caption .left_side h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .slider-caption .left_side h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side h4 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .intro .slider-caption .left_side h4 {
    display: none;
  }
}
.intro .slider-caption .left_side h5 {
  color: #F2AF58;
  padding-left: 60px;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 1px;
}
.intro .slider-caption .left_side h5::before {
  position: absolute;
  content: "";
  background: #48A41A;
  left: 0;
  top: 50%;
  width: 50px;
  height: 2px;
}
.intro .slider-caption .left_side p {
  color: #464141;
  font-size: 18px;
}
@media (max-width: 767px) {
  .intro .slider-caption .left_side p {
    display: none;
  }
}
.intro .slider-caption .left_side .btnbox {
  margin-top: 20px;
  display: flex;
}
.intro .slider-caption .right_side {
  width: 50%;
  padding: 2%;
}
@media (max-width: 480px) {
  .intro .slider-caption .right_side {
    width: 100%;
  }
}
.intro .owl-carousel {
  margin: 0px;
}
.intro .owl-carousel .owl-item {
  height: 90vh !important;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .owl-carousel .owl-item {
    height: 70vh !important;
  }
}
@media (max-width: 767px) {
  .intro .owl-carousel .owl-item {
    height: 60vh !important;
  }
}
@media (max-width: 480px) {
  .intro .owl-carousel .owl-item {
    height: 90vh !important;
  }
}
.intro .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.intro .owl-theme .owl-controls {
  margin-top: -50px;
  z-index: 9;
  position: relative;
}

.heading h1,
.heading h2 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 40px;
  color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .heading h1,
  .heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .heading h1,
  .heading h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .heading h1,
  .heading h2 {
    font-size: 26px;
  }
}
.heading h1::after,
.heading h2::after {
  display: inline-block;
  margin: 0 0 8px 20px;
  height: 3px;
  content: " ";
  text-shadow: none;
  background-color: #F2AF58;
  width: 50px;
}
@media (max-width: 480px) {
  .heading h1::after,
  .heading h2::after {
    width: 30px;
  }
}
.heading h1::before,
.heading h2::before {
  display: inline-block;
  margin: 0 20px 8px 0;
  height: 3px;
  content: " ";
  text-shadow: none;
  background-color: #F2AF58;
  width: 50px;
}
@media (max-width: 480px) {
  .heading h1::before,
  .heading h2::before {
    width: 30px;
  }
}
.heading span {
  background: #fff;
}
.heading p {
  text-align: center;
  color: #083B66;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .heading p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .heading p {
    font-size: 16px;
    line-height: 26px;
  }
}

.product_category {
  position: relative;
  background: #fff;
}
.product_category .productsbrief {
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: relative;
  padding: 0px 0px 0px 50px;
  background: #fff;
  margin: 20px 10px 50px 10px;
  border: 1px solid #d0cece;
  border-bottom: 4px solid #083B66;
  overflow: hidden;
}
@media (max-width: 767px) {
  .product_category .productsbrief {
    margin: 20px 10px 20px 10px;
  }
}
.product_category .productsbrief img {
  transition: all 0.4s ease-in-out;
}
.product_category .productsbrief .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  padding: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .product_category .productsbrief .content {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .product_category .productsbrief .content {
    padding: 10px;
  }
}
.product_category .productsbrief .content h3 {
  color: #083B66;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product_category .productsbrief .content h3 {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .product_category .productsbrief .content h3 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .product_category .productsbrief .content h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 480px) {
  .product_category .productsbrief .content h3 {
    font-size: 22px;
    line-height: 22px;
  }
}
.product_category .productsbrief .content .more {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #48A41A;
  width: 60px;
  height: 60px;
  border: none;
  margin-top: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product_category .productsbrief .content .more {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product_category .productsbrief .content .more {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .product_category .productsbrief .content .more {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .product_category .productsbrief .content .more {
    width: 40px;
    height: 40px;
  }
}
.product_category .productsbrief .content .more i {
  color: #fff;
  font-size: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .product_category .productsbrief .content .more i {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .product_category .productsbrief .content .more i {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .product_category .productsbrief .content .more i {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .product_category .productsbrief .content .more i {
    font-size: 18px;
  }
}
.product_category .productsbrief:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-bottom: 4px solid #48A41A;
}
.product_category .productsbrief:hover .more {
  background: #083B66;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.product_category .tab {
  position: relative;
  margin-bottom: 20px;
}
.product_category .tab-trigger {
  width: 100%;
  z-index: 0;
  display: flex;
  justify-content: space-between;
}
.product_category .tab-trigger:before, .product_category .tab-trigger:after {
  content: " ";
  display: table;
}
.product_category .tab-trigger:after {
  clear: both;
}
.product_category .tab-trigger li {
  position: relative;
  list-style: none;
}
.product_category .tab-trigger a {
  display: block;
  outline: none;
  padding: 10px 20px;
  margin-left: 5px;
  z-index: 0;
  color: #adb8c1;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .product_category .tab-trigger a {
    font-size: 20px;
    padding: 10px 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .product_category .tab-trigger a {
    font-size: 18px;
    padding: 10px 5px;
  }
}
@media (max-width: 480px) {
  .product_category .tab-trigger a {
    font-size: 16px;
    padding: 10px 5px;
    margin-left: 0px;
    line-height: 24px;
  }
}
.product_category .tab-trigger .active a {
  color: #083B66;
  position: relative;
}
.product_category .tab-trigger .active a::before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
  background: #48A41A;
  height: 1px;
}
.product_category .tab-trigger .active a::after {
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
  background: #48A41A;
  height: 2px;
}
.product_category .tab-content {
  padding: 40px 0px 0px;
  border-radius: 20px;
  background: #ffffff;
  color: #808080;
}
.product_category .tab-content .arrival_box {
  transition: all 0.4s ease-in-out;
  width: 100%;
  border: 1px solid #d0cece;
}
.product_category .tab-content .arrival_box .product_img {
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #fff;
}
.product_category .tab-content .arrival_box .product_img img {
  width: 100%;
}
.product_category .tab-content .arrival_box .product_img .right_box {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.product_category .tab-content .arrival_box .product_img .right_box li {
  list-style: none;
  padding: 6px 0px;
}
.product_category .tab-content .arrival_box .product_img .right_box li .round_box {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #083B66;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_category .tab-content .arrival_box .product_img .right_box li .round_box i {
  color: #F2AF58;
  font-size: 16px;
}
.product_category .tab-content .arrival_box .product_img .right_box li:hover .round_box {
  background: #48A41A;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}
.product_category .tab-content .arrival_box .product_img .right_box li:hover .round_box i {
  color: #fff;
}
.product_category .tab-content .arrival_box .content {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #d0cece;
}
.product_category .tab-content .arrival_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #464141;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #083B66;
  min-height: 48px;
}
@media (max-width: 480px) {
  .product_category .tab-content .arrival_box .content h4 {
    height: 38px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .product_category .tab-content .arrival_box .content h4 {
    font-size: 1rem;
  }
}
.product_category .tab-content .arrival_box .content h5 {
  color: #48A41A;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0px;
}
.product_category .tab-content .arrival_box .content h5 span {
  color: #083B66;
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
  text-decoration: line-through;
}
.product_category .tab-content .arrival_box .content .but_section {
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.product_category .tab-content .arrival_box .content .but_section .readmore:hover {
  background: #48A41A;
}
.product_category .tab-content .arrival_box .content .but_section .readmore:hover i {
  color: #fff;
}
.product_category .tab-content .arrival_box:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.product_category .tab-content .arrival_box:hover .right_box {
  opacity: 1;
}
.product_category .tab-content .arrival_box:hover .product_img {
  transition: all 0.4s ease-in-out;
}
.product_category .tab-content .new_arrival {
  transition: all 0.4s ease-in-out;
  background: #083B66;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.product_category .tab-content .new_arrival img {
  width: 80px;
  padding-bottom: 20px;
}
.product_category .tab-content .new_arrival h4 {
  transition: all 0.4s ease-in-out;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid #fff;
}
.product_category .tab-content .new_arrival .readmore {
  background: #fff;
  color: #083B66;
  margin-top: 15px;
}
.product_category .tab-content .new_arrival:hover {
  background: #48A41A;
}
.product_category .tab-content .new_arrival:hover h4 {
  letter-spacing: 1px;
}
.product_category .tab-content-item {
  display: none;
}
.product_category .tab-content-item:first-child {
  display: block;
}
.product_category .owl-carousel {
  margin: 0px;
}
.product_category .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.product_category .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.product_category .owl-pagination {
  display: none;
}
.product_category .owl-theme .owl-controls .owl-buttons div {
  display: flex;
  zoom: 1;
  background: #083B66;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .product_category .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.product_category .owl-theme .owl-controls .owl-buttons div:hover {
  background: #48A41A;
}
.product_category .owl-prev {
  position: absolute;
  right: 52px;
  left: auto;
}
@media (max-width: 767px) {
  .product_category .owl-prev {
    right: 5px;
  }
}
.product_category .owl-next {
  position: absolute;
  right: 5px;
  left: auto;
}
@media (max-width: 767px) {
  .product_category .owl-next {
    right: -30px;
  }
}
.product_category .owl-theme .owl-controls,
.product_category .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  right: 40px;
  top: 0;
  margin: 0;
}
.product_category .owl-prev::before {
  content: "\f284";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  right: 7px;
  top: -1px;
  color: #F2AF58;
}
@media (max-width: 767px) {
  .product_category .owl-prev::before {
    font-size: 20px;
  }
}
.product_category .owl-next::after {
  content: "\f285";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  right: 7px;
  top: -1px;
  color: #F2AF58;
}
@media (max-width: 767px) {
  .product_category .owl-next::after {
    font-size: 20px;
  }
}

.best_seller {
  background: #f5f3f1;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .best_seller {
    padding-top: 20px;
  }
}
.best_seller::before {
  position: absolute;
  content: "";
  width: 6%;
  height: 100%;
  left: 0;
  background: #F2AF58;
}
@media (max-width: 767px) {
  .best_seller::before {
    display: none;
  }
}
.best_seller .left_box {
  background: #F2AF58;
  padding: 40px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .best_seller .left_box {
    padding: 20px;
  }
}
.best_seller .left_box h3 {
  text-align: left;
  font-weight: 700;
  color: #083B66;
  font-size: 1.8rem;
}
.best_seller .left_box p {
  color: #252525;
}
.best_seller .read_more {
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 10px;
  border: none;
  bottom: 70px;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #083B66;
  font-weight: 500;
  background: none;
}
.best_seller .read_more span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.best_seller .read_more span i {
  font-size: 20px;
}
.best_seller .read_more:hover {
  color: #fff;
}
.best_seller .read_more:hover i {
  color: #083B66;
}
.best_seller .arrival_box {
  transition: all 0.4s ease-in-out;
  width: 100%;
  background: #fff;
  border: 1px solid #d0cece;
  margin: 20px 10px 40px 10px;
}
.best_seller .arrival_box .product_img {
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #fff;
}
.best_seller .arrival_box .product_img img {
  width: 100%;
}
.best_seller .arrival_box .product_img .right_box {
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  opacity: 0;
}
.best_seller .arrival_box .product_img .right_box li {
  list-style: none;
  padding: 6px 0px;
}
.best_seller .arrival_box .product_img .right_box li .round_box {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #083B66;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best_seller .arrival_box .product_img .right_box li .round_box i {
  color: #F2AF58;
  font-size: 16px;
}
.best_seller .arrival_box .product_img .right_box li:hover .round_box {
  background: #48A41A;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}
.best_seller .arrival_box .product_img .right_box li:hover .round_box i {
  color: #fff;
}
.best_seller .arrival_box .content {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #d0cece;
}
.best_seller .arrival_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #464141;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #083B66;
  min-height: 48px;
}
@media (max-width: 480px) {
  .best_seller .arrival_box .content h4 {
    height: 38px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .best_seller .arrival_box .content h4 {
    height: 5px;
    min-height: 25px;
    -webkit-line-clamp: 1;
  }
}
.best_seller .arrival_box .content h5 {
  color: #48A41A;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0px;
}
.best_seller .arrival_box .content h5 span {
  color: #083B66;
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
  text-decoration: line-through;
}
.best_seller .arrival_box .content .but_section {
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.best_seller .arrival_box .content .but_section .readmore:hover {
  background: #48A41A;
}
.best_seller .arrival_box .content .but_section .readmore:hover i {
  color: #fff;
}
.best_seller .arrival_box:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.best_seller .arrival_box:hover .right_box {
  opacity: 1;
}
.best_seller .arrival_box:hover .product_img {
  transition: all 0.4s ease-in-out;
}
.best_seller .owl-carousel {
  margin: 0 0 60px 0;
}
.best_seller .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 0px;
}
.best_seller .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.best_seller .owl-pagination {
  display: none;
}
.best_seller .owl-theme .owl-controls .owl-buttons div {
  display: flex;
  zoom: 1;
  background: #083B66;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .best_seller .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.best_seller .owl-theme .owl-controls .owl-buttons div:hover {
  background: #48A41A;
}
.best_seller .owl-prev {
  position: absolute;
  left: 0px;
  right: auto;
}
.best_seller .owl-next {
  position: absolute;
  left: 40px;
  right: auto;
}
.best_seller .owl-theme .owl-controls,
.best_seller .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  left: 5px;
  bottom: 0;
  margin: 0;
}
.best_seller .owl-prev::before {
  content: "\f284";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  right: 7px;
  top: -1px;
  color: #F2AF58;
}
@media (max-width: 767px) {
  .best_seller .owl-prev::before {
    font-size: 20px;
  }
}
.best_seller .owl-next::after {
  content: "\f285";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  right: 7px;
  top: -1px;
  color: #F2AF58;
}
@media (max-width: 767px) {
  .best_seller .owl-next::after {
    font-size: 20px;
  }
}

.top__offers {
  position: relative;
}
.top__offers .arrival_box {
  transition: all 0.4s ease-in-out;
  width: 100%;
  border: 1px solid #d0cece;
  margin: 20px 10px 40px 10px;
}
.top__offers .arrival_box .product_img {
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #fff;
}
.top__offers .arrival_box .product_img img {
  width: 100%;
}
.top__offers .arrival_box .product_img .right_box {
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  opacity: 0;
}
.top__offers .arrival_box .product_img .right_box li {
  list-style: none;
  padding: 6px 0px;
}
.top__offers .arrival_box .product_img .right_box li .round_box {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #083B66;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__offers .arrival_box .product_img .right_box li .round_box i {
  color: #F2AF58;
  font-size: 16px;
}
.top__offers .arrival_box .product_img .right_box li:hover .round_box {
  background: #48A41A;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}
.top__offers .arrival_box .product_img .right_box li:hover .round_box i {
  color: #fff;
}
.top__offers .arrival_box .content {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #d0cece;
}
.top__offers .arrival_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #464141;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #083B66;
  min-height: 48px;
}
@media (max-width: 480px) {
  .top__offers .arrival_box .content h4 {
    height: 38px;
    min-height: 40px;
  }
}
.top__offers .arrival_box .content h5 {
  color: #48A41A;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0px;
}
.top__offers .arrival_box .content h5 span {
  color: #083B66;
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
  text-decoration: line-through;
}
.top__offers .arrival_box .content .but_section {
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.top__offers .arrival_box .content .but_section .readmore:hover {
  background: #48A41A;
}
.top__offers .arrival_box .content .but_section .readmore:hover i {
  color: #fff;
}
.top__offers .arrival_box:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.top__offers .arrival_box:hover .right_box {
  opacity: 1;
}
.top__offers .arrival_box:hover .product_img {
  transition: all 0.4s ease-in-out;
}
.top__offers .owl-carousel {
  margin: 0px;
}
.top__offers .owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 30px;
}
.top__offers .owl-controls .owl-buttons div {
  cursor: pointer;
  display: block;
}
.top__offers .owl-pagination {
  display: none;
}
.top__offers .owl-theme .owl-controls .owl-buttons div {
  display: flex;
  zoom: 1;
  background: #083B66;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .top__offers .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.top__offers .owl-theme .owl-controls .owl-buttons div:hover {
  background: #48A41A;
}
.top__offers .owl-prev {
  position: absolute;
  right: 52px;
  left: auto;
}
.top__offers .owl-next {
  position: absolute;
  right: 5px;
  left: auto;
}
.top__offers .owl-theme .owl-controls,
.top__offers .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  right: 40px;
  top: 0;
  margin: 0;
}
.top__offers .owl-prev::before {
  content: "\f284";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  right: 7px;
  top: -1px;
  color: #F2AF58;
}
@media (max-width: 767px) {
  .top__offers .owl-prev::before {
    font-size: 20px;
  }
}
.top__offers .owl-next::after {
  content: "\f285";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  right: 7px;
  top: -1px;
  color: #F2AF58;
}
@media (max-width: 767px) {
  .top__offers .owl-next::after {
    font-size: 20px;
  }
}
.top__offers .logo {
  transition: all 0.4s ease-in-out;
  border: 1px solid #d2d2d2;
  text-align: center;
  padding: 20px;
}
@media (max-width: 480px) {
  .top__offers .logo {
    padding: 10px;
  }
}
.top__offers .logo img {
  filter: grayscale(100%);
}
.top__offers .logo:hover img {
  filter: none;
}

.footer {
  background: #0b2e4c;
}
.footer h3 {
  font-weight: 700;
  color: #48A41A;
  font-size: 1.4rem;
  position: relative;
}
.footer h3::before {
  left: 0;
  bottom: -10px;
  position: absolute;
  content: "";
  width: 40px;
  height: 3px;
  background: #fff;
}
.footer h4 {
  font-weight: 600;
  color: #48A41A;
  font-size: 1.2rem;
  position: relative;
}
.footer .social_links {
  width: 100%;
  display: flex;
  margin: 20px 0px;
}
@media (max-width: 480px) {
  .footer .social_links {
    flex-wrap: wrap;
    margin: 10px 0px 10px 0px;
  }
}
.footer .social_links li {
  margin: 0px 5px;
  list-style: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #002f57;
}
.footer .social_links li:first-child {
  margin-left: 0px;
}
@media (max-width: 480px) {
  .footer .social_links li {
    width: 30px;
    height: 30px;
  }
}
.footer .social_links li img {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .footer .social_links li img {
    width: 15px;
    height: 15px;
  }
}
.footer .social_links li:hover .fb {
  background: #3b5998 !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social_links li:hover .insta {
  background: #fa7e1e !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social_links li:hover .twtr {
  background: #1da1f2 !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social_links li:hover .youtube {
  background: #ff0000 !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .line {
  width: 100%;
  height: 1px;
  background: #062b4c;
  margin: 40px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .line {
    margin: 30px 0px;
  }
}
@media (max-width: 767px) {
  .footer .line {
    margin: 30px 0px;
    background: #094377;
  }
}
.footer .ftr_logo {
  margin-bottom: 30px;
  width: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .ftr_logo {
    width: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .footer .ftr_logo {
    width: 250px;
  }
}
@media (max-width: 480px) {
  .footer .ftr_logo {
    display: none;
  }
}
.footer .lists {
  margin-top: 30px;
}
.footer .lists ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .lists ul li {
  transition: all 0.4s ease-in-out;
  width: 100%;
  list-style: none;
  position: relative;
  line-height: 30px;
  color: #90B1CC;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .lists ul li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .lists ul li {
    font-size: 14px;
  }
}
.footer .lists ul li::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: "";
  font-family: bootstrap-icons !important;
  left: 0;
  width: 20px;
  height: 2px;
  font-size: 26px;
  font-weight: 400;
  background: #F2AF58;
  top: 50%;
  opacity: 0;
}
@media (max-width: 480px) {
  .footer .lists ul li::before {
    display: none;
  }
}
.footer .lists ul li a {
  color: #90B1CC;
}
.footer .lists ul li a:hover {
  color: #F2AF58;
}
.footer .lists ul li:hover {
  padding-left: 25px;
}
.footer .lists ul li:hover::before {
  opacity: 1;
}
@media (max-width: 480px) {
  .footer .lists ul li:hover {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .lists ul li:hover {
    padding-left: 30px;
  }
}
.footer .lists ul li:hover a {
  letter-spacing: 1px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .lists ul li:hover a {
    letter-spacing: 0.5px;
  }
}
@media (max-width: 480px) {
  .footer .lists ul li:hover a {
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) {
  .footer .lists {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .footer .lists {
    margin-top: 10px;
  }
}
.footer .lists_two {
  margin-top: 30px;
}
.footer .lists_two li {
  width: 100%;
  list-style: none;
  position: relative;
  padding: 0px 0px 15px 40px;
  color: #90B1CC;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .lists_two li {
    font-size: 14px;
    padding: 0px 0px 5px 30px;
  }
}
@media (max-width: 480px) {
  .footer .lists_two li {
    padding: 0px 0px 5px 20px;
    font-size: 14px;
  }
}
.footer .lists_two li a {
  color: #90B1CC;
}
.footer .lists_two li i {
  position: absolute;
  left: 0;
  font-size: 26px;
  font-weight: 400;
  color: #3a6488;
  top: -10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer .lists_two li i {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .footer .lists_two li i {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .footer .lists_two li:hover li {
    padding: 0px 0px 5px 0px;
  }
}
.footer .lists_two li:hover a {
  letter-spacing: 1px;
  color: #F2AF58;
}
@media (max-width: 480px) {
  .footer .lists_two li:hover a {
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .footer .lists_two {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .footer .lists_two {
    margin-top: 10px;
  }
}
.footer .lists_two li i {
  top: 0;
}
.footer .heading {
  display: flex;
}
.footer .heading img {
  width: 60px;
  padding-right: 10px;
}
@media (max-width: 480px) {
  .footer .heading img {
    display: none;
  }
}
.footer .payment_gateway {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.footer .payment_gateway li {
  list-style: none;
  margin: 5px;
}
@media (max-width: 480px) {
  .footer .payment_gateway li img {
    width: 50px;
  }
}
.footer .payment_gateway li:first-child {
  margin-left: 0;
}

.powered {
  background: #00223e;
  padding: 30px 0px;
}
.powered p {
  color: #90B1CC;
}
.powered p a {
  color: #48A41A;
}

.inner_banner {
  margin-top: 165px !important;
  position: relative;
  height: 35vh;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .inner_banner {
    height: 25vh;
  }
}
@media (max-width: 1200px) {
  .inner_banner {
    height: auto;
    margin-top: 130px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_banner {
    margin-top: 90px !important;
  }
}
@media (max-width: 767px) {
  .inner_banner {
    margin-top: 80px !important;
  }
}
@media (max-width: 480px) {
  .inner_banner {
    margin-top: 68px !important;
  }
}
.inner_banner::before {
  content: "";
  position: absolute;
  background: rgb(219, 219, 219);
  background: linear-gradient(180deg, rgba(219, 219, 219, 0.8156512605) 0%, rgba(8, 59, 102, 0.8240546218) 100%);
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}
.inner_banner h3 {
  text-align: center;
  font-weight: 700;
  color: #083B66;
  font-size: 2.8rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_banner h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .inner_banner h3 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .inner_banner h3 {
    font-size: 1.6rem;
  }
}
.inner_banner nav {
  position: relative;
  z-index: 9;
}
.inner_banner nav .breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.inner_banner nav .breadcrumb li {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .inner_banner nav .breadcrumb li {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .inner_banner nav .breadcrumb li {
    font-size: 12px;
  }
}
.inner_banner nav .breadcrumb li a {
  color: #fff;
}
.inner_banner nav .breadcrumb li::before {
  content: "\f285";
  color: #f5f3f1;
  top: 5px;
  font-weight: 600;
  font-family: bootstrap-icons !important;
}
@media (max-width: 767px) {
  .inner_banner nav .breadcrumb li::before {
    font-size: 12px;
  }
}
.inner_banner nav .breadcrumb li:first-child::before {
  display: none;
}

.inner_container {
  width: 100%;
  position: relative;
}
.inner_container .wihshlists {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.inner_container .wihshlists .noresult {
  margin: 40px 0px;
  width: 250px;
}
@media (max-width: 480px) {
  .inner_container .wihshlists {
    padding: 20px 0px;
  }
}
.inner_container .wihshlists h3 {
  color: #252525;
  font-weight: 1.5rem;
  font-weight: 600;
  margin: 10px 0px;
}
@media (max-width: 480px) {
  .inner_container .wihshlists h3 {
    font-size: 1.3rem;
  }
}
.inner_container .pointer {
  cursor: pointer;
}
.inner_container .order__details {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.inner_container .order__details .details {
  background: #eaf5ff;
  padding: 20px;
  width: 33.3333333333%;
  border: 1px solid #90B1CC;
  margin-right: 5px;
}
.inner_container .order__details .details .order__details {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.inner_container .order__details .details .order__details .details h5 {
  font-weight: 600;
  color: #083B66;
}
.inner_container .order__details .details .order__details .details .boxes {
  width: 100%;
}
.inner_container .order__details .details .order__details .details .boxes p span {
  font-weight: 600;
}
.inner_container .order__details .details h5 {
  font-weight: 600;
  color: #083B66;
}
.inner_container .order__details .details .boxes {
  width: 100%;
}
.inner_container .order__details .details .boxes p span {
  font-weight: 600;
}
.inner_container .placed {
  width: 100%;
}
.inner_container .placed h3 {
  text-align: center;
  color: #48A41A;
  font-weight: 700;
  font-size: 2rem;
}
@media (max-width: 480px) {
  .inner_container .placed h3 {
    font-size: 1.6rem;
  }
}
.inner_container .placed h4 {
  text-align: center;
  color: red;
  font-weight: 700;
  font-size: 2rem;
}
@media (max-width: 480px) {
  .inner_container .placed h4 {
    font-size: 1.6rem;
  }
}
.inner_container .order_placed {
  width: 100%;
}
.inner_container .order_placed h5 {
  color: #083B66;
  font-weight: 600;
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .inner_container .order_placed h5 {
    font-size: 1.2rem;
  }
}
.inner_container .order_placed p {
  margin: 0px 0px 10px 0px;
}
.inner_container .order_placed p span {
  color: #48A41A;
  font-weight: 500;
}
.inner_container .order-summery {
  padding: 20px;
  border: 1px solid #ccc;
  background: #f6f6f6;
}
.inner_container .order-summery h3 {
  text-align: left;
  color: #252525;
  font-weight: 700;
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .inner_container .order-summery h3 {
    font-size: 1.2rem;
  }
}
.inner_container .order-summery .products_box {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.inner_container .order-summery .products_box .imges {
  width: 100px;
}
.inner_container .order-summery .products_box .imges img {
  width: 100px;
  border: 1px solid #f1ebeb;
}
.inner_container .order-summery .products_box .product_name {
  padding-left: 10px;
  width: 75%;
}
.inner_container .order-summery .products_box .product_name h3 {
  font-weight: 600;
  color: #083B66;
  font-size: 1rem;
}
.inner_container .order-summery .products_box .product_name .qty_price {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.inner_container .order-summery .products_box .product_name .qty_price h6 {
  font-size: 1rem;
  color: #464141;
}
.inner_container .order-summery .price_box {
  width: 100%;
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding: 10px 0px;
}
.inner_container .order-summery .price_box .totals {
  display: flex;
  padding: 5px 0px;
  width: 100%;
  justify-content: space-between;
}
.inner_container .order-summery .price_box .totals h4 {
  font-size: 1rem;
  font-weight: 400;
  color: #252525;
}
.inner_container .order-summery .price_box .totals h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #252525;
}
@media (max-width: 480px) {
  .inner_container .order-summery .price_box .totals h5 {
    font-size: 1rem;
  }
}
.inner_container .order-summery .price_box .totals h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #083B66;
}
@media (max-width: 480px) {
  .inner_container .order-summery .price_box .totals h3 {
    font-size: 1.3rem;
  }
}
.inner_container .quickorder .select2-container .select2-selection--single {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 45px;
  padding: 0 20px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.4s ease;
  color: #5a5a59;
  border: 1px solid #ced4da;
}
.inner_container .quickorder .select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0px;
  line-height: 42px;
  font-weight: 500;
  color: #5a5a59;
}
.inner_container .quickorder .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
}
.inner_container .quickorder .select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background: antiquewhite;
}
.inner_container .quickorder .select2-results__option {
  padding: 15px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.inner_container .count_bg {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.inner_container .count_bg .count {
  transition: all 0.4s ease-in-out;
  position: relative;
  padding-left: 10px;
}
.inner_container .count_bg .count::before {
  content: "";
  position: absolute;
  left: 0px;
  width: 20px;
  height: 20px;
  background: #dae4ec;
}
.inner_container .count_bg .count h5 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #48A41A;
}
.inner_container .count_bg .count h5 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #464141;
  letter-spacing: 1px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .count_bg .count h5 span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .inner_container .count_bg .count h5 span {
    font-size: 16px;
    font-weight: 600;
  }
}
.inner_container .login {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.4s ease-in-out;
  width: 100%;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  padding: 40px;
  background: #fff;
  background-size: cover;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media (max-width: 767px) {
  .inner_container .login {
    padding: 25px;
  }
}
.inner_container .login h4 {
  color: #083B66;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 480px) {
  .inner_container .login h4 {
    font-size: 1.6rem;
  }
}
.inner_container .login h5 {
  color: #464141;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 5px;
}
.inner_container .login .icon_right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.inner_container .login .forgot_password {
  display: flex;
  justify-content: flex-end;
}
.inner_container .login .forgot_password a {
  color: #48A41A;
}
.inner_container .login .btn-2 {
  width: 100%;
  text-align: center;
}
.inner_container .login a {
  color: #48A41A;
}
.inner_container .error h2 {
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .inner_container .error h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}
.inner_container .error h3 {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .error h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .inner_container .error h3 {
    font-size: 1.5rem;
  }
}
.inner_container .error p {
  font-size: 1.2rem;
  line-height: 26px;
}
@media (max-width: 767px) {
  .inner_container .error p {
    font-size: 1rem;
  }
}
.inner_container .my_account {
  background: #f3f3f3;
  position: relative;
}
.inner_container .my_account ul {
  position: relative;
}
.inner_container .my_account ul li {
  transition: all 0.4s ease-in-out;
  list-style: none;
  border-bottom: 1px solid #e1e1e1;
  color: #464141;
  font-weight: 500;
  padding: 10px 15px;
}
.inner_container .my_account ul li a {
  color: #464141;
}
.inner_container .my_account ul li a:hover {
  color: #fff;
  background: #083B66;
}
.inner_container .my_account ul li:hover {
  color: #fff;
  background: #083B66;
}
.inner_container .categories,
.inner_container .my_account {
  position: relative;
}
.inner_container .categories .heading,
.inner_container .my_account .heading {
  background: #48A41A;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .categories .heading,
  .inner_container .my_account .heading {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .inner_container .categories .heading,
  .inner_container .my_account .heading {
    font-size: 1.1rem;
  }
}
.inner_container .categories ul.mtree,
.inner_container .my_account ul.mtree {
  margin-left: 0;
}
.inner_container .categories ul.mtree ul,
.inner_container .my_account ul.mtree ul {
  margin-left: 1em;
}
.inner_container .categories ul.mtree li,
.inner_container .my_account ul.mtree li {
  list-style: none;
  position: relative;
  padding-left: 10px;
}
.inner_container .categories ul.mtree li::before,
.inner_container .my_account ul.mtree li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: "\f309";
  left: -10px;
  top: 8px;
  font-size: 40px;
  font-family: bootstrap-icons !important;
  color: #083B66;
}
.inner_container .categories ul.mtree a,
.inner_container .my_account ul.mtree a {
  display: block;
  transition: all 300ms ease-out;
  font-weight: 600;
  font-size: 16px;
}
.inner_container .categories ul.mtree li.mtree-node > a,
.inner_container .my_account ul.mtree li.mtree-node > a {
  font-weight: 600;
  font-size: 16px;
}
.inner_container .categories ul.mtree.transit,
.inner_container .my_account ul.mtree.transit {
  background: #fff;
  margin-bottom: 15px;
}
.inner_container .categories ul.mtree.transit ul,
.inner_container .my_account ul.mtree.transit ul {
  margin-left: 0;
}
.inner_container .categories ul.mtree.transit ul > li,
.inner_container .my_account ul.mtree.transit ul > li {
  font-size: 0.9em;
}
.inner_container .categories ul.mtree.transit ul > li:first-child,
.inner_container .my_account ul.mtree.transit ul > li:first-child {
  margin-top: 1px;
}
.inner_container .categories ul.mtree.transit ul > li::before,
.inner_container .my_account ul.mtree.transit ul > li::before {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  content: "\f309";
  left: 4px;
  top: 4px;
  font-size: 30px;
  font-family: bootstrap-icons !important;
  color: #083B66;
}
.inner_container .categories ul.mtree.transit li.mtree-node,
.inner_container .my_account ul.mtree.transit li.mtree-node {
  position: relative;
}
.inner_container .categories ul.mtree.transit li.mtree-node > a:before,
.inner_container .my_account ul.mtree.transit li.mtree-node > a:before {
  color: #252525;
  font-weight: normal;
  position: absolute;
  right: 20px;
}
.inner_container .categories ul.mtree.transit li.mtree-node > ul > li:last-child,
.inner_container .my_account ul.mtree.transit li.mtree-node > ul > li:last-child {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #e4e4e4;
}
.inner_container .categories ul.mtree.transit li.mtree-node:last-child > ul > li:last-child,
.inner_container .my_account ul.mtree.transit li.mtree-node:last-child > ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.inner_container .categories ul.mtree.transit li.mtree-open > a:before,
.inner_container .my_account ul.mtree.transit li.mtree-open > a:before {
  content: "\f63b";
  font-family: bootstrap-icons !important;
  font-size: 13px;
}
.inner_container .categories ul.mtree.transit li.mtree-closed > a:before,
.inner_container .my_account ul.mtree.transit li.mtree-closed > a:before {
  content: "\f64d";
  font-family: bootstrap-icons !important;
  font-size: 13px;
}
.inner_container .categories ul.mtree.transit li > a:hover,
.inner_container .my_account ul.mtree.transit li > a:hover {
  color: #48A41A;
}
.inner_container .categories ul.mtree.transit li li > a,
.inner_container .my_account ul.mtree.transit li li > a {
  padding-left: 1.6em;
  font-size: 15px;
  color: #598cb7;
  padding: 3px 0px 3px 1.8em;
}
.inner_container .categories ul.mtree.transit li li li > a,
.inner_container .my_account ul.mtree.transit li li li > a {
  padding-left: 1.4em;
}
.inner_container .categories ul.mtree.transit li li li li > a,
.inner_container .my_account ul.mtree.transit li li li li > a {
  padding-left: 2.2em;
}
.inner_container .categories ul.mtree.transit li li li li li > a,
.inner_container .my_account ul.mtree.transit li li li li li > a {
  padding-left: 2em;
}
.inner_container .categories ul.mtree.transit li.mtree-active > a,
.inner_container .my_account ul.mtree.transit li.mtree-active > a {
  color: #48A41A;
}
.inner_container .categories ul.mtree.transit a,
.inner_container .my_account ul.mtree.transit a {
  padding: 8px 0px 8px 0.8em;
  color: #083B66;
}
.inner_container .categories .mtree-active ul.mtree-level-1,
.inner_container .my_account .mtree-active ul.mtree-level-1 {
  display: block !important;
  height: auto !important;
}
.inner_container .top_field {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media (max-width: 1200px) {
  .inner_container .top_field {
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
.inner_container .top_field .showing {
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .top_field .showing {
    padding-bottom: 10px;
  }
}
.inner_container .top_field .showing p {
  color: #48A41A;
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .inner_container .top_field .right_box {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .top_field .right_box {
    margin-bottom: 15px;
  }
}
.inner_container .top_field .right_box .searchlist {
  float: right;
}
@media (max-width: 767px) {
  .inner_container .top_field .right_box .searchlist {
    margin-bottom: 10px;
    float: none;
  }
}
.inner_container .top_field .right_box .searchlist input[type=text] {
  border-radius: 5px 0px 0px 5px;
  -webkit-border-radius: 5px 0px 0px 5px;
  -moz-border-radius: 5px 0px 0px 5px;
  -ms-border-radius: 5px 0px 0px 5px;
  -o-border-radius: 5px 0px 0px 5px;
  padding: 6px;
  height: 32px;
  font-size: 16px;
  border: 1px solid #e2dddd;
  min-width: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .inner_container .top_field .right_box .searchlist input[type=text] {
    min-width: 230px;
  }
}
@media (max-width: 767px) {
  .inner_container .top_field .right_box .searchlist input[type=text] {
    min-width: 270px;
  }
}
.inner_container .top_field .right_box .searchlist button {
  float: right;
  padding: 4px 10px;
  margin-right: 0px;
  background: #48A41A;
  font-size: 11px;
  border: none;
  cursor: pointer;
}
.inner_container .top_field .right_box .searchlist button i {
  color: #fff;
}
.inner_container .top_field .right_box .sort {
  display: flex;
  align-items: center;
  padding-right: 10px;
  justify-content: center;
}
@media (max-width: 767px) {
  .inner_container .top_field .right_box .sort {
    margin-bottom: 10px;
  }
}
.inner_container .top_field .right_box .sort p {
  margin: 0;
  padding-right: 10px;
  color: #083B66;
  font-weight: 600;
}
.inner_container .top_field .right_box .sort .form-select {
  width: auto;
  height: 32px;
  width: auto;
  margin: 0;
  padding: 0px 36px 0px 5px;
  border: 1px solid #e2dddd;
}
.inner_container .arrival_box {
  transition: all 0.4s ease-in-out;
  width: 100%;
  border: 1px solid #d0cece;
}
.inner_container .arrival_box .product_img {
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #fff;
}
.inner_container .arrival_box .product_img img {
  width: 100%;
}
.inner_container .arrival_box .product_img .right_box {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.inner_container .arrival_box .product_img .right_box li {
  list-style: none;
  padding: 6px 0px;
}
.inner_container .arrival_box .product_img .right_box li .round_box {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #083B66;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_container .arrival_box .product_img .right_box li .round_box i {
  color: #F2AF58;
  font-size: 16px;
}
.inner_container .arrival_box .product_img .right_box li:hover .round_box {
  background: #48A41A;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}
.inner_container .arrival_box .product_img .right_box li:hover .round_box i {
  color: #fff;
}
.inner_container .arrival_box .content {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #d0cece;
}
.inner_container .arrival_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #464141;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #083B66;
  min-height: 48px;
}
@media (max-width: 480px) {
  .inner_container .arrival_box .content h4 {
    height: 38px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .inner_container .arrival_box .content h4 {
    font-size: 1rem;
  }
}
.inner_container .arrival_box .content h5 {
  color: #48A41A;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0px;
}
.inner_container .arrival_box .content h5 span {
  color: #083B66;
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
  text-decoration: line-through;
}
.inner_container .arrival_box .content .but_section {
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.inner_container .arrival_box .content .but_section .readmore:hover {
  background: #48A41A;
}
.inner_container .arrival_box .content .but_section .readmore:hover i {
  color: #fff;
}
.inner_container .arrival_box:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.inner_container .arrival_box:hover .right_box {
  opacity: 1;
}
.inner_container .arrival_box:hover .product_img {
  transition: all 0.4s ease-in-out;
}
.inner_container .bestsellers {
  margin: 0px;
}
.inner_container .bestsellers .arrival_box {
  transition: all 0.4s ease-in-out;
  width: 100%;
  border: 1px solid #d0cece;
  margin: 0px 2px;
}
.inner_container .bestsellers .arrival_box .product_img {
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #fff;
}
.inner_container .bestsellers .arrival_box .product_img img {
  width: 100%;
}
.inner_container .bestsellers .arrival_box .product_img .right_box {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.inner_container .bestsellers .arrival_box .product_img .right_box li {
  list-style: none;
  padding: 6px 0px;
}
.inner_container .bestsellers .arrival_box .product_img .right_box li .round_box {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #083B66;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner_container .bestsellers .arrival_box .product_img .right_box li .round_box i {
  color: #F2AF58;
  font-size: 16px;
}
.inner_container .bestsellers .arrival_box .product_img .right_box li:hover .round_box {
  background: #48A41A;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}
.inner_container .bestsellers .arrival_box .product_img .right_box li:hover .round_box i {
  color: #fff;
}
.inner_container .bestsellers .arrival_box .content {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #d0cece;
}
.inner_container .bestsellers .arrival_box .content h4 {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #464141;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #083B66;
  min-height: 48px;
}
@media (max-width: 480px) {
  .inner_container .bestsellers .arrival_box .content h4 {
    height: 38px;
    min-height: 40px;
  }
}
@media (max-width: 480px) {
  .inner_container .bestsellers .arrival_box .content h4 {
    font-size: 1rem;
  }
}
.inner_container .bestsellers .arrival_box .content h5 {
  color: #48A41A;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0px;
}
.inner_container .bestsellers .arrival_box .content h5 span {
  color: #083B66;
  font-weight: 400;
  font-size: 14px;
  padding-right: 10px;
  text-decoration: line-through;
}
.inner_container .bestsellers .arrival_box .content .but_section {
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.inner_container .bestsellers .arrival_box .content .but_section .readmore:hover {
  background: #48A41A;
}
.inner_container .bestsellers .arrival_box .content .but_section .readmore:hover i {
  color: #fff;
}
.inner_container .bestsellers .arrival_box:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.inner_container .bestsellers .arrival_box:hover .right_box {
  opacity: 1;
}
.inner_container .bestsellers .arrival_box:hover .product_img {
  transition: all 0.4s ease-in-out;
}
.inner_container .bestsellers .owl-carousel {
  margin: 0px;
}
.inner_container .bestsellers .owl-carousel .owl-wrapper-outer {
  margin-top: 5px;
}
.inner_container .pagination {
  display: flex;
  justify-content: center;
}
.inner_container .pagination ul {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
  display: flex;
  padding: 10px 20px;
  align-items: center;
}
.inner_container .pagination ul li {
  list-style: none;
  line-height: 50px;
  margin: 0 5px;
}
.inner_container .pagination ul li.pageNumber {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
}
.inner_container .pagination ul li a {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: block;
  text-decoration: none;
  color: #48A41A;
  font-weight: 600;
  width: 50px;
  height: 50px;
  font-size: 22px;
}
.inner_container .pagination ul li.pageNumber:hover a, .inner_container .pagination ul li.pageNumber.active a {
  background: #48A41A;
  color: #fff;
  border: 1px solid #083B66;
}
.inner_container .pagination ul li:first-child {
  margin-right: 0px;
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 480px) {
  .inner_container .pagination ul li:first-child {
    margin-right: 10px;
    font-size: 16px;
  }
}
.inner_container .pagination ul li:last-child {
  margin-left: 0px;
  font-weight: 700;
  font-size: 30px;
}
@media (max-width: 480px) {
  .inner_container .pagination ul li:last-child {
    margin-left: 10px;
    font-size: 16px;
  }
}
.inner_container .detail_box {
  padding: 0px 20px;
}
.inner_container .detail_box h1 {
  color: #48A41A;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner_container .detail_box h1 {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .detail_box h1 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .inner_container .detail_box h1 {
    font-size: 1.5rem;
  }
}
.inner_container .detail_box h5 {
  color: #48A41A;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 10px 0px;
  padding: 15px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .detail_box h5 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .inner_container .detail_box h5 {
    font-size: 1.2rem;
  }
}
.inner_container .detail_box h5 span {
  color: #083B66;
  font-weight: 400;
  font-size: 1.5rem;
  padding-right: 10px;
  text-decoration: line-through;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .detail_box h5 span {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .inner_container .detail_box h5 span {
    font-size: 1.2rem;
  }
}
.inner_container .detail_box p {
  color: #083B66;
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .detail_box p {
    font-size: 14px;
  }
}
.inner_container .detail_box .bold_box p {
  font-weight: 600;
  color: #083B66;
  font-size: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .detail_box .bold_box p {
    font-size: 14px;
  }
}
.inner_container .quantity_cart {
  display: flex;
  margin: 20px 0px;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: wrap;
}
.inner_container .quantity_cart .qty-input {
  color: #083B66;
  background: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 480px) {
  .inner_container .quantity_cart .qty-input {
    margin-bottom: 10px;
  }
}
.inner_container .quantity_cart .qty-input .product-qty,
.inner_container .quantity_cart .qty-input .qty-count {
  background: transparent;
  color: inherit;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  display: inline-block;
  min-width: 0;
  height: 2.5rem;
  line-height: 1;
}
.inner_container .quantity_cart .qty-input .product-qty:focus,
.inner_container .quantity_cart .qty-input .qty-count:focus {
  outline: none;
}
.inner_container .quantity_cart .qty-input .product-qty {
  width: 50px;
  min-width: 0;
  display: inline-block;
  text-align: center;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.inner_container .quantity_cart .qty-input .product-qty::-webkit-outer-spin-button, .inner_container .quantity_cart .qty-input .product-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.inner_container .quantity_cart .qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 3rem;
  font-size: 2em;
  text-indent: -100px;
  overflow: hidden;
  position: relative;
}
.inner_container .quantity_cart .qty-input .qty-count:before, .inner_container .quantity_cart .qty-input .qty-count:after {
  content: "";
  height: 2px;
  width: 10px;
  position: absolute;
  display: block;
  background: #252525;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.inner_container .quantity_cart .qty-input .qty-count--minus {
  border-right: 1px solid #e2e2e2;
}
.inner_container .quantity_cart .qty-input .qty-count--add {
  border-left: 1px solid #e2e2e2;
}
.inner_container .quantity_cart .qty-input .qty-count--add:after {
  transform: rotate(90deg);
}
.inner_container .quantity_cart .qty-input .qty-count:disabled {
  color: #ccc;
  background: #f2f2f2;
  cursor: not-allowed;
  border-color: transparent;
}
.inner_container .quantity_cart .qty-input .qty-count:disabled:before, .inner_container .quantity_cart .qty-input .qty-count:disabled:after {
  background: #ccc;
}
.inner_container .quantity_cart .btn-1 {
  font-size: 14px;
}
@media (max-width: 767px) {
  .inner_container .quantity_cart .btn-1 {
    padding: 8px 42px 8px 15px;
  }
}
.inner_container .quantity_cart .bulk {
  margin-left: 10px;
  color: #464141;
  padding: 15px 0px;
}
@media (max-width: 480px) {
  .inner_container .quantity_cart .bulk {
    margin-left: 0px;
  }
}
.inner_container .quantity_cart .bulk a {
  color: #48A41A;
  font-weight: 500;
}
.inner_container .qty-input {
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  font-size: 1.5rem;
  margin-right: 15px;
}
.inner_container .categoty__tag {
  width: 100%;
}
.inner_container .categoty__tag h4 {
  font-weight: 600;
  color: #083B66;
  font-size: 1.2rem;
}
.inner_container .categoty__tag ul {
  display: flex;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .inner_container .categoty__tag ul {
    flex-wrap: wrap;
  }
}
.inner_container .categoty__tag ul li {
  padding: 5px 10px;
  border: 1px solid #e2e2e2;
  list-style: none;
  font-size: 1rem;
  color: #083B66;
  margin-right: 10px;
}
@media (max-width: 992px) {
  .inner_container .categoty__tag ul li {
    margin-bottom: 5px;
    font-size: 16px;
  }
}
.inner_container .categoty__tag ul li:last-child {
  margin-right: 0px;
}
.inner_container .categoty__tag .shares {
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.inner_container .categoty__tag .shares .share-btn-icon {
  font-family: "share-buttons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.inner_container .categoty__tag .shares .uil-facebook-f {
  background: #3b5998;
  color: #fff;
  padding: 4px;
  width: 38px;
  height: 38px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner_container .categoty__tag .shares .uil-linkedin {
  background: #007bb6;
  color: #fff;
  padding: 4px;
  width: 38px;
  height: 38px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner_container .categoty__tag .shares .uil-twitter {
  background: #55acee;
  color: #fff;
  padding: 4px;
  width: 38px;
  height: 38px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner_container .categoty__tag .shares .uil-instagram {
  background: #ea2c59;
  color: #fff;
  padding: 4px;
  width: 38px;
  height: 38px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.inner_container .categoty__tag .shares .share-btn-email .share-btn-icon:before {
  content: "\e945";
}
.inner_container .categoty__tag .shares .share-btn-more .share-btn-icon:before {
  content: "\ea82";
}
.inner_container .categoty__tag .shares .share-btn-googleplus .share-btn-icon:before {
  content: "\ea88";
}
.inner_container .categoty__tag .shares .share-btn-facebook .share-btn-icon:before {
  content: "\ea8c";
}
.inner_container .categoty__tag .shares .share-btn-twitter .share-btn-icon:before {
  content: "\ea91";
}
.inner_container .categoty__tag .shares .share-btn-github .share-btn-icon:before {
  content: "\eab4";
}
.inner_container .categoty__tag .shares .share-btn-tumblr .share-btn-icon:before {
  content: "\eabb";
}
.inner_container .categoty__tag .shares .share-btn-reddit .share-btn-icon:before {
  content: "\eac7";
}
.inner_container .categoty__tag .shares .share-btn-linkedin ff .share-btn-icon:before {
  content: "\eac8";
}
.inner_container .categoty__tag .shares .share-btn-delicious .share-btn-icon:before {
  content: "\eacc";
}
.inner_container .categoty__tag .shares .share-btn-stumbleupon .share-btn-icon:before {
  content: "\eace";
}
.inner_container .categoty__tag .shares .share-btn-pinterest .share-btn-icon:before {
  content: "\ead0";
}
.inner_container .categoty__tag .shares .share-btn {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin: 0;
  padding-right: 10px;
  letter-spacing: 0.04em;
  vertical-align: top;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
}
.inner_container .categoty__tag .shares .share-btn * {
  box-sizing: border-box;
  box-sizing: border-box;
}
.inner_container .categoty__tag .shares .share-btn *:before {
  box-sizing: border-box;
}
.inner_container .categoty__tag .shares .share-btn *:after {
  box-sizing: border-box;
}
.inner_container .categoty__tag .shares .share-btn .share-btn-text-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.inner_container .categoty__tag .shares .share-btn .share-btn-text {
  padding-left: 2px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-sm {
  height: 20px;
  font-size: 10px;
  padding: 0 8px;
  line-height: 1.6;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-lg {
  height: 28px;
  font-size: 16px;
  line-height: 1.4;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded {
  color: #fff;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-twitter {
  color: #55acee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-twitter:hover {
  color: #55acee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-twitter:focus {
  color: #55acee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-twitter:active {
  color: #55acee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-facebook {
  color: #344e86;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-facebook:hover {
  color: #344e86;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-facebook:focus {
  color: #344e86;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-facebook:active {
  color: #344e86;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-googleplus {
  background: #dd4b39;
  color: #fff;
  border-color: #d73925;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-googleplus:hover {
  background: #d73925;
  border-color: #c23321;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-googleplus:focus {
  background: #d73925;
  border-color: #c23321;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-googleplus:active {
  background: #c23321;
  border-color: #ac2d1e;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-tumblr {
  background: #35465c;
  color: #fff;
  border-color: #2c3a4c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-tumblr:hover {
  background: #2c3a4c;
  border-color: #222d3c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-tumblr:focus {
  background: #2c3a4c;
  border-color: #222d3c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-tumblr:active {
  background: #222d3c;
  border-color: #19212b;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-reddit {
  background: #ff4500;
  color: #fff;
  border-color: #e63e00;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-reddit:hover {
  background: #e63e00;
  border-color: #cc3700;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-reddit:focus {
  background: #e63e00;
  border-color: #cc3700;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-reddit:active {
  background: #cc3700;
  border-color: #b33000;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-linkedin {
  color: #08669c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-linkedin:hover {
  color: #08669c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-linkedin:focus {
  color: #08669c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-linkedin:active {
  color: #08669c;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-delicious {
  background: #3399ff;
  color: #fff;
  border-color: #198cff;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-delicious:hover {
  background: #198cff;
  border-color: #007fff;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-delicious:focus {
  background: #198cff;
  border-color: #007fff;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-delicious:active {
  background: #007fff;
  border-color: #0073e5;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-stumbleupon {
  background: #eb4924;
  color: #fff;
  border-color: #e13b15;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-stumbleupon:hover {
  background: #e13b15;
  border-color: #ca3412;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-stumbleupon:focus {
  background: #e13b15;
  border-color: #ca3412;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-stumbleupon:active {
  background: #ca3412;
  border-color: #b22e10;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-pinterest {
  background: #cc2127;
  color: #fff;
  border-color: #b61d23;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-pinterest:hover {
  background: #b61d23;
  border-color: #a01a1f;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-pinterest:focus {
  background: #b61d23;
  border-color: #a01a1f;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-branded.share-btn-pinterest:active {
  background: #a01a1f;
  border-color: #8a161a;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-inverse {
  color: #eeeeee;
  background: #1f1f1f;
  border-color: #050505;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-inverse:hover {
  background: #121212;
  border-color: #000000;
  color: #eeeeee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-inverse:focus {
  background: #121212;
  border-color: #000000;
  color: #eeeeee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-inverse:active {
  background: #050505;
  border-color: #000000;
  color: #eeeeee;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-twitter .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-googleplus .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-tumblr .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-linkedin .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-pinterest .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-stumbleupon .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-delicious .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .categoty__tag .shares .share-btn.share-btn-more .share-btn-icon {
  position: relative;
  top: 1px;
}
.inner_container .product_gallery {
  position: sticky;
  top: 85px;
  padding: 15px;
  /* draggable */
  /* ---- previous/next buttons ---- */
}
.inner_container .product_gallery .flickity-enabled {
  position: relative;
}
.inner_container .product_gallery .flickity-enabled:focus {
  outline: none;
}
.inner_container .product_gallery .flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.inner_container .product_gallery .flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.inner_container .product_gallery .flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.inner_container .product_gallery .flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}
.inner_container .product_gallery .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}
.inner_container .product_gallery .flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .product_gallery .flickity-prev-next-button {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .inner_container .product_gallery .flickity-prev-next-button {
    width: 30px;
    height: 30px;
  }
}
.inner_container .product_gallery .flickity-prev-next-button:hover {
  background: white;
}
.inner_container .product_gallery .flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #083B66;
}
.inner_container .product_gallery .flickity-prev-next-button:active {
  opacity: 0.6;
}
.inner_container .product_gallery .flickity-prev-next-button.previous {
  left: 10px;
}
.inner_container .product_gallery .flickity-prev-next-button.next {
  right: 10px;
}
.inner_container .product_gallery .flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}
.inner_container .product_gallery .flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .product_gallery .flickity-prev-next-button svg {
    left: 30%;
    top: 30%;
    width: 40%;
    height: 40%;
  }
}
@media (max-width: 767px) {
  .inner_container .product_gallery .flickity-prev-next-button svg {
    left: 30%;
    top: 30%;
    width: 40%;
    height: 40%;
  }
}
.inner_container .product_gallery .flickity-prev-next-button .arrow {
  fill: #48A41A;
}
.inner_container .product_gallery .carousel {
  background: #fafafa;
  padding: 5px 0px;
}
.inner_container .product_gallery .carousel-main {
  margin-bottom: 8px;
}
.inner_container .product_gallery .carousel-cell {
  width: 100%;
  margin-right: 8px;
  border-radius: 5px;
  border: 1px solid #efeaea;
  /* counter-increment: carousel-cell; */
}
.inner_container .product_gallery .carousel-nav .carousel-cell {
  width: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .product_gallery .carousel-nav .carousel-cell {
    width: 85px;
  }
}
@media (max-width: 767px) {
  .inner_container .product_gallery .carousel-nav .carousel-cell {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .inner_container .product_gallery .carousel-nav .carousel-cell {
    width: 85px;
  }
}
.inner_container .product_gallery .carousel-main img {
  display: block;
  margin: 0 auto;
}
.inner_container .contact_address {
  border-radius: 0px 20px 0px 0px;
  -webkit-border-radius: 0px 20px 0px 0px;
  -moz-border-radius: 0px 20px 0px 0px;
  -ms-border-radius: 0px 20px 0px 0px;
  -o-border-radius: 0px 20px 0px 0px;
  padding: 40px 30px;
  background: rgb(8, 59, 102);
  background: linear-gradient(54deg, rgb(8, 59, 102) 0%, rgb(22, 106, 176) 100%);
  color: #fff;
  position: relative;
}
@media (max-width: 480px) {
  .inner_container .contact_address {
    padding: 30px;
  }
}
.inner_container .contact_address .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_address .shape3 {
    display: none;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_address .shape3 {
    display: none;
  }
}
.inner_container .contact_address P {
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  padding-left: 30px;
  margin-top: 20px;
}
.inner_container .contact_address P::before {
  position: absolute;
  content: "";
  left: 0;
  width: 20px;
  height: 1px;
  background: #F2AF58;
  top: 48%;
}
.inner_container .contact_address h3 {
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_address h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_address h3 {
    font-size: 1.6rem;
  }
}
.inner_container .contact_address h3 span {
  display: block;
  color: #F2AF58;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_address h3 span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_address h3 span {
    font-size: 1rem;
  }
}
.inner_container .contact_address h4 {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
}
.inner_container .contact_address h4 a {
  color: #fff;
}
.inner_container .contact_address p {
  color: #48A41A;
}
.inner_container .contact_forms {
  border-radius: 0px 20px 20px 0px;
  -webkit-border-radius: 0px 20px 20px 0px;
  -moz-border-radius: 0px 20px 20px 0px;
  -ms-border-radius: 0px 20px 20px 0px;
  -o-border-radius: 0px 20px 20px 0px;
  padding: 60px;
  background: #e8f0f5;
  position: relative;
  transform: translateX(-44px);
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_forms {
    transform: translateX(0px);
    margin-top: 0px;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .inner_container .contact_forms {
    transform: translateX(0px);
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_forms {
    padding: 30px;
  }
}
.inner_container .contact_forms h3 {
  color: #083B66;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_forms h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_forms h3 {
    font-size: 1.6rem;
  }
}
.inner_container .contact_forms h3 span {
  display: block;
  color: #F2AF58;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .contact_forms h3 span {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .inner_container .contact_forms h3 span {
    font-size: 1rem;
  }
}
.inner_container .logo {
  transition: all 0.4s ease-in-out;
  border: 1px solid #d2d2d2;
  text-align: center;
  background: #fff;
  padding: 20px;
}
@media (max-width: 480px) {
  .inner_container .logo {
    padding: 10px;
  }
}
.inner_container .logo img {
  filter: grayscale(100%);
}
.inner_container .logo:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: 1px solid #fff;
}
.inner_container .logo:hover img {
  filter: none;
}
.inner_container .addproducts {
  display: flex;
  justify-content: flex-end;
}
.inner_container .cart-table {
  background: #f8f8f8;
  border: 1px solid #ccc;
}
.inner_container .cart-table .table {
  margin: 0;
}
.inner_container .cart-table .table thead tr th {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  background: #083B66;
}
.inner_container .cart-table .product_image {
  padding: 5px;
  width: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .product_image {
    width: 80px;
  }
}
.inner_container .cart-table .product_image img {
  width: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .product_image img {
    width: 80px;
  }
}
.inner_container .cart-table .product_name {
  padding: 5px;
}
.inner_container .cart-table .product_name h3 {
  color: #083B66;
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .product_name h3 {
    font-size: 16px;
  }
}
.inner_container .cart-table .products_pic img {
  width: 80px;
}
.inner_container .cart-table .price {
  padding: 5px;
}
@media (max-width: 767px) {
  .inner_container .cart-table .price {
    width: 135px;
  }
}
.inner_container .cart-table .price h5 {
  color: #48A41A;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 10px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .price h5 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .inner_container .cart-table .price h5 {
    font-size: 1rem;
  }
}
.inner_container .cart-table .price h5 span {
  color: #838383;
  font-weight: 400;
  font-size: 1rem;
  display: block;
  padding-right: 5px;
  text-decoration: line-through;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .price h5 span {
    font-size: 16px;
  }
}
.inner_container .cart-table .price h4 {
  color: #464141;
  font-weight: 500;
  font-size: 1rem;
  margin: 10px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .price h4 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .inner_container .cart-table .price h4 {
    font-size: 0.875rem;
  }
}
.inner_container .cart-table .textbold {
  text-align: right;
  font-weight: 600;
}
.inner_container .cart-table .grandtotal {
  font-weight: 700;
  font-weight: 1.5rem;
  color: #083B66;
  text-align: right;
}
.inner_container .cart-table .grandprice {
  font-weight: 700;
  font-weight: 1.5rem;
  color: #083B66;
}
.inner_container .cart-table .pending {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #fae6d8;
}
.inner_container .cart-table .delivered {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #b9e7d5;
}
.inner_container .cart-table .delete {
  padding: 5px;
  display: flex;
  align-items: center;
}
.inner_container .cart-table .delete i {
  color: #48A41A;
  font-size: 20px;
}
.inner_container .cart-table .total h5 {
  color: #083B66;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 10px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container .cart-table .total h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .inner_container .cart-table .total h5 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .inner_container .cart-table .total {
    width: 100px;
  }
}
.inner_container .cart-table .qty-input {
  margin-right: 0px;
}
.inner_container .cart-table .quantity_cart .qty-input .qty-count {
  padding: 0;
  cursor: pointer;
  width: 2rem;
}
.inner_container .qty .btn-2 {
  margin-left: 10px;
  margin-bottom: 10px;
}
.inner_container .qty .quantity_cart {
  display: flex;
  margin: 10px 0px;
  flex-wrap: wrap;
}
.inner_container .cart_total {
  background: #f8f8f8;
  border: 1px solid #ccc;
  padding: 20px;
  width: 100%;
  position: sticky;
  top: 140px;
}
.inner_container .cart_total address {
  margin-top: 5px;
}
.inner_container .cart_total h3 {
  color: #083B66;
  font-size: 1.5rem;
  font-weight: 600;
}
.inner_container .cart_total h4 {
  color: #083B66;
  font-size: 1rem;
  font-weight: 600;
}
.inner_container .cart_total .b600 {
  font-weight: 600;
}
.inner_container .cart_total .type {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #ebebeb;
  color: #777b7c;
  display: inline-block;
  font-size: 16px;
  padding: 2px 10px;
  font-weight: 500;
  margin-top: 10px;
}
.inner_container .cart_total .form-control {
  border: 2px solid #48A41A;
  padding: 10px;
  height: 50px;
}
.inner_container .cart_total .input-group {
  display: flex;
}
.inner_container .cart_total .btn-apply {
  padding: 0px 15px;
  border: none;
  background: #48A41A;
  color: #fff;
}
@media (max-width: 480px) {
  .inner_container .cart_total .btn-apply {
    font-size: 14px;
    padding: 0px 8px;
  }
}
.inner_container .cart_total .cart-subtotal {
  display: flex;
  justify-content: space-between;
}
.inner_container .cart_total .cart-subtotal p {
  font-weight: 600;
}
.inner_container .cart_total .cart-subtotal .cart-amount {
  color: #083B66;
  font-weight: 700;
}
.inner_container .cart_total .cart-subtotal .f18 {
  font-weight: 700;
  font-size: 1.3rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner_container .cart_total .cart-subtotal .f18 {
    font-size: 1.2rem;
  }
}
.inner_container .cart_total .cart-subtotal .green {
  color: #48A41A;
}
.inner_container .cart_total .shipping p {
  font-weight: 600;
}
.inner_container .cart_total .shipping .applied {
  color: green;
  font-weight: 400;
  font-size: 13px;
  margin: 0;
}
.inner_container .cart_total .line {
  border-top: 1px solid #e2e2e2;
  margin: 15px 0px;
}
.inner_container .login_bg {
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  width: 100%;
  padding: 30px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  margin-top: 10px;
}
.inner_container .login_bg .btn-3 {
  width: auto;
}
.inner_container .login_bg .btn-3 i {
  padding-left: 10px;
}
.inner_container .billing_address {
  padding: 30px;
  background: #f8f8f8;
  border: 1px solid #ccc;
}
.inner_container .billing_address h3 {
  color: #083B66;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.inner_container .terms_condition {
  position: relative;
}
.inner_container .terms_condition ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.inner_container .terms_condition ul li {
  transition: all 0.4s ease-in-out;
  width: 100%;
  list-style: none;
  position: relative;
  padding-left: 24px;
}
.inner_container .terms_condition ul li::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  content: "\f134";
  font-family: bootstrap-icons !important;
  left: 0;
  top: 2px;
  font-size: 15px;
}
.inner_container .terms_condition h3 {
  font-weight: 700;
  font-size: 1.8rem;
  color: #083B66;
}
.inner_container .terms_condition h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #083B66;
  margin-top: 15px;
}
.inner_container .accordion .card-header {
  cursor: pointer;
  background: none;
  font-weight: 700;
  padding: 26px 10px;
  border-top: 1px solid rgba(136, 133, 133, 0.1607843137);
  border-bottom: 1px solid rgba(136, 133, 133, 0.1607843137);
}
@media (max-width: 767px) {
  .inner_container .accordion .card-header {
    padding: 15px 5px;
  }
}
.inner_container .accordion .card-header a {
  color: #252525;
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .inner_container .accordion .card-header a {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .inner_container .accordion .card-header a {
    font-size: 16px;
  }
}
.inner_container .accordion .card-body {
  background: #083B66;
}
.inner_container .accordion .card-body p {
  color: #fff;
}
.inner_container .accordion .card {
  background: none;
  border: none;
}
.inner_container .accordion .card-header:after {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  content: "\f63b";
  float: right;
  color: #48A41A;
}
.inner_container .accordion .card-header.collapsed:after {
  float: right;
  content: "\f64d";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  color: #48A41A;
}
.inner_container h1 {
  color: #48A41A;
  font-weight: 700;
  font-size: 2.5rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner_container h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner_container h1 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .inner_container h1 {
    font-size: 1.8rem;
  }
}
.inner_container h3 {
  color: #464141;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.inner_container h5 {
  color: #083B66;
  font-weight: 400;
  font-size: 1.3rem;
}

.shape-one {
  background: url(../images/shape1.png) no-repeat left center;
}

.login_signup_bg {
  background: url(../images/login_signup_bg.jpg) no-repeat center center;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .login_signup_bg {
    height: auto;
  }
}

.bg-light {
  background: #fbfbfb;
}

.aims {
  background: #e6f5fa;
  position: relative;
}
.aims .shape2 {
  position: absolute;
  right: 0;
  top: -20px;
  width: 140px;
}
.aims h3 {
  font-weight: 600;
  color: #083B66;
  font-size: 1.5rem;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .aims h3 {
    font-size: 1.5rem;
  }
}
.aims .boxes {
  transition: all 0.4s ease-in-out;
  padding: 30px;
  background: #fff;
  border-bottom: 4px solid #48A41A;
  min-height: 265px;
}
@media (max-width: 767px) {
  .aims .boxes {
    min-height: auto;
  }
}
.aims .boxes img {
  width: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .aims .boxes img {
    width: 60px;
  }
}
.aims .boxes:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.rotateme {
  animation-name: rotateme;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.select2-dropdown {
  background-color: #e5e5e5 !important;
  border: 1px solid #a09e9e;
}

.loader {
  background: rgba(0, 0, 0, 0.9254901961);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loadd {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.anim {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(8, 59, 102, 0.9) 100%);
  animation: animate 4s infinite forwards ease-in-out;
}

.anim:nth-child(1) {
  background: #48A41A;
  left: -24px;
  top: -24px;
  animation-delay: 0.5s;
}

.anim:nth-child(2) {
  background: #083B66;
  left: 0px;
  top: -24px;
  animation-delay: 1s;
}

.anim:nth-child(4) {
  background: #083B66;
  left: -24px;
  top: 0px;
  animation-delay: 1.5s;
}

.anim:nth-child(3) {
  background: #48A41A;
  left: 0px;
  top: 0px;
  animation-delay: 2s;
}

@keyframes animate {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    transform: rotateY(360deg);
  }
  40% {
    transform: rotateX(180deg);
  }
  60% {
    transform: rotateX(0deg);
  }
  80% {
    transform: rotateX(360deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
.btn-1 {
  transition: all 0.4s ease-in-out;
  color: #fff;
  background: #083B66;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 40px 10px 20px;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 18px 121px -19px rgb(140, 125, 140);
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .btn-1 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .btn-1 {
    font-size: 14px;
    padding: 5px 40px 5px 15px;
  }
}
@media (max-width: 480px) {
  .btn-1 {
    font-size: 12px;
  }
}
.btn-1 i {
  transition: all 0.4s ease-in-out;
  color: #F2AF58;
  font-size: 20px;
  padding-right: 10px;
}
.btn-1::before {
  position: absolute;
  right: 10px;
  content: "\f285";
  font-family: bootstrap-icons !important;
  color: #F2AF58;
  padding-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .btn-1::before {
    right: 16px;
  }
}
.btn-1:hover {
  color: #fff;
  border: none;
  padding-right: 50px;
}
.btn-1:hover i {
  color: #fff;
}

.btn-2 {
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  background: #083B66;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 20px;
  border: none;
  cursor: pointer;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .btn-2 {
    font-size: 14px;
    padding: 5px 25px 7px 15px;
  }
}
@media (max-width: 767px) {
  .btn-2 {
    font-size: 14px;
    padding: 5px 25px 7px 15px;
  }
}
@media (max-width: 480px) {
  .btn-2 {
    font-size: 12px;
  }
}
.btn-2::before {
  transition: all 0.4s ease-in-out;
  position: absolute;
  right: 10px;
  content: "\f285";
  font-family: bootstrap-icons !important;
  font-size: 20px;
  color: #fff;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .btn-2::before {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .btn-2::before {
    font-size: 14px;
  }
}
.btn-2:hover {
  color: #fff;
  background: #48A41A;
}
.btn-2:hover::before {
  right: 5px;
  opacity: 1;
}

.readmore {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  background: #083B66;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.readmore i {
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}
.readmore:hover {
  background: #48A41A;
}

.more {
  transition: all 0.4s ease-in-out;
  background: #083B66;
  padding: 5px 20px;
  color: #fff;
  font-size: 1rem;
  border: none;
}
.more:hover {
  background: #48A41A;
  letter-spacing: 1px;
}

.btn-3 {
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  background: #083B66;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100%;
}
@media (max-width: 480px) {
  .btn-3 {
    font-size: 1rem;
  }
}
.btn-3:hover {
  background: #48A41A;
}

.return {
  transition: all 0.4s ease-in-out;
  background: none;
  border: none;
  color: #083B66;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.return i {
  color: #48A41A;
  font-size: 25px;
  padding-right: 10px;
}
.return:hover {
  letter-spacing: 1px;
}

.whishlist {
  transition: all 0.4s ease-in-out;
  border: none;
  background: none;
  padding: 20px 0px;
  color: #083B66;
  font-weight: 500;
  font-size: 1rem;
  border: none;
}
.whishlist i {
  color: #48A41A;
  padding-right: 10px;
}
.whishlist:hover {
  letter-spacing: 1px;
}

.clicks {
  transition: all 0.4s ease-in-out;
  background: none;
  border: none;
  color: #083B66;
  font-weight: 600;
}

.products {
  background: #48A41A;
  padding: 5px 10px;
  margin-bottom: 8px;
  color: #fff;
  border: none;
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.products i {
  padding-left: 5px;
}

/*owl theme start */
.carousel-control-prev {
  left: 0;
  font-size: 0px;
}

.carousel-control-next {
  right: 0;
  font-size: 0px;
}

.owl-item {
  display: flex;
  height: auto !important;
}

.owl-carousel {
  position: relative;
  width: 100%;
  float: left;
  margin: 30px 0 0;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
  padding: 0;
  transform: translate3d(0, 0, 0);
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.owl-controls .owl-buttons div {
  cursor: pointer;
  display: none;
}
.owl-controls .owl-page {
  cursor: pointer;
  display: none;
}

.owl-theme .owl-controls {
  margin-top: 35px;
  text-align: center;
  margin: 0 0 0;
  width: 100%;
  float: left;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 2px;
  background: #083B66;
  border: #083B66 1px solid;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #083B66;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.owl-theme .owl-controls .owl-page.active span {
  background: #48A41A;
  border: #48A41A 1px solid;
}
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #48A41A;
  border: #48A41A 1px solid;
}
.owl-theme .owl-page.active span {
  background: #48A41A;
  border: #48A41A 1px solid;
}

.owl-theme .owl-controls {
  margin: 0 0 0;
  width: 100%;
  float: left;
}

.owl-goDown-out {
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  transition: all 0.4s ease-in-out;
  animation: goDown 0.6s ease both;
}

.owl-fade-out {
  z-index: 10;
  transition: all 0.4s ease-in-out;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  transition: all 0.4s ease-in-out;
  animation: fadeIn 0.7s both ease;
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
.navigation {
  width: 100%;
  position: relative;
  font-family: inherit;
}
.navigation * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.align-to-right-mob {
  float: right;
  display: none !important;
}
@media (max-width: 1006px) {
  .align-to-right-mob {
    display: block !important;
  }
}

.navigation-portrait .nav-menu > li span {
  font-size: 0;
}
.navigation-portrait .boxes span {
  width: 26px !important;
  height: 26px !important;
}
.navigation-portrait .boxes h5 {
  color: #464141 !important;
  font-size: 14px !important;
}
.navigation-portrait .boxes h5 a {
  color: #464141 !important;
}
.navigation-portrait .searchlist {
  display: none;
}
.navigation-portrait .top__section {
  display: none;
}
.navigation-portrait .nav-toggle {
  display: block;
}
.navigation-portrait .align-to-left .nav-menu > li span {
  display: none;
}
.navigation-portrait .dropdown {
  width: 100% !important;
}
.navigation-portrait .btn1 {
  padding: 4px 15px;
}
.navigation-portrait .nav-menus-wrapper {
  width: 320px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #ffffff;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}
.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}
.navigation-portrait .nav-menu {
  width: 100%;
}
.navigation-portrait .nav-menu > li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li:last-child {
  border-bottom: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li > a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 26px;
  color: #464141;
}
.navigation-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}
.navigation-portrait .nav-menu.nav-menu-social > li {
  width: auto;
}
.navigation-portrait .nav-menu.nav-menu-social > li > a {
  padding: 15px;
}
.navigation-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}
.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}
.navigation-portrait .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}
.navigation-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
}
.navigation-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}
.navigation-portrait .nav-search-inner {
  height: 48px;
}
.navigation-portrait .nav-search-inner input[type=text] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-inner input[type=search] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}
.navigation-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 38px;
}
.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}
.navigation-portrait .nav-text + ul {
  margin-top: 15px;
}
.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}
.navigation-portrait .nav-dropdown > li > a {
  padding: 12px 20px 12px 30px;
}
.navigation-portrait .nav-dropdown > li > ul > li > a {
  padding-left: 50px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
  padding-left: 70px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
  padding-left: 90px;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 110px;
}
.navigation-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}
.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(45deg);
}
.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}
.navigation-portrait .nav-dropdown-horizontal > li {
  width: 100%;
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  transform: rotate(0deg);
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}

.navigation-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}
.navigation-fixed-wrapper .navigation {
  margin-right: auto;
  margin-left: auto;
}

.navigation-fixed-wrapper.fixed {
  position: fixed !important;
  animation: fade 0.5s;
}

.navigation-fixed-placeholder {
  width: 100%;
  display: none;
}

.navigation-fixed-placeholder.navigation-fixed-placeholder.visible {
  display: block;
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}
.navigation-hidden .nav-header {
  display: none;
}
.navigation-hidden .nav-search {
  display: none;
}

.align-to-right {
  float: right;
}

.nav-header {
  float: left;
}

.nav-brand {
  padding: 0 10px;
  text-decoration: none !important;
}

.nav-logo > img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left;
}
.nav-logo:focus > img {
  outline: initial;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: 14px;
  right: 15px;
  display: none;
  cursor: pointer;
}
.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #083B66;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #083B66, 0 1em 0 0 #083B66;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .nav-toggle {
    margin-top: -56px;
  }
}
@media (max-width: 767px) {
  .nav-toggle {
    margin-top: -50px;
  }
}
@media (max-width: 480px) {
  .nav-toggle {
    margin-top: -46px;
  }
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #70798b;
  font-size: 26px;
  cursor: pointer;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li {
  display: inline-block;
  text-align: left;
  float: left;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li > a {
  transition: all 0.4s ease-in-out;
  padding: 20px 15px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s, background 0.3s;
}
.nav-menu > li > a > i {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
}
.nav-menu > li > a > [class*=ion-] {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
  width: 16px;
  display: inline-block;
  transform: scale(1.8);
}
.nav-menu > li:hover {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li:hover > a {
  color: #464141;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #F2AF58 #F2AF58 transparent;
}
.nav-menu > li.active {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li.active > a {
  transition: all 0.4s ease-in-out;
  color: #F2AF58;
  background: #024D8D;
  border-bottom: 3px solid #F2AF58;
}
.nav-menu > li.focus {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li.focus > a {
  color: #F2AF58;
  transition: all 0.4s ease-in-out;
  background: #024D8D;
  border-bottom: 3px solid #F2AF58;
}
.nav-menu > .active > a .submenu-indicator-chevron {
  border-color: transparent #F2AF58 #F2AF58 transparent;
}
.nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #F2AF58 #F2AF58 transparent;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}
.nav-menu.nav-menu-centered > li {
  float: none;
}

.nav-menu.nav-menu-left {
  text-align: left;
}
.nav-menu.nav-menu-left > li {
  float: none;
}

.nav-menu + .nav-menu > li:first-child {
  border-top: none;
}

.nav-menu.nav-menu-social > li {
  text-align: center;
  float: none;
  border: none !important;
}
.nav-menu.nav-menu-social > li > a > [class*=ion-] {
  font-size: 12px;
}
.nav-menu.nav-menu-social > li > a > .fa {
  font-size: 14px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  transition: all 0.3s;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #F2AF58 #F2AF58 transparent;
  transform: rotate(45deg);
  transition: border 0.3s;
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  touch-action: none;
  overflow-x: hidden;
}

.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
}
.nav-search > form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  background-color: #fbfcfd;
}
.nav-search-button:hover .nav-search-icon {
  color: #8CC152;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: color 0.3s;
}
.nav-search-icon:after {
  content: "";
  pointer-events: none;
}
.nav-search-icon:before {
  content: "";
  pointer-events: none;
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  transform: translateX(-50%);
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}
.nav-search-inner input[type=text] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
.nav-search-inner input[type=search] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.nav-button {
  margin: 12px 13px 0;
  padding: 0px 14px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s;
}
.nav-button .box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-button .box h4 {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  color: #868484;
}
.nav-button .box h4 span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #48A41A;
}
.nav-button:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}
.nav-button:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #70798b;
  font-size: 14px;
}

.nav-dropdown {
  min-width: 200px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap;
}
.nav-dropdown .nav-dropdown {
  left: 100%;
}
.nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}
.nav-dropdown > li > a {
  width: 100%;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2784313725);
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  float: left;
  background: #083B66;
  transition: color 0.3s, background 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-dropdown > li > a {
    padding: 10px 20px !important;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .nav-dropdown > li > a {
    padding: 10px 20px !important;
  }
}
.nav-dropdown > li:hover > a {
  background: #48A41A;
  color: #fff;
}
.nav-dropdown > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.nav-dropdown > li > .nav-dropdown-left {
  left: auto;
  right: 100%;
}
.nav-dropdown > li.focus > a {
  color: #fff;
  background: #48A41A;
}
.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 10px;
  position: absolute;
}
.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(-45deg);
  border-color: transparent #48A41A #48A41A transparent;
}
.nav-dropdown > .focus > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
  text-align: right;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(135deg);
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}
.nav-dropdown-horizontal > li {
  width: auto;
  clear: none;
  position: static;
}
.nav-dropdown-horizontal > li > a {
  position: relative;
}
.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  transform: rotate(90deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-menu li a {
    padding: 20px 9px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .nav-menu li a {
    padding: 10px 11px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .nav-menu li a {
    padding: 8px 10px;
  }
}/*# sourceMappingURL=central_scientific.css.map */