@charset "UTF-8";

* {
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	color: #818181;
	margin: 0;
}











:root {
  --offset-value: 30;
  --btn-size: 60;
  
  --green: #4ECA78;
}

#nav-bg {
  transform-origin: center center;
  transition: transform .3s;
  transform: translate(var(--translate-x), var(--translate-y)) scale(var(--scale));
  will-change: transform;
  pointer-events: none;
}

.btn_555 {
  position: fixed;
  height: calc(var(--btn-size)*1px);
  width: calc(var(--btn-size)*1px);
  bottom: calc((var(--offset-value))*1px);
  left: calc(var(--offset-value)*1px);
  /*left: calc(50% - (var(--btn-size)/2*1px)); if you wish to center it */
  border-radius: 50%;
  background: #374151 !important;
  cursor: pointer;
  margin: 0;
  padding: 0 15px;
  border: none;
  z-index: 99999;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#toggle-btn  {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #374151;
  /*box-shadow: 0 6px 12px rgba(0,0,0,.1);*/
  transition: transform .3s;
}

#toggle-btn span {
  position: relative;
  width: 100%;
}

#toggle-btn span {
  margin-top: -4px;
}
#toggle-btn span + span {
  margin-top: 8px;
}

#toggle-btn span:before,
#toggle-btn span:after {
  content: '';
  position: absolute;
  top: 0;
  background: currentColor;
  opacity: .8;
  height: 100%;
  width: 50%;
  height: 4px;
  transition: .25s cubic-bezier(.6,0,.3,1);
  transform-origin: center center;
}

#toggle-btn span:before {
  left: 0;
  border-radius: 3px 0 0 3px;
}

#toggle-btn span:after {
  right: 0;
  border-radius: 0 3px 3px 0;
}

#toggle-btn.shown span:nth-of-type(1):before {
  transform: translate3d(3px, 3.5px, 0) rotate(45deg);
}

#toggle-btn.shown span:nth-of-type(1):after {
  transform: translate3d(-3px, 3.5px, 0) rotate(-45deg);
}

#toggle-btn.shown span:nth-of-type(3):before {
  transform: translate3d(3px, -3.5px, 0) rotate(-45deg);
}

#toggle-btn.shown span:nth-of-type(3):after {
  transform: translate3d(-3px, -3.5px, 0) rotate(45deg);
}

#toggle-btn.shown span:nth-of-type(2):before,
#toggle-btn.shown span:nth-of-type(2):after {
  opacity: 0.0001;
}

#toggle-btn.shown span:nth-of-type(2):before {
  transform: translateX(-200%);
}

#toggle-btn.shown span:nth-of-type(2):after {
  transform: translateX(200%);
}

#toggle-btn.shown:before {
  transform: scale(.6);
  transition: .2s;
}

#toggle-btn:before {
  content: '';
  transition: .2s .2s;
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.1);
  border-radius: inherit;
  filter: blur(5px);
  z-index: -2;
}

#toggle-btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #fafafa;
  z-index: -1;
}

nav {
  width: 100%;
  height: 100%;
  background: transparent;
  position: fixed;
  top: 0px;
  left: 0;
  overflow: hidden;
  display: flex;
  z-index: 99999;
  pointer-events: none;
}

nav ul {
  margin: auto;
  pointer-events: auto;
}

nav li {
  font-size: 30px;
  color: #212121;
  user-select: none;
  transform: translate(-20px,20px) scale(.9);
  transition: 0s;
  opacity: 0.0001;
  visibility: hidden;
}

nav li + li {
  margin-top: 30px;
}

#toggle-btn.shown ~ .wrapper nav li {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition: .35s cubic-bezier(.4,2.08,.55,1);
}

#toggle-btn.shown ~ .wrapper nav li:nth-child(1) {
  transition-delay: .15s;
}

#toggle-btn.shown ~ .wrapper nav li:nth-child(2) {
  transition-delay: .125s;
}

#toggle-btn.shown ~ .wrapper nav li:nth-child(3) {
  transition-delay: .1s;
}

