body {
  padding: 0px;
  font-family: "Titillium Web", sans-serif;
}
.items-catalog {
  background: #f0f1f3;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1500px;
  }
}

#contac {
  background: #3688a5;
  padding: 50px 0 30px 0;

  /*margin-top:40px; */
  color: white;
}

#boton {
  border: 1px solid;
  border-color: #0051a0;
  color: #fff;
  background-color: #0051a0;
}
.imge-fluid {
  width: 100%;
  height: auto;

  border-radius: 20px 20px 20px 20px;
}
#encabezado {
  color: white; /*color de la fuente*/
  text-align: center; /*alineación del texto*/
  padding: 10px; /*tamaño del fondo*/
  border-radius: 0px 30px 30px 0px; /*ángulos de las 4 esquinas del borde/fondo*/
  background-color: #282c6b;
}
.icon-social {
  animation: jittery 3s infinite;
}
.titulo > h1 {
  color: #004f9f;
  font-weight: 700;
}
@keyframes jittery {
  5%,
  50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.15);
  }
  20% {
    transform: scale(1.15) rotate(-5deg);
  }
  25% {
    transform: scale(1.15) rotate(5deg);
  }
  30% {
    transform: scale(1.15) rotate(-3deg);
  }
  35% {
    transform: scale(1.15) rotate(2deg);
  }
  40% {
    transform: scale(1.15) rotate(0);
  }
}
/*precarga*/
.loader-page {
  position: fixed;
  z-index: 25000;
  background: #fff;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.group {
  position: relative;
  display: inline-block;
  line-height: 16px;
}

.bigSqr {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-animation: bigSqrShrink 1s linear infinite;
  animation: bigSqrShrink 1s linear infinite;
}

.square {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
}

.first {
  left: 0px;
  top: 20px;
}

.second {
  left: 20px;
  top: 20px;
  -webkit-animation: drop2 1s linear infinite;
  animation: drop2 1s linear infinite;
}

.third {
  left: 0px;
  top: 0px;
  -webkit-animation: drop3 1s linear infinite;
  animation: drop3 1s linear infinite;
}

.fourth {
  left: 20px;
  top: 0px;
  -webkit-animation: drop4 1s linear infinite;
  animation: drop4 1s linear infinite;
}

.text {
  line-height: 16px;
  font-family: "Open Sans", "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #393437;
  display: block;
  margin: 10px auto;
  padding: 3px;
}
.modal-header {
  background-color: #62a4bb;
  color: white !important;
  font-weight: 600;
}
.social-bar {
  position: fixed;
  right: 0;
  top: 55%;
  font-size: 1.5rem !important;
  display: block !important;
  flex-direction: column;
  align-items: flex-end;
  z-index: 100;
}
.icon {
  color: white !important;
  text-decoration: none !important;
  padding: 0.7rem !important;
  display: flex;
  transition: all 0.5s;
}
.icon:first-child {
  border-radius: 1rem 0 0 0;
}
.icon:last-child {
  border-radius: 0 0 0 1rem;
}
.icon-facebook {
  background-color: #2e406e;
}
.icon-twitter {
  background-color: #339dc5;
}
.icon-youtube {
  background-color: #e83028;
}
.icon-instagram {
  background-color: #3f60a5;
}

