*,
* button:focus {
  outline: 0;
}

.mainColor {
  color: var(--mainColor) !important;
}

.mainBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

.subColor {
  color: var(--mainColor) !important;
}

.subBack {
  background-color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: 'Quicksand', sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-size: cover;
}

main {
  position: relative;
  padding-top: 100px;
}

main::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
}

h1,
h2,
h3 {
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

h4,
h5,
h6 {
  font-weight: 500;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

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

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  outline: 0;
}

.form-control,
.form-select {
  min-height: 50px;
  background-color: #fff;
  border: 0;
  padding: 5px 15px;
  width: 100%;
  border-radius: 5px;
}

.form-control:focus,
.form-select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.brdr,
.form-select.brdr {
  border: 1px solid #9993;
  border-radius: 7px;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.card {
  border: 0;
  padding: 30px;
  border-radius: 10px;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
  color: #757575;
}

small.text {
  font-size: 12px;
}

.bg_gray {
  background-color: #fffef2;
}

.bg_light {
  background-color: #F9FBFF;
}

.section_padding {
  padding: 80px 0;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px #0001;
          box-shadow: inset 0 0 0 2px #0001;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.swiper-pagination-bullet {
  width: 35px;
  height: 2px;
}

.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--mainColor);
  font-size: 25px;
  font-weight: bold;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 5%;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 5%;
  left: auto;
}

.section_head {
  position: relative;
}

.section_head h6 {
  position: relative;
  font-size: 30px;
  color: var(--mainColor);
  font-weight: normal;
  font-family: 'Dancing Script', cursive;
}

.section_head h2 {
  position: relative;
  font-size: 38px;
  text-transform: capitalize;
  font-weight: 600;
}

.section_head p {
  font-size: 14px;
  color: #A89F9F;
}

.section_head img {
  width: 200px;
  margin-top: 10px;
}

.butn {
  border: 1px solid var(--mainColor);
  padding: 12px 40px;
  text-align: center;
  background-color: var(--mainColor);
  font-size: 16px;
  border-radius: 0;
  border-radius: 10px;
  text-transform: capitalize;
}

.butn span {
  color: #fff;
}

.butn:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.butn:hover span {
  color: #fff;
}

.butn.butn_line {
  background: transparent;
}

.butn.butn_line span {
  color: var(--mainColor);
}

.butn.butn_line:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.butn.butn_line:hover span {
  color: #fff;
}

.butn.butn_whline {
  background: transparent;
  border-color: #fff;
}

.butn.butn_whline span {
  color: #fff;
}

.butn.butn_whline:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.butn.butn_whline:hover span {
  color: #fff;
}

.butn.butn_light {
  background: #FFEECC;
  border: 0;
}

.butn.butn_light span {
  color: var(--mainColor);
}

.butn.butn_light:hover {
  background-color: var(--mainColor);
}

.butn.butn_light:hover span {
  color: #fff;
}

.butn.butn_dark {
  background: #000;
  border: 0;
}

.butn.butn_dark span {
  color: #fff;
}

.butn.butn_dark:hover {
  background-color: var(--mainColor);
}

.butn.butn_dark:hover span {
  color: #000;
}

.butn.butn_white {
  background: #fff;
  border: 0;
}

.butn.butn_white span {
  color: var(--mainColor);
}

.butn.butn_white:hover {
  background-color: var(--mainColor);
}

.butn.butn_white:hover span {
  color: #fff;
}

.butn.butn_light {
  background: #F5F6F8;
  border: 0;
}

.butn.butn_light span {
  color: #AAB0CF;
}

.butn.butn_light:hover {
  background-color: #AAB0CF;
}

.butn.butn_light:hover span {
  color: #fff;
}

.butn.butn_primary {
  background-color: var(--mainColor);
  color: #fff;
}

.butn.butn_primary:hover {
  background-color: var(--subColor);
}

.dropdown-menu {
  min-width: 170px;
  padding: 10px 0;
  border-radius: 15px;
  border: 0;
  -webkit-box-shadow: 0 0 20px #0001;
          box-shadow: 0 0 20px #0001;
  top: calc(100% + 10px);
}

.dropdown-menu .dropdown-item {
  padding: 6px 20px;
  font-size: 13px;
}