.link {
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.link:before,
.link:after {
  position: absolute;
  content: '';
  height: 3px;
  width: 50%;
  background: #4ECA78;
  top: calc(50% + 2px);
  transition: transform .3s cubic-bezier(.5,.5,0,1);
}

.link:before {
  left: 0;
  transform: translateX(calc(-100% - 10px)) scaleX(0);
  transform-origin: left;
}

.link:after {
  right: 0;
  transform: translateX(calc(100% + 10px)) scaleX(0);
  transform-origin: right;
}

.link:hover:before {
  transform: translateX(calc(-100% - 10px)) scaleX(1);
  transform-origin: right;
}

.link:hover:after {
  transform: translateX(calc(100% + 10px)) scaleX(1);
  transform-origin: left;
}

#content_555 {
  display: flex;
  height: 100%;
}

#content_555 h2 {
  font-size: calc(4vmin + 1em);
  text-align: center;
  margin: auto;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.1);
}

a,
a:visited,
a:focus,
a:active,
a:link {
  text-decoration: none;
  outline: 0;
}

a {
  color: currentColor;
  transition: .2s ease-in-out;
}

ul {
  padding: 0;
  list-style: none;
}














.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

a {
	text-decoration: none;
	color: #050505;
}

.latest_comments a {
	text-decoration: underline;
	color: #1d3557;
}

.product-image-box a {
	text-decoration: none !important;
}

.product-image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box:hover .product-hover-box {
    background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container img {
    max-width: 100%;
}

.product-hover-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 7px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box:hover {
    margin: 20px;
    border: 7px solid #fff;
}

.product-hover-box:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Windows 11 ";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_2 a {
	text-decoration: none !important;
}

.product-image-box_2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_2:hover .product-hover-box_2 {
   background-color: rgba(0, 102, 153, 0.4);
}

.product-img-container_2 img {
    max-width: 100%;
}

.product-hover-box_2 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 7px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_2:hover {
    margin: 20px;
    border: 7px solid #fff;
}

.product-hover-box_2:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Windows 10";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_2:hover:after {
    opacity: 1;
    top: 0px;
}
.product-image-box_3 a {
	text-decoration: none !important;
}

.product-image-box_3 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_3:hover .product-hover-box_3 {
   	background-color: rgba(0, 102, 153, 0.4);
}

.product-img-container_3 img {
    max-width: 100%;
}

.product-hover-box_3 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_3:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_3:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Windows 8";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_3:hover:after {
    opacity: 1;
    top: 0px;
}
.product-image-box_4 a {
	text-decoration: none !important;
}

.product-image-box_4 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_4:hover .product-hover-box_4 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_4 img {
    max-width: 100%;
}

.product-hover-box_4 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_4:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_4:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Windows 7";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_4:hover:after {
    opacity: 1;
    top: 0px;
}
.product-image-box_5 a {
	text-decoration: none !important;
}

.product-image-box_5 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_5:hover .product-hover-box_5 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_5 img {
    max-width: 100%;
}

.product-hover-box_5 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_5:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_5:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Windows Vista";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_5:hover:after {
    opacity: 1;
    top: 0px;
}
.product-image-box_6 a {
	text-decoration: none !important;
}

.product-image-box_6 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_6:hover .product-hover-box_6 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_6 img {
    max-width: 100%;
}

.product-hover-box_6 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_6:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_6:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Windows XP";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_6:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_7 a {
	text-decoration: none !important;
}

.product-image-box_7 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_7:hover .product-hover-box_7 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_7 img {
    max-width: 100%;
}

.product-hover-box_7 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_7:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_7:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Mountain Lion";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_7:hover:after {
    opacity: 1;
    top: 0px;
}
.product-image-box_8 a {
	text-decoration: none !important;
}

.product-image-box_8 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_8:hover .product-hover-box_8 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_8 img {
    max-width: 100%;
}

.product-hover-box_8 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_8:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_8:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Lion";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_8:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_9 a {
	text-decoration: none !important;
}

