* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

a {
  text-decoration: none;
}

body {
  background-color: #ffffff;
}

@font-face {
	font-family: '4cinema';
	src: url('/campaign/campaign-winter-1403/assets/font/4cinema.ttf');
}

@font-face {
	font-family: 'Gilroy-Medium';
	src: url('/campaign/campaign-winter-1403/assets/font/Gilroy-Medium.ttf');
}

@font-face {
	font-family: 'HelveticaCE-Bold';
	src: url('/campaign/campaign-winter-1403/assets/font/HelveticaCE-Bold.otf');
}

@font-face {
	font-family: 'IRANYekanRegular';
	src: url('/campaign/campaign-winter-1403/assets/font/IRANYekanRegular.ttf');
}

@font-face {
	font-family: 'YekanBakhEN05Medium';
	src: url('/campaign/campaign-winter-1403/assets/font/YekanBakhEN05Medium.ttf');
}

.banner {
  position: relative;
}

.main-image-mobile {
  width: 100%;
  height: auto;
}

.main-image-desktop {
  display: none;
  width: 100%;
  height: auto;
}

.links {
  position: absolute;
  bottom: 6%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.links > a {
  background-color: #b60e80;
  font-size: 12px;
  padding: 6px 2px;
  margin: 2px 2px;
  width: 90px;
  text-align: center;
  font-family: YekanBakhEN05Medium;
  color: #fff;
}

.social-media-link {
  position: absolute;
  display: block;
  text-align: center;
  font-family: Helvetica;
  background-color: transparent;
  width: 200px;
  height: 20px;
  bottom: 13%;
  left: 5%;
}

@media screen and (min-width: 768px) {
  .main-image-mobile {
    display: none;
  }

  .main-image-desktop {
    display: block;
  }

  .links {
    left: unset;
    right: 4%;
    bottom: 20%;
  }
  
  .links > a {
    width: 112px;
  }

  .social-media-link {
    left: unset;
    right: 14%;
    bottom: 35%;
  }
}

.title {
  margin: 16px;
  font-family: '4cinema';
}

.title b {
  background-image: linear-gradient(90deg, #c1c3c1 0%,#e7ecee 50%, #c1c3c1 100%);
  display: block;
  text-align: center;
  line-height: 3rem;
  padding-bottom: 8px;
  color: #b60e80;
  font-size: 32px;
}

@media screen and (min-width: 768px) {
  .title b {
    font-size: 48px;
    padding-bottom: 16px;
  }
}

.products {
  margin: 16px;
}

.item {
  flex-shrink: 0;
  width: 100%;
  flex: 1 0 0%;
  margin-bottom: 8px;
}

.item-img-mobile {
  width: 100%;
  height: auto;
}

.item-img-desktop {
  display: none;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .products {
    margin: 16px 8px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }

  .item-img-mobile {
    display: none;
  }
  
  .item-img-desktop {
    display: block;
  }

  .item {
    margin: 8px;
    flex-shrink: 0;
    width: 50%;
    flex: 1 0 calc(50% - 16px);
    margin-bottom: 8px;
  }
}