@charset "utf-8";
/***************************************************************************************
	*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 376px STARTS
***************************************************************************************/
@media screen and (min-width:376px) {}

/***************************************************************************************
*MEDIA QUERY FOR mobile landscape
***************************************************************************************/
@media screen and (min-width:480px) and (max-width:767px) and (orientation:landscape) and (-webkit-min-device-pixel-ratio:2) { }

/***************************************************************************************
	*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 768px STARTS
**************************************************************************************/
@media screen and (min-width:768px) {
  .menu-navigation {
      display: none;
  }
  .cd-top {
      height: 45px;
      width: 45px;
  }
  .cd-top.cd-is-visible {
      right: 25px;
      bottom: 25px;
      -webkit-transition: all 0.56s ease;
      -o-transition: all 0.56s ease;
      transition: all 0.56s ease;
  }
}

/***************************************************************************************
	*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 992 STARTS
***************************************************************************************/
@media screen and (min-width:992px) {}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1025 STARTS
***************************************************************************************/
@media screen and (min-width:1025px) {}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1280 STARTS
***************************************************************************************/
@media screen and (min-width:1280px) {}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1400 STARTS
***************************************************************************************/
@media screen and (min-width:1400px) {}

/***************************************************************************************
*MEDIA QUERY FOR DEVICE WIDTH MORE THEN 1921 STARTS
***************************************************************************************/
@media screen and (min-width:1921px) {}


/***************************************************************************************
*MEDIA QUERY FOR Ipad Pro landscape
***************************************************************************************/
@media only screen and (min-device-width:1025px) and (max-device-width:1366px) and (orientation:landscape) and (-webkit-min-device-pixel-ratio:2) { }


/***************************************************************************************
*MEDIA QUERY FOR Ipad Pro portrait
***************************************************************************************/
@media only screen and (min-device-width:1024px) and (max-device-width:1366px) and (orientation:portrait) and (-webkit-min-device-pixel-ratio:2) { }


/*@media (prefers-color-scheme: dark) {
  html {
    background-color: red;
  }
}*/