.product-image-box_9 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_9:hover .product-hover-box_9 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_9 img {
    max-width: 100%;
}

.product-hover-box_9 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_9:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_9:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Snow Leopard";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_9:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_10 a {
	text-decoration: none !important;
}

.product-image-box_10 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_10:hover .product-hover-box_10 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_10 img {
    max-width: 100%;
}

.product-hover-box_10 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_10:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_10:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Leopard";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_10:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_11 a {
	text-decoration: none !important;
}

.product-image-box_11 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_11:hover .product-hover-box_11 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_11 img {
    max-width: 100%;
}

.product-hover-box_11 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_11:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_11:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Tiger";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_11:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_12 a {
	text-decoration: none !important;
}

.product-image-box_12 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_12:hover .product-hover-box_12 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_12 img {
    max-width: 100%;
}

.product-hover-box_12 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_12:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_12:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Mac OS X Server";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_12:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_13 a {
	text-decoration: none !important;
}

.product-image-box_13 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_13:hover .product-hover-box_13 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_13 img {
    max-width: 100%;
}

.product-hover-box_13 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_13:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_13:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Ubuntu";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_13:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_14 a {
	text-decoration: none !important;
}

.product-image-box_14 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_14:hover .product-hover-box_14 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_14 img {
    max-width: 100%;
}

.product-hover-box_14 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_14:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_14:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Mandriva";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_14:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_15 a {
	text-decoration: none !important;
}

.product-image-box_15 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_15:hover .product-hover-box_15 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_15 img {
    max-width: 100%;
}

.product-hover-box_15 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_15:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_15:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Fedora";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_15:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_16 a {
	text-decoration: none !important;
}

.product-image-box_16 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_16:hover .product-hover-box_16 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_16 img {
    max-width: 100%;
}

.product-hover-box_16 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_16:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_16:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Debian";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_16:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_17 a {
	text-decoration: none !important;
}

.product-image-box_17 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_17:hover .product-hover-box_17 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_17 img {
    max-width: 100%;
}

.product-hover-box_17 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_17:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_17:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Opensuse";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_17:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_18 a {
	text-decoration: none !important;
}

.product-image-box_18 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_18:hover .product-hover-box_18 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_18 img {
    max-width: 100%;
}

.product-hover-box_18 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_18:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_18:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "Mint";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_18:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_19 a {
	text-decoration: none !important;
}

.product-image-box_19 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_19:hover .product-hover-box_19 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_19 img {
    max-width: 100%;
}


 
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {

	font-size: 20px;
}

.title_nav_bg {
    display: none;
}

.product-hover-box_19 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_19:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_19:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "CentOS";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_19:hover:after {
    opacity: 1;
    top: 0px;
}

.product-image-box_20 a {
	text-decoration: none !important;
}

.product-image-box_20 {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.product-image-box_20:hover .product-hover-box_20 {
   	background-color: rgba(0, 102, 153, 0.8);
}

.product-img-container_20 img {
    max-width: 100%;
}

.product-hover-box_20 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    border: 10px solid transparent;
    margin: 10px;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s;
}

.product-hover-box_20:hover {
    margin: 20px;
    border: 10px solid #fff;
}

.product-hover-box_20:after {
    position: relative;
    top: -60px;
    opacity: 0;
    content: "ArchLinux";
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 0.75s ease-in-out 0s; 
    -moz-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s; 
}

.product-hover-box_20:hover:after {
    opacity: 1;
    top: 0px;
}

.photo_password img{
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
  box-shadow: 10px 15px 25px 0 rgba(0,0,0,.2);
  display: block;
  transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.photo_password:hover img{
  box-shadow: 1px 1px 10px 0 rgba(0,0,0,.1);
}



.latest_comments a:hover {
	opacity: 0.7;
}


div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid red;
  transition: 0.3s;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 5px;
  text-align: center;
  font-size: 12px;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 6px;
  float: left;
  width: 24.99999%;
}

.retrieve_description {
	margin: 50px 0px 10px 0px;
	padding: 0px;
}