.form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dropdown-toggle::after {
  position: relative;
  top: 3px;
  opacity: 0.5;
  border: 0;
  content: "\f078";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
}

/* --------------- navbar --------------- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: transparent;
}

.navbar .container-fluid {
  padding: 0 10vw;
}

.navbar .navbar-brand {
  position: relative;
}

.navbar .navbar-brand img {
  width: 110px;
}

.navbar .navbar-brand::after {
  position: absolute;
  content: "";
  left: calc(100% + 30px);
  bottom: 20%;
  width: 100vw;
  height: 1px;
  background-color: var(--mainColor);
  opacity: 0.3;
}

.navbar .navbar-brand::before {
  position: absolute;
  content: "";
  right: calc(100% + 30px);
  bottom: 20%;
  width: 100vw;
  height: 1px;
  background-color: var(--mainColor);
  opacity: 0.3;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--mainColor);
  margin: 0 10px;
  position: relative;
  font-size: 13px;
  text-transform: capitalize;
  padding-bottom: 35px;
  font-weight: 500;
}

.navbar .butn.butn_whline {
  border-color: var(--mainColor);
  margin-bottom: 30px;
  font-size: 14px;
  padding: 10px 30px;
}

.navbar .butn.butn_whline span {
  color: var(--mainColor);
}

.navbar .butn.butn_whline:hover span {
  color: #fff;
}

.navbar.nav-scroll {
  background: #fff !important;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: fixed !important;
  top: -100px !important;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 5px 0;
}

.navbar.nav-scroll .navbar-brand img {
  width: 70px;
}

.navbar.nav-scroll .nav-item .nav-link {
  color: var(--mainColor);
  padding: 0 15px;
}

.navbar.nav-scroll .butn.butn_whline {
  border-color: var(--mainColor);
  margin: 0;
}

.navbar.nav-scroll .butn.butn_whline span {
  color: var(--mainColor);
}

.navbar.nav-scroll .butn.butn_whline:hover span {
  color: #fff;
}

.navbar.nav-scroll .navbar-brand::after, .navbar.nav-scroll .navbar-brand::before {
  display: none;
}

/* --------------- header --------------- */
header {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 800px;
  position: relative;
  overflow: hidden;
}

header video {
  -o-object-fit: cover;
     object-fit: cover;
}

header .video_info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}

header .video_info h1 {
  font-size: calc(3vw + 15px);
  position: relative;
  font-weight: 600;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 5px #000;
  text-transform: capitalize;
}

header .head_mask {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 10;
}

header .content {
  position: relative;
  margin-top: 150px;
  z-index: 10;
}

header .content .info {
  border-radius: 30px;
  text-align: center;
  padding: 5vw;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 5px #000;
}

header .content .info h6 {
  font-family: 'Dancing Script', cursive;
  font-size: calc(1.5vw + 15px);
  margin-bottom: 15px;
}

header .content .info h1 {
  font-size: calc(3vw + 15px);
  margin-bottom: 10px;
  position: relative;
  font-weight: 600;
}

.coming_pg {
  height: 100vh;
  overflow: hidden;
}

.coming_pg h1 {
  font-size: calc(3vw + 35px) !important;
}

.coming_pg .links a {
  color: var(--mainColor);
  margin: 0 15px;
  font-weight: 500;
  padding: .5rem 1.5rem;
  background-color: rgba(246, 241, 225, 0.95);
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  border-radius: 25px;
}

.coming_pg .socialLinks a {
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
  background-color: rgba(246, 241, 225, 0.95);
  border: 1px solid transparent;
  border-radius: 25px;
  padding: 9px 30px;
}

.coming_pg .socialLinks a span {
  color: var(--mainColor) !important;
}

.coming_pg .head_mask {
  display: none;
}

.coming_pg .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.coming_pg .time div {
  width: 90px;
  height: 90px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  background-color: rgba(246, 241, 225, 0.95);
  -webkit-box-shadow: 3px 6px 10px 0 #0001;
          box-shadow: 3px 6px 10px 0 #0001;
}

.coming_pg .time div p:first-child {
  color: var(--mainColor);
  font-size: 2.1em;
  font-weight: bold;
  text-align: center;
}

