@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.global-page-container {
	width: 100vw;
  height: 100vh;
  margin: auto;
	display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title{
  margin: 3em 0em 0.5em 0em;
  color: #3a3a3a;
}

.title h1{
  font-size: 3em;
}

.title a{
  text-decoration: none;
}
.title a:hover{
  border-radius: 1px solid #0070c9;
}

.title small{
  font-size: 1.5em;
  color: #0070c9;
}

.watch-slider {
  padding: 80px 0 60px 0;
  overflow: hidden;
}

.watch-slider .slide {
  transform: scale(0.6);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  outline: none !important;
  filter: blur(3px);
}

.watch-slider .slide.slick-center {
  transform: scale(1);
  filter: none;
}

.watch-slider .slide:hover{
  filter: none;
  transition: all .4s linear;
}

.arrow {
  display: inline-block;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center;
  cursor: pointer;
  vertical-align: middle;
  /* padding-top: 5px; */
}

#arrow-prev {
  background-image: url('././././image/arrow_prev.svg');
}

#arrow-next {
  background-image: url('./img/arrow_next.svg');
  width: 50px;
  height: 50px;
}

.link-description{
  text-decoration: none;
  font-size: 2em;
  font-weight: 400;
  color: #707070;
}

.description {
  display: inline-block;
  height: 50px;
  line-height: 35px;
  width: 340px;
}

#watch-price {
  color: #0070c9;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 1em;
  line-height: 1em;
}

.watch-container{
  position: relative;
  width: 100%;
  height: auto;
}

.case{
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17%;
  height: auto;
}

@media only screen and (max-width: 1440px) {
  .case{
    width: 167px;
  }

} 

@media only screen and (max-width: 414px) {
  .description {
    display: inline-block;
    height: 50px;
    line-height: 20px;
    width: 190px;
  }
  .case{
    width: 169px;
  }
}   

@media only screen and (max-width: 375px) {
  .title{
    width: 70%;
  }
  .title h1 {
    font-size: 2em;
  }
  .case {
    width: 147px;
  }
  .description {
    line-height: 20px;
    width: 160px;
  }
  .link-description {
    font-size: 1em;;
}
}   

/* **********************************************************************************************
***********************************   MEDIA QUERIES   ******************************************* 
********************************************************************************************** */

/* Small Screens *****************************************************************************/

  @media only screen and (max-width: 640px) {


  }   

/* End of small Screens*/



/* Medium Screens ****************************************************************************/

  @media only screen and (min-width: 641px) and (max-width: 1023px) {
    .watch-slider .slide {
      width: 33%;
    }
  }

/* End of Medium Screens*/




/* Large Screens *****************************************************************************/

  @media only screen and (min-width: 1024px) and (max-width: 1440px) { 
      
    .global-page-container {
      width: 1024px;
    }
      
  }

/*   End of Large Screens*/



/* Extra Large Screens ***********************************************************************/

  @media only screen and (min-width: 1441px) {
      
    .global-page-container {
      width: 1440px;
    }
            
  }

/* End of Extra Large Screens*/