.retrieve_description span {
	color: #0B2349;
	font-weight: bold;
	border-bottom: 1px dashed;
}

.dropdown_container_content span {
	display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    height: 150px;
    overflow: auto;
    margin: 10px;
    scrollbar-color: #4ECA78 green;
    border-radius: 3px;
}

.dropdown-content a {
  color: black;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  line-height: 21px;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown-content a {
    font-size: 14px;
}













.comments {
	width: 100%;
	margin-top: 0px;
	padding: 5px 10px;
	border: 1px solid #ffffff;
	box-sizing: border-box;
	outline: none;
	resize: none;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.col-container {
	float: left;
	width: 50%;
	padding: 0 10px;
}

.col_110 {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	padding: 16px;
	text-align: justify;
	background-color: #f1f1f1;
}

.col_110 h2 {
	font-size: 18px;
}

.title_comments {
	margin: 0px 0px 0px 0px;
	font-size: 12px;
	padding: 0px;
}

.name_comments {
	margin: 20px 0px 0px 0px;

	clear: both;
	background-color: #ffffff;
}

.answers {
	margin-left: 25px;
}

.name {
	font-weight: bold; 
	font-size: 12px !important;
	border-bottom: 1px dashed;
}

.btn_answers {
	cursor: pointer;
	font-size: 11px;
}

.info_comment {
	font-size: 14px;
	display: none;
	color: red;
}

.modal_5 {
	display: none; 
	position: fixed;
	z-index: 1; 
	left: 0;
	top: 0;
	width: 100%;
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.4);
	padding-top: 50px;
}

.modal_content_5 {
	background-color: #fefefe;
	margin: 5% auto 15% auto; 
	border: 1px solid #888;
	width: 50%; 
}

.close_5 {
	position: absolute;
	right: 35px;
	top: 15px;
	font-size: 30px !important;
	font-weight: bold;
	color: #f1f1f1;
}

.send_info {
	margin: 0px 0px 0px 10px;
	padding: 0px;
}

:root {
  --primary: #25abd9;
  --primary-dark: #2090b7;
}

.answer-form {

	align-items: stretch;
    display: flex;
    justify-content: space-evenly;
    align-content: stretch;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.btn_answers {
  background: var(--primary);
  border: 0;
  box-shadow: 0 6px 0 var(--primary-dark), 0 5px 15px -4px #000;
  color: #fff;
  cursor: pointer;
  font-family: roboto;
  font-size: 12px;
  font-weight: 800;
  height: 40px;
  padding: 5px;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease-in-out, margin-top 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  width: 100px;
}

.btn_answers:hover,
.btn_answers:focus {
  opacity: 0.9;
  outline: 0;
}

.btn_answers:active {
  box-shadow: none;
  margin-top: 6px;
}

.close_5:hover,
.close_5:focus {
  color: red;
  cursor: pointer;
}

.comments_content {
	color: #050505;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	border-bottom: 1px solid rgba(0, 102, 153, 0.3);
	background-color: #ffffff;
	padding: 25px 10px;
	margin: -5px 0 16px 0;
}

.latest_comments {
	color: #777;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}

.send_comments {
	font-size: 14px;
	outline: none;
	cursor: pointer;
	width: 99.9%;
}

.send_comments {
	padding: 14px 16px;
    border: none;
    outline: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 0;
   letter-spacing: 4px;
}

.send_comments:before {
    content: '';
    background-image: linear-gradient(45deg, #336699,  #006699, #1d3557, #006699,  #1d3557, #006699 );
	background-image: linear-gradient(45deg, #336699,  #006699, #1d3557, #006699,  #1d3557, #006699 );
	background-image: linear-gradient(45deg, #336699,  #006699, #1d3557, #006699,  #1d3557, #006699 );
	background-image: linear-gradient(45deg, #336699,  #006699, #1d3557, #006699,  #1d3557, #006699 );
	background-image: linear-gradient(45deg, #336699,  #006699, #1d3557, #006699,  #1d3557, #006699 );
	background-image: linear-gradient(45deg, #336699,  #006699, #1d3557, #006699,  #1d3557, #006699 );

    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;

}

.send_comments:active {
    color: #000
}

.send_comments:active:after {
    background: transparent;
}

.send_comments:hover:before {
    opacity: 1;
}

.send_comments:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 99.9%;
    height: 100%;
    left: 0;
    top: 0;
    border: 1px solid #ffffff;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.title_view_comments {
	margin: 0px 5px 25px 0;
	float: right;
	clear: both;
}

.view_comments {
	color: silver;
	font-size: 10px !important;
	font-weight: bold;
	padding: 2px;
	word-wrap: break-word;

}  


.view_comments:hover {
	color: #fff; /* Цвет текста */
    background: #f66d52; /* Цвет фона */
}

.view_comments_2 {
	font-weight: bold;
	color: silver;
	font-size: 10px !important;
}

.form_comments {
	background-image: url('../images/cs.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10px;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
	background-color: #006699;
}

.form_comments input {
	width: 49.7% !important;
}

.form_comments textarea {
  background-color:  rgba(0, 0, 0, 0.2);
  margin: 0px 0;
  color: #ffffff;
}

.dropdown_container a.active {
	color: red !important;
	background-color: #ffffff !important;
}

.container::after {
	content: "";
	clear: both;
	display: table;
}

[class*="col_"] {
	float: left;
	padding: 10px;
}

html {
	font-family: Arial, Helvetica, sans-serif;
}

.header {

padding: 100px 15px 60px 15px;
position: relative;
  background-image: linear-gradient(rgba(30, 45, 59, 1), rgba(30, 45, 59, 0.8)), url("../images/shutterstock.jpg");
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.menu ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.menu li {
	padding: 13px 10px;
	margin-bottom: 5px;
	background: #ffffff;
	color: #050505;
	cursor: pointer;
	font-size: 14px;
	border: 1px solid rgba(0, 102, 153, 0.3);
    border-left: none;
    border-right: none;
    border-top: none;
}

.menu li:hover a {
	color: rgba(0, 102, 153, 1);
}

.menu li:hover {
	opacity: 0.9 !important;
}

.menu img {
	float: left;
	margin: 0px 7px 5px 0px;
	color: #ffffff;
}

.aside {
	padding: 8px;
	font-size: 14px;
	overflow-y:scroll;
 	height:450px;
    overflow:scroll;
    overflow-x:hidden;
    color: #3B3C3E;
    left: -1px;
}

#element::-webkit-scrollbar {
  width: 5px;
}

#element::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: white;
}

#element::-webkit-scrollbar-thumb {
  background-color: #356184;
  background-image: -webkit-gradient(linear, 0 0, 0 100%,
                    color-stop(.5, rgba(255, 255, 255, .25)),
                    color-stop(.5, transparent), to(transparent));
}







#element_2::-webkit-scrollbar {
  width: 5px;
}

#element_2::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: white;
}

#element_2::-webkit-scrollbar-thumb {
  background-color: #356184;
  background-image: -webkit-gradient(linear, 0 0, 0 100%,
                    color-stop(.5, rgba(255, 255, 255, .25)),
                    color-stop(.5, transparent), to(transparent));
}














.aside img {
	width: 20px;
	margin: 3px 5px 5px 0px !important;
}

.footer {
	background-color: #374151;
	text-align: center;
	font-size: 12px;
	padding: 15px;
	box-shadow: 0 1px 0 0 #d7d8db, 0 0 0 1px #e3e4e8;
}

.footer a {
	color: #ffffff;
}

.float:hover {
	text-decoration: underline;
}


.float {
	float: left;
}

strong {
	color: #F1F6DD;
}

[class*="col_"] {
	width: 100%;
}




@media only screen and (min-width: 600px) {
	.col_s_1 {width: 8.33%;}
	.col_s_2 {width: 16.66%;}
	.col_s_3 {width: 25%;}
	.col_s_4 {width: 33.33%;}
	.col_s_5 {width: 41.66%;}
	.col_s_6 {width: 50%;}
	.col_s_7 {width: 58.33%;}
	.col_s_8 {width: 66.66%;}
	.col_s_9 {width: 75%;}
	.col_s_10 {width: 83.33%;}
	.col_s_11 {width: 91.66%;}
	.col_s_12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
	.col_1 {width: 8.33%;}
	.col_2 {width: 16.66%;}
	.col_3 {width: 20%;}
	.col_4 {width: 33.33%;}
	.col_5 {width: 41.66%;}
	.col_6 {width: 60%;}
	.col_7 {width: 58.33%;}
	.col_8 {width: 66.66%;}
	.col_9 {width: 75%;}
	.col_10 {width: 83.33%;}
	.col_11 {width: 91.66%;}
	.col_12 {width: 100%;}
}

.center_block {
	margin: 10px 0px;
	background-color: #ffffff;
	border-radius: 5px;
}

.center_block span {
	font-size: 12px;
}

.center_block a:hover {
	text-decoration: underline;
}

.system_info {
	margin: 20px 0px 0px 0px;
	padding: 20px 10px;
	box-shadow: 0 1px 0 0 #d7d8db, 0 0 0 1px #e3e4e8;
}

.system_info img {
	float: left;
	margin-right: 5px;
	margin-top: -1px;
}

.system_info span {
	font-size: 16px;
	color: #009900;
	font-weight: bold;
}

.system_info p {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

.system_info ul li {
	font-size: 12px;
	color: #050505;
	list-style-type: none;
}

.system_info li:before {
	margin-left: -10px;
	padding-right: 5px;
	content: "•";
}

.open_page {
	color: #777 ;
}

.open_page:hover {
	text-decoration: none !important;
}

.title_content {
	margin: 40px 0px 30px 0px;
	padding: 0px;
  	font-size: 25px;
  	font-weight: 600;
  	font-family: 'Roboto', sans-serif;
  	text-transform: uppercase;
}

.content {
	margin-top: 10px;
	margin-bottom: 0;
	margin-right: 0;
	margin-left: 0;
	padding: 0px;
	text-align: justify;
	color: #050505;
	font-size: 18px;
	line-height: 28px;
	font-family: Arial, Helvetica, sans-serif;
}

.content b{
	font-size: 18px;
	color: #818181;
}

.back_call {
	position: relative;
}

.back_call p {
}

.hero-image {
  position: relative;

}

.hero-text {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -80%);
  color: white;
  width: 100%;
}

.container_header::after {
	content: "";
	clear: both;
	display: table;
}

.container_header  p {
	margin: 0px;
	padding: 0px;
}

.container_header  h3 {
	margin: 0px 0px 0px 0px;
	padding: 0px;
	font-size: 35px;
	color: #F1F6DD;
	font-weight: 100;
}

.container_header h3:hover {
	color: #c20700;
  }

.container_header  h1 {
	margin: 20px 0px 0px 0px;
	padding: 0px;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	margin-right: 0px;
}

.way {
	color: #050505;
	font-weight: bold;
}

.container_header  span {
	font-size: 11px;
	font-weight: bold;
}

.container_header img {
    float: left;
    margin: -15px 20px 0px 0px;
}

.mobile_phone {
	position: absolute;
    right: 10px;
    top: 15px;
    width: 25%;
}

.mobile_phone img {
	width: 15%; 
	margin: 10px 10px 0px 0px;
} 

.mobile_phone p {
	margin-right: 10px;
}

.mobile {
	font-size: 16px; 
	color: #ffffff;
}

.back_call_button{
  color:#fff;
  height: 45px;
  padding: 0 10px;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  position: absolute;
  right: 0px;
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0.1);
}
.back_call_button:hover{
  background:#fff;
  color: #333;
}

.block_comments {
	margin-bottom: 10px;
}

.title_tel {
	background-color: rgba(8, 27, 54) !important;
	padding: 15px 20px;
}

.back_call_button:before,.back_call_button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #f53675;
  transition:400ms ease all;
}
.back_call_button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
.back_call_button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}

.back_call_button {
	color: #f1f1f1;
	font-size: 14px;
}


.back_call_phone {
	display: none;
}

.container_header_content_mobile {
	display: none;
}

@media (max-width: 1100px) {
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {
	font-size: 14px;
}

@media (max-width: 800px) {
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {
	font-size: 20px;
}

@media (max-width: 800px) {
.form_comments input {
	width: 100% !important;
  }

@media (max-width: 800px) {
.center_block {
	margin: 10px 0px 10px 0px;
  }

@media (max-width: 800px) {
.back_call_phone {
	display: block;
  }

@media (max-width: 800px) {
.column_4_border  {
	border: none !important;
}

@media (max-width: 800px) {
.menu  img  {
	margin: 1px 5px 5px 0px;
  }

@media (max-width: 767px) {
.center_block {
	margin: 10px 0px 0px 0px;
  }

@media (max-width: 768px) {
.aside  {
	margin: 5px 0; 
  }

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media (max-width: 700px) {
.column_4_border  {
	border-bottom: 1px solid #ddd !important;
}

@media (max-width: 700px) {
.modal_content_5  {
	width: 90%;
	margin: 10% auto 15% auto; 
  }

@media (max-width: 700px) {
.hero_text_content  {
	display: none;
  }

@media (max-width: 700px) {
.menu  a  {
	font-size: 11px;
  }

@media (max-width: 700px) {
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {
	font-size: 12px;
}

@media (max-width: 671px) {
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {
	font-size: 20px;
}

@media (max-width: 671px) {
.column_4_border  {
	border-bottom: none !important;
}

@media (max-width: 600px) {
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {
	font-size: 12px;
}

@media (max-width: 600px) {
.column_4_border  {
	border-bottom: 1px solid #ddd !important;
}

  @media (max-width: 599px) {
[class*="col_"] {
    padding: 0 10px;
  }

  @media (max-width: 599px) {
.title_nav_bg {
    display: block;
  }

  @media (max-width: 599px) {
.menu li, .dropdown_container a {
    display: none !important;
  }

  @media (max-width: 599px) {
.center_block {
	margin: -7px 0px 0px 0px;
  }

  @media (max-width: 599px) {
.menu  img  {
	margin: 0px 5px 5px 0px;
  }

@media (max-width: 511px) {
.column_4_border  {
	border-bottom: none !important;
}

@media (max-width: 511px) {
.product-hover-box:after, .product-hover-box_2:after,  .product-hover-box_3:after,  .product-hover-box_4:after,  .product-hover-box_5:after,  
.product-hover-box_6:after,  .product-hover-box_7:after,  .product-hover-box_8:after,  .product-hover-box_9:after,  .product-hover-box_10:after,  
.product-hover-box_11:after,  .product-hover-box_12:after,  .product-hover-box_13:after,  .product-hover-box_14:after,  .product-hover-box_15:after,  
.product-hover-box_16:after,  .product-hover-box_17:after,  .product-hover-box_18:after,  .product-hover-box_19:after,  .product-hover-box_20:after    {
	font-size: 20px;
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

@media (max-width: 700px) {
.menu  a  {
	font-size: 14px;
  }

     @media (max-width: 600px) {
.title_content  {
	font-size: 20px;
  }

@media (max-width: 600px) {
.container_header {
	text-align: center;
	margin: 0px 0px 15px 0px;
  }

.container_header img {
	margin: auto;
	float: none;
	display: block;
  }
}

@media (max-width: 600px) {
.container_header_content {
	display: none;
  }

@media (max-width: 600px) {
.container_header_content_mobile {
	display: block;
  }

  @media (max-width: 600px) {
.float {
	float: none;
	display: block;
	margin-bottom: 5px;
  }

@media (max-width: 500px) {
.back_call_phone {
  }

	@media (max-width: 300px) {
.content {
	text-align: left;
  }

	@media (max-width: 300px) {
.system_info span {
	font-size: 14px;
  }