* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main_color1: rgb(97, 41, 41);
}

body {
  background-color: #e7e7e7;
}

.h3_style {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.h4_style {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Inconsolata", monospace;
}

.warper {
  background-color: #e7e7e7;
}

main {
  background-color: white;
  padding: 0px 70px !important;
}

section {
  padding: 40px 0px 100px 0px;
}

.common_btn {
  text-align: center;
  margin: 30px 0;
}

.common_btn button {
  padding: 3px 40px;
  background-color: transparent;
  letter-spacing: 1px;
  border: 1px solid var(--main_color1);
  font-size: 22px;
  font-weight: 200;
  transition: 0.3s ease-in-out;
}

.common_btn button:hover {
  color: white;
  font-weight: 300;
  background-color: var(--main_color1);
}

/* =================================section_tag================================= */
.feature a {
  text-decoration: none;
  color: var(--main_color1);
}

.product a {
  text-decoration: none;
  color: var(--main_color1);
}

.section_tag {
  text-align: center;
  margin: 40px 0px;
  position: relative;
}

.section_tag h4::before {
  content: "";
  text-align: center;
  position: absolute;
  width: 150px;
  height: 3px;
  background-color: var(--main_color1);
  bottom: -10px;
  left: 50%;
  border-radius: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section_tag h4::after {
  position: absolute;
  width: 60px;
  height: 4px;
  background: white;
  content: "";
  display: block;
  border-radius: 50px;
  bottom: -11px;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
}

/* =================================section_tag================================= */

/* =================================header================================= */
.header {
  position: relative;
}

/* =================================header================================= */

/* =================================category================================= */

.category_card {
  position: relative;
  box-shadow: 0px 2px 10px 0px rgba(177, 176, 176, 0.3);
  margin: 10px 10px;
  padding: 10px 0;
}

.category_card a {
  text-decoration: none;
  color: var(--main_color1);
}

.category_card .category_card__img {
  width: 350px;
  height: 300px;
  margin: auto;
  border-bottom: 1px solid rgb(221, 219, 219);
}

.category_card__img img {
  width: 100%;
  height: 100%;
}

.category_card .category_card__name {
  text-align: center;
  padding-top: 10px;
}

.category_card__overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(97, 41, 41, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.category_card:hover .category_card__overlay {
  visibility: visible;
  opacity: 1;
}

.category_card__overlay h3 {
  background-color: white;
  padding: 4px 20px;
  border-radius: 999px;
}

@media only screen and (max-width: 1400px) {
  main {
    padding: 0px 15px !important;
  }

  .category_card .category_card__img {
    width: 320px;
  }
}

@media only screen and (max-width: 1200px) {
  .category_card .category_card__img {
    width: 267px;
  }

  .h3_style {
    font-size: 18px;
  }
}

@media only screen and (max-width: 900px) {
  .category_card .category_card__img {
    width: 300px;
  }

  .h3_style {
    font-size: 20px;
  }
}

@media only screen and (max-width: 770px) {
  .category_card .category_card__img {
    width: 220px;
  }

  .h3_style {
    font-size: 20px;
  }
}

@media only screen and (max-width: 500px) {
  .category_card .category_card__img {
    width: 300px;
  }

  .h3_style {
    font-size: 20px;
  }
}

/* =================================category================================= */

/* =================================about================================= */
.about {
  position: relative;
    /* height: 70vh;
  min-height: 70vh; */
  background: linear-gradient(to left, rgba(114, 113, 113, 0), rgba(0, 0, 0, 1)),
    url(https://azimji.com/assets/images/Application.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about .about__section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55%;
  height: 100%;
  background-color: rgba(15, 158, 250, 0.4);
  border-bottom-right-radius: 20%;
}

.about__section___content {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 10px;
  overflow: hidden;
}

.about__section___content h1 {
  margin-top: 100px;
  margin-left: 50px;
  color: white;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 2px;
  font-family: "Righteous", "cursive";
}

.about__section___content p {
  color: white;
  margin-left: 20px;
  margin-top: 30px;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Spartan", sans-serif;
}

.about__section___content span {
  margin: 5px;
  font-size: 25px;
}

.about__section___content span i {
  font-style: italic;
  color: rgb(218, 214, 214);
}

@media only screen and (max-width: 1100px) {
  .about .about__section {
    width: 55%;
  }

  .about__section___content p {
    font-size: 20px;
  }

  .about__section___content h1 {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 1000px) {
  .about .about__section {
    width: 65%;
  }

  .about__section___content h1 {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 770px) {
  .about .about__section {
    width: 70%;
  }

  .about__section___content p {
    font-size: 18px;
  }

  .about__section___content p {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 500px) {
  .about .about__section {
    width: 100%;
  }

  .about {
    padding: 20px;
  }
}

@media only screen and (max-width: 500px) {
  .about__section___content h1 {
    margin-top: 10px;
    font-size: 30px;
  }

  .about__section___content p {
    margin: 0;
    font-size: 14px;
  }
}

/* =================================about================================= */

/* =================================feature================================= */
.feature {
  position: relative;
}

.feature_card {
  padding: 10px;
  margin: 10px 0px;
  background-color: transparent;
  transition: 0.3s ease-in-out;
  /* box-shadow: 0px 2px 10px 0px rgba(177, 176, 176, 0.3); */
}

.feature_img__box {
  width: 320px;
  height: 300px;
  margin: auto;
}

.feature_img__box img {
  width: 100%;
  height: 100%;
}

.feature_product_name {
  width: 320px;
  height: auto;
  margin: 5px auto;
  margin-top: 10px;
}

.feature_product_name p {
  padding: 0;
  margin: 0;
  background-color: rgba(187, 184, 184, 0.4);
  display: inline-block;
  padding: 2px 20px;
  border-radius: 999px;
  font-family: "Spartan", sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  text-transform: uppercase;
}

.feature_card:hover .feature_product_name p {
  text-decoration: underline;
}

.feature_card:hover {
  background-color: rgba(201, 201, 201, 0.1);
}

.feature_product_name h4 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  text-transform: capitalize;
}

@media only screen and (max-width: 1200px) {
  .feature_img__box {
    width: 270px;
  }

  .feature_product_name {
    width: 270px;
  }
}

@media only screen and (max-width: 900px) {
  .feature_img__box {
    width: 310px;
  }

  .feature_product_name {
    width: 310px;
  }
}

@media only screen and (max-width: 770px) {
  .feature_img__box {
    width: 220px;
  }

  .feature_product_name {
    width: 220px;
  }
}

@media only screen and (max-width: 500px) {
  .feature_img__box {
    width: 375px;
  }

  .feature_product_name {
    width: 375px;
  }
}

@media only screen and (max-width: 500px) {
  .feature_img__box {
    width: 100%;
  }

  .feature_product_name {
    width: 100%;
  }
}

/* =================================feature================================= */

/* =================================product================================= */
.product {
  position: relative;
}

.product_card {
  padding: 10px 0;
  margin: 10px 5px;
  background-color: transparent;
  box-shadow: 0px 2px 10px 0px rgba(177, 176, 176, 0.3);
  transition: 0.3s ease-in-out;
  cursor: grab;
}

.product_card:hover {
  background-color: var(--main_color1);
  color: white;
}

.product_img__box {
  width: 220px;
  height: 250px;
  margin: auto;
}

.product_img__box img {
  width: 100%;
  height: 100%;
}

.product_name {
  padding-top: 10px;
  text-align: center;
}

.product_name h4 {
  font-size: 15px;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

@media only screen and (max-width: 1200px) {
  .product_img__box {
    width: 196px;
  }
}

@media only screen and (max-width: 1000px) {
  .product_img__box {
    width: 210px;
  }
}

@media only screen and (max-width: 750px) {
  .product_img__box {
    width: 160px;
  }

  .slick-prev {
    left: 6px !important;
  }

  .slick-next {
    right: 6px !important;
  }
}

@media only screen and (max-width: 560px) {
  .product_img__box {
    width: 240px;
  }
}

@media only screen and (max-width: 400px) {
  .product_img__box {
    padding: 0px 10px;
    width: 100%;
  }
}

.slick-arrow {
  width: 30px !important;
  height: 30px !important;
  line-height: 40px !important;
  display: flex !important;
  align-items: center;
  padding: 5.6px 2px !important;
  justify-content: center;
  background-color: var(--main_color1) !important;
  box-shadow: 0px 0px 12px 3px rgba(192, 192, 192, 0.8);
  z-index: 300 !important;
}

.slick-next,
.slick-prev {
  box-shadow: 0px 0px 11px 4px rgba(199, 197, 197, 0.849);
}

.slick-next:before,
.slick-prev:before {
  font-size: 20px !important;
}

/* =================================product================================= */
.navbar {
  padding: 0;
  /* background-color: var(--main_color1) !important; */
  background-color: white !important;
}

.main_nav {
  position: relative;
  background-color: #e7e7e7;
}

.main_nav__search {
  border-radius: 999px;
  border: 1px solid rgb(223, 223, 223);
  background-color: white;
}

.main_nav__search input {
  border-radius: 999px;
  border: none;
  outline: none;
  box-shadow: none !important;
  width: 100%;
  background-color: transparent;
  padding-right: 15px !important;
}

.main_nav__search input::placeholder {
  font-style: italic;
  color: rgb(182, 178, 178);
  letter-spacing: 1px;
  font-weight: 200;
}

.main_nav__search button {
  border-radius: 999px;
  border: none;
  outline: none;
  box-shadow: none !important;
  background-color: transparent;
}

.main_nav__search button:focus {
  background-color: transparent !important;
}

.navbar-nav {
  margin: auto;
}

.nav-item {
  /* border: 1px solid red; */
  padding: 0px 10px;
  /* border: ; */
}

.nav-link,
.dropdown-item {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
}

.nav-item .nav-link:hover,
.nav-item .dropdown-item:hover {
  background-color: var(--main_color1);
  color: white !important;
}

.logo_img {
    width: 255px;
    height: 103px;
    object-fit: contain;
    border-radius: 50px;
}

@media only screen and (max-width: 600px) {.logo_img {
    width: 240px;
    height: 103px;
    object-fit: contain;
    border-radius: 50px;
}}

.nav-link {
  font-size: 16px !important;
}

.navbar-brand {
  margin-left: 50px;
}

.navbar-nav {
  padding-left: 127px;
}

@media only screen and (max-width: 950px) {
  .navbar-nav {
    padding-left: 0px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: rgb(184, 178, 178) 0px -1px 15px 2px;
  z-index: 500;
}

.js-scroll {
  transition: 0.3s ease-out;
}

/* ============================BANNER============================ */

.home_slider .carousel-item {
  width: 100%;
  height: auto;
}

.home_slider .carousel-item img {
  width: 100%;
  height: auto;
}

.home_slider {
  position: relative;
}

.home_slider .carousel-item img {
  border-radius: 5px;
}

.home_slider .control_btn {
  opacity: 0.7 !important;
  transition: 0.3s ease-in-out;
}

.home_slider .control_btn:hover {
  opacity: 1 !important;
}

.home_slider .carousel-control-prev {
  position: absolute !important;
  /* left: -10px !important; */
}

.home_slider .carousel-control-next {
  position: absolute !important;
  /* right: -50px !important; */
}

.home_slider .control_btn .control_icon:hover {
  background-color: white !important;
  color: black;
}

.home_slider .control_btn .control_icon {
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 50px; */
  background-color: var(--main_color1) !important;
  color: white;
  transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 0px 12px 3px black;
}

@media only screen and (max-width: 990px) {
  .home_slider .carousel-control-prev {
    left: -10px !important;
  }

  .home_slider .carousel-control-next {
    right: -10px !important;
  }
}

@media only screen and (max-width: 400px) {
  .home_slider .carousel-item {
    height: 17vh;
  }

  .navbar-brand {
    margin-left: 0px;
  }

  .home_slider .carousel-control-prev {
    left: 10px !important;
  }

  .home_slider .carousel-control-next {
    right: 10px !important;
  }
}

/* ============================BANNER============================ */

/* ============================TOP_HEAD============================ */
.top_head {
  position: relative;
  padding: 7px 70px;
  background-color: var(--main_color1);
  color: white;
}

.top_head__left {
  display: flex;
  align-items: center;
}

.top_head__right a {
  /*color: var(--main_color1);*/
  color: white;
}

.top_head__right a:hover {
  color: white;
}

.top_head__left p {
  margin: 0;
  color: white;
  font-size: 13px;
  font-weight: 500;
  margin-left: 2px;
}

.top_head__left p:hover {
  margin-left: 5px;
  transition: 0.3s ease-in-out;
}

.top_head__left p a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.top_head__right {
  display: flex;
  justify-content: flex-end;
}

.top_head .fa_icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  text-align: center;
  margin-right: 3px;
  padding: 3px;
  color: white;
  /* color: var(--main_color1); */
  box-shadow: 0px 0px 9px 0px white;
  /* box-shadow: 0px 0px 9px 0px var(--main_color1); */
  margin: 0px 5px;
}

.top_head .fa_icon:hover {
  /* background-color: white; */
  background-color: var(--main_color1);
  transition: all linear 0.3s;
  /* color: black; */
  color: white;
}

/* ============================TOP_HEAD============================ */

/* ============================PRIZE_SLIDER============================ */
.prize_slider .section_tag {
  margin-top: 30px;
}

.prize_slider {
  background: transparent;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px !important;
  height: 300px !important;
  background-color: black;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.img_card {
  width: 370px;
  height: 300px;
  margin: 10px auto;
  box-shadow: 0px 0px 10px 2px rgba(197, 195, 195, 0.925);
  transition: 0.3s ease-in-out;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.img_card img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}

.img_card:hover {
  box-shadow: none;
  border-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.img_card:hover img {
  transform: scale(1.1);
  border-radius: 20px;
}

@media only screen and (max-width: 1400px) {
  .img_card {
    width: 340px;
  }
}

@media only screen and (max-width: 1150px) {
  .img_card {
    width: 300px;
  }
}

@media only screen and (max-width: 990px) {
  .img_card {
    width: 340px;
  }
}

@media only screen and (max-width: 750px) {
  .img_card {
    width: 250px;
  }
}

@media only screen and (max-width: 600px) {
  .img_card {
    width: 330px;
  }
}

/* ============================FOOTER============================ */
footer {
  background-color: var(--main_color1);
  padding-top: 50px;
  padding-bottom: 10px;
}

.footer_icon:hover {
  background-color: white;
  transition: all linear 0.3s;
  color: black;
}

.info_box {
  display: flex;
}

.info_box p {
  /* border: 1px solid white; */
  margin-left: 5px;
  padding: 10px;
  padding-top: 0;
  /* color: white; */
  color: white;
}

.info_box a {
  /* color: white; */
  color: white;
  text-decoration: none;
}

.info_box a:hover {
  color: black;
  color: white;
  border-bottom: none;
}

.footer__tag {
  color: white;
  margin-bottom: 20px;
  font-size: 24px;
}

.line {
  position: relative;
}

.line::before {
  position: absolute;
  width: 20%;
  text-align: center;
  height: 2px;
  left: 0px;
  bottom: 0px;
  content: "";
  background: white;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.quick_link__box {
  display: flex;
  margin: 5px;
}

.quick_link__box p {
  margin: 0;
}

.quick_link__box a {
  color: white;
  text-decoration: none;
}

.quick_link__box a:hover {
  margin-left: 5px;
  transition: all linear 0.2s;
  color: white;
  color: gray;
}

.social_logo__box {
  display: flex;
  margin-bottom: 40px;
}

.footer_icon {
  height: 40px;
  border: 1px solid white;
  margin-left: 2px;
  width: 40px;
  display: flex;
  text-align: center;
  align-items: center;
  padding: 11px;
  border-radius: 50%;
  color: white;
}

.footer_icon a {
  color: white;
}

.footer_icon a:hover {
  color: black;
}

.footer_icon:hover {
  background-color: white;
  transition: all linear 0.3s;
  color: black;
}

.arrow {
  font-size: 10px;
  display: flex;
  align-items: center;
  padding: 5px;
  color: white;
}

.arrow:hover {
  color: var(--color1);
}

.footer_note {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid white;
  padding-top: 20px;
  margin-top: 10px;
  color: white;
}

.footer_note a {
  color: white;
}

.footer_note a:hover {
  color: white;
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer_note {
    flex-direction: column;
  }

  .footer_note p {
    font-size: 12px;
  }
}

/* ============================FOOTER============================ */

.video_card {
  margin: 10px 5px;
  /* border: 1px solid gray; */
}

.video_card iframe {
  width: 100%;
}

.video_name {
  text-align: center;
  /* background-color: white; */
  padding: 2px;
  transition: 0.3s ease-in-out;
}

.video_card:hover {
  background-color: var(--main_color1);
  color: white;
}

/* ============================Testi============================ */

.demo {
  background: linear-gradient(112deg, #ffffff 50%, rgba(97, 41, 41, 0.2) 50%);
  max-width: 900px;
  margin: auto;
}

.demo .carousel-caption {
  position: initial;
  z-index: 10;
  padding: 5rem 8rem;
  color: rgba(78, 77, 77, 0.856);
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: bold;
  line-height: 2rem;
}

@media (max-width: 767px) {
  .demo .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 3rem 2rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 0.7rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1.5rem;
  }
}

.demo .carousel-caption img {
  width: 4rem;
  border-radius: 5rem;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .demo .carousel-caption img {
    width: 4rem;
    border-radius: 4rem;
    margin-top: 1rem;
  }
}

.demo #image-caption {
  font-style: normal;
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .demo #image-caption {
    font-style: normal;
    font-size: 0.6rem;
    margin-top: 0.5rem;
  }
}

.demo i {
  background-color: rgb(97, 41, 41);
  padding: 1.4rem;
}

@media (max-width: 767px) {
  .demo i {
    padding: 0.8rem;
  }
}

.demo .carousel-control-prev {
  justify-content: flex-start;
}

.demo .carousel-control-next {
  justify-content: flex-end;
}

.demo .carousel-control-prev,
.demo .carousel-control-next {
  transition: none;
  opacity: unset;
}

/* ============================Testi============================ */
.wp_icon {
  position: fixed;
  bottom: 40px;
  right: 20px;
}

.wp_icon img {
  border-radius: 999px;
  width: 40px;
}

.contact_btn {
  position: fixed;
  top: 300px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border: none;
  background-color: var(--main_color1);
  z-index: 50000;
}

.contact_btn p {
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  color: white;
  margin: 0;
}

.contact_form_box {
  padding: 20px 50px;
}

.input_box {
  margin: 20px;
}

.contact_form .col-md-6 {
  margin: 0;
  padding: 0;
}

.input_box input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--main_color1);
  border-radius: 10px;
  padding: 10px 30px 10px 25px;
}

.input_box textarea {
  width: 100%;
  border: 1px solid var(--main_color1);
  border-radius: 10px;
  padding: 10px 30px 10px 25px;
  resize: none;
}

.input_box input,
textarea:focus {
  outline: none;
}

.input_box input::placeholder,
textarea::placeholder {
  font-style: italic;
}

.input_box_btn {
  margin: 1px 20px;
  width: 30%;
  height: 40px;
  border: 1px solid gray;
  background: var(--main_color1);
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
}

.input_box_btn:hover {
  background-color: white;
  color: var(--main_color1);
}

@media only screen and (max-width: 990px) {
  .contact_form_box {
    padding: 30px;
  }

  .footer__tag {
    font-size: 18px;
  }

  .contact_form {
    padding-top: 20px;
  }

  .container-fluid .col-md-3 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 700px) {
  .map_container {
    padding: 10px 10px 0px 10px;
  }

  .top_head__left {
    justify-content: center;
  }

  .top_head__right {
    display: none;
  }

  footer {
    padding: 50px 25px;
  }

  .info-wrap {
    height: 400px;
  }
}

@media only screen and (max-width: 400px) {
  .contact_form_box {
    padding: 10px 0px;
  }

  .top_contact__cards .top_contact__text h3 {
    font-size: 19px;
  }

  .top_contact__cards .top_contact__text p {
    font-size: 15px;
  }
}

/* ============================CONTACT============================ */
.modal-body {
  padding: 0px;
}

.modal-content {
  border-radius: 0px;
}

.row>* {
  padding: 0 !important;
}

.modal-dialog {
  position: relative;
  max-width: 1000px !important;
}

.contact_img_box .img {
  width: 100%;
  height: 500px;
}

.contact_img_box img {
  width: 100%;
  height: 100%;
}

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.p-5 {
  padding: 3rem !important;
}

.w-100 {
  width: 100% !important;
}

.modal {
  background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.5)),
    url(https://images.unsplash.com/photo-1580086319619-3ed498161c77?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MTR8fGd5bXxlbnwwfHwwfHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60);
  background-size: cover;
  background-position: center;
}

/* ============================product============================ */

.product_info_box {
  padding: 10px;
}

.product_info_box .product_name {
  text-align: start;
  margin-bottom: 30px;
}

.product_info_box .product_name h1 {
  font-family: "Ubuntu", sans-serif;
  font-size: 35px;
  letter-spacing: 1px;
}

.model_no {
  display: flex;
  align-items: center;
}

.dot {
  width: 5px;
  height: 5px;
  background-color: #612929;
  border-radius: 20px;
  margin: 0px 5px;
}

.model_no h5 {
  padding: 10px 20px;
  background-color: rgba(209, 205, 205, 0.5);
  border-radius: 20px;
  letter-spacing: 1px;
  font-size: 15px;
  font-style: italic;
  text-transform: uppercase;
}

.product_short_desc {
  margin-top: 20px;
}

.product_short_desc p {
  font-size: 18px;
}

.sml_img_box::-webkit-scrollbar {
  width: 2px;
}

.sml_img_box::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(252, 252, 252, 0.5);
}

.sml_img_box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgb(197, 190, 190);
}

.img_box {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.big_img_box {
  padding: 0px 5px;
  height: 400px;
  background-color: white;
}

.big_img_box img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 600px) {.big_img_box img {
     width: 100%;
    height: auto;
}}


.sml_img_box {
  width: 110px;
  height: 400px;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sml_img_box .sml_img {
  width: 85px;
  height: 80px;
  margin: 5px 0px;
}

.sml_img_box .sml_img img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .product_info_box .product_name {
    margin-bottom: 15px;
    padding: 0px;
  }

  .product_info_box .product_name h1 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 400px) {
  .product_info_box .product_name {
    margin: 20px 0px;
  }

  .product_info_box .product_name h1 {
    font-size: 25px;
  }
}

.long_desc {
  margin-top: 50px;
}

.long_desc .tag {
  margin-bottom: 20px;
  display: inline-block;
}

.long_desc .tag h3 {
  color: white;
  padding: 4px 15px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: var(--main_color1);
}

/* ============================product============================ */
.suggestion {
  margin-top: 50px;
}

.sug_card {
  display: flex;
  margin: 10px;
  background-color: rgba(231, 225, 225, 0.5);
  padding: 5px;
  transition: 0.3s ease-in-out;
}

.sug_card:hover {
  box-shadow: 0px 2px 10px 0px rgba(177, 176, 176, 0.3);
  background: transparent;
  color: black;
}

.suggestion a {
  text-decoration: none;
  color: var(--main_color1);
}

.sug_card .name {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding-left: 5px;
  padding-top: 10px;
}

.sug_card .name p {
  padding: 0px !important;
  margin: 0px !important;
  font-size: 18px;
}

.sug_card .img {
  width: 100px;
  height: 70px;
}

.sug_card .img img {
  width: 100%;
  height: 100%;
}

.video_cards {
  margin: auto !important;
}