/* SVG STYLE START */

/* MAIN */
.basket_icon:hover path{
  fill: red;
}

/* FOOTER */
.footer_svg path{
  transition: all 0.5s;
}
.footer_svg:hover path{
  fill-opacity: 1;
}

/* SVG STYLE END */
  
/* COMMON STYLE START */
ul, li{
  padding: 0;
  margin: 0;
}

a, li{
    text-decoration: none;
    list-style: none;
}

a:hover{
    color: white;
    text-decoration: none;
}

.main_title{
    font-family: Montserrat;
    font-weight: normal;
    font-size: 36px;
    line-height: 44px;
    color: #1C1311;
    
    margin-top: 50px;
    margin-bottom: 50px;
    
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}  


/* COMMON STYLE END */


/* HEADER START */
header{
    position: relative;
    background-color: #327fa8;
    margin-bottom: 65px;
}

.header_poster{
  position: relative;
  bottom: -35px;
}
/* HEADER NAV START */

.header_nav{
        margin-bottom: 65px;
}

.header_nav-item{
    list-style: none;
}

.header_nav-link{
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    margin: 0 20px;
}
.header_nav-link:hover {
    color:#a5cadd;
    transition: all 1s ease;
}
.header_nav-selected{
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    color:#a5cadd;
    line-height: 22px;
    margin: 0 20px;
}
.header_nav-selected:hover {
    color:#a5cadd;
    transition: all 1s ease;
}

.header_nav-menu{
    padding: 55px 0 30px;
}

@media only screen and (max-width: 576px) {
    .header_nav-menu {
        padding: 15px 0 15px;
    }
}

.header_panel{
    position:absolute;
    top:40px;
    right: 60px;
    display: flex;
}

.header_panel-item{
    margin:10px 20px;
}

/* HEADER NAV END */

/* HEADER TEXT BLOCK START */
.header_title{
    font-family: Montserrat;
    font-weight: bold;
    font-size: 70px;
    line-height: 85px;
    color: #FFFFFF;
}

.header_sub-title{
    font-family: Montserrat;
    font-weight: 200;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
}

.header_slogan{
    font-family: Montserrat;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
}

/* HEADER TEXT BLOCK END */

/* HEADER POSTER START */
.header_poster-img{
    max-height: 1280px;
}
/* HEADER POSTER END */


/* BURGER MENU START */
.btn {
    display: inline-block;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    transition: opacity 1s ease-in-out;
    text-decoration: none;
  }
  
  .btn:hover {
    opacity: 0.7;
  }
  
  .btn-contacts {
    display: inline-block;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-top: 0rem;
    margin-bottom: 1rem;
    transition: opacity 1s ease-in-out;
    text-decoration: none;
  }
  
  .btn-contacts:hover {
    opacity: 0.7;
  }

/* MENU STYLES */
.header_lx-panel {
    display: none;
    position: fixed;
    top:40px;
    right: 60px;
    z-index: 1;
  }
  
  .header_lx-panel .toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
  }
  
  @media only screen and (max-width: 576px) {
    .header_lx-panel .toggler {
        top: -30px;
    }
}
  
  .header_lx-panel .hamburger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
@media only screen and (max-width: 576px) {
    .header_lx-panel .hamburger {
        position: fixed;
        top: 0;
        left: auto;
        z-index: 1;
        width: 60px;
        height: 60px;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

  /* Hamburger Line */
  .header_lx-panel .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #a5cadd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  /* Hamburger Lines - Top & Bottom */
  .header_lx-panel .hamburger > div::before,
  .header_lx-panel .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
  }
  
  /* Moves Line Down */
  .header_lx-panel .hamburger > div::after {
    top: 10px;
  }
  
  /* Toggler Animation */
  .header_lx-panel .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
  }
  
  /* Turns Lines Into X */
  .header_lx-panel .toggler:checked + .hamburger > div:before,
  .header_lx-panel .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
  }
  
  /* Rotate On Hover When Checked */
  .header_lx-panel .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
  }
  
  /* Show Menu */
  .header_lx-panel .toggler:checked ~ .menu {
    visibility: visible;
  }
  
  .header_lx-panel .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: 0.75s;
  }
  
  .header_lx-panel .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition:  opacity 0.4s ease 0.4s;
  }
  
  .header_lx-panel .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header_lx-panel .menu > div {
    background: rgba(28, 19, 17, 0.80);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
  }
  
  .header_lx-panel .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .header_lx-panel .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
  }
  
  .header_lx-panel .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
  }
