ul, li {
  list-style: none;
}

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


@media (min-width: 1199px) {
  .w-xl-35 {
    width: 35%;
  }
  .w-xl-50 {
    width: 50%;
  }
  .w-xl-65 {
    width: 65%;
  }
}

/*===// end of base css === */
/*=== components css start === */
.product-details {
  padding: 20px 0 60px 0;
  position: relative;
}

@media (max-width: 1199px) {
  .product-details {
    padding-top: 16%;
  }
}

@media (min-width: 1400px) {
  .product-details {
    padding-left: 8.333%;
  }
}

.product-details .product-img-box {
  padding-top: 100px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.product-details .product-img-box.active {
  margin-top: -10%;
}

@media (max-width: 767px) {
  .product-details .product-img-box.active {
    margin-top: -10%;
  }
}

.product-details .product-img-box li {
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-top: -10%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .product-details .product-img-box li {
    margin-top: -10%;
  }
}

.product-details .product-img-box li.active {
  padding-top: 16%;
}

@media (max-width: 767px) {
  .product-details .product-img-box li.active {
    padding-top: 10%;
  }
}

.product-details .product-img-box li.active::before {
  background: rgba(255, 255, 255, 0) !important;
}

.product-details .product-img-box li:hover::before {
  background: rgba(255, 255, 255, 0) !important;
}

.product-details .product-img-box li:nth-child(1) {
  z-index: 10;
  margin-top: 0;
}

.product-details .product-img-box li:nth-child(2) {
  z-index: 9;
}

.product-details .product-img-box li:nth-child(3) {
  z-index: 8;
}

.product-details .product-img-box li:nth-child(4) {
  z-index: 7;
}

.product-details .product-img-box li:nth-child(5) {
  z-index: 6;
  margin-top: -15%;
}

.product-details .product-img-box li:nth-child(6) {
  z-index: 5;
  margin-top: -17%;
}

.product-details .product-img-box li:nth-child(7) {
  z-index: 4;
  margin-top: -20%;
}

.product-details .product-img-box li:nth-child(8) {
  z-index: 3;
  margin-top: -22%;
}

.product-details .product-img-box li:nth-child(9) {
  z-index: 2;
  margin-top: -22%;
}

.product-details .product-img-box li:nth-child(10) {
  z-index: 1;
  margin-top: -22%;
}

.product-details .product-img-box li .indicator-full {
  position: absolute;
  bottom: 10%;
  right: 20%;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.product-details .product-img-box li .indicator-full .indicator-main {
  position: relative;
  display: inline-block;
}

@media (min-width: 1200px) {
  .product-details .product-img-box li .indicator-full .indicator-main::before {
    content: "";
    height: 2px;
    width: 0;
    background: #203d78;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}

.product-details .product-img-box li .indicator-full .indicator {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  color: #203d78;
  border: 2px solid #203d78;
  border-radius: 100%;
  display: inline-block;
  background: #fff;
  z-index: 999;
  font-size: 14px;
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.product-details .product-img-box li .indicator-full .waves {
  position: absolute;
  width: 60px;
  height: 60px;
  background: transparent;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border: 2px solid #203d78;
  border-radius: 100%;
  right: -50%;
  bottom: -50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.product-details .product-img-box li .indicator-full .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.product-details .product-img-box li .indicator-full .wave-2 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.product-details .product-img-box li .indicator-full .wave-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.product-details .product-img-box li .indicator-full .wave-4 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.product-details .product-img-box li .indicator-full.active .indicator-main::before {
  width: 300px;
}

.product-details .product-img-box li .indicator-full.active .indicator {
  background: #203d78;
  color: #fff;
  border-color: #fff;
}

.product-details .product-img-box li .indicator-full.active .waves {
  display: none;
}

.product-details .product-img-box li:nth-child(even) .indicator-full {
  right: 10%;
}

.product-details .product-img-box:hover li::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.product-details .product-detail-information {
  padding-top: 100px;
}

@media (max-width: 1199px) {
  .product-details .product-detail-information {
    padding-top: 0px;
  }
}

.product-details .product-detail-information h2 {
  font-size: 40px;
  font-weight: 800;
  color: #203d78;
  line-height: 1;
}

@media (max-width: 1199px) {
  .product-details .product-detail-information h2 {
    position: absolute;
    top: 6%;
    z-index: 6;
  }
}

@media (max-width: 480px) {
  .product-details .product-detail-information h2 {
    font-size: 35px;
    /*top: 5%;*/
    top:-570px;
    text-align: center;
    width: 100%;
    left: 0;
  }
  li.information-item{
    text-align: center;
  }
}

.product-details .product-detail-information p {
  font-size: 15px;
  color: #000;
  line-height: 1.8rem;
  padding: 30px 0;
  font-family: quicksand;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .product-details .product-detail-information p {
    padding-top: 0;
  }
  .product-information {
    padding-left: 0px!important;
  }
}

.product-details .product-detail-information p strong {
  font-weight: 800;
  color: #203d78;
}

/*===// end of components css === */
/*=== pages start === */
/*===// end of pages  === */
/*# sourceMappingURL=style.css.map */