@-webkit-keyframes bigSqrShrink {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes bigSqrShrink {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes drop2 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  25% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes drop2 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  25% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes drop3 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes drop3 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes drop4 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  75% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes drop4 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  75% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.headline {
  position: relative;
  height: 450px;
  color: #fff;
  text-align: center;
  background: url("../pages/1.png") no-repeat left top;
  background-size: cover;
}
@media (max-width: 700px) {
  .headline {
    height: 180px;
  }
}
.product-item {
  transition: all 0.4s;
}
h1,
.item_add,
.item_price {
  color: #0358a8;
}
hr,
.separador,
.table-sm > thead,
.encabezado,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.modal-header,
.item_add:hover,
.carrito-total {
  background: #0358a8;
  color: white;
}
.btn-primary {
  color: #0358a8;
  border-color: #0358a8;
}
.owl-carousel {
  z-index: 0 !important;
}
.carrito {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 1;
}
.carrito-total {
  color: white;
  cursor: pointer;
  padding: 5px 10px;
  margin-bottom: 0 !important;
}
.bolsa {
  background-color: white;
  font-size: 14px;
  display: none;
  padding: 5px;
  z-index: 3;
}
.simpleCart_items {
  width: 100%;
}
.simpleCart_shelfItem {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.item-image img {
  height: auto;
  width: 50px;
  animation: flipInY 1.5s;
}
.item_image,
.item_Quantity,
.item_price {
  margin-bottom: 5px;
  text-align: -webkit-center !important;
}
.opciones {
  text-align: center;
}
.item_price {
  font-size: 1em;
  background-color: white;
}
.item_add {
  border-radius: 5.5px;
  transition: 0.5s;
  padding: 2px 15px;
  margin-top: 5px;
  background-color: white;
}
.item_add:hover {
  text-decoration: none;
  color: #fff;
}
.modal-header {
  color: white !important;
  font-weight: bold;
}
.anima-carrito {
  /* -webkit-animation-duration: 1.5s !important; */
  margin-top: 5px;
  margin-bottom: 10px;
}
.table-responsive {
  font-size: 0.9rem !important;
}
td,
th {
  text-align: -webkit-center !important;
  padding: 2px;
}
table {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary {
  background-color: white;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.BodyM {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}
.list-category ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: var(--spacing-2xl);
  font-size: 14px;
}
.list-category ul li label {
  padding: 0.3rem 1em;
  cursor: pointer;
  display: flex !important;
  margin: 0;
}

.containerM {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*width: 900px;*/
  height: 600px;
  background: #fff;
  /*margin: 20px;*/
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.containerM .imgBx {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  /*background: #212121;*/
  transition: 0.3s linear;
  border-left: 0.5rem solid #4a889f;
}

/*.containerM .imgBx:before {
	content: 'Nike';
	position: absolute;
	top: 0px;
	left: 24px;
	color: #000;
	opacity: 0.2;
	font-size: 8em;
	font-weight: 800;
	}*/

.containerM .imgBx img {
  /*position: relative;
	width: 700px;
	transform: rotate(-30deg);
	left: -50px;*/
  transition: 0.9s linear;
}

.containerM .details {
  overflow-y: auto;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
  border-right: 0.5rem solid #4a889f;
}

.containerM .details h2 {
  margin: 0;
  padding: 0;
  font-size: 2em;
  /*line-height: 1em;*/
  color: #444;
}
.subtitle {
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: calc(8em / 12);
  font-weight: bold;
}
.spantittle {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
}
.spandescrip {
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
}

.containerM .details p {
  max-width: 85%;
  /*margin-left: 15%;*/
  color: #333;
  font-size: 15px;
  /*margin-bottom: 36px;*/
}

.containerM .details h3 {
  margin: 0;
  padding: 0;
  font-size: 2em;
  color: #393437;
  /*float: left;*/
}
.containerM .details button {
  /*background: #000;
	color: #fff;
	border: none;*/
  outline: none;
  padding: 10px 15px;
  margin-top: 5px;
  font-size: 45px;
  /*letter-spacing: 1px;*/
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50%;
  float: right;
  opacity: 100%;
  position: absolute;
  right: 1rem;
  top: 0rem;
}

.product-colors span {
  width: 26px;
  height: 26px;
  top: 7px;
  margin-right: 12px;
  left: 10px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.black {
  background: #000;
}

.red {
  background: #d5212e;
}

.orange {
  background: #f18557;
}

.product-colors .active:after {
  content: "";
  width: 36px;
  height: 36px;
  border: 2px solid #000;
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
  left: -5px;
  top: -5px;
}

.button-version {
  border-radius: 10px;
  width: 7.5rem;
  height: 6.5rem;
  vertical-align: middle;
  display: inline-flex;
  padding: 0.5rem;
  background-color: #f0f1f3;
}
.version-active {
  background-color: #fff;
  border-bottom: solid #5f5f5f;
  box-shadow: 3px 3px 0 0 rgb(0 0 0 / 14%);
}
.button-version:hover {
  background-color: #fff;
  border-bottom: solid #5f5f5f;
}
.ir-arriba {
  display: none;
  background-repeat: no-repeat;
  font-size: 20px;
  color: black;
  cursor: pointer;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}
.ir-arriba .fa-stack .fa-circle {
  color: #4a889f;
}
/*-----------Accordion---------------------*/
/*a:hover, a:focus{
	text-decoration: none !important;
	outline: none !important;

	}*/
.panel-group .panel {
  background-color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 10px;
  margin-bottom: 11px;
}
.panel .panel-heading {
  padding: 0;
  border-radius: 10px;
  border: none;
}
.panel-heading a {
  color: #fff !important;
  display: block;
  border: none;
  padding: 20px 35px 20px;
  font-size: 20px;
  background-color: #4a889f;
  font-weight: 600;
  position: relative;
  color: #fff;
  box-shadow: none;
  transition: all 0.1s ease 0;
}
.panel-heading a:after,
.panel-heading a.collapsed:after {
  content: "\f068";
  font-family: fontawesome;
  text-align: center;
  position: absolute;
  left: -20px;
  top: 10px;
  color: #fff;
  background-color: #426c9e;
  border: 5px solid #fff;
  font-size: 15px;
  width: 40px;
  height: 40px;
  line-height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}
.panel-heading:hover a:after,
.panel-heading:hover a.collapsed:after {
  transform: rotate(360deg);
}
.panel-heading a.collapsed:after {
  content: "\f067";
}
#accordion .panel-body {
  background-color: #fff;
  color: #8c8c8c;
  line-height: 25px;
  padding: 10px 25px 20px 35px;
  border-top: none;
  font-size: 14px;
  position: relative;
}

.link-whatsapp {
  text-decoration: underline;
  color: #1c2760;
}

.btn-filter {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
}
.is-hidden {
  visibility: hidden;
  height: 0;
  opacity: 0;
  margin-bottom: 0;
}
@media (min-width: 1152px) {
  .laptop {
    display: none;
  }
  .is-hidden {
    margin-bottom: 0;
    opacity: 1;
    height: auto;
    visibility: visible;
  }
}
/*menu*/
a {
  color: inherit;
}

.menu-item,
.menu-open-button {
  background: #fff;
  border-radius: 100%;
  width: 90px;
  height: 90px;
  margin-left: -40px;
  position: absolute;
  color: #ffffff;
  text-align: center;
  line-height: 80px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
  box-shadow: 3px 3px 0 0 rgb(0 0 0 / 14%);
  z-index: 1;
}

.menu-open {
  display: none;
}

.lines {
  width: 25px;
  height: 3px;
  background: #596778;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}

.line-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}

.line-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.line-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0);
}

.menu-open:checked + .menu-open-button .line-1 {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .line-2 {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .line-3 {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menu {
  margin: 0;
  position: relative;
  top: -1.5em;
  bottom: 0;
  left: 80%;
  right: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  box-sizing: border-box;
  font-size: 26px;
}

/* .menu-item {
   transition: all 0.1s ease 0s;
   } */

.menu-item:hover {
  background: #eeeeee;
  color: #3290b1;
}

.menu-item:nth-child(3) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(4) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(5) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(6) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(7) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(8) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(9) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-open-button {
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  cursor: pointer;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
}

.menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu-open:checked + .menu-open-button {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

.menu-open:checked ~ .menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}

.menu-open:checked ~ .menu-item:nth-child(3) {
  transition-duration: 180ms;
  -webkit-transition-duration: 180ms;
  -webkit-transform: translate3d(0.08361px, -104.99997px, 0);
  transform: translate3d(0.08361px, -104.99997px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(4) {
  transition-duration: 280ms;
  -webkit-transition-duration: 280ms;
  -webkit-transform: translate3d(90.9466px, -52.47586px, 0);
  transform: translate3d(90.9466px, -52.47586px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(5) {
  transition-duration: 380ms;
  -webkit-transition-duration: 380ms;
  -webkit-transform: translate3d(90.9466px, 52.47586px, 0);
  transform: translate3d(90.9466px, 52.47586px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(6) {
  transition-duration: 480ms;
  -webkit-transition-duration: 480ms;
  -webkit-transform: translate3d(0.08361px, 104.99997px, 0);
  transform: translate3d(0.08361px, 104.99997px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(7) {
  transition-duration: 580ms;
  -webkit-transition-duration: 580ms;
  -webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
  transform: translate3d(-90.86291px, 52.62064px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(8) {
  transition-duration: 680ms;
  -webkit-transition-duration: 680ms;
  -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
  transform: translate3d(-91.03006px, -52.33095px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(9) {
  transition-duration: 780ms;
  -webkit-transition-duration: 780ms;
  -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
  transform: translate3d(-0.25084px, -104.9997px, 0);
}

.blue {
  background-color: #669ae1;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.blue:hover {
  color: #669ae1;
  text-shadow: none;
}

.green {
  background-color: #70cc72;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.green:hover {
  color: #70cc72;
  text-shadow: none;
}

.red {
  background-color: #fe4365;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.red:hover {
  color: #fe4365;
  text-shadow: none;
}

.purple {
  background-color: #c49cde;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.purple:hover {
  color: #c49cde;
  text-shadow: none;
}

.orange {
  background-color: #fc913a;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.orange:hover {
  color: #fc913a;
  text-shadow: none;
}

.lightblue {
  background-color: #62c2e4;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}

.lightblue:hover {
  color: #62c2e4;
  text-shadow: none;
}

.credit {
  margin: 24px 20px 120px 0;
  text-align: right;
  color: #eeeeee;
}

.credit a {
  padding: 8px 0;
  color: #c49cde;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.credit a:hover {
  text-decoration: underline;
}
.title-ico {
  text-align: center;
  font-weight: bold;
  height: 60px;
  vertical-align: middle;
  display: table-cell;
  font-size: 14px;
}
.social {
  position: fixed;
  top: 50%;
  right: -510px;
  z-index: 1;
}
.social ul {
  list-style-type: none;
  padding: 0;
  transform: translateX(-260px);
}
.social ul li {
  display: block;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: left;
  padding: 10px;
  border-radius: 30px 0px 0px 30px;
  transition: all 1s;
}
.social ul li:hover {
  transform: translateX(-90px);
}
.social ul li.twitter {
  background-color: #55acee;
}
.fa-message:before {
  color: #55acee;
}
.social ul li.facebook {
  background-color: #3d5999;
}
.fa-message:before {
  color: #3d5999;
}

.social ul li a {
  color: white;
  text-decoration: none;
}
.social ul li i {
  text-align: center;
  margin-right: 14px;
  color: black;
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  color: white;
  /* font-size: 2px; */
  transform: rotate(09deg);
}

.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}
/* responsive */
@media (max-width: 1080px) {
  .container {
    height: auto;
  }
  .container .imgBx {
    padding: 50px 0 0 0;
    box-sizing: border-box;
    width: 100% !important;
    height: auto;
    text-align: center;
    overflow: hidden;
  }
  .container .imgBx img {
    left: initial;
    max-width: 100%;
    transform: rotate(0deg);
  }
  .details {
    width: 100% !important;
    height: auto;
    padding: 20px;
  }
  .container .details p {
    margin-left: 0;
    max-width: 100%;
  }
  .containerM .details {
    border-right: none;
  }
  .containerM .imgBx {
    border-left: none;
  }
  .menu {
    margin: auto;
    left: 0;
  }

  .zoom {
    transition: transform 0.2s;
  }

  .zoom:hover {
    transform: scale(1.5);
  }
}