/* BURGER MENU END */

/* HEADER END */


/* MAIN START */

/* BLOCKS GUARANTEES START */
.blocks_guarantees{
    padding: 40px 0;
    border-bottom: 1px solid #1C1311;
}

.blocks_guarantees-desc{
    font-family: Montserrat;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    margin-left: 15px;

    color: #1C1311;
}

.products_section-watches{
  padding-bottom: 80px;
  border-bottom: 1px solid black;
}

.product_card{
    position: relative;
    box-sizing: border-box;
    background: #efefef;
    margin-bottom: 30px;
    transition: all 1s;
    padding-bottom: 30px;
}

.product_card-description{
  padding: 0 15px;
}

.product_card:hover{
  box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.25);
}

.product_card-name{
    font-family: Montserrat;
    font-weight: 600;
    font-size: 25px;
    line-height: 26px;
    color: #000000;
}

.product_card-desc{
    font-family: Montserrat;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}


.product_card-price{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.product_card-btn{
    display: inline-block;
    padding: 10px 45px;
    background: #303030;
    
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    line-height: 13px;

    color: #FFFFFF;
    transition: all 0.5s;
}

.product_card-btn:hover{
    background-color: rgba(48, 48, 48, 0.7);
}

.product_card_basket-link{
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 15px;
    background: #303030;
}
/* BLOCKS GUARANTEES END */

/* SLIDER BLOCK START */
.owl-carousel{
  height: 300px;
  margin-top: 150px;
  margin-bottom: 150px;
}

.owl-carousel_block{
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: all 1s;
  
}

.owl-carousel_block-bg{
  background-color: rgba(205, 178, 166, 0.1);
}

.owl-carousel_block-title {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 59px;
  color: #1C1311;
}

.owl-carousel_block-content{
  position: relative;  
}

.owl-carousel_block-hover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  
  transition: all 1s;
}

.owl-carousel_block-hover:hover{
  opacity: 1;
}

.owl-carousel_block-desc{
  display: none;
}

.owl-carousel_block-hover:hover .owl-carousel_block-desc{
  display: block;
  
  position: absolute;
  bottom: 30px;
  left: 40px;
  
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 59px;
  color: #FFFFFF;
}

/* EMAIL FORM START */
.email_form{
    padding: 170px 0 310px 0;
    background-image: url("../images/email_form-bg-2.png");
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

@media only screen and (max-width: 576px) {
    .email_form {
        display: none;
    }
}

.email_form-block{
    position: absolute;

    top: 0;
    left: 0;
    background-color: rgba(16, 15, 15, 0.44);
}

.email_form-title{
    font-family: Montserrat;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
}

.email_form-desc{
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;

    color: #FFFFFF;
}

.email_form-input{
    border: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.36);

    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;

    color: #FFFFFF;
}

.email_form-input::placeholder{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;

    color: #FFFFFF;
}

.email_form-link{
    display: block;
    padding: 18px 30px;
    background: #1b1b1b;
    
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;

    color: #FFFFFF;
    margin-left: 15px;
    transition: all 1s;
    
}

.email_form-link:hover {
    background-color: rgba(48, 48, 48, 0.7);
}
/* EMAIL FORM END */
/* MAIN END */


/* FOOTER START */

footer{
    background-color: #327fa8;
    padding-top: 90px;
    padding-bottom: 60px;
}

@media only screen and (max-width: 576px) {
    footer {
        padding-top: 10px;
        padding-bottom: 30px;
    }
}

.footer_nav-item_header{
  border-bottom: 1px solid white;
}

.footer_nav-item{
  margin-top: 20px;
}