.coming_pg .time div p:last-child {
  font-size: .7em;
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
}

.coming_pg .time > span {
  margin: 15px;
  font-size: 1.4em;
}

.coming_pg .dev {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.coming_pg .snow {
  position: absolute;
  top: -10px;
  -webkit-animation: fall 2s linear forwards;
          animation: fall 2s linear forwards;
}

@-webkit-keyframes fall {
  to {
    -webkit-transform: translateY(85vh);
            transform: translateY(85vh);
  }
}

@keyframes fall {
  to {
    -webkit-transform: translateY(85vh);
            transform: translateY(85vh);
  }
}

/* ------------ categories style ------------- */
.categories2 .cat_card {
  text-align: center;
  position: relative;
}

.categories2 .cat_card .img {
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.categories2 .cat_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.categories2 .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vh;
}

.categories2 .swiper-wrapper .swiper-slide {
  width: 25%;
  margin: 15px;
}

.categories .cat_card {
  margin-bottom: 24px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.categories .cat_card:hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.categories .cat_card .img {
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.categories .cat_card .img::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: block;
}

.categories .cat_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.categories .cat_card .img .info {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

.categories .cat_card .img .info h5 {
  font-size: calc(1vw + 25px);
}

/* ------------ about style ------------- */
.about .about_card {
  position: relative;
  padding: 100px 5vw;
  background-color: #faf4e2;
  text-align: center;
}

.about .about_card .cont {
  position: relative;
  z-index: 10;
}

.about .about_card .cont h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 35px;
  color: var(--mainColor);
  margin-bottom: 30px;
}

.about .about_card .cont h2 {
  text-transform: capitalize;
  margin-bottom: 30px;
  font-size: 40px;
}

.about .about_card .cont .text {
  font-size: 20px;
}

.about .about_card .cont .butn {
  margin-top: 30px;
}

.about .about_card .logo_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  -webkit-filter: invert(100%) sepia(96%) saturate(17%) hue-rotate(276deg) brightness(1000%) contrast(107%);
          filter: invert(100%) sepia(96%) saturate(17%) hue-rotate(276deg) brightness(1000%) contrast(107%);
  opacity: 0.5;
}

/* ------------ products style ------------- */
.products .section_head {
  margin-bottom: -50px;
}

.products .product_card {
  position: relative;
  display: block;
  overflow: hidden;
}

.products .product_card .img {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.products .product_card .img::after {
  content: '';
  background: url(../images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
}

.products .product_card .img img {
  width: 110%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.products .product_card .img .cont {
  position: absolute;
  top: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  background-color: #ffffffd3;
  border: 8px solid var(--mainColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.products .product_card .img .cont span {
  position: relative;
  font-size: 40px;
  font-weight: 400;
  font-family: 'Dancing Script', cursive;
  color: var(--mainColor);
}

.products .product_card .img .cont span::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--mainColor);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.products .product_card .info {
  text-align: center;
  padding: 30px 15px;
  text-transform: capitalize;
}

.products .product_card.line_card {
  padding-top: 140px;
}

.products .product_card.totop_card {
  margin-top: -140px;
}

.products .product_card:hover .img img {
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.products .product_card:hover .img .cont {
  left: 0;
  opacity: 1;
}

.products .product_card:hover .img .cont span::after {
  width: 100%;
  left: 0;
  opacity: 1;
}

/* ------------ services style ------------- */
.services2 {
  background-color: #fcf9ef;
}

.services2 .row .col-lg-2:nth-of-type(odd) {
  padding-top: 50px;
}

.services2 .ser_card {
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 15px;
  margin-top: 20px;
}

.services2 .ser_card .icon {
  position: relative;
  margin-bottom: 20px;
}

.services2 .ser_card .icon img {
  position: relative;
  z-index: 5;
  width: 40px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.services2 .ser_card .icon .info h5 {
  color: var(--mainColor);
}

.services2 .ser_card:hover {
  background-color: #fff;
}

.services_subscribe {
  background-color: #fcf9ef;
}

.services_subscribe .services {
  padding: 80px 5vw;
}

.services_subscribe .services .service_card {
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 15px;
  margin-top: 20px;
}

.services_subscribe .services .service_card .icon {
  position: relative;
  margin-bottom: 20px;
}

.services_subscribe .services .service_card .icon img {
  position: relative;
  z-index: 5;
  width: 40px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.services_subscribe .services .service_card .info h5 {
  color: var(--mainColor);
}

.services_subscribe .services .service_card:hover {
  background-color: #fff;
}

.services_subscribe .subscribe {
  height: 100%;
  background-image: url(../images/prod/4.jpg);
  position: relative;
  padding: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services_subscribe .subscribe::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff5;
}

.services_subscribe .subscribe .subscribe_card {
  position: relative;
  z-index: 10;
  padding: 30px;
  background-color: #ffffffbd;
  text-align: center;
}

.services_subscribe .subscribe .subscribe_card .text {
  font-size: 18px;
}

.services_subscribe .subscribe .subscribe_card .form-group {
  margin-top: 20px;
}

.services_subscribe .subscribe .subscribe_card .form-group .form-control {
  background-color: #fff9;
  border-radius: 0;
  min-height: 50px;
}

/* ------------ instagram style ------------- */
.instagram .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.instagram .content .img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20%;
  height: 270px;
  background-color: var(--subColor);
  overflow: hidden;
}

.instagram .content .img img {
  width: calc(100% + 20px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  max-width: unset;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.instagram .content .img .cont {
  text-align: center;
  text-transform: capitalize;
}

.instagram .content .img .cont h3 {
  text-transform: capitalize;
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  margin-bottom: 5px;
  color: var(--mainColor);
}

.instagram .content .img .insta_icon {
  position: absolute;
  left: 50%;
  top: 60%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  z-index: 10;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../images/insta-hover-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 20px;
  color: var(--mainColor);
  opacity: 0;
}

.instagram .content .img:hover .insta_icon {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0.7;
}

/* ------------ subscribe style ------------- */
/* ------------ subscribe style ------------- */
/* ------------ footer style ------------- */
footer {
  padding-top: 50px;
}

footer .logo {
  margin-bottom: 20px;
}

footer .logo img {
  width: 100px;
}

footer .text {
  font-size: 16px;
}

footer .links {
  margin-top: 50px;
}

footer .links a {
  color: var(--mainColor);
  margin: 0 20px;
  font-weight: 500;
}

footer .foot {
  margin-top: 50px;
  border-top: 1px solid #9993;
  padding: 30px 0;
}

footer .social_links {
  margin-bottom: 15px;
}

footer .social_links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px #0001;
          box-shadow: 0 0 5px #0001;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px;
}

footer .social_links a:hover {
  background-color: var(--mainColor);
  color: #fff;
}

/* -------------------- responsive style ------------------------- */
@media screen and (max-width: 991px) {
  header {
    overflow: hidden;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding-top: 0 !important;
  }
  .navbar {
    position: relative;
    background-color: #fff;
  }
  .navbar .navbar-brand img {
    width: 90px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    color: #000;
    margin: 8px 0;
    padding: 0;
  }
  .navbar .butn.butn_whline {
    border-color: var(--mainColor);
    margin-bottom: 0;
    margin-top: 20px;
  }
  .navbar .butn.butn_whline span {
    color: var(--mainColor);
  }
  .navbar-collapse {
    margin-top: 20px;
    padding: 20px 10px;
    border-radius: 10px;
  }
  .navbar .navbar-nav .nav-item.nav_lang .nav-link {
    border-right: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  .navbar-dark .navbar-toggler {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
  }
  .butn {
    padding: 7px 15px;
    font-size: 12px;
  }
  .section_head h2 {
    font-size: 20px;
  }
  .products .section_head {
    margin-bottom: 40px;
  }
  .products .product_card.line_card {
    padding-top: 0;
  }
  .products .product_card.totop_card {
    margin-top: 0;
  }
  .instagram .content .img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* ======== */
/* ======= */
@media screen and (max-width: 480px) {
  .coming_pg .time div {
    width: 75px;
    height: 75px;
  }
  .coming_pg .time div p:first-child {
    font-size: 1.8em;
  }
  .coming_pg .links a {
    margin: 0 5px;
    padding: 0.5rem 0.5rem;
    font-size: 13px;
  }
}
/*# sourceMappingURL=style.css.map */