.footer_nav-link{
  font-family: Montserrat;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.footer_nav-link_header{
  font-family: Montserrat;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.footer_pay-block{
  margin-top: 85px;
  padding-top: 30px;
  border-top: 1px solid white;
}

@media only screen and (max-width: 576px) {
    .footer_pay-block {
        display: none !important;
    }
}

.footer_pay-card{
  margin-left: 15px;
  margin-right: 15px;
}


/* CATEGORY DETAIL HTML START */

/* MAIN START */

/* SALES BLOCK START */
.sales_block-first{
  padding: 20px 0;
  background-color: #BBBD63;
}

.sales_block-second{
  padding: 20px 0;
  background-color: #AF8E81;
}

.sales_block-first p{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;

  color: #303030;
}

.sales_block-second p{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;

  color: #FFFFFF;
}

.sales_block-first span{
  color: #FFFFFF;
}

/* SALES BLOCK END */

/* SECTION CATEGORY PRODUCTS START */


/* PRODUCT FILTER BLOCK START */
.products_filter{
  margin: 40px 0;
}

.dropdown{
  width: 260px;
  padding: 0;
}

.products_filter-dropdown{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  
  
  color: #000000;
  
  background-color: #efefef;
  width: 100%;
  padding: 15px;
  text-align: left;
  
  border: none;
}

.dropdown-menu{
  background-color: #1C1311;
  padding: 20px;
  width: 100%;
}

.dropdown-item{
  padding-left: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */


  color: #FFFFFF;
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
/* PRODUCT FILTER BLOCK END */

/* PAGINATION START */
.pagination{
  max-width: max-content;
  height: 36px;
  border-bottom: 0.5px solid #303030;
  margin: -30px 0 50px;
}

.page-link{
  border: none;
  
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  background-color: transparent;
  color: #000000;
}

.page-link:hover{  
  color: #000000;
}

.page-link-active{
  border-bottom: 2px solid #303030;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #2c2c2c;
    border-color: #2c2c2c;
}
/* PAGINATION END */

/* MAIN END */

/* CATEGORY DETAIL HTML END */




/* PRODUCT DETAIL HTML START */

.product_detail-main-title{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 24px;
  
    color: #000000;
    margin-bottom: 50px;
}

/* PRODUCT DETAIL SLIDER START */
.product_detail-slider{
  position: relative;
}

.product_detail-slider .owl-stage-outer{
  overflow-x: hidden;
}

.product_detail-slider .owl-stage{
  display: flex;
}

.product_detail-slider .owl-nav .owl-prev{
  position: absolute;
  top: calc(50% - 80px);;
  left: 0;
  border: none;
  background-color: transparent;
}

.product_detail-slider .owl-nav .owl-prev span{
  color: rgba(0, 0, 0, 0.30);
  font-size: 80px;
  transition: all 2s;
}

.product_detail-slider .owl-nav .owl-prev span:hover{
  color: #000000;
}

.product_detail-slider .owl-nav .owl-next{
  position: absolute;
  top: calc(50% - 80px);
  right: 0;
  border: none;
  background-color: transparent;
  
}

.product_detail-slider .owl-nav .owl-next span{
  color: rgba(0, 0, 0, 0.30);
  font-size: 80px;
  transition: all 2s;
}

.product_detail-slider .owl-nav .owl-next span:hover{
  color: #000000;
}

.owl-dots{
  display: none;
}

/* PRODUCT DETAIL SLIDER END */


/* PRODUCT DETAIL INFO START */

.product_detail-title{
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 37px;
  /* identical to box height */


  color: #000000;
}

.product_detail-desc{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;

  color: #000000;
}

.product_detail-price{
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 37px;


  color: #000000;
  padding-bottom: 10px;

  border-bottom: 1px solid #000000;
}

.product_detail-characteristic_item{
  margin-top: 35px;
  margin-bottom: 35px;
}

.product_detail-characteristic_item span{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;

  color: #000000;
}

.product_detail-guarantee{
  margin: 35px 0;

  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;

  color: #000000;
}

.product_detail-buy_btn{
  padding: 30px 170px;
  background-color: #303030;
  border: none;

  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;

  color: #FFFFFF;
  transition: all 1s;
  max-width: inherit;
}

@media only screen and (max-width: 576px) {
    .product_detail-buy_btn {
        padding: 20px 100px !important;
    }
}

.product_detail-buy_btn:hover{
  background-color: rgba(48, 48, 48, 0.7);
}

.product_detail-order_btn{
  padding: 30px 140px;
  background-color: #e84141;
  border: none;

  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;

  color: #FFFFFF;
  transition: all 1s;
}


.product_detail-order_btn:hover{
  background-color: rgba(216, 142, 142, 0.7);
}
/* PRODUCT DETAIL INFO END */


/* BRAND INFO START */

.brand_info{
  margin: 50px 0;
}

.brand_info-block{
  width: 50%;
  padding-left: 100px;
  padding-right: 100px;
  background-color: #1C1311;
  color: #FFFFFF;
}


.brand_info-img{
  width: 50%;
}

.brand_info-title{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */


  color: #FFFFFF;
}


.brand_info-desc{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;

  color: #FFFFFF;
}
/* BRAND INFO END */


/* CUSTOMER REVIEWS START */
.customer_reviews{
  margin-top: 50px;
  margin-bottom: 50px;
}

.customer_reviews-slider{
  height: 230px;
  display: flex;
}

.customer_reviews-slider .owl-stage{
  display: flex;
}

.customer_reviews-slider_block {
  background: #EFEFEF;
  padding: 30px;

  width: 350px;
  height: 230px;
}

.customer_reviews-slider .owl-stage-outer{
  overflow-x: hidden;
}
.customer_reviews-slider .owl-item{
  width: 350px;
}

.customer_reviews-slider .owl-nav{
  display: none;
}

.customer_reviews-slider .owl-dots{
  display: none;
}

.customer_reviews-title{
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */


  color: #000000;
}

.customer_reviews-status{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */


  color: #6FBD63;
}

.customer_reviews-desc{
  margin-top: 15px;

  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;

  color: #303030;
}

.customer_reviews-date{

  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  
  
  color: rgba(0, 0, 0, 0.4);
}



/* CUSTOMER REVIEWS END */

/* PRODUCT DETAIL HTML END */





/* FOOTER END */
@media only screen and (max-width: 1500px) {
    .header_panel {
        display: none;
    }
    .header_lx-panel{
        display: block;
    }
  }

@media only screen and (max-width: 576px) {
  .sales_block-first p, .sales_block-second p{
    font-size: 20px;
  }
}

a {
    color: #fff;
}

.recommended_goods{
    margin-top: 50px;
}

.slider-box{
    position: relative;
    background-position:center center;
    background-size:cover;
    width:600px;
    height:600px;
}

.add-product{
    margin-right:10px;
    display: inline-block;
	padding: 5px;
	width:150px;
}

.list-pages {
	text-align: center;
	margin: 0 0 20px 0;
}
.list-pages ul {
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
}
.list-pages ul li {
	display: inline-block;
	margin: 0 20px 0 0;
}
.list-pages a {
	color: #000;
	font-size: 24px;
	text-decoration: none;
}
.list-pages .page-num, .page-num-selected {
	display: inline-block;
	width: 60px;
	height: 44px;
	border: 1px solid #d0d0d0;
	border-radius: 30px;
}
.list-pages .page-num:hover {
	box-shadow: 3px 3px 1px #d0d0d0;
}
.list-pages .page-num-selected {
	border: none;
	color: #000;
	font-size: 20px;
}
.list-pages .page-num-selected:hover {
	box-shadow: none;
}

.top {
    background-color: #327fa8;
    border-radius: 50%;
    bottom: 20px;
    color: #fff;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 10px;
    text-align: center;
    width: 50px;
    transition: all 0.2s;
}

@media only screen and (max-width: 576px) {
    .top {
        display: none;
    }
}

.top:hover {
    background-color: #f15726;
}

.fa-frog:hover {
    color:#a5cadd;
    transition: all 1s;
}

.container {
  justify-content: center;
}
.btn-primary {
    background-color:#327fa8;
}
.btn-primary:hover {
    background-color:#327fa8;
}
.btn-primary:focus {
    background-color:#327fa8;
}
@media only screen and (max-width: 768px) {
    .hidden-logo{
        margin-top: 5px;
        margin-bottom: -40px;
        margin-left: 20px;
        width: 50%;
    }
}
@media only screen and (max-width: 650px) {
    .no-mobile{
        display:none;
    }
}
@media only screen and (min-width: 640px) {
    .mobile{
        display:none;
    }
}

@media only screen and (max-width: 576px) {
    .logotip {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .contacts_img {
        display: none;
    }
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}